Last active
April 13, 2016 21:32
-
-
Save sqrtofsaturn/3ce85aae04a8614eec4c6c8e6455530e to your computer and use it in GitHub Desktop.
new-meshblu-schema-ideas
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
| { | |
| "meshblu": { | |
| "schemas": { | |
| "configure": [ | |
| { | |
| "title": "YoAge", | |
| "type": "object", | |
| "properties": { | |
| "firstName": { | |
| "type": "string" | |
| }, | |
| "lastName": { | |
| "type": "string" | |
| } | |
| } | |
| }, | |
| { | |
| "title": "YoDeets", | |
| "type": "object", | |
| "properties": { | |
| "age": { | |
| "type": "integer", | |
| "title": "Age" | |
| }, | |
| "bio": { | |
| "type": "string", | |
| "title": "Bio" | |
| } | |
| } | |
| } | |
| ], | |
| "message": [] | |
| } | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment