{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://api-evangelist.github.io/weaviate/json-schema/weaviate-node-stats-schema.json",
"title": "NodeStats",
"description": "The summary of Weaviate's statistics.",
"type": "object",
"properties": {
"shardCount": {
"type": "number",
"format": "int",
"description": "The count of Weaviate's shards. To see this value, set `output` to `verbose`."
},
"objectCount": {
"type": "number",
"format": "int64",
"description": "The total number of objects in DB."
}
}
}