Video embed with metadata
Properties
View raw schema
{
"type": "object",
"required": [
"video"
],
"properties": {
"alt": {
"type": "string",
"maxLength": 10000,
"description": "Alt text describing video content",
"maxGraphemes": 1000
},
"video": {
"type": "blob",
"accept": [
"video/mp4",
"video/webm"
],
"maxSize": 100000000,
"description": "Video blob reference"
},
"duration": {
"type": "integer",
"minimum": 0,
"description": "Duration in seconds"
},
"thumbnail": {
"type": "blob",
"accept": [
"image/png",
"image/jpeg",
"image/webp"
],
"maxSize": 1000000,
"description": "Video thumbnail image"
}
},
"description": "Video embed with metadata"
}