github.com/hamba/avro/v2@v2.22.1-0.20240518180522-aff3955acf7d/testdata/superhero-part2.avsc (about)

     1  {
     2      "type": "record",
     3      "name": "Superhero",
     4      "namespace": "com.model",
     5      "fields": [
     6          {"name": "id", "type": "int"},
     7          {"name": "affiliation_id", "type": "int"},
     8          {"name": "name", "type": "string"},
     9          {"name": "life", "type": "float"},
    10          {"name": "energy", "type": "float"},
    11          {"name": "powers", "type": {
    12                  "type": "array",
    13                  "items": {"type": "Superpower"}}
    14          }
    15      ]
    16  }