This view specifies the format for exporting data.
GET http://[host-proxy]/api/view/ExportData/schema/?hierarchy=[hierarchy]&format=json&schema=1
{
"$schema": "http://json-schema.org/draft-03/schema",
"type": "object",
"properties": {
"export_format": {
"description": "Format of the file that will contain exported data.",
"title": "Export format",
"required": true,
"choices": [
{
"value": "json",
"title": "JSON"
},
{
"value": "raw_xlsx",
"title": "Excel"
},
{
"value": "xlsx",
"title": "Excel (formatted)"
}
],
"type": "string"
}
},
"schema_version": "0.1.0"
}