Qdrant · Schema

MatchExcept

Should have at least one value not matching the any given values

AIArtificial IntelligenceVector Databases

Properties

Name Type Description
except object
View JSON Schema on GitHub

JSON Schema

qdrant-matchexcept-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/MatchExcept",
  "title": "MatchExcept",
  "description": "Should have at least one value not matching the any given values",
  "type": "object",
  "required": [
    "except"
  ],
  "properties": {
    "except": {
      "$ref": "#/components/schemas/AnyVariants"
    }
  }
}