# tools.ozone.setting.defs

> Published by [ozone-lexicons.bsky.social](https://lexicon.garden/identity/did:plc:33dt5kftu3jq2h5h4jjlqezt)

✓ This is the authoritative definition for this NSID.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:33dt5kftu3jq2h5h4jjlqezt/tools.ozone.setting.defs)
- [Documentation](https://lexicon.garden/lexicon/did:plc:33dt5kftu3jq2h5h4jjlqezt/tools.ozone.setting.defs/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:33dt5kftu3jq2h5h4jjlqezt/tools.ozone.setting.defs/examples)

## Definitions

### `tools.ozone.setting.defs#option`

**Type**: `object`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `did` | `string` (did) | Yes |  |
| `key` | `string` (nsid) | Yes |  |
| `scope` | `string` | Yes |  |
| `value` | `unknown` | Yes |  |
| `createdAt` | `string` (datetime) | No |  |
| `createdBy` | `string` (did) | Yes |  |
| `updatedAt` | `string` (datetime) | No |  |
| `description` | `string` | No |  |
| `managerRole` | `string` | No |  |
| `lastUpdatedBy` | `string` (did) | Yes |  |

## Raw Schema

```json
{
  "id": "tools.ozone.setting.defs",
  "defs": {
    "option": {
      "type": "object",
      "required": [
        "key",
        "value",
        "did",
        "scope",
        "createdBy",
        "lastUpdatedBy"
      ],
      "properties": {
        "did": {
          "type": "string",
          "format": "did"
        },
        "key": {
          "type": "string",
          "format": "nsid"
        },
        "scope": {
          "type": "string",
          "knownValues": [
            "instance",
            "personal"
          ]
        },
        "value": {
          "type": "unknown"
        },
        "createdAt": {
          "type": "string",
          "format": "datetime"
        },
        "createdBy": {
          "type": "string",
          "format": "did"
        },
        "updatedAt": {
          "type": "string",
          "format": "datetime"
        },
        "description": {
          "type": "string",
          "maxLength": 10240,
          "maxGraphemes": 1024
        },
        "managerRole": {
          "type": "string",
          "knownValues": [
            "tools.ozone.team.defs#roleModerator",
            "tools.ozone.team.defs#roleTriage",
            "tools.ozone.team.defs#roleAdmin",
            "tools.ozone.team.defs#roleVerifier"
          ]
        },
        "lastUpdatedBy": {
          "type": "string",
          "format": "did"
        }
      }
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
