# am.noz.atgallery.account

> Published by [noz.am](https://lexicon.garden/identity/did:plc:lmkzmvv6sdxntwtyxpg7fqqq)

✓ This is the authoritative definition for this NSID.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:lmkzmvv6sdxntwtyxpg7fqqq/am.noz.atgallery.account)
- [Documentation](https://lexicon.garden/lexicon/did:plc:lmkzmvv6sdxntwtyxpg7fqqq/am.noz.atgallery.account/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:lmkzmvv6sdxntwtyxpg7fqqq/am.noz.atgallery.account/examples)

## Definitions

### `am.noz.atgallery.account`

**Type**: `record`

A public self-declaration record for an account using ATGallery.

**Key**: `literal:self`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `client` | `string` | No |  |
| `blobCount` | `integer` | No |  |
| `createdAt` | `string` (datetime) | Yes |  |
| `updatedAt` | `string` (datetime) | No |  |
| `totalBytes` | `integer` | No |  |
| `formatVersion` | `integer` | Yes |  |

## Raw Schema

```json
{
  "id": "am.noz.atgallery.account",
  "defs": {
    "main": {
      "key": "literal:self",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "formatVersion",
          "createdAt"
        ],
        "properties": {
          "client": {
            "type": "string",
            "maxLength": 100
          },
          "blobCount": {
            "type": "integer",
            "minimum": 0
          },
          "createdAt": {
            "type": "string",
            "format": "datetime"
          },
          "updatedAt": {
            "type": "string",
            "format": "datetime"
          },
          "totalBytes": {
            "type": "integer",
            "minimum": 0
          },
          "formatVersion": {
            "type": "integer",
            "const": 1
          }
        }
      },
      "description": "A public self-declaration record for an account using ATGallery."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
