{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://docs.chef.io/schemas/role.json", "title": "Chef Role", "type": "object", "required": ["name"], "properties": { "name": { "type": "string" }, "description": { "type": "string" }, "run_list": { "type": "array", "items": { "type": "string" } }, "default_attributes": { "type": "object" }, "override_attributes": { "type": "object" } } }