social.coves.embed.video

coves.social

Documentation

Video embed with metadata

main object

Video embed with metadata

Properties

alt string Optional

Alt text describing video content

maxLength: 10000 bytesmaxGraphemes: 1000 graphemes
duration integer Optional

Duration in seconds

minimum: 0
thumbnail blob Optional

Video thumbnail image

maxSize: 1.0 MB
video blob Required

Video blob reference

maxSize: 100.0 MB
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"
}

Lexicon Garden

@