Advertisement
Guest User

Untitled

a guest
Apr 22nd, 2019
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.36 KB | None | 0 0
  1. ```json
  2. // Before
  3. {
  4. "status": true,
  5. "length": 1,
  6. "data": {
  7. "id": "16",
  8. "type": "Moodle::Competency",
  9. "attributes": {
  10. "shortname": "Comp 3",
  11. "description": "",
  12. "idnumber": "C03",
  13. "timecreated": 1551171957,
  14. "timemodified": 1551171957,
  15. "framework_id": 7
  16. },
  17. "relationships": {
  18. "courses": {
  19. "data": [
  20. {
  21. "id": "12",
  22. "type": "course"
  23. },
  24. {
  25. "id": "14",
  26. "type": "course"
  27. }
  28. ]
  29. }
  30. }
  31. }
  32. }
  33.  
  34.  
  35.  
  36. // After
  37. {
  38. "status": true,
  39. "length": 1,
  40. "data": {
  41. "id": "16",
  42. "type": "Moodle::Competency",
  43. "attributes": {
  44. "shortname": "Comp 3",
  45. "description": "",
  46. "idnumber": "C03",
  47. "timecreated": 1551171957,
  48. "timemodified": 1551171957,
  49. "framework_id": 7,
  50. "course_count": 2
  51. },
  52. "relationships": {
  53. "courses": {
  54. "data": [
  55. {
  56. "id": "12",
  57. "type": "course"
  58. },
  59. {
  60. "id": "14",
  61. "type": "course"
  62. }
  63. ]
  64. }
  65. }
  66. }
  67. }
  68. ```
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement