Skip to content

Commit 3e7c370

Browse files
committed
update doc
1 parent e6e4a81 commit 3e7c370

File tree

1 file changed

+8
-4
lines changed

1 file changed

+8
-4
lines changed

docs/references/http_api_reference.md

+8-4
Original file line numberDiff line numberDiff line change
@@ -156,23 +156,27 @@ curl --request POST \
156156
"name":
157157
{
158158
"type": "varchar",
159-
"constraints": ["not null"]
159+
"constraints": ["not null"],
160+
"id": 0,
160161
},
161162
"age":
162163
{
163164
"type": "integer",
164-
"constraints": ["not null"]
165+
"constraints": ["not null"],
166+
"id": 1,
165167
},
166168
"score":
167169
{
168170
"type": "integer",
169-
"constraints": ["not null"]
171+
"constraints": ["not null"],
172+
"id": 2,
170173
}
171174
"my_vector"
172175
{
173176
"type": "vector",
174177
"dimension": 1024,
175-
"element_type": "float"
178+
"element_type": "float",
179+
"id": 3,
176180
}
177181
],
178182
"properties":

0 commit comments

Comments
 (0)