# app.standard-reader.labeler.defs

> Published by [standard-reader.app](https://lexicon.garden/identity/did:plc:f4os2wz5fjl56xpwcvtnqu7m)

✓ This is the authoritative definition for this NSID.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:f4os2wz5fjl56xpwcvtnqu7m/app.standard-reader.labeler.defs)
- [Documentation](https://lexicon.garden/lexicon/did:plc:f4os2wz5fjl56xpwcvtnqu7m/app.standard-reader.labeler.defs/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:f4os2wz5fjl56xpwcvtnqu7m/app.standard-reader.labeler.defs/examples)

## Definitions

### `app.standard-reader.labeler.defs#labelerView`

**Type**: `object`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `did` | `string` (did) | Yes |  |
| `avatar` | `string` (uri) | No |  |
| `policies` | `ref` → `#labelerPolicies` | No |  |
| `indexedAt` | `string` (datetime) | No |  |
| `description` | `string` | No |  |
| `displayName` | `string` | No |  |

### `app.standard-reader.labeler.defs#labelerPolicies`

**Type**: `object`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `labelValues` | `array` | Yes | The label values which this labeler publishes. May include global or custom (labeler-defined) values. |
| `labelValueDefinitions` | `array` | No | Label values created by this labeler and scoped exclusively to it. Each value provides its own meaning and behaviors. |

## Raw Schema

```json
{
  "id": "app.standard-reader.labeler.defs",
  "defs": {
    "labelerView": {
      "type": "object",
      "required": [
        "did"
      ],
      "properties": {
        "did": {
          "type": "string",
          "format": "did"
        },
        "avatar": {
          "type": "string",
          "format": "uri"
        },
        "policies": {
          "ref": "#labelerPolicies",
          "type": "ref"
        },
        "indexedAt": {
          "type": "string",
          "format": "datetime"
        },
        "description": {
          "type": "string",
          "maxLength": 3000,
          "maxGraphemes": 300
        },
        "displayName": {
          "type": "string",
          "maxLength": 640,
          "maxGraphemes": 64
        }
      }
    },
    "labelerPolicies": {
      "type": "object",
      "required": [
        "labelValues"
      ],
      "properties": {
        "labelValues": {
          "type": "array",
          "items": {
            "ref": "com.atproto.label.defs#labelValue",
            "type": "ref"
          },
          "description": "The label values which this labeler publishes. May include global or custom (labeler-defined) values."
        },
        "labelValueDefinitions": {
          "type": "array",
          "items": {
            "ref": "com.atproto.label.defs#labelValueDefinition",
            "type": "ref"
          },
          "description": "Label values created by this labeler and scoped exclusively to it. Each value provides its own meaning and behaviors."
        }
      }
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
