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