Manticore Search · Schema

match_all

Filter helper object defining the 'match all'' condition

SearchFull-Text SearchVector SearchElasticsearch CompatibleOpen SourceDatabase

Properties

Name Type Description
_all string
View JSON Schema on GitHub

JSON Schema

match_all.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/manticore/main/json-schema/match_all.json",
  "title": "match_all",
  "description": "Filter helper object defining the 'match all'' condition",
  "type": "object",
  "required": [
    "_all"
  ],
  "properties": {
    "_all": {
      "type": "string",
      "enum": [
        "{}"
      ]
    }
  }
}