|
|
@@ -0,0 +1,56 @@
|
|
|
+#%RAML 1.0
|
|
|
+
|
|
|
+# Course
|
|
|
+Course: !include ./course/Course.raml
|
|
|
+CourseDTO: !include ./course/CourseDTO.raml
|
|
|
+CourseDTOWithId:
|
|
|
+ type: CourseDTO
|
|
|
+ properties:
|
|
|
+ id: integer
|
|
|
+
|
|
|
+# User
|
|
|
+User: !include ./user/User.raml
|
|
|
+UserDTO: !include ./user/UserDTO.raml
|
|
|
+
|
|
|
+# Group
|
|
|
+Group: !include ./group/Group.raml
|
|
|
+GroupDTO: !include ./group/GroupDTO.raml
|
|
|
+NestedGroup: !include ./group/NestedGroup.raml
|
|
|
+NestedGroupWithSingleUsername: !include ./group/NestedGroupWithSingleUsername.raml
|
|
|
+
|
|
|
+# Question
|
|
|
+QuestionDTO: !include ./question/QuestionDTO.raml
|
|
|
+Question: !include ./question/Question.raml
|
|
|
+NestedQuestion: !include ./question/NestedQuestion.raml
|
|
|
+
|
|
|
+# CodeWork
|
|
|
+CodeWork: !include ./assignment/codework/CodeWork.raml
|
|
|
+CodeWorkDTO: !include ./assignment/codework/CodeWorkDTO.raml
|
|
|
+CodeWorkProcedure: !include ./assignment/codework/CodeWorkProcedure.raml
|
|
|
+NestedStatus: !include ./assignment/codework/NestedStatus.raml
|
|
|
+NestedTestStatus: !include ./assignment/codework/NestedTestStatus.raml
|
|
|
+NestedScore: !include ./assignment/codework/NestedScore.raml
|
|
|
+NestedOneUnitTest: !include ./assignment/codework/NestedOneUnitTest.raml
|
|
|
+CodeWorkResult: !include ./assignment/codework/CodeWorkResult.raml
|
|
|
+CodeWorkProject: !include ./assignment/codework/CodeWorkProject.raml
|
|
|
+CodeWorkProjectGeneral: !include ./assignment/codework/CodeWorkProjectGeneral.raml
|
|
|
+CodeWorkDeploy: !include ./assignment/codework/CodeWorkDeploy.raml
|
|
|
+CodeWorkDeployRecord: !include ./assignment/codework/CodeWorkDeployRecord.raml
|
|
|
+BuildRecordDTO: !include ./assignment/codework/BuildRecordDTO.raml
|
|
|
+TestRecord: !include ./assignment/codework/TestRecord.raml
|
|
|
+UnitTestRecord: !include ./assignment/codework/UnitTestRecord.raml
|
|
|
+FunctionTestRecord: !include ./assignment/codework/FunctionTestRecord.raml
|
|
|
+DeployImage: !include ./assignment/codework/DeployImage.raml
|
|
|
+FunctionalTestDTO: !include ./assignment/codework/FunctionalTestDTO.raml
|
|
|
+DeployDTO: !include ./assignment/codework/DeployDTO.raml
|
|
|
+DeployResponse: !include ./assignment/codework/DeployResponse.raml
|
|
|
+
|
|
|
+# Enums
|
|
|
+UserIdentity: !include ./enums/UserIdentity.raml
|
|
|
+QuestionType: !include ./enums/QuestionType.raml
|
|
|
+Difficulty: !include ./enums/Difficulty.raml
|
|
|
+AssignmentType: !include ./enums/AssignmentType.raml
|
|
|
+AssignmentStatus: !include ./enums/AssignmentStatus.raml
|
|
|
+DeployEnvironment: !include ./enums/DeployEnvironment.raml
|
|
|
+DeployStatus: !include ./enums/DeployStatus.raml
|
|
|
+BuildStatus: !include ./enums/BuildStatus.raml
|