Forgejo · Schema

PayloadUser

PayloadUser represents the author or committer of a commit

GitSource Code ManagementSelf-HostedDevOpsCI/CDOpen SourceForgeRepositoriesIssuesPull Requests

Properties

Name Type Description
email string
name string Full name of the commit author
username string
View JSON Schema on GitHub

JSON Schema

payloaduser.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "PayloadUser",
  "description": "PayloadUser represents the author or committer of a commit",
  "type": "object",
  "properties": {
    "email": {
      "type": "string",
      "format": "email",
      "x-go-name": "Email"
    },
    "name": {
      "description": "Full name of the commit author",
      "type": "string",
      "x-go-name": "Name"
    },
    "username": {
      "type": "string",
      "x-go-name": "UserName"
    }
  },
  "x-go-package": "forgejo.org/modules/structs"
}