Amazon MediaLive · Schema

CaptionSelector

Caption Selector

BroadcastingMedia ProcessingMedia

Properties

Name Type Description
LanguageCode object
Name object
SelectorSettings object
View JSON Schema on GitHub

JSON Schema

medialive-api-caption-selector-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-medialive/refs/heads/main/json-schema/medialive-api-caption-selector-schema.json",
  "title": "CaptionSelector",
  "description": "Caption Selector",
  "type": "object",
  "properties": {
    "LanguageCode": {
      "allOf": [
        {
          "$ref": "#/components/schemas/__string"
        },
        {
          "xml": {
            "name": "languageCode"
          },
          "description": "When specified this field indicates the three letter language code of the caption track to extract from the source."
        }
      ]
    },
    "Name": {
      "allOf": [
        {
          "$ref": "#/components/schemas/__stringMin1"
        },
        {
          "xml": {
            "name": "name"
          },
          "description": "Name identifier for a caption selector.  This name is used to associate this caption selector with one or more caption descriptions.  Names must be unique within an event."
        }
      ]
    },
    "SelectorSettings": {
      "allOf": [
        {
          "$ref": "#/components/schemas/CaptionSelectorSettings"
        },
        {
          "xml": {
            "name": "selectorSettings"
          },
          "description": "Caption selector settings."
        }
      ]
    }
  },
  "required": [
    "Name"
  ]
}