| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- #%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
- CodeProjectGeneral: !include ./assignment/codework/CodeProjectGeneral.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
- CommitDetails: !include ./assignment/codework/CommitDetails.raml
- ResultNestedScore: !include ./assignment/codework/ResultNestedScore.raml
- ResultStatistics: !include ./assignment/codework/ResultStatistics.raml
- PercentItemDTO: !include ./assignment/codework/PercentItemDTO.raml
- ResultPercent: !include ./assignment/codework/ResultPercent.raml
- CodeWorkProcessDataVO: !include ./assignment/codework/CodeWorkProcessDataVO.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
- # Page
- PageEntity: !include ./PageEntity.raml
- PageUser: !include ./page/PageUser.raml
- PageQuestion: !include ./page/PageQuestion.raml
|