{ "$schema": "http://json-schema.org/draft-07/schema#", "title": "Label", "description": "Label a label to an issue or a pr", "type": "object", "properties": { "color": { "type": "string", "x-go-name": "Color", "example": "00aabb" }, "description": { "type": "string", "x-go-name": "Description" }, "exclusive": { "type": "boolean", "x-go-name": "Exclusive", "example": false }, "id": { "type": "integer", "format": "int64", "x-go-name": "ID" }, "is_archived": { "type": "boolean", "x-go-name": "IsArchived", "example": false }, "name": { "type": "string", "x-go-name": "Name" }, "url": { "type": "string", "x-go-name": "URL" } }, "x-go-package": "forgejo.org/modules/structs" }