GET
/
index-stages
/
schema
/
{type}
Get an index stage
curl --request GET \
  --url https://{FUSION HOST}/api/index-stages/schema/{type} \
  --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.

Path Parameters

type
string
required

The name of the index stage.

Response

200 - application/json

OK

Configuration properties.

type
enum<string>
Available options:
string,
number,
integer,
boolean,
object,
array,
null,
ref
title
string
description
string
required
string[]
properties
object
additionalProperties
object
minProperties
integer
maxProperties
integer
definitions
object
category
string
categoryPriority
integer
hints
string[]
unsafe
boolean
default
object
oneOf
object[]
propertyGroups
object[]