Forgejo · Schema

CreateEmailOption

CreateEmailOption options when creating email addresses

GitSource Code ManagementSelf-HostedDevOpsCI/CDOpen SourceForgeRepositoriesIssuesPull Requests

Properties

Name Type Description
emails array email addresses to add
View JSON Schema on GitHub

JSON Schema

createemailoption.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "CreateEmailOption",
  "description": "CreateEmailOption options when creating email addresses",
  "type": "object",
  "properties": {
    "emails": {
      "description": "email addresses to add",
      "type": "array",
      "items": {
        "type": "string"
      },
      "x-go-name": "Emails"
    }
  },
  "x-go-package": "forgejo.org/modules/structs"
}