Created
May 13, 2016 20:31
-
-
Save juanmav/3ac500f4d89e7fe9ab1c9bf29092c787 to your computer and use it in GitHub Desktop.
schema json example
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": { | |
| "name": { | |
| "type": "string" | |
| }, | |
| "colorCielo": { | |
| "type": "string" | |
| }, | |
| "route": { | |
| "type": "string" | |
| }, | |
| "point": { | |
| "title": "Point", | |
| "type": "object", | |
| "format": "point", | |
| "properties": { | |
| "latitude": { | |
| "type": "number" | |
| }, | |
| "longitude": { | |
| "type": "number" | |
| } | |
| } | |
| }, | |
| "linestring": { | |
| "title": "linestring", | |
| "type": "array", | |
| "format": "linestring", | |
| "items": { | |
| "type": "object", | |
| "properties": { | |
| "latitude": { | |
| "type": "number" | |
| }, | |
| "longitude": { | |
| "type": "number" | |
| } | |
| } | |
| } | |
| }, | |
| "polygon": { | |
| "title": "Polygon", | |
| "type": "array", | |
| "format": "polygon", | |
| "items": { | |
| "type": "object", | |
| "properties": { | |
| "latitude": { | |
| "type": "number" | |
| }, | |
| "longitude": { | |
| "type": "number" | |
| } | |
| } | |
| } | |
| } | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment