# monster.attest.verification

> Published by [attest.attest.monster](https://lexicon.garden/identity/did:plc:tqeqvx3hcgzg5uvgogwkm7lk)

✓ This is the authoritative definition for this NSID.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:tqeqvx3hcgzg5uvgogwkm7lk/monster.attest.verification)
- [Documentation](https://lexicon.garden/lexicon/did:plc:tqeqvx3hcgzg5uvgogwkm7lk/monster.attest.verification/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:tqeqvx3hcgzg5uvgogwkm7lk/monster.attest.verification/examples)

## Definitions

### `monster.attest.verification`

**Type**: `record`

A verifier's statement that it checked a claim and found the proof token in place. Issued by any account, including the attest service's own; trusted as far as the verifier is.

**Key**: `tid`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `claim` | `ref` → `com.atproto.repo.strongRef` | Yes | The claim record checked. |
| `target` | `string` | Yes | The claim's target, repeated so the verification reads alone. |
| `evidence` | `string` (uri) | Yes | Where the token was found. |
| `createdAt` | `string` (datetime) | Yes | Client-declared time of the statement. |
| `signatures` | `ref` → `app.certified.signature.defs#list` | No | Inline signatures per the ATProtocol Attestation Specification; attest requires one from the author's device key (did:key, delegated from their passkey). |

## Raw Schema

```json
{
  "id": "monster.attest.verification",
  "defs": {
    "main": {
      "key": "tid",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "claim",
          "target",
          "evidence",
          "createdAt"
        ],
        "properties": {
          "claim": {
            "ref": "com.atproto.repo.strongRef",
            "type": "ref",
            "description": "The claim record checked."
          },
          "target": {
            "type": "string",
            "maxLength": 2048,
            "description": "The claim's target, repeated so the verification reads alone."
          },
          "evidence": {
            "type": "string",
            "format": "uri",
            "maxLength": 2048,
            "description": "Where the token was found."
          },
          "createdAt": {
            "type": "string",
            "format": "datetime",
            "description": "Client-declared time of the statement."
          },
          "signatures": {
            "ref": "app.certified.signature.defs#list",
            "type": "ref",
            "description": "Inline signatures per the ATProtocol Attestation Specification; attest requires one from the author's device key (did:key, delegated from their passkey)."
          }
        }
      },
      "description": "A verifier's statement that it checked a claim and found the proof token in place. Issued by any account, including the attest service's own; trusted as far as the verifier is."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
