{
    "description": "Facts Card Component",
    "type": "object",
    "properties": {
        "title": {
            "type": "string",
            "nullable": true
        },
        "facts": {
            "type": "array",
            "items": {
                "type": "object",
                "properties": {
                    "fact": {
                        "type": "string",
                        "nullable": true
                    },
                    "source": {
                        "type": "string",
                        "nullable": true
                    },
                    "tweet": {
                        "$ref": "#/components/schemas/TwitterTweet"
                    }
                },
                "required": [
                    "fact"
                ]
            }
        }
    },
    "required": [
        "facts"
    ]
}

