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.
