Properties
| Name | Type | Description |
|---|---|---|
| id | integer | |
| number | integer | |
| html_url | string | |
| user | object | |
| title | string | |
| body | stringnull | |
| pull_request | object |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/GithubIssue",
"title": "GithubIssue",
"type": "object",
"properties": {
"id": {
"type": "integer"
},
"number": {
"type": "integer"
},
"html_url": {
"type": "string",
"maxLength": 2048,
"format": "uri"
},
"user": {
"$ref": "#/components/schemas/GithubUser"
},
"title": {
"type": "string",
"maxLength": 152133
},
"body": {
"type": [
"string",
"null"
],
"maxLength": 152133
},
"pull_request": {}
},
"required": [
"id",
"number",
"html_url",
"user",
"title"
]
}