{ "$schema": "http://json-schema.org/draft-04/schema", "title": "Film", "description": "A Star Wars film", "type": "object", "properties": { "title": { "title": "Title", "type": "string", "description": "The title of this film." }, "episode_id": { "title": "Episode", "type": "integer", "description": "The episode number of this film." }, "director": { "title": "Director", "type": "string", "description": "The director of this film." }, "producer": { "title": "Producer", "type": "string", "description": "The producer(s) of this film." }, "release_date": { "title": "Release", "type": "string", "format": "date", "description": "The release date at original creator country." }, "characters": { "title": "Characters", "type": "array", "description": "The people resources featured within this film." }, "planets": { "title": "Planets", "type": "array", "description": "The planet resources featured within this film." }, "starships": { "title": "Starships", "type": "array", "description": "The starship resources featured within this film." }, "vehicles": { "title": "Vehicles", "type": "array", "description": "The vehicle resources featured within this film." }, "species": { "title": "Species", "type": "array", "description": "The species resources featured within this film." } }, "required": [ "title", "episode_id", "director", "producer", "release_date", "characters", "planets", "starships", "vehicles", "species" ] }