Forgejo · Schema

VerifyGPGKeyOption

VerifyGPGKeyOption options verifies user GPG key

GitSource Code ManagementSelf-HostedDevOpsCI/CDOpen SourceForgeRepositoriesIssuesPull Requests

Properties

Name Type Description
armored_signature string
key_id string An Signature for a GPG key token
View JSON Schema on GitHub

JSON Schema

verifygpgkeyoption.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "VerifyGPGKeyOption",
  "description": "VerifyGPGKeyOption options verifies user GPG key",
  "type": "object",
  "required": [
    "key_id"
  ],
  "properties": {
    "armored_signature": {
      "type": "string",
      "x-go-name": "Signature"
    },
    "key_id": {
      "description": "An Signature for a GPG key token",
      "type": "string",
      "x-go-name": "KeyID"
    }
  },
  "x-go-package": "forgejo.org/modules/structs"
}