curl --request GET \
--url https://{FUSION HOST}/api/collections/{collection}/schema/dynamicfields
[
{
"name": "<string>",
"type": "<string>",
"indexed": true,
"stored": true,
"multiValued": true,
"required": true,
"docValues": true,
"omitNorms": true,
"omitPositions": true,
"omitTermFreqAndPositions": true,
"termVectors": true,
"termPositions": true,
"termOffsets": true,
"copyDests": [
"<string>"
],
"copySources": [
"<string>"
],
"numDocs": 123,
"indexFields": [
{
"name": "<string>",
"numDocs": 123
}
],
"default": "<string>"
}
]
Returns dynamic fields for a given collection.
curl --request GET \
--url https://{FUSION HOST}/api/collections/{collection}/schema/dynamicfields
[
{
"name": "<string>",
"type": "<string>",
"indexed": true,
"stored": true,
"multiValued": true,
"required": true,
"docValues": true,
"omitNorms": true,
"omitPositions": true,
"omitTermFreqAndPositions": true,
"termVectors": true,
"termPositions": true,
"termOffsets": true,
"copyDests": [
"<string>"
],
"copySources": [
"<string>"
],
"numDocs": 123,
"indexFields": [
{
"name": "<string>",
"numDocs": 123
}
],
"default": "<string>"
}
]
Collection ID.
successful operation
The response is of type object[]
.
Was this page helpful?