# am.noz.atgallery.alpha.transferEvent

> 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.alpha.transferEvent)
- [Documentation](https://lexicon.garden/lexicon/did:plc:lmkzmvv6sdxntwtyxpg7fqqq/am.noz.atgallery.alpha.transferEvent/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:lmkzmvv6sdxntwtyxpg7fqqq/am.noz.atgallery.alpha.transferEvent/examples)

## Definitions

### `am.noz.atgallery.alpha.transferEvent`

**Type**: `record`

An advisory immutable transfer event used for rolling client-side quotas.

**Key**: `tid`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `createdAt` | `string` (datetime) | Yes |  |
| `itemCount` | `integer` | Yes |  |
| `operation` | `string` | Yes |  |
| `logicalBytes` | `integer` | Yes |  |
| `formatVersion` | `integer` | Yes |  |
| `blobOperations` | `integer` | Yes |  |

## Raw Schema

```json
{
  "id": "am.noz.atgallery.alpha.transferEvent",
  "defs": {
    "main": {
      "key": "tid",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "formatVersion",
          "operation",
          "logicalBytes",
          "blobOperations",
          "itemCount",
          "createdAt"
        ],
        "properties": {
          "createdAt": {
            "type": "string",
            "format": "datetime"
          },
          "itemCount": {
            "type": "integer",
            "minimum": 0
          },
          "operation": {
            "type": "string",
            "maxLength": 16,
            "knownValues": [
              "ingest",
              "publish"
            ]
          },
          "logicalBytes": {
            "type": "integer",
            "minimum": 0
          },
          "formatVersion": {
            "type": "integer",
            "const": 1
          },
          "blobOperations": {
            "type": "integer",
            "minimum": 0
          }
        }
      },
      "description": "An advisory immutable transfer event used for rolling client-side quotas."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
