Video embed. One video per post.
Properties
alt
string
Required
Alt-text describing the video content for accessibility. Required.
maxLength: 10000 bytesmaxGraphemes: 1000 graphemesaspectRatio
ref
app.tempomusic.embed.defs#aspectRatio
Optional
No description available.
captions
array
of ref#caption
Optional
Optional caption tracks (WebVTT) keyed by BCP-47 language tag, for accessibility.
maxLength: 20 itemsvideo
blob
Required
No description available.
maxSize: 100.0 MBView raw schema
{
"type": "object",
"required": [
"video",
"alt"
],
"properties": {
"alt": {
"type": "string",
"maxLength": 10000,
"description": "Alt-text describing the video content for accessibility. Required.",
"maxGraphemes": 1000
},
"video": {
"type": "blob",
"accept": [
"video/mp4",
"video/webm"
],
"maxSize": 100000000
},
"captions": {
"type": "array",
"items": {
"ref": "#caption",
"type": "ref"
},
"maxLength": 20,
"description": "Optional caption tracks (WebVTT) keyed by BCP-47 language tag, for accessibility."
},
"aspectRatio": {
"ref": "app.tempomusic.embed.defs#aspectRatio",
"type": "ref"
}
},
"description": "Video embed. One video per post."
}