Spaces:
Sleeping
Sleeping
File size: 1,009 Bytes
e15864e | 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 | {
"type": "object",
"required": ["criteria"],
"properties": {
"criteria": {
"type": "array",
"items": {
"type": "object",
"required": ["key", "type", "description", "raw_criteria"],
"properties": {
"key": { "type": "string" },
"type": { "enum": ["inclusion", "exclusion"] },
"description": { "type": "string" },
"raw_criteria": { "type": "string" },
"constraint": {
"oneOf": [
{ "type": "null" },
{
"type": "object",
"required": ["key", "operator", "value"],
"properties": {
"key": { "type": "string" },
"operator": { "enum": ["<=", ">=", "==", "!=", "in", "not_in", "between"] },
"value": {},
"unit": { "type": ["string", "null"] }
}
}
]
}
}
}
}
}
}
|