APIs.io Engineering Platform · Schema
Issue Comment
Comments provide a way for people to collaborate on an issue.
APIs.ioEngineeringPlatform
Properties
| Name | Type | Description |
|---|---|---|
| id | integer | Unique identifier of the issue comment |
| node_id | string | |
| url | string | URL for the issue comment |
| body | string | Contents of the issue comment |
| body_text | string | |
| body_html | string | |
| html_url | string | |
| user | object | |
| created_at | string | |
| updated_at | string | |
| issue_url | string | |
| author_association | object | |
| performed_via_github_app | object | |
| reactions | object |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/issue-comment",
"title": "Issue Comment",
"description": "Comments provide a way for people to collaborate on an issue.",
"type": "object",
"properties": {
"id": {
"description": "Unique identifier of the issue comment",
"example": 42,
"type": "integer",
"format": "int64"
},
"node_id": {
"type": "string"
},
"url": {
"description": "URL for the issue comment",
"example": "https://api.github.com/repositories/42/issues/comments/1",
"type": "string",
"format": "uri"
},
"body": {
"description": "Contents of the issue comment",
"example": "What version of Safari were you using when you observed this bug?",
"type": "string"
},
"body_text": {
"type": "string"
},
"body_html": {
"type": "string"
},
"html_url": {
"type": "string",
"format": "uri"
},
"user": {
"$ref": "#/components/schemas/nullable-simple-user"
},
"created_at": {
"type": "string",
"format": "date-time",
"example": "2011-04-14T16:00:49Z"
},
"updated_at": {
"type": "string",
"format": "date-time",
"example": "2011-04-14T16:00:49Z"
},
"issue_url": {
"type": "string",
"format": "uri"
},
"author_association": {
"$ref": "#/components/schemas/author-association"
},
"performed_via_github_app": {
"$ref": "#/components/schemas/nullable-integration"
},
"reactions": {
"$ref": "#/components/schemas/reaction-rollup"
}
},
"required": [
"id",
"node_id",
"html_url",
"issue_url",
"author_association",
"user",
"url",
"created_at",
"updated_at"
]
}