summaryrefslogtreecommitdiffstats
path: root/src/fluent-bit/lib/avro/tests/schema_tests/pass/recursive_record
blob: 0967bb4aed3a98b4acac75e9d856e7cc7ea2846d (plain)
1
2
3
4
5
6
7
{ "type": "record",
  "name": "recursive",
  "fields": [
    { "name": "label", "type": "string" },
    { "name": "children", "type": {"type": "array", "items": "recursive"} }
  ]
}