-
-
Save koegel/f0c1cd7f40582dc7d6ce53b22d80454e 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
| { | |
| “properties”: { | |
| “users”: { | |
| “type”: “array” | |
| “items”: { | |
| '$ref': '#/definitions/user’ | |
| } | |
| }, | |
| “tasks”: { | |
| “type”: “array” | |
| “items”: { | |
| '$ref': '#/definitions/task’ | |
| } | |
| } | |
| }, | |
| definitions: { | |
| “task”: { | |
| “properties”: { | |
| "name" : {"type" :String} | |
| “assignee”: {"type" : String} | |
| } | |
| links: [ | |
| { | |
| 'rel': 'full', | |
| 'href': '#/users/{assignee}', | |
| 'targetSchema': { | |
| '$ref': '#/definitions/user’ | |
| } | |
| } | |
| ], | |
| } | |
| "user" { | |
| “properties”: { | |
| "name": {type: string} | |
| "id": {type: string} | |
| } | |
| } | |
| } | |
| } |
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
| { | |
| users: [ | |
| { id: 8238a, | |
| name: "Jonas" | |
| }, | |
| { id: 8228b, | |
| name: "Eugen"} | |
| ], | |
| tasks: [ | |
| { name: "do this", | |
| assignee: "8238a", | |
| } | |
| ] | |
| } | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment