{
    "type": "object",
    "properties": {
        "title": {
            "type": "string"
        },
        "description": {
            "type": "string"
        },
        "credit": {
            "type": "string"
        },
        "embed_url": {
            "type": "string",
            "format": "uri"
        },
        "size": {
            "type": "string",
            "enum": [
                "XS",
                "S",
                "M",
                "L",
                "FULL"
            ]
        },
        "aspect_ratio": {
            "type": "string",
            "enum": [
                "2:1",
                "3:4",
                "3:2",
                "4:3",
                "9:16",
                "16:9"
            ]
        }
    },
    "required": [
        "embed_url",
        "size",
        "aspect_ratio"
    ]
}