{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/Recipe", "title": "Recipe", "type": "object", "description": "The recipe used to automatically deploy underlying infrastructure", "properties": { "name": { "type": "string", "description": "The name of the recipe within the environment to use" }, "parameters": { "type": "object", "description": "Key/value parameters to pass into the recipe at deployment" } }, "required": [ "name" ] }