{ "$schema": "http://json-schema.org/draft-07/schema#", "title": "CombinedStatus", "description": "CombinedStatus holds the combined state of several statuses for a single commit", "type": "object", "properties": { "commit_url": { "type": "string", "x-go-name": "CommitURL" }, "repository": { "$ref": "#/definitions/Repository" }, "sha": { "type": "string", "x-go-name": "SHA" }, "state": { "$ref": "#/definitions/CommitStatusState" }, "statuses": { "type": "array", "items": { "$ref": "#/definitions/CommitStatus" }, "x-go-name": "Statuses" }, "total_count": { "type": "integer", "format": "int64", "x-go-name": "TotalCount" }, "url": { "type": "string", "x-go-name": "URL" } }, "x-go-package": "forgejo.org/modules/structs" }