# social.agent.delegation.revocation

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

## Description

Explicit revocation of a delegation grant. Lives on the grantor's (human's) PDS. Separate record to preserve provenance chain.

## Links

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

## Definitions

### `social.agent.delegation.revocation`

**Type**: `record`

**Key**: `tid`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `reason` | `string` | No |  |
| `revokedAt` | `string` (datetime) | Yes |  |
| `delegation` | `string` (at-uri) | Yes | AT-URI of the social.agent.delegation.grant being revoked |

## Raw Schema

```json
{
  "id": "social.agent.delegation.revocation",
  "defs": {
    "main": {
      "key": "tid",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "delegation",
          "revokedAt"
        ],
        "properties": {
          "reason": {
            "type": "string",
            "maxLength": 1000
          },
          "revokedAt": {
            "type": "string",
            "format": "datetime"
          },
          "delegation": {
            "type": "string",
            "format": "at-uri",
            "description": "AT-URI of the social.agent.delegation.grant being revoked"
          }
        }
      }
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1,
  "description": "Explicit revocation of a delegation grant. Lives on the grantor's (human's) PDS. Separate record to preserve provenance chain."
}
```
