Netlify · Schema

buildLogMsg

CDNCloudContinuous DeploymentEdge ComputingJAMstackServerlessServerless FunctionsStatic SitesWeb HostingWebsites

Properties

Name Type Description
message string
error boolean
section string
View JSON Schema on GitHub

JSON Schema

netlify-buildlogmsg-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/buildLogMsg",
  "title": "buildLogMsg",
  "type": "object",
  "properties": {
    "message": {
      "type": "string"
    },
    "error": {
      "type": "boolean"
    },
    "section": {
      "type": "string",
      "enum": [
        "initializing",
        "building",
        "deploying",
        "cleanup",
        "postprocessing"
      ]
    }
  }
}