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