GetStreamRequest schema
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-interactive-video-service/refs/heads/main/json-schema/ivs-get-stream-request-schema.json", "title": "GetStreamRequest", "description": "GetStreamRequest schema", "type": "object", "properties": { "channelArn": { "allOf": [ { "$ref": "#/components/schemas/ChannelArn" }, { "description": "Channel ARN for stream to be accessed." } ] } }, "required": [ "channelArn" ] }