Amazon MediaLive · JSON Structure

Medialive Api Audio Selector Structure

Audio Selector

Type: object Properties: 2 Required: 1
BroadcastingMedia ProcessingMedia

AudioSelector is a JSON Structure definition published by Amazon MediaLive, describing 2 properties, of which 1 is required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

Name SelectorSettings

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-medialive/refs/heads/main/json-structure/medialive-api-audio-selector-structure.json",
  "name": "AudioSelector",
  "type": "object",
  "description": "Audio Selector",
  "properties": {
    "Name": {
      "allOf": [
        {
          "$ref": "#/components/schemas/__stringMin1"
        },
        {
          "xml": {
            "name": "name"
          },
          "description": "The name of this AudioSelector. AudioDescriptions will use this name to uniquely identify this Selector.  Selector names should be unique per input."
        }
      ]
    },
    "SelectorSettings": {
      "allOf": [
        {
          "$ref": "#/components/schemas/AudioSelectorSettings"
        },
        {
          "xml": {
            "name": "selectorSettings"
          },
          "description": "The audio selector settings."
        }
      ]
    }
  },
  "required": [
    "Name"
  ]
}