Advertisement
Guest User

Untitled

a guest
Sep 25th, 2016
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.33 KB | None | 0 0
  1. role: {
  2. id: ,
  3. name: ,
  4. }
  5.  
  6. image: {
  7. id: ,
  8. url: ,
  9. }
  10.  
  11. user: {
  12. id: ,
  13. username: ,
  14. password: ,
  15. email: ,
  16. roles: [],
  17. avatar_id: ,
  18. tShirtSize: ,
  19. }
  20.  
  21. programmingLanguage: {
  22. id: ,
  23. name: ,
  24. command:
  25. }
  26.  
  27. problemType: {
  28. id: ,
  29. type: ,
  30. }
  31.  
  32. testFile: {
  33. id: ,
  34. problemId: ,
  35. name: ,
  36. path: ,
  37. }
  38.  
  39. testData: {
  40. id: ,
  41. problemId: ,
  42. inputFileId: ,
  43. outputFileId: ,
  44. }
  45.  
  46. testGroup: {
  47.  
  48. }
  49.  
  50. problem: {
  51. id: ,
  52. slug: ,
  53. title: ,
  54. description: ,
  55. timeLimit: ,
  56. memoryLimit: ,
  57. sourceCodeSizeLimit: ,
  58. programmingLanguages: [],
  59. problemTypeId: ,
  60. isPublishedToArchive: ,
  61. problemSetterId: ,
  62. collaborators: [],
  63. }
  64.  
  65. problemSet: {
  66. id: ,
  67. problemId: ,
  68. contestId: ,
  69. slug: ,
  70. order: ,
  71. }
  72.  
  73. contestPrivilege: {
  74. id: ,
  75. name: ,
  76. }
  77.  
  78. supervisor: {
  79. id: ,
  80. userId: ,
  81. privilegeId: ,
  82. }
  83.  
  84. announcement: {
  85. id: ,
  86. userId: ,
  87. contestId: ,
  88. title: ,
  89. description: ,
  90. isPublished: ,
  91. }
  92.  
  93. clarification: {
  94. id: ,
  95. problemId: ,
  96. contestId: ,
  97. userId: ,
  98. title: ,
  99. description: ,
  100. answer: ,
  101. isOpenToAllContestant: ,
  102. }
  103.  
  104. contest: {
  105. id: ,
  106. slug: ,
  107. contestSecret: ,
  108. name: ,
  109. startTime: ,
  110. endTime: ,
  111. penaltyTime: ,
  112. frozenTime: ,
  113. isContestantCanViewScoreboard: ,
  114. isOpenVirtually: ,
  115. problemSets: [],
  116. managerId: ,
  117. supervisors: [],
  118. announcements: [],
  119. clarifications: [],
  120. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement