APIs.io Engineering Platform · Schema
Combined Commit Status
Combined Commit Status
APIs.ioEngineeringPlatform
Properties
| Name | Type | Description |
|---|---|---|
| state | string | |
| statuses | array | |
| sha | string | |
| total_count | integer | |
| repository | object | |
| commit_url | string | |
| url | string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/combined-commit-status",
"title": "Combined Commit Status",
"description": "Combined Commit Status",
"type": "object",
"properties": {
"state": {
"type": "string"
},
"statuses": {
"type": "array",
"items": {
"$ref": "#/components/schemas/simple-commit-status"
}
},
"sha": {
"type": "string"
},
"total_count": {
"type": "integer"
},
"repository": {
"$ref": "#/components/schemas/minimal-repository"
},
"commit_url": {
"type": "string",
"format": "uri"
},
"url": {
"type": "string",
"format": "uri"
}
},
"required": [
"state",
"sha",
"total_count",
"statuses",
"repository",
"commit_url",
"url"
]
}