{
    "description": "Related Content Component",
    "type": "object",
    "properties": {
        "title": {
            "type": "string"
        },
        "image": {
            "$ref": "#/components/schemas/Image"
        },
        "links": {
            "type": "array",
            "items": {
                "type": "object",
                "properties": {
                    "uri": {
                        "type": "string",
                        "format": "uri"
                    },
                    "title": {
                        "type": "string"
                    }
                },
                "required": [
                    "uri",
                    "title"
                ]
            }
        }
    },
    "required": [
        "links",
        "title"
    ]
}
