Typesense · Schema

VectorCollectionResponse

Full-Text SearchOpen SourceSearch EngineTypo ToleranceVector Search

Properties

Name Type Description
name string Name of the collection.
fields array
num_documents integer Number of documents in the collection.
created_at integer Unix timestamp when the collection was created.
View JSON Schema on GitHub

JSON Schema

typesense-vectorcollectionresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/VectorCollectionResponse",
  "title": "VectorCollectionResponse",
  "type": "object",
  "properties": {
    "name": {
      "type": "string",
      "description": "Name of the collection."
    },
    "fields": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/VectorField"
      }
    },
    "num_documents": {
      "type": "integer",
      "format": "int64",
      "description": "Number of documents in the collection."
    },
    "created_at": {
      "type": "integer",
      "format": "int64",
      "description": "Unix timestamp when the collection was created."
    }
  }
}