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