app.goblinquest.quest

gqlexicons.bsky.social

Documentation

A quest declared by a goblin.

main record

A quest declared by a goblin.

Record Key tid Timestamp-based ID

Properties

createdAt string datetime Required

An RFC 3339 formatted timestamp.

mood string Required

The goblin's mood when declaring the quest.

maxLength: 100 bytes
Known values: scheming, enraged, greedy, foraging, exhausted, questing, mysterious, unhinged
quest string Required

The quest the goblin has declared.

maxLength: 3000 bytesmaxGraphemes: 300 graphemes
View raw schema
{
  "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."
}

Lexicon Garden

@