Advertisement
Guest User

Untitled

a guest
Sep 22nd, 2017
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.66 KB | None | 0 0
  1. {
  2. “properties”: {
  3. “users”: {
  4. “type”: “array”
  5. “items”: {
  6. '$ref': '#/definitions/user’
  7. }
  8. },
  9. “tasks”: {
  10. “type”: “array”
  11. “items”: {
  12. '$ref': '#/definitions/task’
  13. }
  14. }
  15. },
  16. definitions: {
  17. “task”: {
  18. “properties”: {
  19. "name" : {"type" :String}
  20. “assignee”: {"type" : String}
  21. }
  22. links: [
  23. {
  24. 'rel': 'full',
  25. 'href': '#/users/{assignee}',
  26. 'targetSchema': {
  27. '$ref': '#/definitions/user’
  28. }
  29. }
  30. ],
  31. }
  32. "user" {
  33. “properties”: {
  34. "name": {type: string}
  35. "id": {type: string}
  36. }
  37. }
  38. }
  39. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement