# parts.page.mention.config

> Published by [page.parts](https://lexicon.garden/identity/did:plc:de2gzyliybvjo4bfvu4i54de)

✓ This is the authoritative definition for this NSID.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:de2gzyliybvjo4bfvu4i54de/parts.page.mention.config)
- [Documentation](https://lexicon.garden/lexicon/did:plc:de2gzyliybvjo4bfvu4i54de/parts.page.mention.config/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:de2gzyliybvjo4bfvu4i54de/parts.page.mention.config/examples)

## Definitions

### `parts.page.mention.config`

**Type**: `record`

User's configured mention services. Singleton record per user.

**Key**: `literal:self`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `services` | `array` | Yes | AT URIs of parts.page.mention.service records the user has enabled |

## Raw Schema

```json
{
  "id": "parts.page.mention.config",
  "defs": {
    "main": {
      "key": "literal:self",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "services"
        ],
        "properties": {
          "services": {
            "type": "array",
            "items": {
              "type": "string",
              "format": "at-uri"
            },
            "maxLength": 50,
            "description": "AT URIs of parts.page.mention.service records the user has enabled"
          }
        }
      },
      "description": "User's configured mention services. Singleton record per user."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
