Backfill in-progress. Some lexicons and records may be missing or incomplete.

app.bsky.embed.video

bsky-lexicons.bsky.social

Documentation

main object

Properties

alt string Optional

Alt text description of the video, for accessibility.

maxLength: 10000 bytesmaxGraphemes: 1000 graphemes
captions array of ref#caption Optional

No description provided.

maxLength: 20 bytes
video blob Required

The mp4 video file. May be up to 100mb, formerly limited to 50mb.

maxSize: 100.0 MB
View 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": 100000000,
      "description": "The mp4 video file. May be up to 100mb, formerly limited to 50mb."
    },
    "captions": {
      "type": "array",
      "items": {
        "ref": "#caption",
        "type": "ref"
      },
      "maxLength": 20
    },
    "aspectRatio": {
      "ref": "app.bsky.embed.defs#aspectRatio",
      "type": "ref"
    }
  }
}
caption object

Properties

file blob Required

No description provided.

maxSize: 20.0 KB
lang string language Required

A BCP-47 language tag (e.g., en, pt-BR).

View raw schema
{
  "type": "object",
  "required": [
    "lang",
    "file"
  ],
  "properties": {
    "file": {
      "type": "blob",
      "accept": [
        "text/vtt"
      ],
      "maxSize": 20000
    },
    "lang": {
      "type": "string",
      "format": "language"
    }
  }
}
view object

Properties

alt string Optional

No description provided.

maxLength: 10000 bytesmaxGraphemes: 1000 graphemes
cid string cid Required

A content identifier (CID) referencing immutable data.

playlist string uri Required

A valid URI.

thumbnail string uri Optional

A valid URI.

View raw schema
{
  "type": "object",
  "required": [
    "cid",
    "playlist"
  ],
  "properties": {
    "alt": {
      "type": "string",
      "maxLength": 10000,
      "maxGraphemes": 1000
    },
    "cid": {
      "type": "string",
      "format": "cid"
    },
    "playlist": {
      "type": "string",
      "format": "uri"
    },
    "thumbnail": {
      "type": "string",
      "format": "uri"
    },
    "aspectRatio": {
      "ref": "app.bsky.embed.defs#aspectRatio",
      "type": "ref"
    }
  }
}

Lexicon Garden

@