# ai.syui.vrm

> Published by [syui.ai](https://lexicon.garden/identity/did:plc:uqzpqmrjnptsxezjx4xuh2mn)

✓ This is the authoritative definition for this NSID.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:uqzpqmrjnptsxezjx4xuh2mn/ai.syui.vrm)
- [Documentation](https://lexicon.garden/lexicon/did:plc:uqzpqmrjnptsxezjx4xuh2mn/ai.syui.vrm/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:uqzpqmrjnptsxezjx4xuh2mn/ai.syui.vrm/examples)

## Definitions

### `ai.syui.vrm`

**Type**: `record`

VRM game score collection

**Key**: `literal:self`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `item` | `array` | Yes |  |
| `createdAt` | `string` (datetime) | Yes |  |
| `updatedAt` | `string` (datetime) | Yes |  |

## Raw Schema

```json
{
  "id": "ai.syui.vrm",
  "defs": {
    "main": {
      "key": "literal:self",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "item",
          "createdAt",
          "updatedAt"
        ],
        "properties": {
          "item": {
            "type": "array",
            "items": {
              "type": "object",
              "required": [
                "id",
                "cp",
                "cid"
              ],
              "properties": {
                "cp": {
                  "type": "integer",
                  "description": "Score at acquisition"
                },
                "id": {
                  "type": "integer",
                  "description": "Crown type: 1=gold, 2=silver, 3=bronze"
                },
                "cid": {
                  "type": "string",
                  "description": "Unique instance ID"
                }
              }
            }
          },
          "createdAt": {
            "type": "string",
            "format": "datetime"
          },
          "updatedAt": {
            "type": "string",
            "format": "datetime"
          }
        }
      },
      "description": "VRM game score collection"
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
