{
    "type": "object",
    "properties": {
        "size_comparison_label": {
            "type": "string"
        },
        "animal_subject": {
            "description": "Taxonomy UUID",
            "type": "string"
        },
        "captivity_lifespan_low": {
            "type": "number"
        },
        "captivity_lifespan_median": {
            "type": "number"
        },
        "captivity_lifespan_high": {
            "type": "number"
        },
        "wild_lifespan_low": {
            "type": "number"
        },
        "wild_lifespan_median": {
            "type": "number"
        },
        "wild_lifespan_high": {
            "type": "number"
        },
        "lifespan_notes": {
            "type": "string"
        },
        "name": {
            "type": "string"
        },
        "scientific_name": {
            "type": "array",
            "items": {
                "type": "string"
            }
        },
        "diet_details": {
            "type": "string"
        },
        "animal_type": {
            "type": "object",
            "properties": {
                "url": {
                    "type": "string",
                    "format": "uri"
                },
                "name": {
                    "type": "string"
                }
            },
            "required": [
                "url",
                "name"
            ]
        },
        "size": {
            "type": "string"
        },
        "weight": {
            "type": "string"
        },
        "population_trend": {
            "type": "string"
        },
        "relative_size_image": {
            "$ref": "#/components/schemas/Image"
        },
        "animal_reference_image": {
            "$ref": "#/components/schemas/Image"
        }
    },
    "required": [
        "animal_subject",
        "name"
    ]
}
