# app.chavatar.avatar

> Published by [chavatar.app](https://lexicon.garden/identity/did:web:chavatar.app)

✓ This is the authoritative definition for this NSID.

## Description

An image used for automatic avatar rotation.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:web:chavatar.app/app.chavatar.avatar)
- [Documentation](https://lexicon.garden/lexicon/did:web:chavatar.app/app.chavatar.avatar/docs)
- [Examples](https://lexicon.garden/lexicon/did:web:chavatar.app/app.chavatar.avatar/examples)

## Definitions

### `app.chavatar.avatar`

**Type**: `record`

An individual avatar image record.

**Key**: `tid`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `avatar` | `blob` | Yes |  |
| `createdAt` | `string` (datetime) | Yes |  |

## Raw Schema

```json
{
  "id": "app.chavatar.avatar",
  "defs": {
    "main": {
      "key": "tid",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "avatar",
          "createdAt"
        ],
        "properties": {
          "avatar": {
            "type": "blob",
            "accept": [
              "image/png",
              "image/jpeg",
              "image/webp"
            ],
            "maxSize": 1000000
          },
          "createdAt": {
            "type": "string",
            "format": "datetime"
          }
        }
      },
      "description": "An individual avatar image record."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1,
  "description": "An image used for automatic avatar rotation."
}
```
