{
    "allOf": [
        {
            "$ref": "#/components/schemas/BaseItem"
        },
        {
            "$ref": "#/components/schemas/TextAsset"
        },
        {
            "type": "object",
            "properties": {
                "collection_id": {
                    "type": "string"
                },
                "uri": {
                    "type": "string",
                    "format": "uri"
                },
                "canonical_url": {
                    "type": "string",
                    "nullable": true
                },
                "vanity_url": {
                    "type": "string",
                    "nullable": true
                },
                "dek": {
                    "type": "string",
                    "nullable": true,
                    "format": "semantic HTML"
                },
                "image": {
                    "$ref": "#/components/schemas/Image"
                },
                "contributors": {
                    "type": "array",
                    "items": {
                        "allOf": [
                            {
                                "$ref": "#/components/schemas/Contributor"
                            },
                            {
                                "type": "object",
                                "properties": {
                                    "order": {
                                        "type": "integer"
                                    }
                                }
                            }
                        ]
                    }
                },
                "content_type": {
                    "type": "string",
                    "enum": [
                        "featured_image"
                    ]
                }
            },
            "required": [
                "collection_id",
                "uri"
            ]
        }
    ]
}
