# build.clovernight.identity.verification

> Published by [studio.pds.clovernight.build](https://lexicon.garden/identity/did:plc:eylr5g42jkpwyputz3xbgynj)

✓ This is the authoritative definition for this NSID.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:eylr5g42jkpwyputz3xbgynj/build.clovernight.identity.verification)
- [Documentation](https://lexicon.garden/lexicon/did:plc:eylr5g42jkpwyputz3xbgynj/build.clovernight.identity.verification/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:eylr5g42jkpwyputz3xbgynj/build.clovernight.identity.verification/examples)

## Definitions

### `build.clovernight.identity.verification`

**Type**: `record`

Identity verification status record — proves that a DID has been verified by a trusted verifier.

**Key**: `tid`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `status` | `string` | Yes | Verification status. |
| `verifiedAt` | `string` (datetime) | Yes | ISO 8601 timestamp of when verification was performed. |
| `verifierDid` | `string` (did) | Yes | DID of the verifier that issued this verification. |
| `credentialRef` | `string` | No | Reference to the W3C Verifiable Credential (e.g., a JWT or URN). |

## Raw Schema

```json
{
  "id": "build.clovernight.identity.verification",
  "defs": {
    "main": {
      "key": "tid",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "status",
          "verifierDid",
          "verifiedAt"
        ],
        "properties": {
          "status": {
            "type": "string",
            "description": "Verification status.",
            "knownValues": [
              "verified",
              "pending",
              "revoked"
            ]
          },
          "verifiedAt": {
            "type": "string",
            "format": "datetime",
            "description": "ISO 8601 timestamp of when verification was performed."
          },
          "verifierDid": {
            "type": "string",
            "format": "did",
            "description": "DID of the verifier that issued this verification."
          },
          "credentialRef": {
            "type": "string",
            "maxLength": 4096,
            "description": "Reference to the W3C Verifiable Credential (e.g., a JWT or URN)."
          }
        }
      },
      "description": "Identity verification status record — proves that a DID has been verified by a trusted verifier."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
