Lucidworks · Schema

Rule

SearchArtificial IntelligenceEnterprise SearchVector SearchRAGCommerce

Properties

Name Type Description
id string
name string
description string
condition string
action object
enabled boolean
View JSON Schema on GitHub

JSON Schema

lucidworks-rule-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Rule",
  "title": "Rule",
  "type": "object",
  "required": [
    "name"
  ],
  "properties": {
    "id": {
      "type": "string"
    },
    "name": {
      "type": "string"
    },
    "description": {
      "type": "string"
    },
    "condition": {
      "type": "string"
    },
    "action": {
      "type": "object",
      "additionalProperties": true
    },
    "enabled": {
      "type": "boolean"
    }
  }
}