You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"description": "Approximate number of indexed vectors in the collection. Indexed vectors in large segments are faster to query, as it is stored in a specialized vector index.",
6612
6616
"type": "integer",
@@ -6674,6 +6678,31 @@
6674
6678
}
6675
6679
]
6676
6680
},
6681
+
"ConfigurationStatus": {
6682
+
"description": "Current state of the collection",
6683
+
"oneOf": [
6684
+
{
6685
+
"description": "Configuration is valid",
6686
+
"type": "string",
6687
+
"enum": [
6688
+
"ok"
6689
+
]
6690
+
},
6691
+
{
6692
+
"description": "Configuration has warnings",
6693
+
"type": "object",
6694
+
"required": [
6695
+
"warning"
6696
+
],
6697
+
"properties": {
6698
+
"warning": {
6699
+
"type": "string"
6700
+
}
6701
+
},
6702
+
"additionalProperties": false
6703
+
}
6704
+
]
6705
+
},
6677
6706
"CollectionConfig": {
6678
6707
"description": "Information about the collection configuration",
0 commit comments