Forgejo · Schema

EditHookOption

EditHookOption options when modify one hook

GitSource Code ManagementSelf-HostedDevOpsCI/CDOpen SourceForgeRepositoriesIssuesPull Requests

Properties

Name Type Description
active boolean
authorization_header string
branch_filter string
config object
events array
View JSON Schema on GitHub

JSON Schema

edithookoption.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "EditHookOption",
  "description": "EditHookOption options when modify one hook",
  "type": "object",
  "properties": {
    "active": {
      "type": "boolean",
      "x-go-name": "Active"
    },
    "authorization_header": {
      "type": "string",
      "x-go-name": "AuthorizationHeader"
    },
    "branch_filter": {
      "type": "string",
      "x-go-name": "BranchFilter"
    },
    "config": {
      "type": "object",
      "additionalProperties": {
        "type": "string"
      },
      "x-go-name": "Config"
    },
    "events": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "x-go-name": "Events"
    }
  },
  "x-go-package": "forgejo.org/modules/structs"
}