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

24 lines
409 B
JSON

{
"namespace": "model",
"type": "record",
"doc": "Describes the result of uploading an image resource",
"name": "ApiResponse",
"fields": [
{
"name": "code",
"type": ["null", "int"],
"doc": ""
},
{
"name": "type",
"type": ["null", "string"],
"doc": ""
},
{
"name": "message",
"type": ["null", "string"],
"doc": ""
}
]
}