GET
/
index-profiles
/
_schema
Get the JSON schema
curl --request GET \
  --url https://{FUSION HOST}/api/index-profiles/_schema \
  --header 'Authorization: Basic <encoded-value>'
{
  "type": "string",
  "title": "<string>",
  "description": "<string>",
  "required": [
    "<string>"
  ],
  "properties": {},
  "additionalProperties": {},
  "minProperties": 123,
  "maxProperties": 123,
  "definitions": {},
  "category": "<string>",
  "categoryPriority": 123,
  "hints": [
    "<string>"
  ],
  "unsafe": true,
  "default": {},
  "oneOf": [
    {
      "type": "string",
      "title": "<string>",
      "description": "<string>",
      "default": {},
      "category": "<string>",
      "categoryPriority": 123,
      "hints": [
        "<string>"
      ],
      "unsafe": true
    }
  ],
  "propertyGroups": [
    {
      "label": "<string>",
      "properties": [
        "<string>"
      ]
    }
  ]
}

Authorizations

Authorization
string
header
required

Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.

Response

200
application/schema+json;qs=1.0

OK

Configuration properties.