gitea源码

1234567891011121314151617181920212223242526272829
  1. {
  2. "title": "Label",
  3. "description": "Label associated to an issue.",
  4. "type": "object",
  5. "additionalProperties": false,
  6. "properties": {
  7. "name": {
  8. "description": "Name of the label, unique within the repository.",
  9. "type": "string"
  10. },
  11. "color": {
  12. "description": "Color code of the label.",
  13. "type": "string"
  14. },
  15. "description": {
  16. "description": "Long, multiline, description.",
  17. "type": "string"
  18. }
  19. },
  20. "required": [
  21. "name"
  22. ],
  23. "$schema": "http://json-schema.org/draft-04/schema#",
  24. "$id": "label.json",
  25. "$$target": "label.json"
  26. }