Properties
| Name | Type | Description |
|---|---|---|
| html_url | string | |
| url | string | |
| id | integer | |
| node_id | string | |
| body | string | |
| path | string | |
| position | integer | |
| line | integer | |
| commit_id | string | |
| user | object | |
| created_at | string | |
| updated_at | string | |
| author_association | object | |
| reactions | object |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/commit-comment",
"title": "Commit Comment",
"description": "Commit Comment",
"type": "object",
"properties": {
"html_url": {
"type": "string",
"format": "uri"
},
"url": {
"type": "string",
"format": "uri"
},
"id": {
"type": "integer"
},
"node_id": {
"type": "string"
},
"body": {
"type": "string"
},
"path": {
"type": "string",
"nullable": true
},
"position": {
"type": "integer",
"nullable": true
},
"line": {
"type": "integer",
"nullable": true
},
"commit_id": {
"type": "string"
},
"user": {
"$ref": "#/components/schemas/nullable-simple-user"
},
"created_at": {
"type": "string",
"format": "date-time"
},
"updated_at": {
"type": "string",
"format": "date-time"
},
"author_association": {
"$ref": "#/components/schemas/author-association"
},
"reactions": {
"$ref": "#/components/schemas/reaction-rollup"
}
},
"required": [
"url",
"html_url",
"id",
"node_id",
"user",
"position",
"line",
"path",
"commit_id",
"body",
"author_association",
"created_at",
"updated_at"
]
}