# com.derakkuma.circleMember

> Published by [derakkuma.com](https://lexicon.garden/identity/did:plc:4uoc2as443j2fg2f6xfsogqs)

✓ This is the authoritative definition for this NSID.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:4uoc2as443j2fg2f6xfsogqs/com.derakkuma.circleMember)
- [Documentation](https://lexicon.garden/lexicon/did:plc:4uoc2as443j2fg2f6xfsogqs/com.derakkuma.circleMember/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:4uoc2as443j2fg2f6xfsogqs/com.derakkuma.circleMember/examples)

## Definitions

### `com.derakkuma.circleMember`

**Type**: `record`

A member snapshot for a maimai DX circle, optionally resolved to an AT Protocol identity

**Key**: `any`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `icon` | `blob` | No |  |
| `title` | `string` | No |  |
| `points` | `integer` | No |  |
| `rating` | `integer` | No |  |
| `status` | `string` | No |  |
| `profile` | `string` (at-uri) | No | AT URI of the member profile record when this member is resolved to a Derakkuma ATProto profile. |
| `subject` | `string` (did) | No |  |
| `circleKey` | `string` | Yes |  |
| `createdAt` | `string` (datetime) | Yes |  |
| `updatedAt` | `string` (datetime) | No |  |
| `circleCode` | `string` | No |  |
| `observedAt` | `string` (datetime) | No |  |
| `displayName` | `string` | Yes |  |

## Raw Schema

```json
{
  "id": "com.derakkuma.circleMember",
  "defs": {
    "main": {
      "key": "any",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "circleKey",
          "displayName",
          "createdAt"
        ],
        "properties": {
          "icon": {
            "type": "blob",
            "accept": [
              "image/png",
              "image/jpeg",
              "image/webp"
            ],
            "maxSize": 1000000
          },
          "title": {
            "type": "string",
            "maxLength": 128
          },
          "points": {
            "type": "integer",
            "minimum": 0
          },
          "rating": {
            "type": "integer",
            "minimum": 0
          },
          "status": {
            "type": "string",
            "maxLength": 64
          },
          "profile": {
            "type": "string",
            "format": "at-uri",
            "description": "AT URI of the member profile record when this member is resolved to a Derakkuma ATProto profile."
          },
          "subject": {
            "type": "string",
            "format": "did"
          },
          "circleKey": {
            "type": "string",
            "maxLength": 128
          },
          "createdAt": {
            "type": "string",
            "format": "datetime"
          },
          "updatedAt": {
            "type": "string",
            "format": "datetime"
          },
          "circleCode": {
            "type": "string",
            "maxLength": 64
          },
          "observedAt": {
            "type": "string",
            "format": "datetime"
          },
          "displayName": {
            "type": "string",
            "maxLength": 64
          }
        }
      },
      "description": "A member snapshot for a maimai DX circle, optionally resolved to an AT Protocol identity"
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
