# at.mapped.member

> Published by [mapped.at](https://lexicon.garden/identity/did:plc:l5m5nuh5cvdatyn5fjxar2sh)

✓ This is the authoritative definition for this NSID.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:l5m5nuh5cvdatyn5fjxar2sh/at.mapped.member)
- [Documentation](https://lexicon.garden/lexicon/did:plc:l5m5nuh5cvdatyn5fjxar2sh/at.mapped.member/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:l5m5nuh5cvdatyn5fjxar2sh/at.mapped.member/examples)

## Definitions

### `at.mapped.member`

**Type**: `record`

A registered mapped.at member. Stored on the service account repo.

**Key**: `tid`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `did` | `string` | Yes | The member's DID |
| `joinedAt` | `string` (datetime) | Yes | When the member registered |

## Raw Schema

```json
{
  "id": "at.mapped.member",
  "defs": {
    "main": {
      "key": "tid",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "did",
          "joinedAt"
        ],
        "properties": {
          "did": {
            "type": "string",
            "maxLength": 100,
            "description": "The member's DID"
          },
          "joinedAt": {
            "type": "string",
            "format": "datetime",
            "description": "When the member registered"
          }
        }
      },
      "description": "A registered mapped.at member. Stored on the service account repo."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
