2025-02-05 01:21:28 +01:00
{
"$schema" : "https://json-schema.org/draft/2020-12/schema" ,
2025-02-20 20:45:38 +01:00
"$id" : "https://git.carvel.li//liza/Questionable/raw/branch/master/Questionable.Model/common-completionflags.json" ,
2025-02-05 01:21:28 +01:00
"type" : "array" ,
"description" : "Quest Variables that dictate whether or not this step is skipped: null is don't check, positive values need to be set, negative values need to be unset" ,
"items" : {
"oneOf" : [
{
"type" : "object" ,
"properties" : {
"High" : {
"type" : [
"number" ,
"null"
] ,
"minimum" : 0 ,
"maximum" : 15
} ,
"Low" : {
"type" : [
"number" ,
"null"
] ,
"minimum" : 0 ,
"maximum" : 15
} ,
"Negative" : {
"type" : "boolean"
} ,
"Mode" : {
"type" : "string" ,
"enum" : [
"Bitwise" ,
"Exact"
]
}
}
} ,
{
"type" : "number" ,
"enum" : [
1 ,
2 ,
4 ,
8 ,
16 ,
32 ,
64 ,
128
]
} ,
{
"type" : "null"
}
]
} ,
"minItems" : 6 ,
"maxItems" : 6
}