You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jan 16, 2025. It is now read-only.
I am sending avro data with a schema that has a union type defined as one of my fields. As below: { "name" : "applicationId", "type": ["null", "string"], "default": null }
When I send a json that contains an actual value for this field or whether it is missing from the json totally, which would be the null case, I am getting the error below :
APIError: HTTP 422 Conversion of JSON to Avro failed: Failed to convert JSON to Avro: Expected start-union. Got VALUE_STRING
Is this not a valid schema definition and valid use case ?