{ "$schema": "http://json-schema.org/draft-04/schema", "title": "Specie", "description": "A species within the Star Wars universe", "type": "object", "properties": { "name": { "title": "Name", "type": "string", "description": "The name of this species." }, "classification": { "title": "Classification", "type": "string", "description": "The classification of this species." }, "designation": { "title": "Designation", "type": "string", "description": "The designation of this species." }, "average_height": { "title": "Height (AVG cm)", "type": "string", "description": "The average height of this person in centimeters." }, "average_lifespan": { "title": "Lifespan (AVG years)", "type": "string", "description": "The average lifespan of this species in years." }, "language": { "title": "Language", "type": "string", "description": "The language commonly spoken by this species." }, "eye_colors": { "title": "Eye Colors", "type": "string", "description": "A comma-seperated string of common eye colors for this species, none if this species does not typically have eyes." }, "hair_colors": { "title": "Hair Colors", "type": "string", "description": "A comma-seperated string of common hair colors for this species, none if this species does not typically have hair." }, "skin_colors": { "title": "Skin Colors", "type": "string", "description": "A comma-seperated string of common skin colors for this species, none if this species does not typically have skin." }, "films": { "title": "Films", "type": "array", "description": " An array of Film URL Resources that this species has appeared in." }, "people": { "title": "People", "type": "array", "description": "An array of People URL Resources that are a part of this species." } }, "required": [ "name", "classification", "designation", "average_height", "average_lifespan", "language", "eye_colors", "hair_colors", "skin_colors", "films", "people" ] }