We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hello. In Avro schemas record fields may have a default value. Using it we can skip some field in JSON file and it still will be valid.
Schema
{ "type": "record", "name": "User", "fields": [ { "name": "name", "type": "string" }, { "name": "age", "type": ["null", "int"], "default": null } ] }
Data
{ "name": "John" }
Data is valid though "age" is not provided because schema defines default value for "age".
I have a code to suggest for enabling support of record fields default values.
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
Hello.
In Avro schemas record fields may have a default value. Using it we can skip some field in JSON file and it still will be valid.
Schema
Data
Data is valid though "age" is not provided because schema defines default value for "age".
I have a code to suggest for enabling support of record fields default values.
The text was updated successfully, but these errors were encountered: