APIs.io Engineering Platform · Schema
issue comment
The [comment](https://docs.github.com/[email protected]/rest/issues/comments#get-an-issue-comment) itself.
APIs.ioEngineeringPlatform
Properties
| Name | Type | Description |
|---|---|---|
| author_association | string | How the author is associated with the repository. |
| body | string | Contents of the issue comment |
| created_at | string | |
| html_url | string | |
| id | integer | Unique identifier of the issue comment |
| issue_url | string | |
| node_id | string | |
| performed_via_github_app | object | |
| reactions | object | |
| updated_at | string | |
| url | string | URL for the issue comment |
| user | object |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/webhooks_issue_comment",
"title": "issue comment",
"description": "The [comment](https://docs.github.com/[email protected]/rest/issues/comments#get-an-issue-comment) itself.",
"type": "object",
"properties": {
"author_association": {
"title": "AuthorAssociation",
"description": "How the author is associated with the repository.",
"type": "string",
"enum": [
"COLLABORATOR",
"CONTRIBUTOR",
"FIRST_TIMER",
"FIRST_TIME_CONTRIBUTOR",
"MANNEQUIN",
"MEMBER",
"NONE",
"OWNER"
]
},
"body": {
"description": "Contents of the issue comment",
"type": "string"
},
"created_at": {
"type": "string",
"format": "date-time"
},
"html_url": {
"type": "string",
"format": "uri"
},
"id": {
"description": "Unique identifier of the issue comment",
"type": "integer",
"format": "int64"
},
"issue_url": {
"type": "string",
"format": "uri"
},
"node_id": {
"type": "string"
},
"performed_via_github_app": {
"$ref": "#/components/schemas/integration"
},
"reactions": {
"title": "Reactions",
"type": "object",
"properties": {
"+1": {
"type": "integer"
},
"-1": {
"type": "integer"
},
"confused": {
"type": "integer"
},
"eyes": {
"type": "integer"
},
"heart": {
"type": "integer"
},
"hooray": {
"type": "integer"
},
"laugh": {
"type": "integer"
},
"rocket": {
"type": "integer"
},
"total_count": {
"type": "integer"
},
"url": {
"type": "string",
"format": "uri"
}
},
"required": [
"url",
"total_count",
"+1",
"-1",
"laugh",
"confused",
"heart",
"hooray",
"eyes",
"rocket"
]
},
"updated_at": {
"type": "string",
"format": "date-time"
},
"url": {
"description": "URL for the issue comment",
"type": "string",
"format": "uri"
},
"user": {
"title": "User",
"type": "object",
"nullable": true,
"properties": {
"avatar_url": {
"type": "string",
"format": "uri"
},
"deleted": {
"type": "boolean"
},
"email": {
"type": "string",
"nullable": true
},
"events_url": {
"type": "string",
"format": "uri-template"
},
"followers_url": {
"type": "string",
"format": "uri"
},
"following_url": {
"type": "string",
"format": "uri-template"
},
"gists_url": {
"type": "string",
"format": "uri-template"
},
"gravatar_id": {
"type": "string"
},
"html_url": {
"type": "string",
"format": "uri"
},
"id": {
"type": "integer",
"format": "int64"
},
"login": {
"type": "string"
},
"name": {
"type": "string"
},
"node_id": {
"type": "string"
},
"organizations_url": {
"type": "string",
"format": "uri"
},
"received_events_url": {
"type": "string",
"format": "uri"
},
"repos_url": {
"type": "string",
"format": "uri"
},
"site_admin": {
"type": "boolean"
},
"starred_url": {
"type": "string",
"format": "uri-template"
},
"subscriptions_url": {
"type": "string",
"format": "uri"
},
"type": {
"type": "string",
"enum": [
"Bot",
"User",
"Organization",
"Mannequin"
]
},
"url": {
"type": "string",
"format": "uri"
}
},
"required": [
"login",
"id"
]
}
},
"required": [
"url",
"html_url",
"issue_url",
"id",
"node_id",
"user",
"created_at",
"updated_at",
"author_association",
"performed_via_github_app",
"body",
"reactions"
]
}