{
"$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-stream-sessions-response-structure.json",
"name": "ListStreamSessionsResponse",
"description": "ListStreamSessionsResponse schema",
"type": "object",
"properties": {
"nextToken": {
"allOf": [
{
"$ref": "#/components/schemas/PaginationToken"
},
{
"description": "If there are more streams than maxResults, use nextToken in the request to get the next set."
}
]
},
"streamSessions": {
"allOf": [
{
"$ref": "#/components/schemas/StreamSessionList"
},
{
"description": "List of stream sessions."
}
]
}
},
"required": [
"streamSessions"
]
}