# parts.page.mention.service

> 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.service)
- [Documentation](https://lexicon.garden/lexicon/did:plc:de2gzyliybvjo4bfvu4i54de/parts.page.mention.service/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:de2gzyliybvjo4bfvu4i54de/parts.page.mention.service/examples)

## Definitions

### `parts.page.mention.service`

**Type**: `record`

Declares a mention service. The did is an XRPC service URL that implements parts.page.mention.searchService.

**Key**: `any`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `did` | `string` (did) | Yes | DID of the service that implements parts.page.mention.searchService |
| `name` | `string` | Yes |  |
| `description` | `string` | No |  |

## Raw Schema

```json
{
  "id": "parts.page.mention.service",
  "defs": {
    "main": {
      "key": "any",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "name",
          "did"
        ],
        "properties": {
          "did": {
            "type": "string",
            "format": "did",
            "description": "DID of the service that implements parts.page.mention.searchService"
          },
          "name": {
            "type": "string",
            "maxLength": 200
          },
          "description": {
            "type": "string",
            "maxLength": 2000
          }
        }
      },
      "description": "Declares a mention service. The did is an XRPC service URL that implements parts.page.mention.searchService."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
