APIs.io Engineering Platform · Schema
Label Search Result Item
Label Search Result Item
APIs.ioEngineeringPlatform
Properties
| Name | Type | Description |
|---|---|---|
| id | integer | |
| node_id | string | |
| url | string | |
| name | string | |
| color | string | |
| default | boolean | |
| description | string | |
| score | number | |
| text_matches | object |
JSON Schema
{
"$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"
]
}