{
	"$schema": "http://json-schema.org/schema",
	"type": "object",
	"cli": "nx",
	"description": "Executor to build and deploy aws sam",
	"properties": {
		"flavor": {
			"type": "string",
			"description": "The flavor to run from the flavors object"
		},
		"flavors": {
			"type": "object",
			"description": "The different flavors to deploy, keyed by the flavor name and value is the firebase project id"
		},
		"name": {
			"type": "string",
			"description": "The template file to use for deployment"
		},
		"stack": {
			"type": "string",
			"description": "The name of your stack."
		},
		"tail": {
			"type": "boolean",
			"description": "Whether to tail the logs",
			"aliases": ["t"]
		},
		"silent": {
			"type": "boolean",
			"description": "Whether to suppress all logs",
			"aliases": ["s"]
		},
		"verbose": {
			"type": "boolean",
			"description": "Whether to run the command with verbose logging",
			"aliases": ["v"]
		}
	},
	"required": ["flavors"]
}
