Ivs List Channels Response Structure

ListChannelsResponse schema

Type: object Properties: 2 Required: 1
Live StreamingMediaVideoReal-Time

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

Properties

channels nextToken

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-interactive-video-service/refs/heads/main/json-structure/ivs-list-channels-response-structure.json",
  "name": "ListChannelsResponse",
  "description": "ListChannelsResponse schema",
  "type": "object",
  "properties": {
    "channels": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ChannelList"
        },
        {
          "description": "List of the matching channels."
        }
      ]
    },
    "nextToken": {
      "allOf": [
        {
          "$ref": "#/components/schemas/PaginationToken"
        },
        {
          "description": "If there are more channels than <code>maxResults</code>, use <code>nextToken</code> in the request to get the next set."
        }
      ]
    }
  },
  "required": [
    "channels"
  ]
}