{ "$schema": "http://json-schema.org/draft-07/schema#", "title": "RepoCommit contains information of a commit in the context of a repository.", "type": "object", "properties": { "author": { "$ref": "#/definitions/CommitUser" }, "committer": { "$ref": "#/definitions/CommitUser" }, "message": { "type": "string", "x-go-name": "Message" }, "tree": { "$ref": "#/definitions/CommitMeta" }, "url": { "type": "string", "x-go-name": "URL" }, "verification": { "$ref": "#/definitions/PayloadCommitVerification" } }, "x-go-package": "forgejo.org/modules/structs" }