{ "$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-session-request-schema.json", "title": "GetStreamSessionRequest", "description": "GetStreamSessionRequest schema", "type": "object", "properties": { "channelArn": { "allOf": [ { "$ref": "#/components/schemas/ChannelArn" }, { "description": "ARN of the channel resource" } ] }, "streamId": { "allOf": [ { "$ref": "#/components/schemas/StreamId" }, { "description": "Unique identifier for a live or previously live stream in the specified channel. If no streamId is provided, this returns the most recent stream session for the channel, if it exists." } ] } }, "required": [ "channelArn" ] }