Lucidworks · Schema

QueryRewrite

SearchArtificial IntelligenceEnterprise SearchVector SearchRAGCommerce

Properties

Name Type Description
id string
source string
target string
type string
enabled boolean
View JSON Schema on GitHub

JSON Schema

lucidworks-queryrewrite-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/QueryRewrite",
  "title": "QueryRewrite",
  "type": "object",
  "required": [
    "source"
  ],
  "properties": {
    "id": {
      "type": "string"
    },
    "source": {
      "type": "string"
    },
    "target": {
      "type": "string"
    },
    "type": {
      "type": "string",
      "enum": [
        "synonym",
        "redirect",
        "boost",
        "bury"
      ]
    },
    "enabled": {
      "type": "boolean"
    }
  }
}