{
  "$schema": "http://json-schema.org/schema",
  "$id": "SchematicsFacade",
  "title": "Facade Schema",
  "type": "object",
  "properties": {
    "name": {
      "description": "The name of the shared module.",
      "type": "string"
    },
    "section": {
      "description": "The name of the section in which the facade will be generated.",
      "type": "string"
    },
    "parent": {
      "description": "The name of the parent page in which the facade will be generated.",
      "type": "string"
    },
    "page": {
      "description": "The name of the page in which the facade will be generated.",
      "type": "string"
    },
    "store": {
      "type": "boolean",
      "description": "When true, connects facade to the store.",
      "x-prompt": "Will you use the store on this page?",
      "default": true
    },
    "path": {
      "type": "string",
      "format": "path",
      "description": "The path to create the facade.",
      "visible": false
    }
  },
  "required": []
}
