William Cheng 8741a8ca35
Minor enhancements to the Avro schema generator (#3728)
* minor enhancements to the avro generator

* add option to customize package name

* update doc
2019-08-22 16:06:04 +08:00

47 lines
816 B
JSON

{
"namespace": "model",
"type": "record",
"doc": "An order for a pets from the pet store",
"name": "Order",
"fields": [
{
"name": "id",
"type": ["null", "long"],
"doc": ""
},
{
"name": "petId",
"type": ["null", "long"],
"doc": ""
},
{
"name": "quantity",
"type": ["null", "int"],
"doc": ""
},
{
"name": "shipDate",
"type": ["null", "string"],
"doc": ""
},
{
"name": "status",
"type": ["null", {
"type": "enum",
"name": "Order_status",
"symbols": [
"placed",
"approved",
"delivered"
]
}],
"doc": "Order Status"
},
{
"name": "complete",
"type": ["null", "boolean"],
"doc": ""
}
]
}