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 bytesKnown values:
scheming, enraged, greedy, foraging, exhausted, questing, mysterious, unhingedquest
string
Required
The quest the goblin has declared.
maxLength: 3000 bytesmaxGraphemes: 300 graphemesView 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."
}