Forgejo · Schema

GitHook

GitHook represents a Git repository hook

GitSource Code ManagementSelf-HostedDevOpsCI/CDOpen SourceForgeRepositoriesIssuesPull Requests

Properties

Name Type Description
content string
is_active boolean
name string
View JSON Schema on GitHub

JSON Schema

githook.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "GitHook",
  "description": "GitHook represents a Git repository hook",
  "type": "object",
  "properties": {
    "content": {
      "type": "string",
      "x-go-name": "Content"
    },
    "is_active": {
      "type": "boolean",
      "x-go-name": "IsActive"
    },
    "name": {
      "type": "string",
      "x-go-name": "Name"
    }
  },
  "x-go-package": "forgejo.org/modules/structs"
}