# dev.cartridge.graph.verification

> Published by [cartridge.dev](https://lexicon.garden/identity/did:plc:4mrwcmxk266itsdn33leqljq)

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:4mrwcmxk266itsdn33leqljq/dev.cartridge.graph.verification)
- [Documentation](https://lexicon.garden/lexicon/did:plc:4mrwcmxk266itsdn33leqljq/dev.cartridge.graph.verification/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:4mrwcmxk266itsdn33leqljq/dev.cartridge.graph.verification/examples)

## Definitions

### `dev.cartridge.graph.verification`

**Type**: `record`

A Cartridge-specific verification record for studios, developers, and publishers. Written by the Cartridge verifier account.

**Key**: `tid`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `handle` | `string` (handle) | Yes | Handle of the verified account at time of verification. |
| `subject` | `string` (did) | Yes | DID of the verified account. |
| `createdAt` | `string` (datetime) | Yes |  |
| `accountType` | `string` | Yes | Type of verified account. |
| `displayName` | `string` | Yes | Display name at time of verification. |

## Raw Schema

```json
{
  "id": "dev.cartridge.graph.verification",
  "defs": {
    "main": {
      "key": "tid",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "subject",
          "handle",
          "displayName",
          "accountType",
          "createdAt"
        ],
        "properties": {
          "handle": {
            "type": "string",
            "format": "handle",
            "description": "Handle of the verified account at time of verification."
          },
          "subject": {
            "type": "string",
            "format": "did",
            "description": "DID of the verified account."
          },
          "createdAt": {
            "type": "string",
            "format": "datetime"
          },
          "accountType": {
            "type": "string",
            "description": "Type of verified account.",
            "knownValues": [
              "studio",
              "developer",
              "publisher"
            ]
          },
          "displayName": {
            "type": "string",
            "description": "Display name at time of verification."
          }
        }
      },
      "description": "A Cartridge-specific verification record for studios, developers, and publishers. Written by the Cartridge verifier account."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
