Forgejo · Schema

Identity

Identity for a person's identity like an author or committer

GitSource Code ManagementSelf-HostedDevOpsCI/CDOpen SourceForgeRepositoriesIssuesPull Requests

Properties

Name Type Description
email string
name string
View JSON Schema on GitHub

JSON Schema

identity.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "Identity",
  "description": "Identity for a person's identity like an author or committer",
  "type": "object",
  "properties": {
    "email": {
      "type": "string",
      "format": "email",
      "x-go-name": "Email"
    },
    "name": {
      "type": "string",
      "x-go-name": "Name"
    }
  },
  "x-go-package": "forgejo.org/modules/structs"
}