blob: 2d4b59f5fc52bd8dca4a5ade65f476e5fd3b9719 [file] [log] [blame]
{
"type": "object",
"properties": {
"name": {
"type": "string",
"description": "The name of the request handler. This name will be used to update or remove the request handler later if necessary."
},
"class": {
"type": "string",
"description": "The request handler class. Class names do not need to be fully qualified if they are included with Solr, so you can abbreviate the name as 'solr.SearchHandler'. Custom or third-party class names may need to be fully qualified, however."
},
"startup": {
"type": "string",
"description": "Allows the request handler to only start when requested. The only option is 'lazy'.",
"enum": [
"lazy"
]
}
},
"additionalProperties": true
}