{
  "$schema": "https://json-schema.org/schema",
  "$id": "Init",
  "title": "",
  "type": "object",
  "properties": {
    "bucket": {
      "type": "string",
      "description": "The the name of the GCS Bucket to store the Nx Cache in",
      "x-prompt": "What is the name of the GCS Bucket to store the Nx Cache in?"
    },
    "localMode": {
      "type": "string",
      "description": "Set the cache mode for local environments.",
      "enum": ["read", "read-write", "no-cache"],
      "default": "read-write",
      "x-prompt": "Select the cache mode for local environments: read, read-write, or no-cache."
    },
    "ciMode": {
      "type": "string",
      "description": "Set the cache mode for CI environments.",
      "default": "read-write",
      "enum": ["read", "read-write", "no-cache"]
    }
  },
  "required": ["bucket"]
}
