# wiki.lichen.memberRequest

> Published by [lichen.wiki](https://lexicon.garden/identity/did:plc:xfs42pjf3n7imvgrdrp7xvez)

✓ This is the authoritative definition for this NSID.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:xfs42pjf3n7imvgrdrp7xvez/wiki.lichen.memberRequest)
- [Documentation](https://lexicon.garden/lexicon/did:plc:xfs42pjf3n7imvgrdrp7xvez/wiki.lichen.memberRequest/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:xfs42pjf3n7imvgrdrp7xvez/wiki.lichen.memberRequest/examples)

## Definitions

### `wiki.lichen.memberRequest`

**Type**: `record`

A request to join a wiki.

**Key**: `tid`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `wikiRef` | `string` (at-uri) | Yes | AT-URI of the wiki the user wants to join. |
| `createdAt` | `string` (datetime) | Yes | When the request was made. |

## Raw Schema

```json
{
  "id": "wiki.lichen.memberRequest",
  "defs": {
    "main": {
      "key": "tid",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "wikiRef",
          "createdAt"
        ],
        "properties": {
          "wikiRef": {
            "type": "string",
            "format": "at-uri",
            "description": "AT-URI of the wiki the user wants to join."
          },
          "createdAt": {
            "type": "string",
            "format": "datetime",
            "description": "When the request was made."
          }
        }
      },
      "description": "A request to join a wiki."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
