APIs.io Engineering Platform · Schema
Issue Search Result Item
Issue Search Result Item
APIs.ioEngineeringPlatform
Properties
| Name | Type | Description |
|---|---|---|
| url | string | |
| repository_url | string | |
| labels_url | string | |
| comments_url | string | |
| events_url | string | |
| html_url | string | |
| id | integer | |
| node_id | string | |
| number | integer | |
| title | string | |
| locked | boolean | |
| active_lock_reason | string | |
| assignees | array | |
| user | object | |
| labels | array | |
| state | string | |
| state_reason | string | |
| assignee | object | |
| milestone | object | |
| comments | integer | |
| created_at | string | |
| updated_at | string | |
| closed_at | string | |
| text_matches | object | |
| pull_request | object | |
| body | string | |
| score | number | |
| author_association | object | |
| draft | boolean | |
| repository | object | |
| body_html | string | |
| body_text | string | |
| timeline_url | string | |
| performed_via_github_app | object | |
| reactions | object |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/issue-search-result-item",
"title": "Issue Search Result Item",
"description": "Issue Search Result Item",
"type": "object",
"properties": {
"url": {
"type": "string",
"format": "uri"
},
"repository_url": {
"type": "string",
"format": "uri"
},
"labels_url": {
"type": "string"
},
"comments_url": {
"type": "string",
"format": "uri"
},
"events_url": {
"type": "string",
"format": "uri"
},
"html_url": {
"type": "string",
"format": "uri"
},
"id": {
"type": "integer",
"format": "int64"
},
"node_id": {
"type": "string"
},
"number": {
"type": "integer"
},
"title": {
"type": "string"
},
"locked": {
"type": "boolean"
},
"active_lock_reason": {
"type": "string",
"nullable": true
},
"assignees": {
"type": "array",
"items": {
"$ref": "#/components/schemas/simple-user"
},
"nullable": true
},
"user": {
"$ref": "#/components/schemas/nullable-simple-user"
},
"labels": {
"type": "array",
"items": {
"type": "object",
"properties": {
"id": {
"type": "integer",
"format": "int64"
},
"node_id": {
"type": "string"
},
"url": {
"type": "string"
},
"name": {
"type": "string"
},
"color": {
"type": "string"
},
"default": {
"type": "boolean"
},
"description": {
"type": "string",
"nullable": true
}
}
}
},
"state": {
"type": "string"
},
"state_reason": {
"type": "string",
"nullable": true
},
"assignee": {
"$ref": "#/components/schemas/nullable-simple-user"
},
"milestone": {
"$ref": "#/components/schemas/nullable-milestone"
},
"comments": {
"type": "integer"
},
"created_at": {
"type": "string",
"format": "date-time"
},
"updated_at": {
"type": "string",
"format": "date-time"
},
"closed_at": {
"type": "string",
"format": "date-time",
"nullable": true
},
"text_matches": {
"$ref": "#/components/schemas/search-result-text-matches"
},
"pull_request": {
"type": "object",
"properties": {
"merged_at": {
"type": "string",
"format": "date-time",
"nullable": true
},
"diff_url": {
"type": "string",
"format": "uri",
"nullable": true
},
"html_url": {
"type": "string",
"format": "uri",
"nullable": true
},
"patch_url": {
"type": "string",
"format": "uri",
"nullable": true
},
"url": {
"type": "string",
"format": "uri",
"nullable": true
}
},
"required": [
"diff_url",
"html_url",
"patch_url",
"url"
]
},
"body": {
"type": "string"
},
"score": {
"type": "number"
},
"author_association": {
"$ref": "#/components/schemas/author-association"
},
"draft": {
"type": "boolean"
},
"repository": {
"$ref": "#/components/schemas/repository"
},
"body_html": {
"type": "string"
},
"body_text": {
"type": "string"
},
"timeline_url": {
"type": "string",
"format": "uri"
},
"performed_via_github_app": {
"$ref": "#/components/schemas/nullable-integration"
},
"reactions": {
"$ref": "#/components/schemas/reaction-rollup"
}
},
"required": [
"assignee",
"closed_at",
"comments",
"comments_url",
"events_url",
"html_url",
"id",
"node_id",
"labels",
"labels_url",
"milestone",
"number",
"repository_url",
"state",
"locked",
"title",
"url",
"user",
"author_association",
"created_at",
"updated_at",
"score"
]
}