Properties
| Name | Type | Description |
|---|---|---|
| branch_id | string | |
| created_at | string | |
| id | string | |
| message | string | |
| raw | object | |
| repo_id | string | |
| updated_at | string | |
| user_id | string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/RepoCommit",
"title": "RepoCommit",
"properties": {
"branch_id": {
"type": "string"
},
"created_at": {
"format": "date-time",
"type": "string"
},
"id": {
"type": "string"
},
"message": {
"type": "string"
},
"raw": {
"additionalProperties": true,
"type": "object"
},
"repo_id": {
"type": "string"
},
"updated_at": {
"format": "date-time",
"type": "string"
},
"user_id": {
"type": "string"
}
},
"required": [
"repo_id"
],
"type": "object"
}