{
  "$schema": "http://json-schema.org/draft-07/schema",
  "$id": "HomeSchema",
  "title": "Home Schematics Schema",
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "path": {
      "type": "string",
      "format": "path",
      "$default": {
        "$source": "workingDirectory"
      },
      "description": "The path at which to create the component file, relative to the current workspace. Default is a folder with the same name as the component in the project root.",
      "visible": false
    },
    "components": {
      "description": "The home page components to include.",
      "type": "array",
      "uniqueItems": true,
      "items": {
        "enum": ["PromotionBanner", "FeaturedProducts"],
        "type": "string"
      },
      "default": [],
      "x-prompt": "What home page components would you like to include?"
    }
  }
}
