Weaviate · Schema

Meta

Contains meta information of the current Weaviate instance.

Vector DatabaseAIMachine LearningSemantic SearchOpen SourceGraphQLKubernetes

Properties

Name Type Description
hostname string The url of the host.
version string The Weaviate server version.
modules object Module-specific meta information.
grpcMaxMessageSize integer Max message size for GRPC connection in bytes.
View JSON Schema on GitHub

JSON Schema

weaviate-meta-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://api-evangelist.github.io/weaviate/json-schema/weaviate-meta-schema.json",
  "title": "Meta",
  "description": "Contains meta information of the current Weaviate instance.",
  "type": "object",
  "properties": {
    "hostname": {
      "type": "string",
      "format": "url",
      "description": "The url of the host."
    },
    "version": {
      "type": "string",
      "description": "The Weaviate server version."
    },
    "modules": {
      "type": "object",
      "description": "Module-specific meta information."
    },
    "grpcMaxMessageSize": {
      "type": "integer",
      "description": "Max message size for GRPC connection in bytes."
    }
  }
}