# cloud.substratum.passport.accessRemovalRequest

> Published by [official.fileorbit.cloud](https://lexicon.garden/identity/did:plc:s6kq5tsir7nbyrciloncz5b3)

✓ This is the authoritative definition for this NSID.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:s6kq5tsir7nbyrciloncz5b3/cloud.substratum.passport.accessRemovalRequest)
- [Documentation](https://lexicon.garden/lexicon/did:plc:s6kq5tsir7nbyrciloncz5b3/cloud.substratum.passport.accessRemovalRequest/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:s6kq5tsir7nbyrciloncz5b3/cloud.substratum.passport.accessRemovalRequest/examples)

## Definitions

### `cloud.substratum.passport.accessRemovalRequest`

**Type**: `object`

Grantee-signed request to revoke their own access to an asset governed by an owner-repo passport receipt.

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `version` | `string` | Yes | Schema version (e.g. '1.0.0'). |
| `assetCid` | `string` | Yes | Content Identifier of the asset whose access is being revoked. |
| `ownerDid` | `string` (did) | Yes | DID of the file owner whose passport receipt governs the asset. |
| `granteeDid` | `string` (did) | Yes | DID of the grantee requesting removal (must match the repo author). |
| `receiptUri` | `string` (at-uri) | Yes | AT URI of the owner-repo cloud.substratum.passport.receipt record. |
| `requestedAt` | `string` (datetime) | Yes | ISO 8601 timestamp when the grantee requested removal. |

## Raw Schema

```json
{
  "id": "cloud.substratum.passport.accessRemovalRequest",
  "defs": {
    "main": {
      "type": "object",
      "required": [
        "version",
        "granteeDid",
        "ownerDid",
        "assetCid",
        "receiptUri",
        "requestedAt"
      ],
      "properties": {
        "version": {
          "type": "string",
          "description": "Schema version (e.g. '1.0.0')."
        },
        "assetCid": {
          "type": "string",
          "description": "Content Identifier of the asset whose access is being revoked."
        },
        "ownerDid": {
          "type": "string",
          "format": "did",
          "description": "DID of the file owner whose passport receipt governs the asset."
        },
        "granteeDid": {
          "type": "string",
          "format": "did",
          "description": "DID of the grantee requesting removal (must match the repo author)."
        },
        "receiptUri": {
          "type": "string",
          "format": "at-uri",
          "description": "AT URI of the owner-repo cloud.substratum.passport.receipt record."
        },
        "requestedAt": {
          "type": "string",
          "format": "datetime",
          "description": "ISO 8601 timestamp when the grantee requested removal."
        }
      },
      "description": "Grantee-signed request to revoke their own access to an asset governed by an owner-repo passport receipt."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
