Properties
| Name | Type | Description |
|---|---|---|
| file | string | The image file to upload. |
| name | object | |
| opacity | object | |
| padding | object | |
| position | object | |
| scale | object |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/stream_watermark_basic_upload",
"title": "stream_watermark_basic_upload",
"properties": {
"file": {
"description": "The image file to upload.",
"example": "@/Users/rchen/Downloads/watermark.png",
"type": "string"
},
"name": {
"$ref": "#/components/schemas/stream_name"
},
"opacity": {
"$ref": "#/components/schemas/stream_opacity"
},
"padding": {
"$ref": "#/components/schemas/stream_padding"
},
"position": {
"$ref": "#/components/schemas/stream_position"
},
"scale": {
"$ref": "#/components/schemas/stream_scale"
}
},
"required": [
"file"
],
"type": "object"
}