Forgejo · Schema

RepoCommit contains information of a commit in the context of a repository.

GitSource Code ManagementSelf-HostedDevOpsCI/CDOpen SourceForgeRepositoriesIssuesPull Requests

Properties

Name Type Description
author object
committer object
message string
tree object
url string
verification object
View JSON Schema on GitHub

JSON Schema

repocommit.json Raw ↑
{
  "$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"
}