{ "name": "Location", "structure": { "type": "object", "required": ["id", "name"], "properties": { "id": { "type": "string", "description": "Unique identifier representing a specific location." }, "name": { "type": "string", "description": "Name of the location." }, "climate": { "type": "string", "description": "Predominant climate of the location." }, "terrain": { "type": "string", "description": "Predominant terrain of the location." }, "surface_water": { "type": "string", "description": "Percentage of the location covered by surface water." }, "residents": { "type": "array", "items": { "type": "string" } }, "films": { "type": "array", "items": { "type": "string" } }, "url": { "type": "string", "description": "Canonical URL of the location resource." } } } }