Amazon MediaTailor · JSON Structure

Mediatailor Api Response Output Item Structure

The output item response.

Type: object Properties: 5 Required: 3
BroadcastingMedia ProcessingMedia

ResponseOutputItem is a JSON Structure definition published by Amazon MediaTailor, describing 5 properties, of which 3 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

DashPlaylistSettings HlsPlaylistSettings ManifestName PlaybackUrl SourceGroup

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-mediatailor/refs/heads/main/json-structure/mediatailor-api-response-output-item-structure.json",
  "name": "ResponseOutputItem",
  "type": "object",
  "description": "The output item response.",
  "properties": {
    "DashPlaylistSettings": {
      "allOf": [
        {
          "$ref": "#/components/schemas/DashPlaylistSettings"
        },
        {
          "description": "DASH manifest configuration settings."
        }
      ]
    },
    "HlsPlaylistSettings": {
      "allOf": [
        {
          "$ref": "#/components/schemas/HlsPlaylistSettings"
        },
        {
          "description": "HLS manifest configuration settings."
        }
      ]
    },
    "ManifestName": {
      "allOf": [
        {
          "$ref": "#/components/schemas/__string"
        },
        {
          "description": "The name of the manifest for the channel that will appear in the channel output's playback URL."
        }
      ]
    },
    "PlaybackUrl": {
      "allOf": [
        {
          "$ref": "#/components/schemas/__string"
        },
        {
          "description": "The URL used for playback by content players."
        }
      ]
    },
    "SourceGroup": {
      "allOf": [
        {
          "$ref": "#/components/schemas/__string"
        },
        {
          "description": "A string used to associate a package configuration source group with a channel output."
        }
      ]
    }
  },
  "required": [
    "ManifestName",
    "PlaybackUrl",
    "SourceGroup"
  ]
}