{
  "$schema": "http://json-schema.org/schema",
  "cli": "nx",
  "title": "Jet deploy executor",
  "description": "Runs jet deploy",
  "type": "object",
  "properties": {
    "project-dir": {
      "type": "string",
      "description": "Base directory of the jet project"
    },
    "stage": {
      "type": "string",
      "description": "Stage to use for development",
      "$default": {
        "$source": "argv",
        "index": 0
      }
    },
    "stacks": {
      "type": "array",
      "description": "Stacks to deploy"
    },
    "config": {
      "type": "string",
      "description": "Configuration file to read from",
      "alias": "c"
    },
    "out-dir": {
      "type": "string",
      "description": "Output directory for jet data",
      "alias": "o"
    },
    "cdk-args": {
      "type": "string",
      "description": "Extra arguments to cdk deploy"
    }
  },
  "additionalProperties": false,
  "required": ["project-dir"]
}
