Advertisement
Guest User

Untitled

a guest
Feb 28th, 2020
111
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.25 KB | None | 0 0
  1. {
  2. "userGlobalScores": [
  3. [
  4. {
  5. "userId": "user1",
  6. "score": {
  7. "quality": 3.8,
  8. "collaboration": 4
  9. }
  10. },
  11. {
  12. "userId": "user2",
  13. "score": {
  14. "quality": 4.9,
  15. "collaboration": 2
  16. }
  17. }
  18. ]
  19. ],
  20. "userPairwiseScore": [
  21. [
  22. {
  23. "gradingUser": "user1",
  24. "scoresGiven": [
  25. {
  26. "userId": "user2",
  27. "score": {
  28. "quality": 3.8,
  29. "collaboration": 4
  30. }
  31. }
  32. ]
  33. },
  34. {
  35. "gradingUser": "user2",
  36. "scoresGiven": [
  37. {
  38. "userId": "user1",
  39. "score": {
  40. "quality": 4.9,
  41. "collaboration": 2
  42. }
  43. }
  44. ]
  45. }
  46. ]
  47. ],
  48. "userCollaborationIntentions": [
  49. [
  50. {
  51. "gradingUser": "user1",
  52. "intentions": [
  53. {
  54. "userId": "user2",
  55. "intention": "idc"
  56. }
  57. ]
  58. },
  59. {
  60. "gradingUser": "user2",
  61. "intentions": [
  62. {
  63. "userId": "user1",
  64. "intention": "want"
  65. }
  66. ]
  67. }
  68. ]
  69. ]
  70. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement