# is.currents.content.image

> Published by [currents.is](https://lexicon.garden/identity/did:plc:jaur46k6ijyfvl4lojza7eic)

✓ This is the authoritative definition for this NSID.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:jaur46k6ijyfvl4lojza7eic/is.currents.content.image)
- [Documentation](https://lexicon.garden/lexicon/did:plc:jaur46k6ijyfvl4lojza7eic/is.currents.content.image/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:jaur46k6ijyfvl4lojza7eic/is.currents.content.image/examples)

## Definitions

### `is.currents.content.image`

**Type**: `object`

An image content payload for a save.

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `image` | `blob` | Yes | Image blob referenced by this content item. |
| `attribution` | `ref` → `is.currents.content.defs#attribution` | No | Optional provenance metadata for the image. |

## Raw Schema

```json
{
  "id": "is.currents.content.image",
  "defs": {
    "main": {
      "type": "object",
      "required": [
        "image"
      ],
      "properties": {
        "image": {
          "type": "blob",
          "accept": [
            "image/*"
          ],
          "maxSize": 20000000,
          "description": "Image blob referenced by this content item."
        },
        "attribution": {
          "ref": "is.currents.content.defs#attribution",
          "type": "ref",
          "description": "Optional provenance metadata for the image."
        }
      },
      "description": "An image content payload for a save."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
