Skip to main content
GET
/
jobs
/
_schema
Get the jobs schema
import requests

url = "https://{FUSION HOST}/api/jobs/_schema"

response = requests.get(url)

print(response.text)
HttpResponse<String> response = Unirest.get("https://{FUSION HOST}/api/jobs/_schema")
.asString();
const options = {method: 'GET'};

fetch('https://{FUSION HOST}/api/jobs/_schema', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));
require 'uri'
require 'net/http'

url = URI("https://{FUSION HOST}/api/jobs/_schema")

http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true

request = Net::HTTP::Get.new(url)

response = http.request(request)
puts response.read_body
package main

import (
"fmt"
"net/http"
"io"
)

func main() {

url := "https://{FUSION HOST}/api/jobs/_schema"

req, _ := http.NewRequest("GET", url, nil)

res, _ := http.DefaultClient.Do(req)

defer res.Body.Close()
body, _ := io.ReadAll(res.Body)

fmt.Println(string(body))

}
<?php

$curl = curl_init();

curl_setopt_array($curl, [
CURLOPT_URL => "https://{FUSION HOST}/api/jobs/_schema",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);

$response = curl_exec($curl);
$err = curl_error($curl);

curl_close($curl);

if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}
curl --request GET \
--url https://{FUSION HOST}/api/jobs/_schema
{
  "title": "<string>",
  "description": "<string>",
  "required": [
    "<string>"
  ],
  "properties": {},
  "additionalProperties": {},
  "minProperties": 123,
  "maxProperties": 123,
  "definitions": {},
  "category": "<string>",
  "categoryPriority": 123,
  "enum": [
    {}
  ],
  "hints": [
    "<string>"
  ],
  "unsafe": true,
  "default": {},
  "oneOf": [
    {
      "title": "<string>",
      "description": "<string>",
      "enum": [
        {}
      ],
      "default": {},
      "category": "<string>",
      "categoryPriority": 123,
      "hints": [
        "<string>"
      ],
      "unsafe": true,
      "oneOf": "<unknown>"
    }
  ],
  "propertyGroups": [
    {
      "label": "<string>",
      "properties": [
        "<string>"
      ]
    }
  ]
}

Response

successful operation

type
enum<string>
read-only
Available options:
String,
Number,
Integer,
Boolean,
Object,
Array,
Null,
Ref
title
string
read-only
description
string
read-only
required
string[]
read-only
properties
object
read-only
additionalProperties
object
read-only
minProperties
integer<int32>
read-only
maxProperties
integer<int32>
read-only
definitions
object
read-only
category
string
read-only
categoryPriority
integer<int32>
read-only
enum
object[]
read-only
hints
string[]
read-only
unsafe
boolean
read-only
default
object
read-only
oneOf
object[]
read-only
propertyGroups
object[]
read-only