Problem.raml 501 B

123456789101112131415161718
  1. #%RAML 1.0 DataType
  2. # Problem
  3. type : object
  4. properties :
  5. id : number
  6. name : string
  7. type : ProblemType
  8. description : string
  9. publicFiles : string[]
  10. protectedFiles : string[]
  11. privateFiles : string[]
  12. createdAt : LocalDateTime
  13. modifiedAt : LocalDateTime
  14. deprecated : boolean
  15. creator :
  16. properties :
  17. id : number
  18. username : string