{
  "description": "Sponsor banner component",
  "type": "object",
  "properties": {
    "tracking_link": {
      "type": "string",
      "format": "uri"
    },
    "label": {
      "type": "string"
    },
    "theme": {
      "type": "string",
      "nullable": true,
      "default": "White",
      "enum": [
        "White",
        "Light Gray",
        "Dark Gray",
        "Black"
      ]
    },
    "end_date": {
      "type": "string",
      "format": "date-time"
    },
    "logos": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Image",
        "link": {
          "type": "string",
          "format": "uri"
        },
        "alt_text": {
          "type": "string"
        }
      }
    }
  },
  "required": [
    "label",
    "theme"
  ]
}