Netlify · Schema

devServerHook

CDNCloudContinuous DeploymentEdge ComputingJAMstackServerlessServerless FunctionsStatic SitesWeb HostingWebsites

Properties

Name Type Description
id string
title string
branch string
url string
site_id string
created_at string
type string
View JSON Schema on GitHub

JSON Schema

netlify-devserverhook-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/devServerHook",
  "title": "devServerHook",
  "type": "object",
  "properties": {
    "id": {
      "type": "string"
    },
    "title": {
      "type": "string"
    },
    "branch": {
      "type": "string"
    },
    "url": {
      "type": "string"
    },
    "site_id": {
      "type": "string"
    },
    "created_at": {
      "type": "string",
      "format": "dateTime"
    },
    "type": {
      "type": "string",
      "enum": [
        "new_dev_server",
        "content_refresh"
      ]
    }
  }
}