{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/label-search-result-item", "title": "Label Search Result Item", "description": "Label Search Result Item", "type": "object", "properties": { "id": { "type": "integer" }, "node_id": { "type": "string" }, "url": { "type": "string", "format": "uri" }, "name": { "type": "string" }, "color": { "type": "string" }, "default": { "type": "boolean" }, "description": { "type": "string", "nullable": true }, "score": { "type": "number" }, "text_matches": { "$ref": "#/components/schemas/search-result-text-matches" } }, "required": [ "id", "node_id", "url", "name", "color", "default", "description", "score" ] }