Forgejo · Schema

PayloadCommitVerification

PayloadCommitVerification represents the GPG verification of a commit

GitSource Code ManagementSelf-HostedDevOpsCI/CDOpen SourceForgeRepositoriesIssuesPull Requests

Properties

Name Type Description
payload string
reason string
signature string
signer object
verified boolean
View JSON Schema on GitHub

JSON Schema

payloadcommitverification.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "PayloadCommitVerification",
  "description": "PayloadCommitVerification represents the GPG verification of a commit",
  "type": "object",
  "properties": {
    "payload": {
      "type": "string",
      "x-go-name": "Payload"
    },
    "reason": {
      "type": "string",
      "x-go-name": "Reason"
    },
    "signature": {
      "type": "string",
      "x-go-name": "Signature"
    },
    "signer": {
      "$ref": "#/definitions/PayloadUser"
    },
    "verified": {
      "type": "boolean",
      "x-go-name": "Verified"
    }
  },
  "x-go-package": "forgejo.org/modules/structs"
}