Netlify · Schema

hook

CDNCloudContinuous DeploymentEdge ComputingJAMstackServerlessServerless FunctionsStatic SitesWeb HostingWebsites

Properties

Name Type Description
id string
site_id string
type string
event string
data object
created_at string
updated_at string
disabled boolean
View JSON Schema on GitHub

JSON Schema

netlify-hook-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/hook",
  "title": "hook",
  "type": "object",
  "properties": {
    "id": {
      "type": "string"
    },
    "site_id": {
      "type": "string"
    },
    "type": {
      "type": "string"
    },
    "event": {
      "type": "string"
    },
    "data": {
      "type": "object",
      "properties": {}
    },
    "created_at": {
      "type": "string",
      "format": "dateTime"
    },
    "updated_at": {
      "type": "string",
      "format": "dateTime"
    },
    "disabled": {
      "type": "boolean"
    }
  }
}