# app.tempomusic.embed.images

> Published by [lexicons.tempomusic.fan](https://lexicon.garden/identity/did:plc:pxsuqmultto34oks44m2lgxm)

✓ This is the authoritative definition for this NSID.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:pxsuqmultto34oks44m2lgxm/app.tempomusic.embed.images)
- [Documentation](https://lexicon.garden/lexicon/did:plc:pxsuqmultto34oks44m2lgxm/app.tempomusic.embed.images/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:pxsuqmultto34oks44m2lgxm/app.tempomusic.embed.images/examples)

## Definitions

### `app.tempomusic.embed.images`

**Type**: `object`

Image embed. Currently limited to one image per post; maxLength may be increased in future versions without breaking existing records.

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `images` | `array` | Yes |  |

### `app.tempomusic.embed.images#image`

**Type**: `object`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `alt` | `string` | Yes | Alt-text describing the image content for accessibility. Required. |
| `image` | `blob` | Yes |  |
| `aspectRatio` | `ref` → `app.tempomusic.embed.defs#aspectRatio` | No |  |

## Raw Schema

```json
{
  "id": "app.tempomusic.embed.images",
  "defs": {
    "main": {
      "type": "object",
      "required": [
        "images"
      ],
      "properties": {
        "images": {
          "type": "array",
          "items": {
            "ref": "#image",
            "type": "ref"
          },
          "maxLength": 1
        }
      },
      "description": "Image embed. Currently limited to one image per post; maxLength may be increased in future versions without breaking existing records."
    },
    "image": {
      "type": "object",
      "required": [
        "image",
        "alt"
      ],
      "properties": {
        "alt": {
          "type": "string",
          "maxLength": 10000,
          "description": "Alt-text describing the image content for accessibility. Required.",
          "maxGraphemes": 1000
        },
        "image": {
          "type": "blob",
          "accept": [
            "image/png",
            "image/jpeg",
            "image/webp"
          ],
          "maxSize": 1000000
        },
        "aspectRatio": {
          "ref": "app.tempomusic.embed.defs#aspectRatio",
          "type": "ref"
        }
      }
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
