# com.derakkuma.profile

> 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.profile)
- [Documentation](https://lexicon.garden/lexicon/did:plc:4uoc2as443j2fg2f6xfsogqs/com.derakkuma.profile/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:4uoc2as443j2fg2f6xfsogqs/com.derakkuma.profile/examples)

## Definitions

### `com.derakkuma.profile`

**Type**: `record`

A maimai DX player profile

**Key**: `literal`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `dan` | `string` | No |  |
| `stars` | `integer` | No |  |
| `title` | `string` | No |  |
| `rating` | `integer` | Yes |  |
| `classCP` | `integer` | No |  |
| `comment` | `string` | No |  |
| `createdAt` | `string` (datetime) | Yes |  |
| `updatedAt` | `string` (datetime) | No |  |
| `classImage` | `blob` | No |  |
| `friendCode` | `string` | No |  |
| `playerName` | `string` | Yes |  |
| `courseImage` | `blob` | No |  |
| `partnerImage` | `blob` | No |  |
| `profileImage` | `blob` | No |  |

## Raw Schema

```json
{
  "id": "com.derakkuma.profile",
  "defs": {
    "main": {
      "key": "literal",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "playerName",
          "rating",
          "createdAt"
        ],
        "properties": {
          "dan": {
            "type": "string",
            "maxLength": 32
          },
          "stars": {
            "type": "integer",
            "minimum": 0
          },
          "title": {
            "type": "string",
            "maxLength": 64
          },
          "rating": {
            "type": "integer",
            "minimum": 0
          },
          "classCP": {
            "type": "integer",
            "minimum": 0
          },
          "comment": {
            "type": "string",
            "maxLength": 128
          },
          "createdAt": {
            "type": "string",
            "format": "datetime"
          },
          "updatedAt": {
            "type": "string",
            "format": "datetime"
          },
          "classImage": {
            "type": "blob",
            "accept": [
              "image/png",
              "image/jpeg",
              "image/webp"
            ],
            "maxSize": 1000000
          },
          "friendCode": {
            "type": "string",
            "maxLength": 16
          },
          "playerName": {
            "type": "string",
            "maxLength": 8
          },
          "courseImage": {
            "type": "blob",
            "accept": [
              "image/png",
              "image/jpeg",
              "image/webp"
            ],
            "maxSize": 1000000
          },
          "partnerImage": {
            "type": "blob",
            "accept": [
              "image/png",
              "image/jpeg",
              "image/webp"
            ],
            "maxSize": 1000000
          },
          "profileImage": {
            "type": "blob",
            "accept": [
              "image/png",
              "image/jpeg",
              "image/webp"
            ],
            "maxSize": 1000000
          }
        }
      },
      "description": "A maimai DX player profile"
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
