Created
November 13, 2023 16:14
-
-
Save jpmens/acbdeef11aec1a0d1d83325ddebf30e3 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": { | |
"_type": { | |
"enum": [ "cmd", "waypoint" ] | |
}, | |
"action": { | |
"default": "dump", | |
"enum" : [ | |
"reportLocation", | |
"reportSteps", | |
"dump", | |
"waypoints", | |
"clearWaypoints", | |
"setConfiguration", | |
"setWaypoints", | |
"action" | |
] | |
}, | |
"content" : { | |
"type" : "string" | |
}, | |
"url" : { | |
"type" : "string" | |
}, | |
"notification" : { | |
"type" : "string" | |
} | |
}, | |
"if" : { | |
"properties" : { | |
"action" : { "const" : "action" } | |
} | |
}, | |
"then" : { | |
"oneOf": [ | |
{ | |
"required" : [ "content" ] | |
}, | |
{ | |
"required" : [ "url" ] | |
}, | |
{ | |
"required" : [ "notification" ] | |
} | |
] | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment