No description available.
Properties
alt
string
Optional
Alt text description of the video, for accessibility.
maxLength: 10000 bytesmaxGraphemes: 1000 graphemesaspectRatio
ref
so.sprk.media.defs#aspectRatio
Optional
No description available.
captions
array
of ref#caption
Optional
No description available.
maxLength: 20 itemsvideo
blob
Required
No description available.
maxSize: 314.6 MBView raw schema
{
"type": "object",
"required": [
"video"
],
"properties": {
"alt": {
"type": "string",
"maxLength": 10000,
"description": "Alt text description of the video, for accessibility.",
"maxGraphemes": 1000
},
"video": {
"type": "blob",
"accept": [
"video/mp4"
],
"maxSize": 314572800
},
"captions": {
"type": "array",
"items": {
"ref": "#caption",
"type": "ref"
},
"maxLength": 20
},
"aspectRatio": {
"ref": "so.sprk.media.defs#aspectRatio",
"type": "ref"
}
}
}