GET http://[host-proxy]/api/view/DataSettings/schema/?hierarchy=[hierarchy]&format=json&schema=1
{
"$schema": "http://json-schema.org/draft-03/schema",
"type": "object",
"properties": {
"transaction_log_level": {
"title": "Transaction Log Level",
"description": "The level of verbosity of transaction logs.",
"type": "integer",
"choices": [
{
"value": 10,
"title": "Debug"
},
{
"value": 15,
"title": "Verbose"
},
{
"value": 20,
"title": "Info"
},
{
"value": 30,
"title": "Warning"
},
{
"value": 40,
"title": "Error"
},
{
"value": 999,
"title": "Disabled"
}
]
},
"transaction_log_level_notes": {
"title": "Transaction Log Level Notes",
"description": "Additional notes to convey warnings regarding the value of Transaction Log Level.",
"type": "string",
"maxLength": 1024,
"readonly": true
}
}
}