Skip to content

Instantly share code, notes, and snippets.

@aimbot6120
Created May 17, 2024 09:47
Show Gist options
  • Save aimbot6120/dc0302d92120bd241f00d1562624ebcb to your computer and use it in GitHub Desktop.
Save aimbot6120/dc0302d92120bd241f00d1562624ebcb to your computer and use it in GitHub Desktop.
JSON schema for the quest generation endpoint | Find more at xgaming.club
{
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "object",
"properties": {
"fields": {
"type": "object",
"patternProperties": {
"^.*$": {
"type": "object",
"properties": {
"desc": {
"type": "string"
},
"data": {
"type": "array",
"items": {
"type": "object",
"patternProperties": {
"^.*$": {
"type": "string"
}
},
"additionalProperties": false
}
}
},
"required": ["desc", "data"],
"additionalProperties": false
}
}
}
},
"required": ["fields"],
"additionalProperties": false
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment