# art.cllctv.block.image

> Published by [cllctv.art](https://lexicon.garden/identity/did:plc:gqpqghnqiowg5424adjwmhmg)

✓ This is the authoritative definition for this NSID.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:gqpqghnqiowg5424adjwmhmg/art.cllctv.block.image)
- [Documentation](https://lexicon.garden/lexicon/did:plc:gqpqghnqiowg5424adjwmhmg/art.cllctv.block.image/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:gqpqghnqiowg5424adjwmhmg/art.cllctv.block.image/examples)

## Definitions

### `art.cllctv.block.image`

**Type**: `object`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `alt` | `string` | No |  |
| `image` | `blob` | Yes |  |
| `caption` | `string` | No |  |
| `imageHash` | `string` | No |  |
| `aspectRatio` | `ref` → `#aspectRatio` | Yes |  |

### `art.cllctv.block.image#aspectRatio`

**Type**: `object`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `width` | `integer` | Yes |  |
| `height` | `integer` | Yes |  |

## Raw Schema

```json
{
  "id": "art.cllctv.block.image",
  "defs": {
    "main": {
      "type": "object",
      "required": [
        "image",
        "aspectRatio"
      ],
      "properties": {
        "alt": {
          "type": "string"
        },
        "image": {
          "type": "blob",
          "accept": [
            "image/*"
          ],
          "maxSize": 10000000
        },
        "caption": {
          "type": "string",
          "maxLength": 500,
          "maxGraphemes": 50
        },
        "imageHash": {
          "type": "string",
          "maxLength": 640,
          "maxGraphemes": 64
        },
        "aspectRatio": {
          "ref": "#aspectRatio",
          "type": "ref"
        }
      }
    },
    "aspectRatio": {
      "type": "object",
      "required": [
        "width",
        "height"
      ],
      "properties": {
        "width": {
          "type": "integer"
        },
        "height": {
          "type": "integer"
        }
      }
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
