# site.exosphere.moderation

> Published by [exosphere.site](https://lexicon.garden/identity/did:plc:tztfs5zp6b4feo4u64adfvmq)

✓ This is the authoritative definition for this NSID.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:tztfs5zp6b4feo4u64adfvmq/site.exosphere.moderation)
- [Documentation](https://lexicon.garden/lexicon/did:plc:tztfs5zp6b4feo4u64adfvmq/site.exosphere.moderation/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:tztfs5zp6b4feo4u64adfvmq/site.exosphere.moderation/examples)

## Definitions

### `site.exosphere.moderation`

**Type**: `record`

A moderation action taken by a Sphere admin/owner. Published on the moderator's PDS.

**Key**: `tid`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `action` | `string` | Yes |  |
| `sphere` | `string` (at-uri) | Yes | AT URI of the Sphere. |
| `subject` | `string` (at-uri) | Yes | AT URI of the content being moderated. |

## Raw Schema

```json
{
  "id": "site.exosphere.moderation",
  "defs": {
    "main": {
      "key": "tid",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "sphere",
          "subject",
          "action"
        ],
        "properties": {
          "action": {
            "type": "string",
            "maxLength": 128,
            "knownValues": [
              "remove"
            ]
          },
          "sphere": {
            "type": "string",
            "format": "at-uri",
            "description": "AT URI of the Sphere."
          },
          "subject": {
            "type": "string",
            "format": "at-uri",
            "description": "AT URI of the content being moderated."
          }
        }
      },
      "description": "A moderation action taken by a Sphere admin/owner. Published on the moderator's PDS."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
