Forgejo · Schema

CommitMeta contains meta information of a commit in terms of API.

GitSource Code ManagementSelf-HostedDevOpsCI/CDOpen SourceForgeRepositoriesIssuesPull Requests

Properties

Name Type Description
created string
sha string
url string
View JSON Schema on GitHub

JSON Schema

commitmeta.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "CommitMeta contains meta information of a commit in terms of API.",
  "type": "object",
  "properties": {
    "created": {
      "type": "string",
      "format": "date-time",
      "x-go-name": "Created"
    },
    "sha": {
      "type": "string",
      "x-go-name": "SHA"
    },
    "url": {
      "type": "string",
      "x-go-name": "URL"
    }
  },
  "x-go-package": "forgejo.org/modules/structs"
}