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
Copy file name to clipboardExpand all lines: docs/redoc/master/openapi.json
+19Lines changed: 19 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -6607,6 +6607,13 @@
6607
6607
"optimizer_status": {
6608
6608
"$ref": "#/components/schemas/OptimizersStatus"
6609
6609
},
6610
+
"warnings": {
6611
+
"description": "Warnings related to the collection",
6612
+
"type": "array",
6613
+
"items": {
6614
+
"$ref": "#/components/schemas/CollectionWarning"
6615
+
}
6616
+
},
6610
6617
"indexed_vectors_count": {
6611
6618
"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
6619
"type": "integer",
@@ -6674,6 +6681,18 @@
6674
6681
}
6675
6682
]
6676
6683
},
6684
+
"CollectionWarning": {
6685
+
"type": "object",
6686
+
"required": [
6687
+
"message"
6688
+
],
6689
+
"properties": {
6690
+
"message": {
6691
+
"description": "Warning message",
6692
+
"type": "string"
6693
+
}
6694
+
}
6695
+
},
6677
6696
"CollectionConfig": {
6678
6697
"description": "Information about the collection configuration",
0 commit comments