Get settings schema
import requests
url = "https://{FUSION_HOST.com}/api/templating/settings/_schema"
response = requests.get(url)
print(response.text){
"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
}Get settings schema
Retrieve the configuration schema for settings.
GET
/
settings
/
_schema
Get settings schema
import requests
url = "https://{FUSION_HOST.com}/api/templating/settings/_schema"
response = requests.get(url)
print(response.text){
"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
The type of object returned in the response.
Description of what is returned in the schema response.
Example:
"General settings of the template service."
Description of the information stored in the schema.
Example:
"Stores common application configuration of templating service."
Properties stored in the schema.
Show child attributes
Show child attributes
The category of the object in the schema.
The importance (priority) of the object in the schema.
The security status of the objects in the schema. If false, the schema contents are valid. If true, the schema contents are not valid.
Was this page helpful?
⌘I