{ "namespace": "de.trion.avro", "type": "record", "name": "Movie", "fields": [ { "name": "movie_id", "type": "long" }, { "name": "title", "type": "string" }, { "name": "release_year", "type": "int" }, { "name": "country", "type": "string" }, { "name": "rating", "type": "double" }, { "name": "genres", "type": { "type": "array", "items": "string" } }, { "name": "actors", "type": { "type": "array", "items": "string" } }, { "name": "directors", "type": { "type": "array", "items": "string" } }, { "name": "composers", "type": { "type": "array", "items": "string" } }, { "name": "screenwriters", "type": { "type": "array", "items": "string" } }, { "name": "cinematographer", "type": "string" }, { "name": "production_companies", "type": { "type": "array", "items": "string" } } ] }