GET
/
settings
/
_schema
Get settings schema
curl --request GET \
  --url https://{FUSION_HOST.com}/api/templating/settings/_schema
{
  "type": "object",
  "title": "General settings of the template service.",
  "description": "Stores common application configuration of templating service.",
  "properties": {
    "id": {
      "type": "<string>",
      "title": "<string>",
      "description": "<string>"
    },
    "app": {
      "type": "<string>",
      "title": "<string>",
      "description": "<string>"
    },
    "hierarchyFields": {
      "type": "array",
      "title": "Hierarchy fields",
      "description": "<string>",
      "items": {
        "type": "object",
        "properties": {
          "field": {
            "type": "<string>",
            "title": "<string>",
            "description": "<string>"
          }
        },
        "separator": {
          "type": "<string>",
          "title": "<string>",
          "description": "<string>"
        }
      }
    }
  },
  "category": "<string>",
  "categoryPriority": "<string>",
  "unsafe": true
}

Response

OK

type
string
default:object

The type of object returned in the response.

title
string

Description of what is returned in the schema response.

Example:

"General settings of the template service."

description
string

Description of the information stored in the schema.

Example:

"Stores common application configuration of templating service."

properties
object

Properties stored in the schema.

category
string

The category of the object in the schema.

categoryPriority
string

The importance (priority) of the object in the schema.

unsafe
boolean

The security status of the objects in the schema. If false, the schema contents are valid. If true, the schema contents are not valid.