Forgejo · Schema

GPGKeyEmail

GPGKeyEmail an email attached to a GPGKey

GitSource Code ManagementSelf-HostedDevOpsCI/CDOpen SourceForgeRepositoriesIssuesPull Requests

Properties

Name Type Description
email string
verified boolean
View JSON Schema on GitHub

JSON Schema

gpgkeyemail.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "GPGKeyEmail",
  "description": "GPGKeyEmail an email attached to a GPGKey",
  "type": "object",
  "properties": {
    "email": {
      "type": "string",
      "x-go-name": "Email"
    },
    "verified": {
      "type": "boolean",
      "x-go-name": "Verified"
    }
  },
  "x-go-package": "forgejo.org/modules/structs"
}