GET
/
spark
/
schema
Get the jobs schema
curl --request GET \
  --url https://{FUSION HOST}/api/spark/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,
  "enum": [
    {}
  ],
  "hints": [
    "<string>"
  ],
  "default": {},
  "oneOf": [
    {
      "type": "string",
      "title": "<string>",
      "description": "<string>",
      "enum": [
        {}
      ],
      "default": {},
      "category": "<string>",
      "categoryPriority": 123,
      "hints": [
        "<string>"
      ]
    }
  ],
  "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/json

OK

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
enum
object[]
hints
string[]
default
object
oneOf
object[]
propertyGroups
object[]