Skip to content

Commit

Permalink
Added quotes to fields Person-1.9.0-namespace.avsc
Browse files Browse the repository at this point in the history
  • Loading branch information
MichaelDavisSolace committed Aug 30, 2021
1 parent 897e551 commit 9adbbaa
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/schemas/Person-1.9.0-namespace.avsc
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
"namespace": "com.company",
"type": "record",
"fields": [
{"name": "name", "type": "string", example: "Donkey"},
{"name": "age", "type": ["null", "int"], "default": null, example: "123"},
{"name": "name", "type": "string", "example": "Donkey"},
{"name": "age", "type": ["null", "int"], "default": null, "example": "123"},
{
"name": "favoriteProgrammingLanguage",
"type": {"name": "ProgrammingLanguage", "type": "enum", "symbols": ["JS", "Java", "Go", "Rust", "C"], "default": "JS"}
Expand All @@ -14,7 +14,7 @@
"type": {
"name": "Address",
"type": "record",
"fields": [{"name": "zipcode", "type": "int", example: "53003"}]
"fields": [{"name": "zipcode", "type": "int", "example": "53003"}]
}
},
{"name": "someid", "type": "uuid"}
Expand Down

0 comments on commit 9adbbaa

Please sign in to comment.