{
  "$schema": "http://json-schema.org/schema",
  "$id": "SchematicsStoreParentPage",
  "title": "Store Parent Page Schema",
  "type": "object",
  "properties": {
    "name": {
      "description": "The name of the shared module.",
      "type": "string"
    },
    "section": {
      "description": "The name of the section.",
      "type": "string"
    },
    "parent": {
      "description": "The name of the parent page.",
      "type": "string",
      "minLength": 1,
      "x-prompt": "What is the name of the parent page?"
    },
    "page": {
      "description": "The name of the page.",
      "type": "string"
    },
    "path": {
      "type": "string",
      "format": "path",
      "description": "The path to create the store.",
      "visible": false
    }
  },
  "required": [
    "section",
    "page",
    "parent"
  ]
}
