{
  "$schema": "http://json-schema.org/schema",
  "$id": "DenoSetupDeploy",
  "title": "Schema for Deno Deploy",
  "description": "Configures deploy target for Deno Deploy.",
  "type": "object",
  "properties": {
    "project": {
      "type": "string",
      "description": "The project add deno deploy to.",
      "$default": {
        "$source": "argv",
        "index": 0
      },
      "x-dropdown": "projects",
      "x-prompt": "What project would you like to use?"
    },
    "site": {
      "description": "The site name to deploy to",
      "type": "string",
      "x-priority": "important"
    },
    "deployTarget": {
      "description": "The name of the deploy target",
      "type": "string",
      "default": "deploy"
    }
  },
  "required": ["project"]
}
