{
  "$schema": "http://json-schema.org/schema",
  "$id": "SchematicsSectionModule",
  "title": "Section Module Schema",
  "type": "object",
  "properties": {
    "name": {
      "description": "The name of the section.",
      "type": "string",
      "minLength": 1,
      "x-prompt": "What should be the name of the section?"
    },
    "path": {
      "type": "string",
      "format": "path",
      "description": "The path to create the section.",
      "visible": false
    }
  },
  "required": [
    "name"
  ]
}
