Forgejo · Schema

CommitUser contains information of a user in the context of a commit.

GitSource Code ManagementSelf-HostedDevOpsCI/CDOpen SourceForgeRepositoriesIssuesPull Requests

Properties

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

JSON Schema

commituser.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "CommitUser contains information of a user in the context of a commit.",
  "type": "object",
  "properties": {
    "date": {
      "type": "string",
      "x-go-name": "Date"
    },
    "email": {
      "type": "string",
      "format": "email",
      "x-go-name": "Email"
    },
    "name": {
      "type": "string",
      "x-go-name": "Name"
    }
  },
  "x-go-package": "forgejo.org/modules/structs"
}