# systems.sister.lootbox

> Published by [vault.pds.sister.systems](https://lexicon.garden/identity/did:plc:e2gllbtzj3go3vaiimn4qmls)

✓ This is the authoritative definition for this NSID.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:e2gllbtzj3go3vaiimn4qmls/systems.sister.lootbox)
- [Documentation](https://lexicon.garden/lexicon/did:plc:e2gllbtzj3go3vaiimn4qmls/systems.sister.lootbox/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:e2gllbtzj3go3vaiimn4qmls/systems.sister.lootbox/examples)

## Definitions

### `systems.sister.lootbox`

**Type**: `record`

**Key**: `tid`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `name` | `string` | Yes |  |
| `contents` | `array` | Yes |  |
| `createdAt` | `string` (datetime) | Yes |  |
| `description` | `string` | No |  |
| `forcedEffect` | `string` | No |  |

### `systems.sister.lootbox#content`

**Type**: `object`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `weight` | `integer` | Yes |  |
| `itemRkey` | `string` | Yes |  |

## Raw Schema

```json
{
  "id": "systems.sister.lootbox",
  "defs": {
    "main": {
      "key": "tid",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "name",
          "contents",
          "createdAt"
        ],
        "properties": {
          "name": {
            "type": "string",
            "maxLength": 128,
            "minLength": 1
          },
          "contents": {
            "type": "array",
            "items": {
              "ref": "#content",
              "type": "ref"
            },
            "maxLength": 100
          },
          "createdAt": {
            "type": "string",
            "format": "datetime"
          },
          "description": {
            "type": "string",
            "maxLength": 4096
          },
          "forcedEffect": {
            "enum": [
              "burning_flames",
              "scorching_flames",
              "sunbeams",
              "cloud_9",
              "arcana",
              "chiroptera_inzanium",
              "dark_fate",
              "spellbound",
              "vivid_plasma",
              "purple_energy",
              "blue_phosphorus"
            ],
            "type": "string"
          }
        }
      }
    },
    "content": {
      "type": "object",
      "required": [
        "itemRkey",
        "weight"
      ],
      "properties": {
        "weight": {
          "type": "integer",
          "minimum": 1
        },
        "itemRkey": {
          "type": "string",
          "maxLength": 256,
          "minLength": 1
        }
      }
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
