# place.stream.moderation.defs

> Published by [did:web:stream.place](https://lexicon.garden/identity/did:web:stream.place)

✓ This is the authoritative definition for this NSID.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:web:stream.place/place.stream.moderation.defs)
- [Documentation](https://lexicon.garden/lexicon/did:web:stream.place/place.stream.moderation.defs/docs)
- [Examples](https://lexicon.garden/lexicon/did:web:stream.place/place.stream.moderation.defs/examples)

## Definitions

### `place.stream.moderation.defs#permissionView`

**Type**: `object`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `cid` | `string` (cid) | Yes | Content identifier of the permission record |
| `uri` | `string` (at-uri) | Yes | AT-URI of the permission record |
| `author` | `ref` → `app.bsky.actor.defs#profileViewBasic` | Yes | The streamer who granted these permissions |
| `record` | `unknown` | Yes | The permission record itself |

## Raw Schema

```json
{
  "id": "place.stream.moderation.defs",
  "defs": {
    "permissionView": {
      "type": "object",
      "required": [
        "uri",
        "cid",
        "author",
        "record"
      ],
      "properties": {
        "cid": {
          "type": "string",
          "format": "cid",
          "description": "Content identifier of the permission record"
        },
        "uri": {
          "type": "string",
          "format": "at-uri",
          "description": "AT-URI of the permission record"
        },
        "author": {
          "ref": "app.bsky.actor.defs#profileViewBasic",
          "type": "ref",
          "description": "The streamer who granted these permissions"
        },
        "record": {
          "type": "unknown",
          "description": "The permission record itself"
        }
      }
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
