Weaviate · JSON Structure

Weaviate Meta Structure

Contains meta information of the current Weaviate instance.

Type: object Properties: 4
Vector DatabaseAIMachine LearningSemantic SearchOpen SourceGraphQLKubernetes

Weaviate Meta Structure is a JSON Structure definition published by Weaviate, describing 4 properties. It conforms to the https://json-structure.org/meta/extended/v0/# meta-schema.

Properties

hostname version modules grpcMaxMessageSize

Meta-schema: https://json-structure.org/meta/extended/v0/#

JSON Structure

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