You might want to look at avro idl.
Bertrand
On 14 Jun 2013 21:07, "Benyi Wang" <[email protected]> wrote:
> Is there a way to pass a string to Schema.Parser include multiple schema
> definitions?
>
> { "type": "record",
> "name": "Date",
> "fields" : [ { "name": "date", "type": "long" }]
> }
>
> { "type": "record",
> "name": "Transaction",
> "fields": [
> { "name": "id", "type": "int" },
> { "name": "tx_date", "type": "Date" } ]
> }
>
> { "type": "record",
> "name": "Customer",
> "fields": [
> { "name": "id", "type": "int" },
> { "name": "birthday", "type": "Date" } ]
> }
>
> Transaction and Customer refers Date.
>