{ "operationId": "getStream", "summary": "Get a Stream object by ID", "tags": [ "Streams" ], "parameters": [ { "in": "path", "name": "streamID", "schema": { "type": "integer", "minimum": 1 }, "required": true, "description": "ID of the Stream", "example": 1 } ], "responses": { "200": { "description": "200 response", "content": { "application/json": { "schema": { "required": [ "result" ], "properties": { "result": { "$ref": "#/components/schemas/StreamObject" } } }, "examples": { "default": { "value": { "result": "TODO" } } } } } } } }