File size: 2,029 Bytes
a89d35f | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 | {
"$id": "https://raw.githubusercontent.com/Cog-Creators/Red-DiscordBot/V3/develop/schema/trivia.schema.json",
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "Red-DiscordBot Trivia List file",
"type": "object",
"properties": {
"$schema": {
"type": "string",
"format": "uri"
},
"AUTHOR": {
"type": "string",
"description": "Author of the Trivia list."
},
"CONFIG": {
"type": "object",
"description": "The configuration for a trivia session.",
"properties": {
"bot_plays": {
"type": "boolean",
"description": "Whether or not the bot gains points during the session."
},
"delay": {
"type": "number",
"description": "The maximum number of seconds permitted to answer a question, must be a positive number greater than or equal to 4.0.",
"minimum": 4.0
},
"max_score": {
"type": "integer",
"description": "Number of points required in order to win the trivia, must be a positive integer.",
"exclusiveMinimum": 0
},
"payout_multiplier": {
"type": "number",
"description": "The payout multiplier, must be a positive number or zero.",
"minimum": 0
},
"reveal_answer": {
"type": "boolean",
"description": "Whether or not to reveal the answer when the question times out."
},
"timeout": {
"type": "number",
"description": "Number of seconds that need to pass until trivia stops due to no response, must be a positive number greater than 0.0.",
"exclusiveMinimum": 0
},
"use_spoilers": {
"type": "boolean",
"description": "Whether to hide the answers in spoilers when revealing the question's answers."
}
},
"additionalProperties": false
}
},
"additionalProperties": {
"type": "array",
"items": {
"type": "string"
}
}
}
|