Manticore Search · Schema

joinCond

Object representing the conditions used to perform the join operation

SearchFull-Text SearchVector SearchElasticsearch CompatibleOpen SourceDatabase

Properties

Name Type Description
field string Field to join on
table string Joined table
query object
type {}
View JSON Schema on GitHub

JSON Schema

joinCond.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/manticore/main/json-schema/joinCond.json",
  "title": "joinCond",
  "description": "Object representing the conditions used to perform the join operation",
  "type": "object",
  "required": [
    "field",
    "table"
  ],
  "properties": {
    "field": {
      "type": "string",
      "description": "Field to join on"
    },
    "table": {
      "type": "string",
      "description": "Joined table"
    },
    "query": {
      "$ref": "#/components/schemas/fulltextFilter"
    },
    "type": {
      "type": {}
    }
  },
  "additionalProperties": false
}