bug-schema.yaml 914 B

12345678910111213141516171819202122232425262728293031323334
  1. name: bug
  2. type: object
  3. properties:
  4. bug-creation-date:
  5. required: true
  6. type: string
  7. description: The ISO 8601 date at which the bug was created.
  8. bug-comments:
  9. items:
  10. type: object
  11. type: array
  12. description: Comments on the bug. Each item should fit the comment schema.
  13. bug-id:
  14. required: true
  15. type: string
  16. description: Unique identifier for this bug. Should be a whirlpool hash of the
  17. title concat the time at which it was created.
  18. bug-description:
  19. required: false
  20. type: string
  21. description: An optional description of the bug.
  22. bug-open:
  23. required: true
  24. type: boolean
  25. description: Whether or not the bug is open
  26. bug-reporter:
  27. required: false
  28. type: object
  29. description: The person who reported the bug. Object should fit the person schema.
  30. bug-title:
  31. required: true
  32. type: string
  33. description: The title of the bug.