Weaviate · Schema

PropertyTokenizeRequest

Request body for the property-specific tokenize endpoint.

Vector DatabaseArtificial IntelligenceMachine-LearningSemantic SearchOpen-SourceGraphQLKubernetes

Properties

Name Type Description
text string The text to tokenize using the property's configured tokenization.
View JSON Schema on GitHub

JSON Schema

weaviate-propertytokenizerequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/PropertyTokenizeRequest",
  "title": "PropertyTokenizeRequest",
  "type": "object",
  "description": "Request body for the property-specific tokenize endpoint.",
  "required": [
    "text"
  ],
  "properties": {
    "text": {
      "type": "string",
      "description": "The text to tokenize using the property's configured tokenization."
    }
  }
}