Chef · Schema

Chef Node

Application DeliveryAutomationComplianceConfiguration ManagementDevOpsDevSecOpsHabitatInfrastructure as CodeInSpec

Properties

Name Type Description
name string
chef_environment string
run_list array
automatic object
default object
normal object
override object
View JSON Schema on GitHub

JSON Schema

chef-node-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://docs.chef.io/schemas/node.json",
  "title": "Chef Node",
  "type": "object",
  "required": ["name"],
  "properties": {
    "name": { "type": "string" },
    "chef_environment": { "type": "string" },
    "run_list": {
      "type": "array",
      "items": { "type": "string" }
    },
    "automatic": { "type": "object" },
    "default": { "type": "object" },
    "normal": { "type": "object" },
    "override": { "type": "object" }
  }
}