Created
March 28, 2015 01:38
-
-
Save rolaveric/73036f28ff1f6fd4d901 to your computer and use it in GitHub Desktop.
Example for JSON Schema design article
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
{ | |
"articles": [{ | |
"id": "article1", | |
"links": { | |
"author": {"type": "people", "id": "person1"} | |
} | |
}], | |
"people": [{ | |
"id": "person1", | |
"phoneNumber": "1234" | |
}] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment