Amazon MediaLive · JSON Structure

Medialive Api Output Group Structure

Output groups for this Live Event. Output groups contain information about where streams should be distributed.

Type: object Properties: 3 Required: 2
BroadcastingMedia ProcessingMedia

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

Properties

Name OutputGroupSettings Outputs

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-output-group-structure.json",
  "name": "OutputGroup",
  "type": "object",
  "description": "Output groups for this Live Event. Output groups contain information about where streams should be distributed.",
  "properties": {
    "Name": {
      "allOf": [
        {
          "$ref": "#/components/schemas/__stringMax32"
        },
        {
          "xml": {
            "name": "name"
          },
          "description": "Custom output group name optionally defined by the user."
        }
      ]
    },
    "OutputGroupSettings": {
      "allOf": [
        {
          "$ref": "#/components/schemas/OutputGroupSettings"
        },
        {
          "xml": {
            "name": "outputGroupSettings"
          },
          "description": "Settings associated with the output group."
        }
      ]
    },
    "Outputs": {
      "allOf": [
        {
          "$ref": "#/components/schemas/__listOfOutput"
        },
        {
          "xml": {
            "name": "outputs"
          }
        }
      ]
    }
  },
  "required": [
    "Outputs",
    "OutputGroupSettings"
  ]
}