# app.standard-reader.subscribeLabeler

> 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.subscribeLabeler)
- [Documentation](https://lexicon.garden/lexicon/did:plc:f4os2wz5fjl56xpwcvtnqu7m/app.standard-reader.subscribeLabeler/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:f4os2wz5fjl56xpwcvtnqu7m/app.standard-reader.subscribeLabeler/examples)

## Definitions

### `app.standard-reader.subscribeLabeler`

**Type**: `procedure`

Subscribe the calling reader to a labeler service (writes an app.standard-reader.labeler.subscription record to their repo; legacy readers may still have an app.standard-reader.labelerSubscription record, which is migrated on next subscribe).

#### Input

**Encoding**: `application/json`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `labeler` | `string` (did) | Yes | DID of the labeler to subscribe to. |

#### Output

**Encoding**: `application/json`

| Property | Type | Required | Description |
|----------|------|----------|-------------|

## Raw Schema

```json
{
  "id": "app.standard-reader.subscribeLabeler",
  "defs": {
    "main": {
      "type": "procedure",
      "input": {
        "schema": {
          "type": "object",
          "required": [
            "labeler"
          ],
          "properties": {
            "labeler": {
              "type": "string",
              "format": "did",
              "description": "DID of the labeler to subscribe to."
            }
          }
        },
        "encoding": "application/json"
      },
      "output": {
        "schema": {
          "type": "object",
          "properties": {}
        },
        "encoding": "application/json"
      },
      "description": "Subscribe the calling reader to a labeler service (writes an app.standard-reader.labeler.subscription record to their repo; legacy readers may still have an app.standard-reader.labelerSubscription record, which is migrated on next subscribe)."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
