Properties
| Name | Type | Description |
|---|---|---|
| color | string | 6-character hex code, without the leading #, identifying the color |
| default | boolean | |
| description | string | |
| id | integer | |
| name | string | The name of the label. |
| node_id | string | |
| url | string | URL for the label |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/webhooks_label",
"title": "Label",
"type": "object",
"properties": {
"color": {
"description": "6-character hex code, without the leading #, identifying the color",
"type": "string"
},
"default": {
"type": "boolean"
},
"description": {
"type": "string",
"nullable": true
},
"id": {
"type": "integer"
},
"name": {
"description": "The name of the label.",
"type": "string"
},
"node_id": {
"type": "string"
},
"url": {
"description": "URL for the label",
"type": "string",
"format": "uri"
}
},
"required": [
"id",
"node_id",
"url",
"name",
"color",
"default",
"description"
]
}