# com.babesky.graph.verification

> Published by [babesky.com](https://lexicon.garden/identity/did:plc:qtapiembzpxlzsiagnc7eyy3)

✓ This is the authoritative definition for this NSID.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:qtapiembzpxlzsiagnc7eyy3/com.babesky.graph.verification)
- [Documentation](https://lexicon.garden/lexicon/did:plc:qtapiembzpxlzsiagnc7eyy3/com.babesky.graph.verification/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:qtapiembzpxlzsiagnc7eyy3/com.babesky.graph.verification/examples)

## Definitions

### `com.babesky.graph.verification`

**Type**: `record`

A verified creator attestation issued by Babesky. Records are written by Babesky's service DID (did:plc:qtapiembzpxlzsiagnc7eyy3) into its own repository, pointing at the subject's DID. Validity is dynamic: the handle and displayName must still match the subject's current values. Records must be deleted when a creator is removed from Babesky's database.

**Key**: `tid`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `handle` | `string` (handle) | Yes | Handle of the creator at time of verification. Used for ongoing validity checks. |
| `subject` | `string` (did) | Yes | DID of the verified creator. |
| `createdAt` | `string` (datetime) | Yes |  |
| `displayName` | `string` | Yes | Display name of the creator at time of verification. Used for ongoing validity checks. |

## Raw Schema

```json
{
  "id": "com.babesky.graph.verification",
  "defs": {
    "main": {
      "key": "tid",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "subject",
          "handle",
          "displayName",
          "createdAt"
        ],
        "properties": {
          "handle": {
            "type": "string",
            "format": "handle",
            "description": "Handle of the creator at time of verification. Used for ongoing validity checks."
          },
          "subject": {
            "type": "string",
            "format": "did",
            "description": "DID of the verified creator."
          },
          "createdAt": {
            "type": "string",
            "format": "datetime"
          },
          "displayName": {
            "type": "string",
            "description": "Display name of the creator at time of verification. Used for ongoing validity checks.",
            "maxGraphemes": 64
          }
        }
      },
      "description": "A verified creator attestation issued by Babesky. Records are written by Babesky's service DID (did:plc:qtapiembzpxlzsiagnc7eyy3) into its own repository, pointing at the subject's DID. Validity is dynamic: the handle and displayName must still match the subject's current values. Records must be deleted when a creator is removed from Babesky's database."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
