Created
June 9, 2021 14:16
-
-
Save roborourke/702c2262087bee0d53cfcce83560c0e4 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"type": "object", | |
"properties": { | |
"audience": { | |
"type": "object", | |
"properties": { | |
"include": { | |
"type": "string", | |
"enum": [ | |
"any", | |
"all", | |
"none" | |
] | |
}, | |
"groups": { | |
"type": "array", | |
"items": { | |
"type": "object", | |
"properties": { | |
"include": { | |
"type": "string", | |
"enum": [ | |
"any", | |
"all", | |
"none" | |
] | |
}, | |
"rules": { | |
"type": "array", | |
"items": { | |
"type": "object", | |
"properties": { | |
"field": { | |
"type": "string" | |
}, | |
"operator": { | |
"type": "string", | |
"enum": [ | |
"=", | |
"!=", | |
"*=", | |
"!*", | |
"^=", | |
"gte", | |
"lte", | |
"gt", | |
"lt" | |
] | |
}, | |
"value": { | |
"type": [ | |
"string", | |
"number" | |
] | |
} | |
} | |
} | |
} | |
} | |
} | |
} | |
} | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment