GET
/
collections
/
{collection}
/
schema
/
fieldTypes
List all collection field types
curl --request GET \
  --url https://{FUSION HOST}/api/collections/{collection}/schema/fieldTypes
[
  {
    "name": "<string>",
    "analyzer": {
      "tokenizer": {
        "class": "<string>"
      },
      "filters": [
        {
          "class": "<string>"
        }
      ],
      "type": "<string>",
      "class": "<string>"
    },
    "indexAnalyzer": {
      "tokenizer": {
        "class": "<string>"
      },
      "filters": [
        {
          "class": "<string>"
        }
      ],
      "type": "<string>",
      "class": "<string>"
    },
    "queryAnalyzer": {
      "tokenizer": {
        "class": "<string>"
      },
      "filters": [
        {
          "class": "<string>"
        }
      ],
      "type": "<string>",
      "class": "<string>"
    },
    "indexed": true,
    "stored": true,
    "multiValued": true,
    "positionIncrementGap": 123,
    "class": "<string>"
  }
]

Path Parameters

collection
string
required

Collection ID.

Response

200 - application/json

successful operation

The response is of type object[].