# com.derakkuma.favoriteSong

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

## Definitions

### `com.derakkuma.favoriteSong`

**Type**: `record`

A maimai DX favorite song selected by the player

**Key**: `any`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `song` | `ref` → `com.atproto.repo.strongRef` | Yes |  |
| `orderId` | `integer` | No |  |
| `createdAt` | `string` (datetime) | Yes |  |
| `updatedAt` | `string` (datetime) | No |  |
| `observedAt` | `string` (datetime) | No |  |

## Raw Schema

```json
{
  "id": "com.derakkuma.favoriteSong",
  "defs": {
    "main": {
      "key": "any",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "song",
          "createdAt"
        ],
        "properties": {
          "song": {
            "ref": "com.atproto.repo.strongRef",
            "type": "ref"
          },
          "orderId": {
            "type": "integer",
            "minimum": 0
          },
          "createdAt": {
            "type": "string",
            "format": "datetime"
          },
          "updatedAt": {
            "type": "string",
            "format": "datetime"
          },
          "observedAt": {
            "type": "string",
            "format": "datetime"
          }
        }
      },
      "description": "A maimai DX favorite song selected by the player"
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
