{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/stream_video_response_collection", "title": "stream_video_response_collection", "allOf": [ { "$ref": "#/components/schemas/stream_api-response-common" }, { "properties": { "result": { "items": { "$ref": "#/components/schemas/stream_videos" }, "type": "array" } } }, { "properties": { "range": { "description": "The total number of remaining videos based on cursor position.", "example": 1000, "type": "integer" }, "total": { "description": "The total number of videos that match the provided filters.", "example": 35586, "type": "integer" } } } ] }