# dev.kanad.lexicon-test-2026-02-26.exampleCatLexicon

> Published by [kanad.dev](https://lexicon.garden/identity/did:plc:cihwvfp5mwvk2n46fddi25qv)

✓ This is the authoritative definition for this NSID.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:cihwvfp5mwvk2n46fddi25qv/dev.kanad.lexicon-test-2026-02-26.exampleCatLexicon)
- [Documentation](https://lexicon.garden/lexicon/did:plc:cihwvfp5mwvk2n46fddi25qv/dev.kanad.lexicon-test-2026-02-26.exampleCatLexicon/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:cihwvfp5mwvk2n46fddi25qv/dev.kanad.lexicon-test-2026-02-26.exampleCatLexicon/examples)

## Definitions

### `dev.kanad.lexicon-test-2026-02-26.exampleCatLexicon`

**Type**: `record`

some example cat lexicon

**Key**: `any`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `name` | `string` | Yes | cat name |
| `avatar` | `blob` | No | picture of the cat |
| `createdAt` | `string` (datetime) | Yes |  |

## Raw Schema

```json
{
  "id": "dev.kanad.lexicon-test-2026-02-26.exampleCatLexicon",
  "defs": {
    "main": {
      "key": "any",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "name",
          "createdAt"
        ],
        "properties": {
          "name": {
            "type": "string",
            "maxLength": 640,
            "minLength": 1,
            "description": "cat name",
            "maxGraphemes": 64
          },
          "avatar": {
            "type": "blob",
            "accept": [
              "image/png",
              "image/jpeg"
            ],
            "maxSize": 2000000,
            "description": "picture of the cat"
          },
          "createdAt": {
            "type": "string",
            "format": "datetime"
          }
        }
      },
      "description": "some example cat lexicon"
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
