{
    "type": "object",
    "properties": {
        "uri": {
            "type": "string",
            "format": "uri"
        },
        "title": {
            "type": "string",
            "nullable": true
        },
        "source_system": {
            "$ref": "#/components/schemas/SourceSystem"
        },
        "rights_system": {
            "$ref": "#/components/schemas/SourceSystem"
        },
        "asset_provider": {
            "type": "object",
            "nullable": true,
            "properties": {
                "id": {
                    "type": "string"
                },
                "asset_id": {
                    "type": "string"
                },
                "uri": {
                    "type": "string",
                    "nullable": true,
                    "format": "uri"
                }
            }
        },
        "alt_text": {
            "type": "string",
            "nullable": true
        },
        "credit": {
            "type": "string",
            "nullable": true
        },
        "caption": {
            "type": "string",
            "nullable": true
        },
        "cropped": {
            "type": "boolean"
        },
        "aspect_ratio": {
            "type": "number"
        },
        "height": {
            "type": "integer"
        },
        "width": {
            "type": "integer"
        },
        "croppings": {
            "type": "array",
            "items": {
                "type": "object",
                "properties": {
                    "aspect_ratio_key": {
                        "type": "string"
                    },
                    "uri": {
                        "type": "string",
                        "format": "uri"
                    },
                    "instructions": {
                        "type": "object",
                        "required": [
                            "x_coordinate",
                            "y_coordinate",
                            "height",
                            "width"
                        ],
                        "properties": {
                            "x_coordinate": {
                                "type": "integer"
                            },
                            "y_coordinate": {
                                "type": "integer"
                            },
                            "height": {
                                "type": "integer"
                            },
                            "width": {
                                "type": "integer"
                            }
                        }
                    },
                    "renditions": {
                        "$ref": "#/components/schemas/Renditions"
                    }
                },
                "required": [
                    "aspect_ratio_key",
                    "uri",
                    "instructions"
                ]
            }
        },
        "renditions": {
            "$ref": "#/components/schemas/Renditions"
        },
        "id": {
            "type": "string"
        },
        "type": {
            "type": "string"
        },
        "order": {
            "type": "integer"
        }
    },
    "required": [
        "uri",
        "source_system"
    ]
}
