Amazon MediaLive · Schema

InputChannelLevel

Input Channel Level

BroadcastingMedia ProcessingMedia

Properties

Name Type Description
Gain object
InputChannel object
View JSON Schema on GitHub

JSON Schema

medialive-api-input-channel-level-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-input-channel-level-schema.json",
  "title": "InputChannelLevel",
  "description": "Input Channel Level",
  "type": "object",
  "properties": {
    "Gain": {
      "allOf": [
        {
          "$ref": "#/components/schemas/__integerMinNegative60Max6"
        },
        {
          "xml": {
            "name": "gain"
          },
          "description": "Remixing value. Units are in dB and acceptable values are within the range from -60 (mute) and 6 dB."
        }
      ]
    },
    "InputChannel": {
      "allOf": [
        {
          "$ref": "#/components/schemas/__integerMin0Max15"
        },
        {
          "xml": {
            "name": "inputChannel"
          },
          "description": "The index of the input channel used as a source."
        }
      ]
    }
  },
  "required": [
    "InputChannel",
    "Gain"
  ]
}