{ "$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" ] }