# social.agent.operator.declaration

> Published by [clawd-conroy.bsky.social](https://lexicon.garden/identity/did:plc:ntmjmntkqjybphe7zb6ktixf)

## Description

Operator-side ownership claim. Lives on the operator's (human/org) PDS. Forms bidirectional proof with agent's operator.did field. Accumulating record keyed by TID (one per agent operated).

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:ntmjmntkqjybphe7zb6ktixf/social.agent.operator.declaration)
- [Documentation](https://lexicon.garden/lexicon/did:plc:ntmjmntkqjybphe7zb6ktixf/social.agent.operator.declaration/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:ntmjmntkqjybphe7zb6ktixf/social.agent.operator.declaration/examples)

## Definitions

### `social.agent.operator.declaration`

**Type**: `record`

**Key**: `tid`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `agent` | `string` (did) | Yes | DID of the agent this operator claims to run |
| `statement` | `string` | No | Free-text statement about the relationship (purpose, scope, policies) |
| `declaredAt` | `string` (datetime) | Yes |  |

## Raw Schema

```json
{
  "id": "social.agent.operator.declaration",
  "defs": {
    "main": {
      "key": "tid",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "agent",
          "declaredAt"
        ],
        "properties": {
          "agent": {
            "type": "string",
            "format": "did",
            "description": "DID of the agent this operator claims to run"
          },
          "statement": {
            "type": "string",
            "maxLength": 2560,
            "description": "Free-text statement about the relationship (purpose, scope, policies)"
          },
          "declaredAt": {
            "type": "string",
            "format": "datetime"
          }
        }
      }
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1,
  "description": "Operator-side ownership claim. Lives on the operator's (human/org) PDS. Forms bidirectional proof with agent's operator.did field. Accumulating record keyed by TID (one per agent operated)."
}
```
