# app.goblinquest.quest

> Published by [gqlexicons.bsky.social](https://lexicon.garden/identity/did:plc:yik6wxcmeyinhp7znvblslru)

✓ This is the authoritative definition for this NSID.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:yik6wxcmeyinhp7znvblslru/app.goblinquest.quest)
- [Documentation](https://lexicon.garden/lexicon/did:plc:yik6wxcmeyinhp7znvblslru/app.goblinquest.quest/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:yik6wxcmeyinhp7znvblslru/app.goblinquest.quest/examples)

## Definitions

### `app.goblinquest.quest`

**Type**: `record`

A quest declared by a goblin.

**Key**: `tid`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `mood` | `string` | Yes | The goblin's mood when declaring the quest. |
| `quest` | `string` | Yes | The quest the goblin has declared. |
| `createdAt` | `string` (datetime) | Yes |  |

## Raw Schema

```json
{
  "id": "app.goblinquest.quest",
  "defs": {
    "main": {
      "key": "tid",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "quest",
          "mood",
          "createdAt"
        ],
        "properties": {
          "mood": {
            "type": "string",
            "maxLength": 100,
            "description": "The goblin's mood when declaring the quest.",
            "knownValues": [
              "scheming",
              "enraged",
              "greedy",
              "foraging",
              "exhausted",
              "questing",
              "mysterious",
              "unhinged"
            ]
          },
          "quest": {
            "type": "string",
            "maxLength": 3000,
            "description": "The quest the goblin has declared.",
            "maxGraphemes": 300
          },
          "createdAt": {
            "type": "string",
            "format": "datetime"
          }
        }
      },
      "description": "A quest declared by a goblin."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
