# world.ptah.temp.declaration

> Published by [ptah.world](https://lexicon.garden/identity/did:plc:l45z35sxxjuobp5q65a5vu22)

✓ This is the authoritative definition for this NSID.

## Description

A signaling record indicating that an account is participating in The Ptah Protocol. One per account, fixed record key. The AppView uses this record to discover and enumerate participating accounts across the network.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:l45z35sxxjuobp5q65a5vu22/world.ptah.temp.declaration)
- [Documentation](https://lexicon.garden/lexicon/did:plc:l45z35sxxjuobp5q65a5vu22/world.ptah.temp.declaration/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:l45z35sxxjuobp5q65a5vu22/world.ptah.temp.declaration/examples)

## Definitions

### `world.ptah.temp.declaration`

**Type**: `record`

Declaration of participation in The Ptah Protocol. Create this record to signal that your account is active in the Ptah ecosystem. Delete it to deactivate.

**Key**: `literal:self`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `createdAt` | `string` (datetime) | Yes | Timestamp of when this account first declared participation. |
| `description` | `string` | No | Short description of the participant's role or interests in the Ptah ecosystem. |
| `displayName` | `string` | No | Human-readable name for this participant. Not a character name — the person behind the characters. |

## Raw Schema

```json
{
  "id": "world.ptah.temp.declaration",
  "defs": {
    "main": {
      "key": "literal:self",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "createdAt"
        ],
        "properties": {
          "createdAt": {
            "type": "string",
            "format": "datetime",
            "description": "Timestamp of when this account first declared participation."
          },
          "description": {
            "type": "string",
            "maxLength": 2560,
            "description": "Short description of the participant's role or interests in the Ptah ecosystem.",
            "maxGraphemes": 256
          },
          "displayName": {
            "type": "string",
            "maxLength": 640,
            "description": "Human-readable name for this participant. Not a character name — the person behind the characters.",
            "maxGraphemes": 64
          }
        }
      },
      "description": "Declaration of participation in The Ptah Protocol. Create this record to signal that your account is active in the Ptah ecosystem. Delete it to deactivate."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1,
  "description": "A signaling record indicating that an account is participating in The Ptah Protocol. One per account, fixed record key. The AppView uses this record to discover and enumerate participating accounts across the network."
}
```
