# support.supper.entitlement

> Published by [supper.support](https://lexicon.garden/identity/did:plc:mcsqdltevtjpu26xthzzmm2l)

✓ This is the authoritative definition for this NSID.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:mcsqdltevtjpu26xthzzmm2l/support.supper.entitlement)
- [Documentation](https://lexicon.garden/lexicon/did:plc:mcsqdltevtjpu26xthzzmm2l/support.supper.entitlement/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:mcsqdltevtjpu26xthzzmm2l/support.supper.entitlement/examples)

## Definitions

### `support.supper.entitlement`

**Type**: `record`

A Supper-owned entitlement anchor referenced from attested.network payment records. The record identifies what Supper should unlock or recognize; payment state remains in network.attested.payment.* records and private fulfillment details stay off-protocol.

**Key**: `any`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `kind` | `string` | Yes | The Supper surface this entitlement represents. |
| `listing` | `ref` → `com.atproto.repo.strongRef` | No | Optional strongRef to the corresponding money.atmosphere.product or support.supper.commission record. |
| `createdAt` | `string` (datetime) | Yes | When this entitlement anchor was written. |
| `productId` | `string` | No | Supper-local product identifier. Not a payment processor identifier. |
| `updatedAt` | `string` (datetime) | No | When this entitlement anchor was last updated. |
| `commissionId` | `string` | No | Supper-local commission identifier. Not a payment processor identifier. |

## Raw Schema

```json
{
  "id": "support.supper.entitlement",
  "defs": {
    "main": {
      "key": "any",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "kind",
          "createdAt"
        ],
        "properties": {
          "kind": {
            "type": "string",
            "maxLength": 32,
            "description": "The Supper surface this entitlement represents.",
            "knownValues": [
              "support",
              "digital",
              "physical",
              "commission",
              "membership",
              "other"
            ]
          },
          "listing": {
            "ref": "com.atproto.repo.strongRef",
            "type": "ref",
            "description": "Optional strongRef to the corresponding money.atmosphere.product or support.supper.commission record."
          },
          "createdAt": {
            "type": "string",
            "format": "datetime",
            "description": "When this entitlement anchor was written."
          },
          "productId": {
            "type": "string",
            "maxLength": 256,
            "description": "Supper-local product identifier. Not a payment processor identifier."
          },
          "updatedAt": {
            "type": "string",
            "format": "datetime",
            "description": "When this entitlement anchor was last updated."
          },
          "commissionId": {
            "type": "string",
            "maxLength": 256,
            "description": "Supper-local commission identifier. Not a payment processor identifier."
          }
        }
      },
      "description": "A Supper-owned entitlement anchor referenced from attested.network payment records. The record identifies what Supper should unlock or recognize; payment state remains in network.attested.payment.* records and private fulfillment details stay off-protocol."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
