Netlify · Schema

build

CDNCloudContinuous DeploymentEdge ComputingJAMstackServerlessServerless FunctionsStatic SitesWeb HostingWebsites

Properties

Name Type Description
id string
deploy_id string
sha string
done boolean
error string
created_at string
View JSON Schema on GitHub

JSON Schema

netlify-build-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/build",
  "title": "build",
  "type": "object",
  "properties": {
    "id": {
      "type": "string"
    },
    "deploy_id": {
      "type": "string"
    },
    "sha": {
      "type": "string"
    },
    "done": {
      "type": "boolean"
    },
    "error": {
      "type": "string"
    },
    "created_at": {
      "type": "string",
      "format": "dateTime"
    }
  }
}