Forgejo · Schema

CreateGPGKeyOption

CreateGPGKeyOption options create user GPG key

GitSource Code ManagementSelf-HostedDevOpsCI/CDOpen SourceForgeRepositoriesIssuesPull Requests

Properties

Name Type Description
armored_public_key string An armored GPG key to add
armored_signature string
View JSON Schema on GitHub

JSON Schema

creategpgkeyoption.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "CreateGPGKeyOption",
  "description": "CreateGPGKeyOption options create user GPG key",
  "type": "object",
  "required": [
    "armored_public_key"
  ],
  "properties": {
    "armored_public_key": {
      "description": "An armored GPG key to add",
      "type": "string",
      "uniqueItems": true,
      "x-go-name": "ArmoredKey"
    },
    "armored_signature": {
      "type": "string",
      "x-go-name": "Signature"
    }
  },
  "x-go-package": "forgejo.org/modules/structs"
}