{
    "allOf": [
        {
            "$ref": "#/components/schemas/BaseItem"
        },
        {
            "type": "object",
            "properties": {
                "keywords": {
                    "type": "array",
                    "items": {
                        "type": "string"
                    }
                },
                "pull_quote": {
                    "$ref": "#/components/schemas/PullQuote"
                },
                "image": {
                    "$ref": "#/components/schemas/Image"
                },
                "content_type": {
                    "type": "string",
                    "enum": [
                        "featured_text"
                    ]
                }
            },
            "required": [
                "uri"
            ]
        }
    ]
}
