Created
May 15, 2019 13:34
-
-
Save mallison/ec0529facdfaf6341590f017ae5f9214 to your computer and use it in GitHub Desktop.
Single schema π€
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
{ | |
"$schema": "http://json-schema.org/draft-07/schema#", | |
"$id": "http://example.com/root.json", | |
"type": "object", | |
"title": "The Root Schema", | |
"properties": { | |
"trigger": { | |
"oneOf": [ | |
{ | |
"$ref": "#/definitions/tapTrigger" | |
}, | |
{ | |
"$ref": "#/definitions/swipeTrigger" | |
} | |
] | |
} | |
}, | |
"definitions": { | |
"tapTrigger": { | |
"type": "object", | |
"additionalProperties": false, | |
"required": [ | |
"type", | |
"coords" | |
], | |
"properties": { | |
"type": { | |
"type": "string", | |
"enum": [ | |
"tap" | |
] | |
}, | |
"coords": { | |
"type": "array" | |
} | |
} | |
}, | |
"swipeTrigger": { | |
"type": "object", | |
"additionalProperties": false, | |
"required": [ | |
"type", | |
"startCoords", | |
"endCoords" | |
], | |
"properties": { | |
"type": { | |
"type": "string", | |
"enum": [ | |
"swipe" | |
] | |
}, | |
"startCoords": { | |
"type": "array" | |
}, | |
"endCoords": { | |
"type": "array" | |
} | |
} | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment