{
  "$schema": "http://json-schema.org/schema",
  "$id": "ng-add-sbb-esta-angular",
  "title": "@sbb-esta/angular ng-add schematic",
  "type": "object",
  "properties": {
    "project": {
      "type": "string",
      "description": "The name of the project.",
      "$default": {
        "$source": "projectName"
      }
    },
    "animations": {
      "type": "string",
      "default": "enabled",
      "description": "Whether Angular browser animations should be included.",
      "x-prompt": {
        "message": "Include the Angular animations module?",
        "type": "list",
        "items": [
          { "value": "enabled", "label": "Include and enable animations" },
          { "value": "disabled", "label": "Include, but disable animations" },
          { "value": "excluded", "label": "Do not include" }
        ]
      }
    },
    "variant": {
      "type": "string",
      "description": "Design variant (standard or lean)",
      "x-prompt": "Which design variant of the typography should be configured?",
      "enum": ["standard (previously known as public)", "lean (previously known as business)"],
      "default": "standard (previously known as public)"
    }
  },
  "required": []
}
