{ "name": "Person", "structure": { "type": "object", "required": ["name", "url"], "properties": { "name": {"type": "string"}, "height": {"type": "string"}, "mass": {"type": "string"}, "hair_color": {"type": "string"}, "skin_color": {"type": "string"}, "eye_color": {"type": "string"}, "birth_year": {"type": "string"}, "gender": {"type": "string"}, "homeworld": {"type": "string", "format": "uri"}, "films": {"type": "array", "items": {"type": "string", "format": "uri"}}, "species": {"type": "array", "items": {"type": "string", "format": "uri"}}, "vehicles": {"type": "array", "items": {"type": "string", "format": "uri"}}, "starships": {"type": "array", "items": {"type": "string", "format": "uri"}}, "created": {"type": "string", "format": "date-time"}, "edited": {"type": "string", "format": "date-time"}, "url": {"type": "string", "format": "uri"} } } }