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

app.bsky.embed.images

bsky-lexicons.bsky.social

Documentation

main object

Properties

images array of ref#image Required

No description provided.

maxLength: 4 bytes
View raw schema
{
  "type": "object",
  "required": [
    "images"
  ],
  "properties": {
    "images": {
      "type": "array",
      "items": {
        "ref": "#image",
        "type": "ref"
      },
      "maxLength": 4
    }
  }
}
image object

Properties

alt string Required

Alt text description of the image, for accessibility.

image blob Required

No description provided.

maxSize: 1.0 MB
View raw schema
{
  "type": "object",
  "required": [
    "image",
    "alt"
  ],
  "properties": {
    "alt": {
      "type": "string",
      "description": "Alt text description of the image, for accessibility."
    },
    "image": {
      "type": "blob",
      "accept": [
        "image/*"
      ],
      "maxSize": 1000000
    },
    "aspectRatio": {
      "ref": "app.bsky.embed.defs#aspectRatio",
      "type": "ref"
    }
  }
}
view object

Properties

images array of ref#viewImage Required

No description provided.

maxLength: 4 bytes
View raw schema
{
  "type": "object",
  "required": [
    "images"
  ],
  "properties": {
    "images": {
      "type": "array",
      "items": {
        "ref": "#viewImage",
        "type": "ref"
      },
      "maxLength": 4
    }
  }
}
viewImage object

Properties

alt string Required

Alt text description of the image, for accessibility.

fullsize string uri Required

Fully-qualified URL where a large version of the image can be fetched. May or may not be the exact original blob. For example, CDN location provided by the App View.

thumb string uri Required

Fully-qualified URL where a thumbnail of the image can be fetched. For example, CDN location provided by the App View.

View raw schema
{
  "type": "object",
  "required": [
    "thumb",
    "fullsize",
    "alt"
  ],
  "properties": {
    "alt": {
      "type": "string",
      "description": "Alt text description of the image, for accessibility."
    },
    "thumb": {
      "type": "string",
      "format": "uri",
      "description": "Fully-qualified URL where a thumbnail of the image can be fetched. For example, CDN location provided by the App View."
    },
    "fullsize": {
      "type": "string",
      "format": "uri",
      "description": "Fully-qualified URL where a large version of the image can be fetched. May or may not be the exact original blob. For example, CDN location provided by the App View."
    },
    "aspectRatio": {
      "ref": "app.bsky.embed.defs#aspectRatio",
      "type": "ref"
    }
  }
}

Lexicon Garden

@