Properties
| Name | Type | Description |
|---|---|---|
| allowedOrigins | object | |
| creator | object | |
| meta | object | |
| requireSignedURLs | object | |
| scheduledDeletion | object | |
| thumbnailTimestampPct | object | |
| url | string | A video's URL. The server must be publicly routable and support `HTTP HEAD` requests and `HTTP GET` range requests. The server should respond to `HTTP HEAD` requests with a `content-range` header that |
| watermark | object |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/stream_video_copy_request",
"title": "stream_video_copy_request",
"properties": {
"allowedOrigins": {
"$ref": "#/components/schemas/stream_allowedOrigins"
},
"creator": {
"$ref": "#/components/schemas/stream_creator"
},
"meta": {
"$ref": "#/components/schemas/stream_media_metadata"
},
"requireSignedURLs": {
"$ref": "#/components/schemas/stream_requireSignedURLs"
},
"scheduledDeletion": {
"$ref": "#/components/schemas/stream_scheduledDeletion"
},
"thumbnailTimestampPct": {
"$ref": "#/components/schemas/stream_thumbnailTimestampPct"
},
"url": {
"description": "A video's URL. The server must be publicly routable and support `HTTP HEAD` requests and `HTTP GET` range requests. The server should respond to `HTTP HEAD` requests with a `content-range` header that includes the size of the file.",
"example": "https://example.com/myvideo.mp4",
"format": "uri",
"type": "string"
},
"watermark": {
"$ref": "#/components/schemas/stream_watermark_at_upload"
}
},
"required": [
"url"
]
}