GitHub · Schema

webhook-config

Configuration object of the webhook

CodePipelinesPlatformSoftware DevelopmentSource ControlT1

Properties

Name Type Description
url object
content_type object
secret object
insecure_ssl object
View JSON Schema on GitHub

JSON Schema

github-repo-hooks-api-webhook-config-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/github/refs/heads/main/json-schema/github-repo-hooks-api-webhook-config-schema.json",
  "title": "webhook-config",
  "description": "Configuration object of the webhook",
  "type": "object",
  "properties": {
    "url": {
      "$ref": "#/components/schemas/webhook-config-url"
    },
    "content_type": {
      "$ref": "#/components/schemas/webhook-config-content-type"
    },
    "secret": {
      "$ref": "#/components/schemas/webhook-config-secret"
    },
    "insecure_ssl": {
      "$ref": "#/components/schemas/webhook-config-insecure-ssl"
    }
  }
}