Created
November 11, 2018 08:49
-
-
Save davisagli/6c9c1c2d7b69ff4dcd44744774b8fede 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
schema: | |
{ | |
"properties": { | |
"behaviors": { | |
"additionalProperties": { | |
"oneOf": [ | |
{ | |
"properties": { | |
"@type": { | |
"const": "behaviors.ITitle" | |
}, | |
"title": { | |
"type": "string" | |
}, | |
"additionalProperties": false | |
} | |
}, | |
{ | |
"properties": { | |
"@type": { | |
"const": "behaviors.IText" | |
}, | |
"text": { | |
"type": "string" | |
}, | |
"additionalProperties": false | |
} | |
} | |
] | |
} | |
}, | |
"layout": { | |
"type": "array" | |
} | |
} | |
} | |
behavior data: | |
{ | |
"behaviors": { | |
"1": { | |
"@type": "behaviors.ITitle", | |
"title": "my title" | |
}, | |
"2": { | |
"@type": "behaviors.IText", | |
"text": "hello Tokyo" | |
} | |
}, | |
"layout": [ | |
"2", | |
"1", | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment