Skip to content
New issue

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

Support of record fields default values #12

Open
SokolovAlexanderV opened this issue Apr 17, 2024 · 0 comments · May be fixed by #13
Open

Support of record fields default values #12

SokolovAlexanderV opened this issue Apr 17, 2024 · 0 comments · May be fixed by #13

Comments

@SokolovAlexanderV
Copy link

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.

@SokolovAlexanderV SokolovAlexanderV linked a pull request Apr 17, 2024 that will close this issue
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Development

Successfully merging a pull request may close this issue.

1 participant