{
	"$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"
		},
		"skipBuild": {
			"type": "boolean",
			"default": false,
			"description": "Will not auto build before deploying"
		},
		"templateFile": {
			"type": "string",
			"description": "The template file to use for deployment"
		},
		"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"]
		},
		"bucket": {
			"type": "string",
			"description": "The bucket to use for deployment"
		},
		"envString": {
			"type": "string",
			"description": "Stringify version of the environment.",
			"aliases": ["ciEnv"]
		}
	},
	"required": ["flavors"]
}
