# monster.attest.statement

> 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.statement)
- [Documentation](https://lexicon.garden/lexicon/did:plc:tqeqvx3hcgzg5uvgogwkm7lk/monster.attest.statement/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:tqeqvx3hcgzg5uvgogwkm7lk/monster.attest.statement/examples)

## Definitions

### `monster.attest.statement`

**Type**: `record`

A signed public statement by the author, optionally about a subject.

**Key**: `tid`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `text` | `string` | Yes |  |
| `subject` | `string` (uri) | No | Optional: what the statement is about. |
| `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.statement",
  "defs": {
    "main": {
      "key": "tid",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "text",
          "createdAt"
        ],
        "properties": {
          "text": {
            "type": "string",
            "maxLength": 16000,
            "maxGraphemes": 4000
          },
          "subject": {
            "type": "string",
            "format": "uri",
            "maxLength": 2048,
            "description": "Optional: what the statement is about."
          },
          "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 signed public statement by the author, optionally about a subject."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
