Fetch Specs
curl --request POST \
--url https://pivot-table.sightx.io/v1/pivotTable/fetchSpecs \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data '
{
"groups": [],
"projectId": "{{projectId}}"
}
'import requests
url = "https://pivot-table.sightx.io/v1/pivotTable/fetchSpecs"
payload = {
"groups": [],
"projectId": "{{projectId}}"
}
headers = {
"Authorization": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({groups: [], projectId: '{{projectId}}'})
};
fetch('https://pivot-table.sightx.io/v1/pivotTable/fetchSpecs', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://pivot-table.sightx.io/v1/pivotTable/fetchSpecs",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'groups' => [
],
'projectId' => '{{projectId}}'
]),
CURLOPT_HTTPHEADER => [
"Authorization: <api-key>",
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://pivot-table.sightx.io/v1/pivotTable/fetchSpecs"
payload := strings.NewReader("{\n \"groups\": [],\n \"projectId\": \"{{projectId}}\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Authorization", "<api-key>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://pivot-table.sightx.io/v1/pivotTable/fetchSpecs")
.header("Authorization", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"groups\": [],\n \"projectId\": \"{{projectId}}\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://pivot-table.sightx.io/v1/pivotTable/fetchSpecs")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Authorization"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"groups\": [],\n \"projectId\": \"{{projectId}}\"\n}"
response = http.request(request)
puts response.read_body{
"dimensions": [
"60de2bb029a7230061e209f8",
"60de2bdeffcabb005be295df",
"60de2c6effcabb005be29616",
"60de33c629a7230061e20a7c",
"60de2cdcffcabb005be296bf",
"60de34bbffcabb005be29765",
"60de34f5ffcabb005be2976f",
"60de341029a7230061e20afc",
"60de341029a7230061e20afd",
"60de341029a7230061e20afe",
"60de34bbffcabb005be29766",
"60de34f5ffcabb005be29770",
"60de341029a7230061e20b01",
"60de341029a7230061e20b02",
"60de341029a7230061e20b03",
"60de34bbffcabb005be29767",
"60de34f5ffcabb005be29771",
"60de341029a7230061e20b06",
"60de341029a7230061e20b07",
"60de341029a7230061e20b08",
"60de34bbffcabb005be29768",
"60de34f5ffcabb005be29772",
"60de341029a7230061e20b0b",
"60de341029a7230061e20b0c",
"60de341029a7230061e20b0d",
"60de34bbffcabb005be29769",
"60de34f5ffcabb005be29773",
"60de3528ffcabb005be29835",
"60de3528ffcabb005be29836",
"60de3528ffcabb005be29837",
"60de3528ffcabb005be29841",
"60de3528ffcabb005be29843",
"60de3564ffcabb005be29b07",
"60de3564ffcabb005be29b08",
"60de3564ffcabb005be29b09",
"60de3564ffcabb005be29b13",
"60de3564ffcabb005be29b15",
"60de3564ffcabb005be29b18",
"60de3564ffcabb005be29b19",
"60de3564ffcabb005be29b1a",
"60de3564ffcabb005be29b24",
"60de3564ffcabb005be29b26",
"60de355bffcabb005be29ad3",
"60de355bffcabb005be29ad4",
"60de355bffcabb005be29ad5",
"60de355bffcabb005be29adf",
"60de355bffcabb005be29ae1",
"60de3564ffcabb005be29b2a",
"60de3564ffcabb005be29b2b",
"60de3564ffcabb005be29b2c",
"60de3564ffcabb005be29b36",
"60de3564ffcabb005be29b38",
"60de3564ffcabb005be29b3b",
"60de3564ffcabb005be29b3c",
"60de3564ffcabb005be29b3d",
"60de3564ffcabb005be29b47",
"60de3564ffcabb005be29b49",
"60de3564ffcabb005be29b4c",
"60de3564ffcabb005be29b4d",
"60de3564ffcabb005be29b4e",
"60de3564ffcabb005be29b58",
"60de3564ffcabb005be29b5a"
],
"measures": [
{
"aggregationType": 1,
"label": "Count"
},
{
"aggregationType": 2,
"questionId": "60de2bb029a7230061e209f8",
"label": "Min"
},
{
"aggregationType": 3,
"questionId": "60de2bb029a7230061e209f8",
"label": "Max"
},
{
"aggregationType": 5,
"questionId": "60de2bb029a7230061e209f8",
"label": "Average"
},
{
"aggregationType": 2,
"questionId": "60de2bdeffcabb005be295df",
"label": "Min"
},
{
"aggregationType": 3,
"questionId": "60de2bdeffcabb005be295df",
"label": "Max"
},
{
"aggregationType": 5,
"questionId": "60de2bdeffcabb005be295df",
"label": "Average"
},
{
"aggregationType": 2,
"questionId": "60de2c6effcabb005be29616",
"label": "Min"
},
{
"aggregationType": 3,
"questionId": "60de2c6effcabb005be29616",
"label": "Max"
},
{
"aggregationType": 5,
"questionId": "60de2c6effcabb005be29616",
"label": "Average"
},
{
"aggregationType": 2,
"questionId": "60de33c629a7230061e20a7c",
"label": "Min"
},
{
"aggregationType": 3,
"questionId": "60de33c629a7230061e20a7c",
"label": "Max"
},
{
"aggregationType": 5,
"questionId": "60de33c629a7230061e20a7c",
"label": "Average"
},
{
"aggregationType": 2,
"questionId": "60de2cdcffcabb005be296bf",
"label": "Min"
},
{
"aggregationType": 3,
"questionId": "60de2cdcffcabb005be296bf",
"label": "Max"
},
{
"aggregationType": 5,
"questionId": "60de2cdcffcabb005be296bf",
"label": "Average"
},
{
"aggregationType": 2,
"questionId": "60de3451ffcabb005be29743",
"label": "Min"
},
{
"aggregationType": 3,
"questionId": "60de3451ffcabb005be29743",
"label": "Max"
},
{
"aggregationType": 5,
"questionId": "60de3451ffcabb005be29743",
"label": "Average"
},
{
"aggregationType": 4,
"questionId": "60de3451ffcabb005be29743",
"label": "Sum"
},
{
"aggregationType": 2,
"questionId": "60de3485ffcabb005be2974d",
"label": "Min"
},
{
"aggregationType": 3,
"questionId": "60de3485ffcabb005be2974d",
"label": "Max"
},
{
"aggregationType": 5,
"questionId": "60de3485ffcabb005be2974d",
"label": "Average"
},
{
"aggregationType": 4,
"questionId": "60de3485ffcabb005be2974d",
"label": "Sum"
},
{
"aggregationType": 2,
"questionId": "60de349dffcabb005be29752",
"label": "Min"
},
{
"aggregationType": 3,
"questionId": "60de349dffcabb005be29752",
"label": "Max"
},
{
"aggregationType": 5,
"questionId": "60de349dffcabb005be29752",
"label": "Average"
},
{
"aggregationType": 4,
"questionId": "60de349dffcabb005be29752",
"label": "Sum"
},
{
"aggregationType": 2,
"questionId": "60de34a7ffcabb005be2975b",
"label": "Min"
},
{
"aggregationType": 3,
"questionId": "60de34a7ffcabb005be2975b",
"label": "Max"
},
{
"aggregationType": 5,
"questionId": "60de34a7ffcabb005be2975b",
"label": "Average"
},
{
"aggregationType": 4,
"questionId": "60de34a7ffcabb005be2975b",
"label": "Sum"
},
{
"aggregationType": 2,
"questionId": "60de34afffcabb005be29760",
"label": "Min"
},
{
"aggregationType": 3,
"questionId": "60de34afffcabb005be29760",
"label": "Max"
},
{
"aggregationType": 5,
"questionId": "60de34afffcabb005be29760",
"label": "Average"
},
{
"aggregationType": 4,
"questionId": "60de34afffcabb005be29760",
"label": "Sum"
},
{
"aggregationType": 2,
"questionId": "60de34bbffcabb005be29765",
"label": "Min"
},
{
"aggregationType": 3,
"questionId": "60de34bbffcabb005be29765",
"label": "Max"
},
{
"aggregationType": 5,
"questionId": "60de34bbffcabb005be29765",
"label": "Average"
},
{
"aggregationType": 2,
"questionId": "60de34c3ffcabb005be2976a",
"label": "Min"
},
{
"aggregationType": 3,
"questionId": "60de34c3ffcabb005be2976a",
"label": "Max"
},
{
"aggregationType": 5,
"questionId": "60de34c3ffcabb005be2976a",
"label": "Average"
},
{
"aggregationType": 2,
"questionId": "60de34f5ffcabb005be2976f",
"label": "Min"
},
{
"aggregationType": 3,
"questionId": "60de34f5ffcabb005be2976f",
"label": "Max"
},
{
"aggregationType": 5,
"questionId": "60de34f5ffcabb005be2976f",
"label": "Average"
},
{
"aggregationType": 2,
"questionId": "60de341029a7230061e20afc",
"label": "Min"
},
{
"aggregationType": 3,
"questionId": "60de341029a7230061e20afc",
"label": "Max"
},
{
"aggregationType": 5,
"questionId": "60de341029a7230061e20afc",
"label": "Average"
},
{
"aggregationType": 2,
"questionId": "60de341029a7230061e20afd",
"label": "Min"
},
{
"aggregationType": 3,
"questionId": "60de341029a7230061e20afd",
"label": "Max"
},
{
"aggregationType": 5,
"questionId": "60de341029a7230061e20afd",
"label": "Average"
},
{
"aggregationType": 2,
"questionId": "60de341029a7230061e20afe",
"label": "Min"
},
{
"aggregationType": 3,
"questionId": "60de341029a7230061e20afe",
"label": "Max"
},
{
"aggregationType": 5,
"questionId": "60de341029a7230061e20afe",
"label": "Average"
},
{
"aggregationType": 2,
"questionId": "60de3451ffcabb005be29744",
"label": "Min"
},
{
"aggregationType": 3,
"questionId": "60de3451ffcabb005be29744",
"label": "Max"
},
{
"aggregationType": 5,
"questionId": "60de3451ffcabb005be29744",
"label": "Average"
},
{
"aggregationType": 4,
"questionId": "60de3451ffcabb005be29744",
"label": "Sum"
},
{
"aggregationType": 2,
"questionId": "60de3485ffcabb005be2974e",
"label": "Min"
},
{
"aggregationType": 3,
"questionId": "60de3485ffcabb005be2974e",
"label": "Max"
},
{
"aggregationType": 5,
"questionId": "60de3485ffcabb005be2974e",
"label": "Average"
},
{
"aggregationType": 4,
"questionId": "60de3485ffcabb005be2974e",
"label": "Sum"
},
{
"aggregationType": 2,
"questionId": "60de34a3ffcabb005be29757",
"label": "Min"
},
{
"aggregationType": 3,
"questionId": "60de34a3ffcabb005be29757",
"label": "Max"
},
{
"aggregationType": 5,
"questionId": "60de34a3ffcabb005be29757",
"label": "Average"
},
{
"aggregationType": 4,
"questionId": "60de34a3ffcabb005be29757",
"label": "Sum"
},
{
"aggregationType": 2,
"questionId": "60de34a7ffcabb005be2975c",
"label": "Min"
},
{
"aggregationType": 3,
"questionId": "60de34a7ffcabb005be2975c",
"label": "Max"
},
{
"aggregationType": 5,
"questionId": "60de34a7ffcabb005be2975c",
"label": "Average"
},
{
"aggregationType": 4,
"questionId": "60de34a7ffcabb005be2975c",
"label": "Sum"
},
{
"aggregationType": 2,
"questionId": "60de34afffcabb005be29761",
"label": "Min"
},
{
"aggregationType": 3,
"questionId": "60de34afffcabb005be29761",
"label": "Max"
},
{
"aggregationType": 5,
"questionId": "60de34afffcabb005be29761",
"label": "Average"
},
{
"aggregationType": 4,
"questionId": "60de34afffcabb005be29761",
"label": "Sum"
},
{
"aggregationType": 2,
"questionId": "60de34bbffcabb005be29766",
"label": "Min"
},
{
"aggregationType": 3,
"questionId": "60de34bbffcabb005be29766",
"label": "Max"
},
{
"aggregationType": 5,
"questionId": "60de34bbffcabb005be29766",
"label": "Average"
},
{
"aggregationType": 2,
"questionId": "60de34c3ffcabb005be2976b",
"label": "Min"
},
{
"aggregationType": 3,
"questionId": "60de34c3ffcabb005be2976b",
"label": "Max"
},
{
"aggregationType": 5,
"questionId": "60de34c3ffcabb005be2976b",
"label": "Average"
},
{
"aggregationType": 2,
"questionId": "60de34f5ffcabb005be29770",
"label": "Min"
},
{
"aggregationType": 3,
"questionId": "60de34f5ffcabb005be29770",
"label": "Max"
},
{
"aggregationType": 5,
"questionId": "60de34f5ffcabb005be29770",
"label": "Average"
},
{
"aggregationType": 2,
"questionId": "60de341029a7230061e20b01",
"label": "Min"
},
{
"aggregationType": 3,
"questionId": "60de341029a7230061e20b01",
"label": "Max"
},
{
"aggregationType": 5,
"questionId": "60de341029a7230061e20b01",
"label": "Average"
},
{
"aggregationType": 2,
"questionId": "60de341029a7230061e20b02",
"label": "Min"
},
{
"aggregationType": 3,
"questionId": "60de341029a7230061e20b02",
"label": "Max"
},
{
"aggregationType": 5,
"questionId": "60de341029a7230061e20b02",
"label": "Average"
},
{
"aggregationType": 2,
"questionId": "60de341029a7230061e20b03",
"label": "Min"
},
{
"aggregationType": 3,
"questionId": "60de341029a7230061e20b03",
"label": "Max"
},
{
"aggregationType": 5,
"questionId": "60de341029a7230061e20b03",
"label": "Average"
},
{
"aggregationType": 2,
"questionId": "60de3451ffcabb005be29745",
"label": "Min"
},
{
"aggregationType": 3,
"questionId": "60de3451ffcabb005be29745",
"label": "Max"
},
{
"aggregationType": 5,
"questionId": "60de3451ffcabb005be29745",
"label": "Average"
},
{
"aggregationType": 4,
"questionId": "60de3451ffcabb005be29745",
"label": "Sum"
},
{
"aggregationType": 2,
"questionId": "60de3485ffcabb005be2974f",
"label": "Min"
},
{
"aggregationType": 3,
"questionId": "60de3485ffcabb005be2974f",
"label": "Max"
},
{
"aggregationType": 5,
"questionId": "60de3485ffcabb005be2974f",
"label": "Average"
},
{
"aggregationType": 4,
"questionId": "60de3485ffcabb005be2974f",
"label": "Sum"
},
{
"aggregationType": 2,
"questionId": "60de34a3ffcabb005be29758",
"label": "Min"
},
{
"aggregationType": 3,
"questionId": "60de34a3ffcabb005be29758",
"label": "Max"
},
{
"aggregationType": 5,
"questionId": "60de34a3ffcabb005be29758",
"label": "Average"
},
{
"aggregationType": 4,
"questionId": "60de34a3ffcabb005be29758",
"label": "Sum"
},
{
"aggregationType": 2,
"questionId": "60de34a7ffcabb005be2975d",
"label": "Min"
},
{
"aggregationType": 3,
"questionId": "60de34a7ffcabb005be2975d",
"label": "Max"
},
{
"aggregationType": 5,
"questionId": "60de34a7ffcabb005be2975d",
"label": "Average"
},
{
"aggregationType": 4,
"questionId": "60de34a7ffcabb005be2975d",
"label": "Sum"
},
{
"aggregationType": 2,
"questionId": "60de34afffcabb005be29762",
"label": "Min"
},
{
"aggregationType": 3,
"questionId": "60de34afffcabb005be29762",
"label": "Max"
},
{
"aggregationType": 5,
"questionId": "60de34afffcabb005be29762",
"label": "Average"
},
{
"aggregationType": 4,
"questionId": "60de34afffcabb005be29762",
"label": "Sum"
},
{
"aggregationType": 2,
"questionId": "60de34bbffcabb005be29767",
"label": "Min"
},
{
"aggregationType": 3,
"questionId": "60de34bbffcabb005be29767",
"label": "Max"
},
{
"aggregationType": 5,
"questionId": "60de34bbffcabb005be29767",
"label": "Average"
},
{
"aggregationType": 2,
"questionId": "60de34c3ffcabb005be2976c",
"label": "Min"
},
{
"aggregationType": 3,
"questionId": "60de34c3ffcabb005be2976c",
"label": "Max"
},
{
"aggregationType": 5,
"questionId": "60de34c3ffcabb005be2976c",
"label": "Average"
},
{
"aggregationType": 2,
"questionId": "60de34f5ffcabb005be29771",
"label": "Min"
},
{
"aggregationType": 3,
"questionId": "60de34f5ffcabb005be29771",
"label": "Max"
},
{
"aggregationType": 5,
"questionId": "60de34f5ffcabb005be29771",
"label": "Average"
},
{
"aggregationType": 2,
"questionId": "60de341029a7230061e20b06",
"label": "Min"
},
{
"aggregationType": 3,
"questionId": "60de341029a7230061e20b06",
"label": "Max"
},
{
"aggregationType": 5,
"questionId": "60de341029a7230061e20b06",
"label": "Average"
},
{
"aggregationType": 2,
"questionId": "60de341029a7230061e20b07",
"label": "Min"
},
{
"aggregationType": 3,
"questionId": "60de341029a7230061e20b07",
"label": "Max"
},
{
"aggregationType": 5,
"questionId": "60de341029a7230061e20b07",
"label": "Average"
},
{
"aggregationType": 2,
"questionId": "60de341029a7230061e20b08",
"label": "Min"
},
{
"aggregationType": 3,
"questionId": "60de341029a7230061e20b08",
"label": "Max"
},
{
"aggregationType": 5,
"questionId": "60de341029a7230061e20b08",
"label": "Average"
},
{
"aggregationType": 2,
"questionId": "60de3451ffcabb005be29746",
"label": "Min"
},
{
"aggregationType": 3,
"questionId": "60de3451ffcabb005be29746",
"label": "Max"
},
{
"aggregationType": 5,
"questionId": "60de3451ffcabb005be29746",
"label": "Average"
},
{
"aggregationType": 4,
"questionId": "60de3451ffcabb005be29746",
"label": "Sum"
},
{
"aggregationType": 2,
"questionId": "60de3485ffcabb005be29750",
"label": "Min"
},
{
"aggregationType": 3,
"questionId": "60de3485ffcabb005be29750",
"label": "Max"
},
{
"aggregationType": 5,
"questionId": "60de3485ffcabb005be29750",
"label": "Average"
},
{
"aggregationType": 4,
"questionId": "60de3485ffcabb005be29750",
"label": "Sum"
},
{
"aggregationType": 2,
"questionId": "60de34a3ffcabb005be29759",
"label": "Min"
},
{
"aggregationType": 3,
"questionId": "60de34a3ffcabb005be29759",
"label": "Max"
},
{
"aggregationType": 5,
"questionId": "60de34a3ffcabb005be29759",
"label": "Average"
},
{
"aggregationType": 4,
"questionId": "60de34a3ffcabb005be29759",
"label": "Sum"
},
{
"aggregationType": 2,
"questionId": "60de34a7ffcabb005be2975e",
"label": "Min"
},
{
"aggregationType": 3,
"questionId": "60de34a7ffcabb005be2975e",
"label": "Max"
},
{
"aggregationType": 5,
"questionId": "60de34a7ffcabb005be2975e",
"label": "Average"
},
{
"aggregationType": 4,
"questionId": "60de34a7ffcabb005be2975e",
"label": "Sum"
},
{
"aggregationType": 2,
"questionId": "60de34afffcabb005be29763",
"label": "Min"
},
{
"aggregationType": 3,
"questionId": "60de34afffcabb005be29763",
"label": "Max"
},
{
"aggregationType": 5,
"questionId": "60de34afffcabb005be29763",
"label": "Average"
},
{
"aggregationType": 4,
"questionId": "60de34afffcabb005be29763",
"label": "Sum"
},
{
"aggregationType": 2,
"questionId": "60de34bbffcabb005be29768",
"label": "Min"
},
{
"aggregationType": 3,
"questionId": "60de34bbffcabb005be29768",
"label": "Max"
},
{
"aggregationType": 5,
"questionId": "60de34bbffcabb005be29768",
"label": "Average"
},
{
"aggregationType": 2,
"questionId": "60de34c3ffcabb005be2976d",
"label": "Min"
},
{
"aggregationType": 3,
"questionId": "60de34c3ffcabb005be2976d",
"label": "Max"
},
{
"aggregationType": 5,
"questionId": "60de34c3ffcabb005be2976d",
"label": "Average"
},
{
"aggregationType": 2,
"questionId": "60de34f5ffcabb005be29772",
"label": "Min"
},
{
"aggregationType": 3,
"questionId": "60de34f5ffcabb005be29772",
"label": "Max"
},
{
"aggregationType": 5,
"questionId": "60de34f5ffcabb005be29772",
"label": "Average"
},
{
"aggregationType": 2,
"questionId": "60de341029a7230061e20b0b",
"label": "Min"
},
{
"aggregationType": 3,
"questionId": "60de341029a7230061e20b0b",
"label": "Max"
},
{
"aggregationType": 5,
"questionId": "60de341029a7230061e20b0b",
"label": "Average"
},
{
"aggregationType": 2,
"questionId": "60de341029a7230061e20b0c",
"label": "Min"
},
{
"aggregationType": 3,
"questionId": "60de341029a7230061e20b0c",
"label": "Max"
},
{
"aggregationType": 5,
"questionId": "60de341029a7230061e20b0c",
"label": "Average"
},
{
"aggregationType": 2,
"questionId": "60de341029a7230061e20b0d",
"label": "Min"
},
{
"aggregationType": 3,
"questionId": "60de341029a7230061e20b0d",
"label": "Max"
},
{
"aggregationType": 5,
"questionId": "60de341029a7230061e20b0d",
"label": "Average"
},
{
"aggregationType": 2,
"questionId": "60de3451ffcabb005be29747",
"label": "Min"
},
{
"aggregationType": 3,
"questionId": "60de3451ffcabb005be29747",
"label": "Max"
},
{
"aggregationType": 5,
"questionId": "60de3451ffcabb005be29747",
"label": "Average"
},
{
"aggregationType": 4,
"questionId": "60de3451ffcabb005be29747",
"label": "Sum"
},
{
"aggregationType": 2,
"questionId": "60de3485ffcabb005be29751",
"label": "Min"
},
{
"aggregationType": 3,
"questionId": "60de3485ffcabb005be29751",
"label": "Max"
},
{
"aggregationType": 5,
"questionId": "60de3485ffcabb005be29751",
"label": "Average"
},
{
"aggregationType": 4,
"questionId": "60de3485ffcabb005be29751",
"label": "Sum"
},
{
"aggregationType": 2,
"questionId": "60de34a3ffcabb005be2975a",
"label": "Min"
},
{
"aggregationType": 3,
"questionId": "60de34a3ffcabb005be2975a",
"label": "Max"
},
{
"aggregationType": 5,
"questionId": "60de34a3ffcabb005be2975a",
"label": "Average"
},
{
"aggregationType": 4,
"questionId": "60de34a3ffcabb005be2975a",
"label": "Sum"
},
{
"aggregationType": 2,
"questionId": "60de34a7ffcabb005be2975f",
"label": "Min"
},
{
"aggregationType": 3,
"questionId": "60de34a7ffcabb005be2975f",
"label": "Max"
},
{
"aggregationType": 5,
"questionId": "60de34a7ffcabb005be2975f",
"label": "Average"
},
{
"aggregationType": 4,
"questionId": "60de34a7ffcabb005be2975f",
"label": "Sum"
},
{
"aggregationType": 2,
"questionId": "60de34afffcabb005be29764",
"label": "Min"
},
{
"aggregationType": 3,
"questionId": "60de34afffcabb005be29764",
"label": "Max"
},
{
"aggregationType": 5,
"questionId": "60de34afffcabb005be29764",
"label": "Average"
},
{
"aggregationType": 4,
"questionId": "60de34afffcabb005be29764",
"label": "Sum"
},
{
"aggregationType": 2,
"questionId": "60de34bbffcabb005be29769",
"label": "Min"
},
{
"aggregationType": 3,
"questionId": "60de34bbffcabb005be29769",
"label": "Max"
},
{
"aggregationType": 5,
"questionId": "60de34bbffcabb005be29769",
"label": "Average"
},
{
"aggregationType": 2,
"questionId": "60de34c3ffcabb005be2976e",
"label": "Min"
},
{
"aggregationType": 3,
"questionId": "60de34c3ffcabb005be2976e",
"label": "Max"
},
{
"aggregationType": 5,
"questionId": "60de34c3ffcabb005be2976e",
"label": "Average"
},
{
"aggregationType": 2,
"questionId": "60de34f5ffcabb005be29773",
"label": "Min"
},
{
"aggregationType": 3,
"questionId": "60de34f5ffcabb005be29773",
"label": "Max"
},
{
"aggregationType": 5,
"questionId": "60de34f5ffcabb005be29773",
"label": "Average"
},
{
"aggregationType": 2,
"questionId": "60de3528ffcabb005be29835",
"label": "Min"
},
{
"aggregationType": 3,
"questionId": "60de3528ffcabb005be29835",
"label": "Max"
},
{
"aggregationType": 5,
"questionId": "60de3528ffcabb005be29835",
"label": "Average"
},
{
"aggregationType": 2,
"questionId": "60de3528ffcabb005be29836",
"label": "Min"
},
{
"aggregationType": 3,
"questionId": "60de3528ffcabb005be29836",
"label": "Max"
},
{
"aggregationType": 5,
"questionId": "60de3528ffcabb005be29836",
"label": "Average"
},
{
"aggregationType": 2,
"questionId": "60de3528ffcabb005be29837",
"label": "Min"
},
{
"aggregationType": 3,
"questionId": "60de3528ffcabb005be29837",
"label": "Max"
},
{
"aggregationType": 5,
"questionId": "60de3528ffcabb005be29837",
"label": "Average"
},
{
"aggregationType": 2,
"questionId": "60de3528ffcabb005be29839",
"label": "Min"
},
{
"aggregationType": 3,
"questionId": "60de3528ffcabb005be29839",
"label": "Max"
},
{
"aggregationType": 5,
"questionId": "60de3528ffcabb005be29839",
"label": "Average"
},
{
"aggregationType": 4,
"questionId": "60de3528ffcabb005be29839",
"label": "Sum"
},
{
"aggregationType": 2,
"questionId": "60de3528ffcabb005be2983d",
"label": "Min"
},
{
"aggregationType": 3,
"questionId": "60de3528ffcabb005be2983d",
"label": "Max"
},
{
"aggregationType": 5,
"questionId": "60de3528ffcabb005be2983d",
"label": "Average"
},
{
"aggregationType": 4,
"questionId": "60de3528ffcabb005be2983d",
"label": "Sum"
},
{
"aggregationType": 2,
"questionId": "60de3528ffcabb005be2983e",
"label": "Min"
},
{
"aggregationType": 3,
"questionId": "60de3528ffcabb005be2983e",
"label": "Max"
},
{
"aggregationType": 5,
"questionId": "60de3528ffcabb005be2983e",
"label": "Average"
},
{
"aggregationType": 4,
"questionId": "60de3528ffcabb005be2983e",
"label": "Sum"
},
{
"aggregationType": 2,
"questionId": "60de3528ffcabb005be2983f",
"label": "Min"
},
{
"aggregationType": 3,
"questionId": "60de3528ffcabb005be2983f",
"label": "Max"
},
{
"aggregationType": 5,
"questionId": "60de3528ffcabb005be2983f",
"label": "Average"
},
{
"aggregationType": 4,
"questionId": "60de3528ffcabb005be2983f",
"label": "Sum"
},
{
"aggregationType": 2,
"questionId": "60de3528ffcabb005be29840",
"label": "Min"
},
{
"aggregationType": 3,
"questionId": "60de3528ffcabb005be29840",
"label": "Max"
},
{
"aggregationType": 5,
"questionId": "60de3528ffcabb005be29840",
"label": "Average"
},
{
"aggregationType": 4,
"questionId": "60de3528ffcabb005be29840",
"label": "Sum"
},
{
"aggregationType": 2,
"questionId": "60de3528ffcabb005be29841",
"label": "Min"
},
{
"aggregationType": 3,
"questionId": "60de3528ffcabb005be29841",
"label": "Max"
},
{
"aggregationType": 5,
"questionId": "60de3528ffcabb005be29841",
"label": "Average"
},
{
"aggregationType": 2,
"questionId": "60de3528ffcabb005be29842",
"label": "Min"
},
{
"aggregationType": 3,
"questionId": "60de3528ffcabb005be29842",
"label": "Max"
},
{
"aggregationType": 5,
"questionId": "60de3528ffcabb005be29842",
"label": "Average"
},
{
"aggregationType": 2,
"questionId": "60de3528ffcabb005be29843",
"label": "Min"
},
{
"aggregationType": 3,
"questionId": "60de3528ffcabb005be29843",
"label": "Max"
},
{
"aggregationType": 5,
"questionId": "60de3528ffcabb005be29843",
"label": "Average"
},
{
"aggregationType": 2,
"questionId": "60de3564ffcabb005be29b07",
"label": "Min"
},
{
"aggregationType": 3,
"questionId": "60de3564ffcabb005be29b07",
"label": "Max"
},
{
"aggregationType": 5,
"questionId": "60de3564ffcabb005be29b07",
"label": "Average"
},
{
"aggregationType": 2,
"questionId": "60de3564ffcabb005be29b08",
"label": "Min"
},
{
"aggregationType": 3,
"questionId": "60de3564ffcabb005be29b08",
"label": "Max"
},
{
"aggregationType": 5,
"questionId": "60de3564ffcabb005be29b08",
"label": "Average"
},
{
"aggregationType": 2,
"questionId": "60de3564ffcabb005be29b09",
"label": "Min"
},
{
"aggregationType": 3,
"questionId": "60de3564ffcabb005be29b09",
"label": "Max"
},
{
"aggregationType": 5,
"questionId": "60de3564ffcabb005be29b09",
"label": "Average"
},
{
"aggregationType": 2,
"questionId": "60de3564ffcabb005be29b0b",
"label": "Min"
},
{
"aggregationType": 3,
"questionId": "60de3564ffcabb005be29b0b",
"label": "Max"
},
{
"aggregationType": 5,
"questionId": "60de3564ffcabb005be29b0b",
"label": "Average"
},
{
"aggregationType": 4,
"questionId": "60de3564ffcabb005be29b0b",
"label": "Sum"
},
{
"aggregationType": 2,
"questionId": "60de3564ffcabb005be29b0f",
"label": "Min"
},
{
"aggregationType": 3,
"questionId": "60de3564ffcabb005be29b0f",
"label": "Max"
},
{
"aggregationType": 5,
"questionId": "60de3564ffcabb005be29b0f",
"label": "Average"
},
{
"aggregationType": 4,
"questionId": "60de3564ffcabb005be29b0f",
"label": "Sum"
},
{
"aggregationType": 2,
"questionId": "60de3564ffcabb005be29b10",
"label": "Min"
},
{
"aggregationType": 3,
"questionId": "60de3564ffcabb005be29b10",
"label": "Max"
},
{
"aggregationType": 5,
"questionId": "60de3564ffcabb005be29b10",
"label": "Average"
},
{
"aggregationType": 4,
"questionId": "60de3564ffcabb005be29b10",
"label": "Sum"
},
{
"aggregationType": 2,
"questionId": "60de3564ffcabb005be29b11",
"label": "Min"
},
{
"aggregationType": 3,
"questionId": "60de3564ffcabb005be29b11",
"label": "Max"
},
{
"aggregationType": 5,
"questionId": "60de3564ffcabb005be29b11",
"label": "Average"
},
{
"aggregationType": 4,
"questionId": "60de3564ffcabb005be29b11",
"label": "Sum"
},
{
"aggregationType": 2,
"questionId": "60de3564ffcabb005be29b12",
"label": "Min"
},
{
"aggregationType": 3,
"questionId": "60de3564ffcabb005be29b12",
"label": "Max"
},
{
"aggregationType": 5,
"questionId": "60de3564ffcabb005be29b12",
"label": "Average"
},
{
"aggregationType": 4,
"questionId": "60de3564ffcabb005be29b12",
"label": "Sum"
},
{
"aggregationType": 2,
"questionId": "60de3564ffcabb005be29b13",
"label": "Min"
},
{
"aggregationType": 3,
"questionId": "60de3564ffcabb005be29b13",
"label": "Max"
},
{
"aggregationType": 5,
"questionId": "60de3564ffcabb005be29b13",
"label": "Average"
},
{
"aggregationType": 2,
"questionId": "60de3564ffcabb005be29b14",
"label": "Min"
},
{
"aggregationType": 3,
"questionId": "60de3564ffcabb005be29b14",
"label": "Max"
},
{
"aggregationType": 5,
"questionId": "60de3564ffcabb005be29b14",
"label": "Average"
},
{
"aggregationType": 2,
"questionId": "60de3564ffcabb005be29b15",
"label": "Min"
},
{
"aggregationType": 3,
"questionId": "60de3564ffcabb005be29b15",
"label": "Max"
},
{
"aggregationType": 5,
"questionId": "60de3564ffcabb005be29b15",
"label": "Average"
},
{
"aggregationType": 2,
"questionId": "60de3564ffcabb005be29b18",
"label": "Min"
},
{
"aggregationType": 3,
"questionId": "60de3564ffcabb005be29b18",
"label": "Max"
},
{
"aggregationType": 5,
"questionId": "60de3564ffcabb005be29b18",
"label": "Average"
},
{
"aggregationType": 2,
"questionId": "60de3564ffcabb005be29b19",
"label": "Min"
},
{
"aggregationType": 3,
"questionId": "60de3564ffcabb005be29b19",
"label": "Max"
},
{
"aggregationType": 5,
"questionId": "60de3564ffcabb005be29b19",
"label": "Average"
},
{
"aggregationType": 2,
"questionId": "60de3564ffcabb005be29b1a",
"label": "Min"
},
{
"aggregationType": 3,
"questionId": "60de3564ffcabb005be29b1a",
"label": "Max"
},
{
"aggregationType": 5,
"questionId": "60de3564ffcabb005be29b1a",
"label": "Average"
},
{
"aggregationType": 2,
"questionId": "60de3564ffcabb005be29b1c",
"label": "Min"
},
{
"aggregationType": 3,
"questionId": "60de3564ffcabb005be29b1c",
"label": "Max"
},
{
"aggregationType": 5,
"questionId": "60de3564ffcabb005be29b1c",
"label": "Average"
},
{
"aggregationType": 4,
"questionId": "60de3564ffcabb005be29b1c",
"label": "Sum"
},
{
"aggregationType": 2,
"questionId": "60de3564ffcabb005be29b20",
"label": "Min"
},
{
"aggregationType": 3,
"questionId": "60de3564ffcabb005be29b20",
"label": "Max"
},
{
"aggregationType": 5,
"questionId": "60de3564ffcabb005be29b20",
"label": "Average"
},
{
"aggregationType": 4,
"questionId": "60de3564ffcabb005be29b20",
"label": "Sum"
},
{
"aggregationType": 2,
"questionId": "60de3564ffcabb005be29b21",
"label": "Min"
},
{
"aggregationType": 3,
"questionId": "60de3564ffcabb005be29b21",
"label": "Max"
},
{
"aggregationType": 5,
"questionId": "60de3564ffcabb005be29b21",
"label": "Average"
},
{
"aggregationType": 4,
"questionId": "60de3564ffcabb005be29b21",
"label": "Sum"
},
{
"aggregationType": 2,
"questionId": "60de3564ffcabb005be29b22",
"label": "Min"
},
{
"aggregationType": 3,
"questionId": "60de3564ffcabb005be29b22",
"label": "Max"
},
{
"aggregationType": 5,
"questionId": "60de3564ffcabb005be29b22",
"label": "Average"
},
{
"aggregationType": 4,
"questionId": "60de3564ffcabb005be29b22",
"label": "Sum"
},
{
"aggregationType": 2,
"questionId": "60de3564ffcabb005be29b23",
"label": "Min"
},
{
"aggregationType": 3,
"questionId": "60de3564ffcabb005be29b23",
"label": "Max"
},
{
"aggregationType": 5,
"questionId": "60de3564ffcabb005be29b23",
"label": "Average"
},
{
"aggregationType": 4,
"questionId": "60de3564ffcabb005be29b23",
"label": "Sum"
},
{
"aggregationType": 2,
"questionId": "60de3564ffcabb005be29b24",
"label": "Min"
},
{
"aggregationType": 3,
"questionId": "60de3564ffcabb005be29b24",
"label": "Max"
},
{
"aggregationType": 5,
"questionId": "60de3564ffcabb005be29b24",
"label": "Average"
},
{
"aggregationType": 2,
"questionId": "60de3564ffcabb005be29b25",
"label": "Min"
},
{
"aggregationType": 3,
"questionId": "60de3564ffcabb005be29b25",
"label": "Max"
},
{
"aggregationType": 5,
"questionId": "60de3564ffcabb005be29b25",
"label": "Average"
},
{
"aggregationType": 2,
"questionId": "60de3564ffcabb005be29b26",
"label": "Min"
},
{
"aggregationType": 3,
"questionId": "60de3564ffcabb005be29b26",
"label": "Max"
},
{
"aggregationType": 5,
"questionId": "60de3564ffcabb005be29b26",
"label": "Average"
},
{
"aggregationType": 2,
"questionId": "60de355bffcabb005be29ad3",
"label": "Min"
},
{
"aggregationType": 3,
"questionId": "60de355bffcabb005be29ad3",
"label": "Max"
},
{
"aggregationType": 5,
"questionId": "60de355bffcabb005be29ad3",
"label": "Average"
},
{
"aggregationType": 2,
"questionId": "60de355bffcabb005be29ad4",
"label": "Min"
},
{
"aggregationType": 3,
"questionId": "60de355bffcabb005be29ad4",
"label": "Max"
},
{
"aggregationType": 5,
"questionId": "60de355bffcabb005be29ad4",
"label": "Average"
},
{
"aggregationType": 2,
"questionId": "60de355bffcabb005be29ad5",
"label": "Min"
},
{
"aggregationType": 3,
"questionId": "60de355bffcabb005be29ad5",
"label": "Max"
},
{
"aggregationType": 5,
"questionId": "60de355bffcabb005be29ad5",
"label": "Average"
},
{
"aggregationType": 2,
"questionId": "60de355bffcabb005be29ad7",
"label": "Min"
},
{
"aggregationType": 3,
"questionId": "60de355bffcabb005be29ad7",
"label": "Max"
},
{
"aggregationType": 5,
"questionId": "60de355bffcabb005be29ad7",
"label": "Average"
},
{
"aggregationType": 4,
"questionId": "60de355bffcabb005be29ad7",
"label": "Sum"
},
{
"aggregationType": 2,
"questionId": "60de355bffcabb005be29adb",
"label": "Min"
},
{
"aggregationType": 3,
"questionId": "60de355bffcabb005be29adb",
"label": "Max"
},
{
"aggregationType": 5,
"questionId": "60de355bffcabb005be29adb",
"label": "Average"
},
{
"aggregationType": 4,
"questionId": "60de355bffcabb005be29adb",
"label": "Sum"
},
{
"aggregationType": 2,
"questionId": "60de355bffcabb005be29adc",
"label": "Min"
},
{
"aggregationType": 3,
"questionId": "60de355bffcabb005be29adc",
"label": "Max"
},
{
"aggregationType": 5,
"questionId": "60de355bffcabb005be29adc",
"label": "Average"
},
{
"aggregationType": 4,
"questionId": "60de355bffcabb005be29adc",
"label": "Sum"
},
{
"aggregationType": 2,
"questionId": "60de355bffcabb005be29add",
"label": "Min"
},
{
"aggregationType": 3,
"questionId": "60de355bffcabb005be29add",
"label": "Max"
},
{
"aggregationType": 5,
"questionId": "60de355bffcabb005be29add",
"label": "Average"
},
{
"aggregationType": 4,
"questionId": "60de355bffcabb005be29add",
"label": "Sum"
},
{
"aggregationType": 2,
"questionId": "60de355bffcabb005be29ade",
"label": "Min"
},
{
"aggregationType": 3,
"questionId": "60de355bffcabb005be29ade",
"label": "Max"
},
{
"aggregationType": 5,
"questionId": "60de355bffcabb005be29ade",
"label": "Average"
},
{
"aggregationType": 4,
"questionId": "60de355bffcabb005be29ade",
"label": "Sum"
},
{
"aggregationType": 2,
"questionId": "60de355bffcabb005be29adf",
"label": "Min"
},
{
"aggregationType": 3,
"questionId": "60de355bffcabb005be29adf",
"label": "Max"
},
{
"aggregationType": 5,
"questionId": "60de355bffcabb005be29adf",
"label": "Average"
},
{
"aggregationType": 2,
"questionId": "60de355bffcabb005be29ae0",
"label": "Min"
},
{
"aggregationType": 3,
"questionId": "60de355bffcabb005be29ae0",
"label": "Max"
},
{
"aggregationType": 5,
"questionId": "60de355bffcabb005be29ae0",
"label": "Average"
},
{
"aggregationType": 2,
"questionId": "60de355bffcabb005be29ae1",
"label": "Min"
},
{
"aggregationType": 3,
"questionId": "60de355bffcabb005be29ae1",
"label": "Max"
},
{
"aggregationType": 5,
"questionId": "60de355bffcabb005be29ae1",
"label": "Average"
},
{
"aggregationType": 2,
"questionId": "60de3564ffcabb005be29b2a",
"label": "Min"
},
{
"aggregationType": 3,
"questionId": "60de3564ffcabb005be29b2a",
"label": "Max"
},
{
"aggregationType": 5,
"questionId": "60de3564ffcabb005be29b2a",
"label": "Average"
},
{
"aggregationType": 2,
"questionId": "60de3564ffcabb005be29b2b",
"label": "Min"
},
{
"aggregationType": 3,
"questionId": "60de3564ffcabb005be29b2b",
"label": "Max"
},
{
"aggregationType": 5,
"questionId": "60de3564ffcabb005be29b2b",
"label": "Average"
},
{
"aggregationType": 2,
"questionId": "60de3564ffcabb005be29b2c",
"label": "Min"
},
{
"aggregationType": 3,
"questionId": "60de3564ffcabb005be29b2c",
"label": "Max"
},
{
"aggregationType": 5,
"questionId": "60de3564ffcabb005be29b2c",
"label": "Average"
},
{
"aggregationType": 2,
"questionId": "60de3564ffcabb005be29b2e",
"label": "Min"
},
{
"aggregationType": 3,
"questionId": "60de3564ffcabb005be29b2e",
"label": "Max"
},
{
"aggregationType": 5,
"questionId": "60de3564ffcabb005be29b2e",
"label": "Average"
},
{
"aggregationType": 4,
"questionId": "60de3564ffcabb005be29b2e",
"label": "Sum"
},
{
"aggregationType": 2,
"questionId": "60de3564ffcabb005be29b32",
"label": "Min"
},
{
"aggregationType": 3,
"questionId": "60de3564ffcabb005be29b32",
"label": "Max"
},
{
"aggregationType": 5,
"questionId": "60de3564ffcabb005be29b32",
"label": "Average"
},
{
"aggregationType": 4,
"questionId": "60de3564ffcabb005be29b32",
"label": "Sum"
},
{
"aggregationType": 2,
"questionId": "60de3564ffcabb005be29b33",
"label": "Min"
},
{
"aggregationType": 3,
"questionId": "60de3564ffcabb005be29b33",
"label": "Max"
},
{
"aggregationType": 5,
"questionId": "60de3564ffcabb005be29b33",
"label": "Average"
},
{
"aggregationType": 4,
"questionId": "60de3564ffcabb005be29b33",
"label": "Sum"
},
{
"aggregationType": 2,
"questionId": "60de3564ffcabb005be29b34",
"label": "Min"
},
{
"aggregationType": 3,
"questionId": "60de3564ffcabb005be29b34",
"label": "Max"
},
{
"aggregationType": 5,
"questionId": "60de3564ffcabb005be29b34",
"label": "Average"
},
{
"aggregationType": 4,
"questionId": "60de3564ffcabb005be29b34",
"label": "Sum"
},
{
"aggregationType": 2,
"questionId": "60de3564ffcabb005be29b35",
"label": "Min"
},
{
"aggregationType": 3,
"questionId": "60de3564ffcabb005be29b35",
"label": "Max"
},
{
"aggregationType": 5,
"questionId": "60de3564ffcabb005be29b35",
"label": "Average"
},
{
"aggregationType": 4,
"questionId": "60de3564ffcabb005be29b35",
"label": "Sum"
},
{
"aggregationType": 2,
"questionId": "60de3564ffcabb005be29b36",
"label": "Min"
},
{
"aggregationType": 3,
"questionId": "60de3564ffcabb005be29b36",
"label": "Max"
},
{
"aggregationType": 5,
"questionId": "60de3564ffcabb005be29b36",
"label": "Average"
},
{
"aggregationType": 2,
"questionId": "60de3564ffcabb005be29b37",
"label": "Min"
},
{
"aggregationType": 3,
"questionId": "60de3564ffcabb005be29b37",
"label": "Max"
},
{
"aggregationType": 5,
"questionId": "60de3564ffcabb005be29b37",
"label": "Average"
},
{
"aggregationType": 2,
"questionId": "60de3564ffcabb005be29b38",
"label": "Min"
},
{
"aggregationType": 3,
"questionId": "60de3564ffcabb005be29b38",
"label": "Max"
},
{
"aggregationType": 5,
"questionId": "60de3564ffcabb005be29b38",
"label": "Average"
},
{
"aggregationType": 2,
"questionId": "60de3564ffcabb005be29b3b",
"label": "Min"
},
{
"aggregationType": 3,
"questionId": "60de3564ffcabb005be29b3b",
"label": "Max"
},
{
"aggregationType": 5,
"questionId": "60de3564ffcabb005be29b3b",
"label": "Average"
},
{
"aggregationType": 2,
"questionId": "60de3564ffcabb005be29b3c",
"label": "Min"
},
{
"aggregationType": 3,
"questionId": "60de3564ffcabb005be29b3c",
"label": "Max"
},
{
"aggregationType": 5,
"questionId": "60de3564ffcabb005be29b3c",
"label": "Average"
},
{
"aggregationType": 2,
"questionId": "60de3564ffcabb005be29b3d",
"label": "Min"
},
{
"aggregationType": 3,
"questionId": "60de3564ffcabb005be29b3d",
"label": "Max"
},
{
"aggregationType": 5,
"questionId": "60de3564ffcabb005be29b3d",
"label": "Average"
},
{
"aggregationType": 2,
"questionId": "60de3564ffcabb005be29b3f",
"label": "Min"
},
{
"aggregationType": 3,
"questionId": "60de3564ffcabb005be29b3f",
"label": "Max"
},
{
"aggregationType": 5,
"questionId": "60de3564ffcabb005be29b3f",
"label": "Average"
},
{
"aggregationType": 4,
"questionId": "60de3564ffcabb005be29b3f",
"label": "Sum"
},
{
"aggregationType": 2,
"questionId": "60de3564ffcabb005be29b43",
"label": "Min"
},
{
"aggregationType": 3,
"questionId": "60de3564ffcabb005be29b43",
"label": "Max"
},
{
"aggregationType": 5,
"questionId": "60de3564ffcabb005be29b43",
"label": "Average"
},
{
"aggregationType": 4,
"questionId": "60de3564ffcabb005be29b43",
"label": "Sum"
},
{
"aggregationType": 2,
"questionId": "60de3564ffcabb005be29b44",
"label": "Min"
},
{
"aggregationType": 3,
"questionId": "60de3564ffcabb005be29b44",
"label": "Max"
},
{
"aggregationType": 5,
"questionId": "60de3564ffcabb005be29b44",
"label": "Average"
},
{
"aggregationType": 4,
"questionId": "60de3564ffcabb005be29b44",
"label": "Sum"
},
{
"aggregationType": 2,
"questionId": "60de3564ffcabb005be29b45",
"label": "Min"
},
{
"aggregationType": 3,
"questionId": "60de3564ffcabb005be29b45",
"label": "Max"
},
{
"aggregationType": 5,
"questionId": "60de3564ffcabb005be29b45",
"label": "Average"
},
{
"aggregationType": 4,
"questionId": "60de3564ffcabb005be29b45",
"label": "Sum"
},
{
"aggregationType": 2,
"questionId": "60de3564ffcabb005be29b46",
"label": "Min"
},
{
"aggregationType": 3,
"questionId": "60de3564ffcabb005be29b46",
"label": "Max"
},
{
"aggregationType": 5,
"questionId": "60de3564ffcabb005be29b46",
"label": "Average"
},
{
"aggregationType": 4,
"questionId": "60de3564ffcabb005be29b46",
"label": "Sum"
},
{
"aggregationType": 2,
"questionId": "60de3564ffcabb005be29b47",
"label": "Min"
},
{
"aggregationType": 3,
"questionId": "60de3564ffcabb005be29b47",
"label": "Max"
},
{
"aggregationType": 5,
"questionId": "60de3564ffcabb005be29b47",
"label": "Average"
},
{
"aggregationType": 2,
"questionId": "60de3564ffcabb005be29b48",
"label": "Min"
},
{
"aggregationType": 3,
"questionId": "60de3564ffcabb005be29b48",
"label": "Max"
},
{
"aggregationType": 5,
"questionId": "60de3564ffcabb005be29b48",
"label": "Average"
},
{
"aggregationType": 2,
"questionId": "60de3564ffcabb005be29b49",
"label": "Min"
},
{
"aggregationType": 3,
"questionId": "60de3564ffcabb005be29b49",
"label": "Max"
},
{
"aggregationType": 5,
"questionId": "60de3564ffcabb005be29b49",
"label": "Average"
},
{
"aggregationType": 2,
"questionId": "60de3564ffcabb005be29b4c",
"label": "Min"
},
{
"aggregationType": 3,
"questionId": "60de3564ffcabb005be29b4c",
"label": "Max"
},
{
"aggregationType": 5,
"questionId": "60de3564ffcabb005be29b4c",
"label": "Average"
},
{
"aggregationType": 2,
"questionId": "60de3564ffcabb005be29b4d",
"label": "Min"
},
{
"aggregationType": 3,
"questionId": "60de3564ffcabb005be29b4d",
"label": "Max"
},
{
"aggregationType": 5,
"questionId": "60de3564ffcabb005be29b4d",
"label": "Average"
},
{
"aggregationType": 2,
"questionId": "60de3564ffcabb005be29b4e",
"label": "Min"
},
{
"aggregationType": 3,
"questionId": "60de3564ffcabb005be29b4e",
"label": "Max"
},
{
"aggregationType": 5,
"questionId": "60de3564ffcabb005be29b4e",
"label": "Average"
},
{
"aggregationType": 2,
"questionId": "60de3564ffcabb005be29b50",
"label": "Min"
},
{
"aggregationType": 3,
"questionId": "60de3564ffcabb005be29b50",
"label": "Max"
},
{
"aggregationType": 5,
"questionId": "60de3564ffcabb005be29b50",
"label": "Average"
},
{
"aggregationType": 4,
"questionId": "60de3564ffcabb005be29b50",
"label": "Sum"
},
{
"aggregationType": 2,
"questionId": "60de3564ffcabb005be29b54",
"label": "Min"
},
{
"aggregationType": 3,
"questionId": "60de3564ffcabb005be29b54",
"label": "Max"
},
{
"aggregationType": 5,
"questionId": "60de3564ffcabb005be29b54",
"label": "Average"
},
{
"aggregationType": 4,
"questionId": "60de3564ffcabb005be29b54",
"label": "Sum"
},
{
"aggregationType": 2,
"questionId": "60de3564ffcabb005be29b55",
"label": "Min"
},
{
"aggregationType": 3,
"questionId": "60de3564ffcabb005be29b55",
"label": "Max"
},
{
"aggregationType": 5,
"questionId": "60de3564ffcabb005be29b55",
"label": "Average"
},
{
"aggregationType": 4,
"questionId": "60de3564ffcabb005be29b55",
"label": "Sum"
},
{
"aggregationType": 2,
"questionId": "60de3564ffcabb005be29b56",
"label": "Min"
},
{
"aggregationType": 3,
"questionId": "60de3564ffcabb005be29b56",
"label": "Max"
},
{
"aggregationType": 5,
"questionId": "60de3564ffcabb005be29b56",
"label": "Average"
},
{
"aggregationType": 4,
"questionId": "60de3564ffcabb005be29b56",
"label": "Sum"
},
{
"aggregationType": 2,
"questionId": "60de3564ffcabb005be29b57",
"label": "Min"
},
{
"aggregationType": 3,
"questionId": "60de3564ffcabb005be29b57",
"label": "Max"
},
{
"aggregationType": 5,
"questionId": "60de3564ffcabb005be29b57",
"label": "Average"
},
{
"aggregationType": 4,
"questionId": "60de3564ffcabb005be29b57",
"label": "Sum"
},
{
"aggregationType": 2,
"questionId": "60de3564ffcabb005be29b58",
"label": "Min"
},
{
"aggregationType": 3,
"questionId": "60de3564ffcabb005be29b58",
"label": "Max"
},
{
"aggregationType": 5,
"questionId": "60de3564ffcabb005be29b58",
"label": "Average"
},
{
"aggregationType": 2,
"questionId": "60de3564ffcabb005be29b59",
"label": "Min"
},
{
"aggregationType": 3,
"questionId": "60de3564ffcabb005be29b59",
"label": "Max"
},
{
"aggregationType": 5,
"questionId": "60de3564ffcabb005be29b59",
"label": "Average"
},
{
"aggregationType": 2,
"questionId": "60de3564ffcabb005be29b5a",
"label": "Min"
},
{
"aggregationType": 3,
"questionId": "60de3564ffcabb005be29b5a",
"label": "Max"
},
{
"aggregationType": 5,
"questionId": "60de3564ffcabb005be29b5a",
"label": "Average"
}
]
}Analysis / Pivot table
Fetch Specs
Description
Get dimensions and measures available for the selected project based on its questions.
Payload
{
"projectId": string,
"groups": array
}
where:
projectId: Id of the project to look for. (Required).groups: List of question ids to filter the response with
Response
200 OK
{
"dimensions": array,
"measures": array,
}
where:
dimensions: Array of the available questions to be used as dimensions for a pivot table.measures: Array of objects, each one representing a measure type for a question.
Measures
{
"aggregationType": number,
"questionId": string,
"label": string
}
Where:
aggregationType: Type of aggregator format for the value. Could be:- 1: count
- 2: min
- 3: max
- 4: sum
- 5: average
label: Name of the aggregation typequestionId: Id of the question this measure is available to
401 Unauthorized
Invalid authorization.
404 Not Found
Resource not found.
500 Internal Server Error
Error occurred in the service.
POST
/
v1
/
pivotTable
/
fetchSpecs
Fetch Specs
curl --request POST \
--url https://pivot-table.sightx.io/v1/pivotTable/fetchSpecs \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data '
{
"groups": [],
"projectId": "{{projectId}}"
}
'import requests
url = "https://pivot-table.sightx.io/v1/pivotTable/fetchSpecs"
payload = {
"groups": [],
"projectId": "{{projectId}}"
}
headers = {
"Authorization": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({groups: [], projectId: '{{projectId}}'})
};
fetch('https://pivot-table.sightx.io/v1/pivotTable/fetchSpecs', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://pivot-table.sightx.io/v1/pivotTable/fetchSpecs",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'groups' => [
],
'projectId' => '{{projectId}}'
]),
CURLOPT_HTTPHEADER => [
"Authorization: <api-key>",
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://pivot-table.sightx.io/v1/pivotTable/fetchSpecs"
payload := strings.NewReader("{\n \"groups\": [],\n \"projectId\": \"{{projectId}}\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Authorization", "<api-key>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://pivot-table.sightx.io/v1/pivotTable/fetchSpecs")
.header("Authorization", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"groups\": [],\n \"projectId\": \"{{projectId}}\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://pivot-table.sightx.io/v1/pivotTable/fetchSpecs")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Authorization"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"groups\": [],\n \"projectId\": \"{{projectId}}\"\n}"
response = http.request(request)
puts response.read_body{
"dimensions": [
"60de2bb029a7230061e209f8",
"60de2bdeffcabb005be295df",
"60de2c6effcabb005be29616",
"60de33c629a7230061e20a7c",
"60de2cdcffcabb005be296bf",
"60de34bbffcabb005be29765",
"60de34f5ffcabb005be2976f",
"60de341029a7230061e20afc",
"60de341029a7230061e20afd",
"60de341029a7230061e20afe",
"60de34bbffcabb005be29766",
"60de34f5ffcabb005be29770",
"60de341029a7230061e20b01",
"60de341029a7230061e20b02",
"60de341029a7230061e20b03",
"60de34bbffcabb005be29767",
"60de34f5ffcabb005be29771",
"60de341029a7230061e20b06",
"60de341029a7230061e20b07",
"60de341029a7230061e20b08",
"60de34bbffcabb005be29768",
"60de34f5ffcabb005be29772",
"60de341029a7230061e20b0b",
"60de341029a7230061e20b0c",
"60de341029a7230061e20b0d",
"60de34bbffcabb005be29769",
"60de34f5ffcabb005be29773",
"60de3528ffcabb005be29835",
"60de3528ffcabb005be29836",
"60de3528ffcabb005be29837",
"60de3528ffcabb005be29841",
"60de3528ffcabb005be29843",
"60de3564ffcabb005be29b07",
"60de3564ffcabb005be29b08",
"60de3564ffcabb005be29b09",
"60de3564ffcabb005be29b13",
"60de3564ffcabb005be29b15",
"60de3564ffcabb005be29b18",
"60de3564ffcabb005be29b19",
"60de3564ffcabb005be29b1a",
"60de3564ffcabb005be29b24",
"60de3564ffcabb005be29b26",
"60de355bffcabb005be29ad3",
"60de355bffcabb005be29ad4",
"60de355bffcabb005be29ad5",
"60de355bffcabb005be29adf",
"60de355bffcabb005be29ae1",
"60de3564ffcabb005be29b2a",
"60de3564ffcabb005be29b2b",
"60de3564ffcabb005be29b2c",
"60de3564ffcabb005be29b36",
"60de3564ffcabb005be29b38",
"60de3564ffcabb005be29b3b",
"60de3564ffcabb005be29b3c",
"60de3564ffcabb005be29b3d",
"60de3564ffcabb005be29b47",
"60de3564ffcabb005be29b49",
"60de3564ffcabb005be29b4c",
"60de3564ffcabb005be29b4d",
"60de3564ffcabb005be29b4e",
"60de3564ffcabb005be29b58",
"60de3564ffcabb005be29b5a"
],
"measures": [
{
"aggregationType": 1,
"label": "Count"
},
{
"aggregationType": 2,
"questionId": "60de2bb029a7230061e209f8",
"label": "Min"
},
{
"aggregationType": 3,
"questionId": "60de2bb029a7230061e209f8",
"label": "Max"
},
{
"aggregationType": 5,
"questionId": "60de2bb029a7230061e209f8",
"label": "Average"
},
{
"aggregationType": 2,
"questionId": "60de2bdeffcabb005be295df",
"label": "Min"
},
{
"aggregationType": 3,
"questionId": "60de2bdeffcabb005be295df",
"label": "Max"
},
{
"aggregationType": 5,
"questionId": "60de2bdeffcabb005be295df",
"label": "Average"
},
{
"aggregationType": 2,
"questionId": "60de2c6effcabb005be29616",
"label": "Min"
},
{
"aggregationType": 3,
"questionId": "60de2c6effcabb005be29616",
"label": "Max"
},
{
"aggregationType": 5,
"questionId": "60de2c6effcabb005be29616",
"label": "Average"
},
{
"aggregationType": 2,
"questionId": "60de33c629a7230061e20a7c",
"label": "Min"
},
{
"aggregationType": 3,
"questionId": "60de33c629a7230061e20a7c",
"label": "Max"
},
{
"aggregationType": 5,
"questionId": "60de33c629a7230061e20a7c",
"label": "Average"
},
{
"aggregationType": 2,
"questionId": "60de2cdcffcabb005be296bf",
"label": "Min"
},
{
"aggregationType": 3,
"questionId": "60de2cdcffcabb005be296bf",
"label": "Max"
},
{
"aggregationType": 5,
"questionId": "60de2cdcffcabb005be296bf",
"label": "Average"
},
{
"aggregationType": 2,
"questionId": "60de3451ffcabb005be29743",
"label": "Min"
},
{
"aggregationType": 3,
"questionId": "60de3451ffcabb005be29743",
"label": "Max"
},
{
"aggregationType": 5,
"questionId": "60de3451ffcabb005be29743",
"label": "Average"
},
{
"aggregationType": 4,
"questionId": "60de3451ffcabb005be29743",
"label": "Sum"
},
{
"aggregationType": 2,
"questionId": "60de3485ffcabb005be2974d",
"label": "Min"
},
{
"aggregationType": 3,
"questionId": "60de3485ffcabb005be2974d",
"label": "Max"
},
{
"aggregationType": 5,
"questionId": "60de3485ffcabb005be2974d",
"label": "Average"
},
{
"aggregationType": 4,
"questionId": "60de3485ffcabb005be2974d",
"label": "Sum"
},
{
"aggregationType": 2,
"questionId": "60de349dffcabb005be29752",
"label": "Min"
},
{
"aggregationType": 3,
"questionId": "60de349dffcabb005be29752",
"label": "Max"
},
{
"aggregationType": 5,
"questionId": "60de349dffcabb005be29752",
"label": "Average"
},
{
"aggregationType": 4,
"questionId": "60de349dffcabb005be29752",
"label": "Sum"
},
{
"aggregationType": 2,
"questionId": "60de34a7ffcabb005be2975b",
"label": "Min"
},
{
"aggregationType": 3,
"questionId": "60de34a7ffcabb005be2975b",
"label": "Max"
},
{
"aggregationType": 5,
"questionId": "60de34a7ffcabb005be2975b",
"label": "Average"
},
{
"aggregationType": 4,
"questionId": "60de34a7ffcabb005be2975b",
"label": "Sum"
},
{
"aggregationType": 2,
"questionId": "60de34afffcabb005be29760",
"label": "Min"
},
{
"aggregationType": 3,
"questionId": "60de34afffcabb005be29760",
"label": "Max"
},
{
"aggregationType": 5,
"questionId": "60de34afffcabb005be29760",
"label": "Average"
},
{
"aggregationType": 4,
"questionId": "60de34afffcabb005be29760",
"label": "Sum"
},
{
"aggregationType": 2,
"questionId": "60de34bbffcabb005be29765",
"label": "Min"
},
{
"aggregationType": 3,
"questionId": "60de34bbffcabb005be29765",
"label": "Max"
},
{
"aggregationType": 5,
"questionId": "60de34bbffcabb005be29765",
"label": "Average"
},
{
"aggregationType": 2,
"questionId": "60de34c3ffcabb005be2976a",
"label": "Min"
},
{
"aggregationType": 3,
"questionId": "60de34c3ffcabb005be2976a",
"label": "Max"
},
{
"aggregationType": 5,
"questionId": "60de34c3ffcabb005be2976a",
"label": "Average"
},
{
"aggregationType": 2,
"questionId": "60de34f5ffcabb005be2976f",
"label": "Min"
},
{
"aggregationType": 3,
"questionId": "60de34f5ffcabb005be2976f",
"label": "Max"
},
{
"aggregationType": 5,
"questionId": "60de34f5ffcabb005be2976f",
"label": "Average"
},
{
"aggregationType": 2,
"questionId": "60de341029a7230061e20afc",
"label": "Min"
},
{
"aggregationType": 3,
"questionId": "60de341029a7230061e20afc",
"label": "Max"
},
{
"aggregationType": 5,
"questionId": "60de341029a7230061e20afc",
"label": "Average"
},
{
"aggregationType": 2,
"questionId": "60de341029a7230061e20afd",
"label": "Min"
},
{
"aggregationType": 3,
"questionId": "60de341029a7230061e20afd",
"label": "Max"
},
{
"aggregationType": 5,
"questionId": "60de341029a7230061e20afd",
"label": "Average"
},
{
"aggregationType": 2,
"questionId": "60de341029a7230061e20afe",
"label": "Min"
},
{
"aggregationType": 3,
"questionId": "60de341029a7230061e20afe",
"label": "Max"
},
{
"aggregationType": 5,
"questionId": "60de341029a7230061e20afe",
"label": "Average"
},
{
"aggregationType": 2,
"questionId": "60de3451ffcabb005be29744",
"label": "Min"
},
{
"aggregationType": 3,
"questionId": "60de3451ffcabb005be29744",
"label": "Max"
},
{
"aggregationType": 5,
"questionId": "60de3451ffcabb005be29744",
"label": "Average"
},
{
"aggregationType": 4,
"questionId": "60de3451ffcabb005be29744",
"label": "Sum"
},
{
"aggregationType": 2,
"questionId": "60de3485ffcabb005be2974e",
"label": "Min"
},
{
"aggregationType": 3,
"questionId": "60de3485ffcabb005be2974e",
"label": "Max"
},
{
"aggregationType": 5,
"questionId": "60de3485ffcabb005be2974e",
"label": "Average"
},
{
"aggregationType": 4,
"questionId": "60de3485ffcabb005be2974e",
"label": "Sum"
},
{
"aggregationType": 2,
"questionId": "60de34a3ffcabb005be29757",
"label": "Min"
},
{
"aggregationType": 3,
"questionId": "60de34a3ffcabb005be29757",
"label": "Max"
},
{
"aggregationType": 5,
"questionId": "60de34a3ffcabb005be29757",
"label": "Average"
},
{
"aggregationType": 4,
"questionId": "60de34a3ffcabb005be29757",
"label": "Sum"
},
{
"aggregationType": 2,
"questionId": "60de34a7ffcabb005be2975c",
"label": "Min"
},
{
"aggregationType": 3,
"questionId": "60de34a7ffcabb005be2975c",
"label": "Max"
},
{
"aggregationType": 5,
"questionId": "60de34a7ffcabb005be2975c",
"label": "Average"
},
{
"aggregationType": 4,
"questionId": "60de34a7ffcabb005be2975c",
"label": "Sum"
},
{
"aggregationType": 2,
"questionId": "60de34afffcabb005be29761",
"label": "Min"
},
{
"aggregationType": 3,
"questionId": "60de34afffcabb005be29761",
"label": "Max"
},
{
"aggregationType": 5,
"questionId": "60de34afffcabb005be29761",
"label": "Average"
},
{
"aggregationType": 4,
"questionId": "60de34afffcabb005be29761",
"label": "Sum"
},
{
"aggregationType": 2,
"questionId": "60de34bbffcabb005be29766",
"label": "Min"
},
{
"aggregationType": 3,
"questionId": "60de34bbffcabb005be29766",
"label": "Max"
},
{
"aggregationType": 5,
"questionId": "60de34bbffcabb005be29766",
"label": "Average"
},
{
"aggregationType": 2,
"questionId": "60de34c3ffcabb005be2976b",
"label": "Min"
},
{
"aggregationType": 3,
"questionId": "60de34c3ffcabb005be2976b",
"label": "Max"
},
{
"aggregationType": 5,
"questionId": "60de34c3ffcabb005be2976b",
"label": "Average"
},
{
"aggregationType": 2,
"questionId": "60de34f5ffcabb005be29770",
"label": "Min"
},
{
"aggregationType": 3,
"questionId": "60de34f5ffcabb005be29770",
"label": "Max"
},
{
"aggregationType": 5,
"questionId": "60de34f5ffcabb005be29770",
"label": "Average"
},
{
"aggregationType": 2,
"questionId": "60de341029a7230061e20b01",
"label": "Min"
},
{
"aggregationType": 3,
"questionId": "60de341029a7230061e20b01",
"label": "Max"
},
{
"aggregationType": 5,
"questionId": "60de341029a7230061e20b01",
"label": "Average"
},
{
"aggregationType": 2,
"questionId": "60de341029a7230061e20b02",
"label": "Min"
},
{
"aggregationType": 3,
"questionId": "60de341029a7230061e20b02",
"label": "Max"
},
{
"aggregationType": 5,
"questionId": "60de341029a7230061e20b02",
"label": "Average"
},
{
"aggregationType": 2,
"questionId": "60de341029a7230061e20b03",
"label": "Min"
},
{
"aggregationType": 3,
"questionId": "60de341029a7230061e20b03",
"label": "Max"
},
{
"aggregationType": 5,
"questionId": "60de341029a7230061e20b03",
"label": "Average"
},
{
"aggregationType": 2,
"questionId": "60de3451ffcabb005be29745",
"label": "Min"
},
{
"aggregationType": 3,
"questionId": "60de3451ffcabb005be29745",
"label": "Max"
},
{
"aggregationType": 5,
"questionId": "60de3451ffcabb005be29745",
"label": "Average"
},
{
"aggregationType": 4,
"questionId": "60de3451ffcabb005be29745",
"label": "Sum"
},
{
"aggregationType": 2,
"questionId": "60de3485ffcabb005be2974f",
"label": "Min"
},
{
"aggregationType": 3,
"questionId": "60de3485ffcabb005be2974f",
"label": "Max"
},
{
"aggregationType": 5,
"questionId": "60de3485ffcabb005be2974f",
"label": "Average"
},
{
"aggregationType": 4,
"questionId": "60de3485ffcabb005be2974f",
"label": "Sum"
},
{
"aggregationType": 2,
"questionId": "60de34a3ffcabb005be29758",
"label": "Min"
},
{
"aggregationType": 3,
"questionId": "60de34a3ffcabb005be29758",
"label": "Max"
},
{
"aggregationType": 5,
"questionId": "60de34a3ffcabb005be29758",
"label": "Average"
},
{
"aggregationType": 4,
"questionId": "60de34a3ffcabb005be29758",
"label": "Sum"
},
{
"aggregationType": 2,
"questionId": "60de34a7ffcabb005be2975d",
"label": "Min"
},
{
"aggregationType": 3,
"questionId": "60de34a7ffcabb005be2975d",
"label": "Max"
},
{
"aggregationType": 5,
"questionId": "60de34a7ffcabb005be2975d",
"label": "Average"
},
{
"aggregationType": 4,
"questionId": "60de34a7ffcabb005be2975d",
"label": "Sum"
},
{
"aggregationType": 2,
"questionId": "60de34afffcabb005be29762",
"label": "Min"
},
{
"aggregationType": 3,
"questionId": "60de34afffcabb005be29762",
"label": "Max"
},
{
"aggregationType": 5,
"questionId": "60de34afffcabb005be29762",
"label": "Average"
},
{
"aggregationType": 4,
"questionId": "60de34afffcabb005be29762",
"label": "Sum"
},
{
"aggregationType": 2,
"questionId": "60de34bbffcabb005be29767",
"label": "Min"
},
{
"aggregationType": 3,
"questionId": "60de34bbffcabb005be29767",
"label": "Max"
},
{
"aggregationType": 5,
"questionId": "60de34bbffcabb005be29767",
"label": "Average"
},
{
"aggregationType": 2,
"questionId": "60de34c3ffcabb005be2976c",
"label": "Min"
},
{
"aggregationType": 3,
"questionId": "60de34c3ffcabb005be2976c",
"label": "Max"
},
{
"aggregationType": 5,
"questionId": "60de34c3ffcabb005be2976c",
"label": "Average"
},
{
"aggregationType": 2,
"questionId": "60de34f5ffcabb005be29771",
"label": "Min"
},
{
"aggregationType": 3,
"questionId": "60de34f5ffcabb005be29771",
"label": "Max"
},
{
"aggregationType": 5,
"questionId": "60de34f5ffcabb005be29771",
"label": "Average"
},
{
"aggregationType": 2,
"questionId": "60de341029a7230061e20b06",
"label": "Min"
},
{
"aggregationType": 3,
"questionId": "60de341029a7230061e20b06",
"label": "Max"
},
{
"aggregationType": 5,
"questionId": "60de341029a7230061e20b06",
"label": "Average"
},
{
"aggregationType": 2,
"questionId": "60de341029a7230061e20b07",
"label": "Min"
},
{
"aggregationType": 3,
"questionId": "60de341029a7230061e20b07",
"label": "Max"
},
{
"aggregationType": 5,
"questionId": "60de341029a7230061e20b07",
"label": "Average"
},
{
"aggregationType": 2,
"questionId": "60de341029a7230061e20b08",
"label": "Min"
},
{
"aggregationType": 3,
"questionId": "60de341029a7230061e20b08",
"label": "Max"
},
{
"aggregationType": 5,
"questionId": "60de341029a7230061e20b08",
"label": "Average"
},
{
"aggregationType": 2,
"questionId": "60de3451ffcabb005be29746",
"label": "Min"
},
{
"aggregationType": 3,
"questionId": "60de3451ffcabb005be29746",
"label": "Max"
},
{
"aggregationType": 5,
"questionId": "60de3451ffcabb005be29746",
"label": "Average"
},
{
"aggregationType": 4,
"questionId": "60de3451ffcabb005be29746",
"label": "Sum"
},
{
"aggregationType": 2,
"questionId": "60de3485ffcabb005be29750",
"label": "Min"
},
{
"aggregationType": 3,
"questionId": "60de3485ffcabb005be29750",
"label": "Max"
},
{
"aggregationType": 5,
"questionId": "60de3485ffcabb005be29750",
"label": "Average"
},
{
"aggregationType": 4,
"questionId": "60de3485ffcabb005be29750",
"label": "Sum"
},
{
"aggregationType": 2,
"questionId": "60de34a3ffcabb005be29759",
"label": "Min"
},
{
"aggregationType": 3,
"questionId": "60de34a3ffcabb005be29759",
"label": "Max"
},
{
"aggregationType": 5,
"questionId": "60de34a3ffcabb005be29759",
"label": "Average"
},
{
"aggregationType": 4,
"questionId": "60de34a3ffcabb005be29759",
"label": "Sum"
},
{
"aggregationType": 2,
"questionId": "60de34a7ffcabb005be2975e",
"label": "Min"
},
{
"aggregationType": 3,
"questionId": "60de34a7ffcabb005be2975e",
"label": "Max"
},
{
"aggregationType": 5,
"questionId": "60de34a7ffcabb005be2975e",
"label": "Average"
},
{
"aggregationType": 4,
"questionId": "60de34a7ffcabb005be2975e",
"label": "Sum"
},
{
"aggregationType": 2,
"questionId": "60de34afffcabb005be29763",
"label": "Min"
},
{
"aggregationType": 3,
"questionId": "60de34afffcabb005be29763",
"label": "Max"
},
{
"aggregationType": 5,
"questionId": "60de34afffcabb005be29763",
"label": "Average"
},
{
"aggregationType": 4,
"questionId": "60de34afffcabb005be29763",
"label": "Sum"
},
{
"aggregationType": 2,
"questionId": "60de34bbffcabb005be29768",
"label": "Min"
},
{
"aggregationType": 3,
"questionId": "60de34bbffcabb005be29768",
"label": "Max"
},
{
"aggregationType": 5,
"questionId": "60de34bbffcabb005be29768",
"label": "Average"
},
{
"aggregationType": 2,
"questionId": "60de34c3ffcabb005be2976d",
"label": "Min"
},
{
"aggregationType": 3,
"questionId": "60de34c3ffcabb005be2976d",
"label": "Max"
},
{
"aggregationType": 5,
"questionId": "60de34c3ffcabb005be2976d",
"label": "Average"
},
{
"aggregationType": 2,
"questionId": "60de34f5ffcabb005be29772",
"label": "Min"
},
{
"aggregationType": 3,
"questionId": "60de34f5ffcabb005be29772",
"label": "Max"
},
{
"aggregationType": 5,
"questionId": "60de34f5ffcabb005be29772",
"label": "Average"
},
{
"aggregationType": 2,
"questionId": "60de341029a7230061e20b0b",
"label": "Min"
},
{
"aggregationType": 3,
"questionId": "60de341029a7230061e20b0b",
"label": "Max"
},
{
"aggregationType": 5,
"questionId": "60de341029a7230061e20b0b",
"label": "Average"
},
{
"aggregationType": 2,
"questionId": "60de341029a7230061e20b0c",
"label": "Min"
},
{
"aggregationType": 3,
"questionId": "60de341029a7230061e20b0c",
"label": "Max"
},
{
"aggregationType": 5,
"questionId": "60de341029a7230061e20b0c",
"label": "Average"
},
{
"aggregationType": 2,
"questionId": "60de341029a7230061e20b0d",
"label": "Min"
},
{
"aggregationType": 3,
"questionId": "60de341029a7230061e20b0d",
"label": "Max"
},
{
"aggregationType": 5,
"questionId": "60de341029a7230061e20b0d",
"label": "Average"
},
{
"aggregationType": 2,
"questionId": "60de3451ffcabb005be29747",
"label": "Min"
},
{
"aggregationType": 3,
"questionId": "60de3451ffcabb005be29747",
"label": "Max"
},
{
"aggregationType": 5,
"questionId": "60de3451ffcabb005be29747",
"label": "Average"
},
{
"aggregationType": 4,
"questionId": "60de3451ffcabb005be29747",
"label": "Sum"
},
{
"aggregationType": 2,
"questionId": "60de3485ffcabb005be29751",
"label": "Min"
},
{
"aggregationType": 3,
"questionId": "60de3485ffcabb005be29751",
"label": "Max"
},
{
"aggregationType": 5,
"questionId": "60de3485ffcabb005be29751",
"label": "Average"
},
{
"aggregationType": 4,
"questionId": "60de3485ffcabb005be29751",
"label": "Sum"
},
{
"aggregationType": 2,
"questionId": "60de34a3ffcabb005be2975a",
"label": "Min"
},
{
"aggregationType": 3,
"questionId": "60de34a3ffcabb005be2975a",
"label": "Max"
},
{
"aggregationType": 5,
"questionId": "60de34a3ffcabb005be2975a",
"label": "Average"
},
{
"aggregationType": 4,
"questionId": "60de34a3ffcabb005be2975a",
"label": "Sum"
},
{
"aggregationType": 2,
"questionId": "60de34a7ffcabb005be2975f",
"label": "Min"
},
{
"aggregationType": 3,
"questionId": "60de34a7ffcabb005be2975f",
"label": "Max"
},
{
"aggregationType": 5,
"questionId": "60de34a7ffcabb005be2975f",
"label": "Average"
},
{
"aggregationType": 4,
"questionId": "60de34a7ffcabb005be2975f",
"label": "Sum"
},
{
"aggregationType": 2,
"questionId": "60de34afffcabb005be29764",
"label": "Min"
},
{
"aggregationType": 3,
"questionId": "60de34afffcabb005be29764",
"label": "Max"
},
{
"aggregationType": 5,
"questionId": "60de34afffcabb005be29764",
"label": "Average"
},
{
"aggregationType": 4,
"questionId": "60de34afffcabb005be29764",
"label": "Sum"
},
{
"aggregationType": 2,
"questionId": "60de34bbffcabb005be29769",
"label": "Min"
},
{
"aggregationType": 3,
"questionId": "60de34bbffcabb005be29769",
"label": "Max"
},
{
"aggregationType": 5,
"questionId": "60de34bbffcabb005be29769",
"label": "Average"
},
{
"aggregationType": 2,
"questionId": "60de34c3ffcabb005be2976e",
"label": "Min"
},
{
"aggregationType": 3,
"questionId": "60de34c3ffcabb005be2976e",
"label": "Max"
},
{
"aggregationType": 5,
"questionId": "60de34c3ffcabb005be2976e",
"label": "Average"
},
{
"aggregationType": 2,
"questionId": "60de34f5ffcabb005be29773",
"label": "Min"
},
{
"aggregationType": 3,
"questionId": "60de34f5ffcabb005be29773",
"label": "Max"
},
{
"aggregationType": 5,
"questionId": "60de34f5ffcabb005be29773",
"label": "Average"
},
{
"aggregationType": 2,
"questionId": "60de3528ffcabb005be29835",
"label": "Min"
},
{
"aggregationType": 3,
"questionId": "60de3528ffcabb005be29835",
"label": "Max"
},
{
"aggregationType": 5,
"questionId": "60de3528ffcabb005be29835",
"label": "Average"
},
{
"aggregationType": 2,
"questionId": "60de3528ffcabb005be29836",
"label": "Min"
},
{
"aggregationType": 3,
"questionId": "60de3528ffcabb005be29836",
"label": "Max"
},
{
"aggregationType": 5,
"questionId": "60de3528ffcabb005be29836",
"label": "Average"
},
{
"aggregationType": 2,
"questionId": "60de3528ffcabb005be29837",
"label": "Min"
},
{
"aggregationType": 3,
"questionId": "60de3528ffcabb005be29837",
"label": "Max"
},
{
"aggregationType": 5,
"questionId": "60de3528ffcabb005be29837",
"label": "Average"
},
{
"aggregationType": 2,
"questionId": "60de3528ffcabb005be29839",
"label": "Min"
},
{
"aggregationType": 3,
"questionId": "60de3528ffcabb005be29839",
"label": "Max"
},
{
"aggregationType": 5,
"questionId": "60de3528ffcabb005be29839",
"label": "Average"
},
{
"aggregationType": 4,
"questionId": "60de3528ffcabb005be29839",
"label": "Sum"
},
{
"aggregationType": 2,
"questionId": "60de3528ffcabb005be2983d",
"label": "Min"
},
{
"aggregationType": 3,
"questionId": "60de3528ffcabb005be2983d",
"label": "Max"
},
{
"aggregationType": 5,
"questionId": "60de3528ffcabb005be2983d",
"label": "Average"
},
{
"aggregationType": 4,
"questionId": "60de3528ffcabb005be2983d",
"label": "Sum"
},
{
"aggregationType": 2,
"questionId": "60de3528ffcabb005be2983e",
"label": "Min"
},
{
"aggregationType": 3,
"questionId": "60de3528ffcabb005be2983e",
"label": "Max"
},
{
"aggregationType": 5,
"questionId": "60de3528ffcabb005be2983e",
"label": "Average"
},
{
"aggregationType": 4,
"questionId": "60de3528ffcabb005be2983e",
"label": "Sum"
},
{
"aggregationType": 2,
"questionId": "60de3528ffcabb005be2983f",
"label": "Min"
},
{
"aggregationType": 3,
"questionId": "60de3528ffcabb005be2983f",
"label": "Max"
},
{
"aggregationType": 5,
"questionId": "60de3528ffcabb005be2983f",
"label": "Average"
},
{
"aggregationType": 4,
"questionId": "60de3528ffcabb005be2983f",
"label": "Sum"
},
{
"aggregationType": 2,
"questionId": "60de3528ffcabb005be29840",
"label": "Min"
},
{
"aggregationType": 3,
"questionId": "60de3528ffcabb005be29840",
"label": "Max"
},
{
"aggregationType": 5,
"questionId": "60de3528ffcabb005be29840",
"label": "Average"
},
{
"aggregationType": 4,
"questionId": "60de3528ffcabb005be29840",
"label": "Sum"
},
{
"aggregationType": 2,
"questionId": "60de3528ffcabb005be29841",
"label": "Min"
},
{
"aggregationType": 3,
"questionId": "60de3528ffcabb005be29841",
"label": "Max"
},
{
"aggregationType": 5,
"questionId": "60de3528ffcabb005be29841",
"label": "Average"
},
{
"aggregationType": 2,
"questionId": "60de3528ffcabb005be29842",
"label": "Min"
},
{
"aggregationType": 3,
"questionId": "60de3528ffcabb005be29842",
"label": "Max"
},
{
"aggregationType": 5,
"questionId": "60de3528ffcabb005be29842",
"label": "Average"
},
{
"aggregationType": 2,
"questionId": "60de3528ffcabb005be29843",
"label": "Min"
},
{
"aggregationType": 3,
"questionId": "60de3528ffcabb005be29843",
"label": "Max"
},
{
"aggregationType": 5,
"questionId": "60de3528ffcabb005be29843",
"label": "Average"
},
{
"aggregationType": 2,
"questionId": "60de3564ffcabb005be29b07",
"label": "Min"
},
{
"aggregationType": 3,
"questionId": "60de3564ffcabb005be29b07",
"label": "Max"
},
{
"aggregationType": 5,
"questionId": "60de3564ffcabb005be29b07",
"label": "Average"
},
{
"aggregationType": 2,
"questionId": "60de3564ffcabb005be29b08",
"label": "Min"
},
{
"aggregationType": 3,
"questionId": "60de3564ffcabb005be29b08",
"label": "Max"
},
{
"aggregationType": 5,
"questionId": "60de3564ffcabb005be29b08",
"label": "Average"
},
{
"aggregationType": 2,
"questionId": "60de3564ffcabb005be29b09",
"label": "Min"
},
{
"aggregationType": 3,
"questionId": "60de3564ffcabb005be29b09",
"label": "Max"
},
{
"aggregationType": 5,
"questionId": "60de3564ffcabb005be29b09",
"label": "Average"
},
{
"aggregationType": 2,
"questionId": "60de3564ffcabb005be29b0b",
"label": "Min"
},
{
"aggregationType": 3,
"questionId": "60de3564ffcabb005be29b0b",
"label": "Max"
},
{
"aggregationType": 5,
"questionId": "60de3564ffcabb005be29b0b",
"label": "Average"
},
{
"aggregationType": 4,
"questionId": "60de3564ffcabb005be29b0b",
"label": "Sum"
},
{
"aggregationType": 2,
"questionId": "60de3564ffcabb005be29b0f",
"label": "Min"
},
{
"aggregationType": 3,
"questionId": "60de3564ffcabb005be29b0f",
"label": "Max"
},
{
"aggregationType": 5,
"questionId": "60de3564ffcabb005be29b0f",
"label": "Average"
},
{
"aggregationType": 4,
"questionId": "60de3564ffcabb005be29b0f",
"label": "Sum"
},
{
"aggregationType": 2,
"questionId": "60de3564ffcabb005be29b10",
"label": "Min"
},
{
"aggregationType": 3,
"questionId": "60de3564ffcabb005be29b10",
"label": "Max"
},
{
"aggregationType": 5,
"questionId": "60de3564ffcabb005be29b10",
"label": "Average"
},
{
"aggregationType": 4,
"questionId": "60de3564ffcabb005be29b10",
"label": "Sum"
},
{
"aggregationType": 2,
"questionId": "60de3564ffcabb005be29b11",
"label": "Min"
},
{
"aggregationType": 3,
"questionId": "60de3564ffcabb005be29b11",
"label": "Max"
},
{
"aggregationType": 5,
"questionId": "60de3564ffcabb005be29b11",
"label": "Average"
},
{
"aggregationType": 4,
"questionId": "60de3564ffcabb005be29b11",
"label": "Sum"
},
{
"aggregationType": 2,
"questionId": "60de3564ffcabb005be29b12",
"label": "Min"
},
{
"aggregationType": 3,
"questionId": "60de3564ffcabb005be29b12",
"label": "Max"
},
{
"aggregationType": 5,
"questionId": "60de3564ffcabb005be29b12",
"label": "Average"
},
{
"aggregationType": 4,
"questionId": "60de3564ffcabb005be29b12",
"label": "Sum"
},
{
"aggregationType": 2,
"questionId": "60de3564ffcabb005be29b13",
"label": "Min"
},
{
"aggregationType": 3,
"questionId": "60de3564ffcabb005be29b13",
"label": "Max"
},
{
"aggregationType": 5,
"questionId": "60de3564ffcabb005be29b13",
"label": "Average"
},
{
"aggregationType": 2,
"questionId": "60de3564ffcabb005be29b14",
"label": "Min"
},
{
"aggregationType": 3,
"questionId": "60de3564ffcabb005be29b14",
"label": "Max"
},
{
"aggregationType": 5,
"questionId": "60de3564ffcabb005be29b14",
"label": "Average"
},
{
"aggregationType": 2,
"questionId": "60de3564ffcabb005be29b15",
"label": "Min"
},
{
"aggregationType": 3,
"questionId": "60de3564ffcabb005be29b15",
"label": "Max"
},
{
"aggregationType": 5,
"questionId": "60de3564ffcabb005be29b15",
"label": "Average"
},
{
"aggregationType": 2,
"questionId": "60de3564ffcabb005be29b18",
"label": "Min"
},
{
"aggregationType": 3,
"questionId": "60de3564ffcabb005be29b18",
"label": "Max"
},
{
"aggregationType": 5,
"questionId": "60de3564ffcabb005be29b18",
"label": "Average"
},
{
"aggregationType": 2,
"questionId": "60de3564ffcabb005be29b19",
"label": "Min"
},
{
"aggregationType": 3,
"questionId": "60de3564ffcabb005be29b19",
"label": "Max"
},
{
"aggregationType": 5,
"questionId": "60de3564ffcabb005be29b19",
"label": "Average"
},
{
"aggregationType": 2,
"questionId": "60de3564ffcabb005be29b1a",
"label": "Min"
},
{
"aggregationType": 3,
"questionId": "60de3564ffcabb005be29b1a",
"label": "Max"
},
{
"aggregationType": 5,
"questionId": "60de3564ffcabb005be29b1a",
"label": "Average"
},
{
"aggregationType": 2,
"questionId": "60de3564ffcabb005be29b1c",
"label": "Min"
},
{
"aggregationType": 3,
"questionId": "60de3564ffcabb005be29b1c",
"label": "Max"
},
{
"aggregationType": 5,
"questionId": "60de3564ffcabb005be29b1c",
"label": "Average"
},
{
"aggregationType": 4,
"questionId": "60de3564ffcabb005be29b1c",
"label": "Sum"
},
{
"aggregationType": 2,
"questionId": "60de3564ffcabb005be29b20",
"label": "Min"
},
{
"aggregationType": 3,
"questionId": "60de3564ffcabb005be29b20",
"label": "Max"
},
{
"aggregationType": 5,
"questionId": "60de3564ffcabb005be29b20",
"label": "Average"
},
{
"aggregationType": 4,
"questionId": "60de3564ffcabb005be29b20",
"label": "Sum"
},
{
"aggregationType": 2,
"questionId": "60de3564ffcabb005be29b21",
"label": "Min"
},
{
"aggregationType": 3,
"questionId": "60de3564ffcabb005be29b21",
"label": "Max"
},
{
"aggregationType": 5,
"questionId": "60de3564ffcabb005be29b21",
"label": "Average"
},
{
"aggregationType": 4,
"questionId": "60de3564ffcabb005be29b21",
"label": "Sum"
},
{
"aggregationType": 2,
"questionId": "60de3564ffcabb005be29b22",
"label": "Min"
},
{
"aggregationType": 3,
"questionId": "60de3564ffcabb005be29b22",
"label": "Max"
},
{
"aggregationType": 5,
"questionId": "60de3564ffcabb005be29b22",
"label": "Average"
},
{
"aggregationType": 4,
"questionId": "60de3564ffcabb005be29b22",
"label": "Sum"
},
{
"aggregationType": 2,
"questionId": "60de3564ffcabb005be29b23",
"label": "Min"
},
{
"aggregationType": 3,
"questionId": "60de3564ffcabb005be29b23",
"label": "Max"
},
{
"aggregationType": 5,
"questionId": "60de3564ffcabb005be29b23",
"label": "Average"
},
{
"aggregationType": 4,
"questionId": "60de3564ffcabb005be29b23",
"label": "Sum"
},
{
"aggregationType": 2,
"questionId": "60de3564ffcabb005be29b24",
"label": "Min"
},
{
"aggregationType": 3,
"questionId": "60de3564ffcabb005be29b24",
"label": "Max"
},
{
"aggregationType": 5,
"questionId": "60de3564ffcabb005be29b24",
"label": "Average"
},
{
"aggregationType": 2,
"questionId": "60de3564ffcabb005be29b25",
"label": "Min"
},
{
"aggregationType": 3,
"questionId": "60de3564ffcabb005be29b25",
"label": "Max"
},
{
"aggregationType": 5,
"questionId": "60de3564ffcabb005be29b25",
"label": "Average"
},
{
"aggregationType": 2,
"questionId": "60de3564ffcabb005be29b26",
"label": "Min"
},
{
"aggregationType": 3,
"questionId": "60de3564ffcabb005be29b26",
"label": "Max"
},
{
"aggregationType": 5,
"questionId": "60de3564ffcabb005be29b26",
"label": "Average"
},
{
"aggregationType": 2,
"questionId": "60de355bffcabb005be29ad3",
"label": "Min"
},
{
"aggregationType": 3,
"questionId": "60de355bffcabb005be29ad3",
"label": "Max"
},
{
"aggregationType": 5,
"questionId": "60de355bffcabb005be29ad3",
"label": "Average"
},
{
"aggregationType": 2,
"questionId": "60de355bffcabb005be29ad4",
"label": "Min"
},
{
"aggregationType": 3,
"questionId": "60de355bffcabb005be29ad4",
"label": "Max"
},
{
"aggregationType": 5,
"questionId": "60de355bffcabb005be29ad4",
"label": "Average"
},
{
"aggregationType": 2,
"questionId": "60de355bffcabb005be29ad5",
"label": "Min"
},
{
"aggregationType": 3,
"questionId": "60de355bffcabb005be29ad5",
"label": "Max"
},
{
"aggregationType": 5,
"questionId": "60de355bffcabb005be29ad5",
"label": "Average"
},
{
"aggregationType": 2,
"questionId": "60de355bffcabb005be29ad7",
"label": "Min"
},
{
"aggregationType": 3,
"questionId": "60de355bffcabb005be29ad7",
"label": "Max"
},
{
"aggregationType": 5,
"questionId": "60de355bffcabb005be29ad7",
"label": "Average"
},
{
"aggregationType": 4,
"questionId": "60de355bffcabb005be29ad7",
"label": "Sum"
},
{
"aggregationType": 2,
"questionId": "60de355bffcabb005be29adb",
"label": "Min"
},
{
"aggregationType": 3,
"questionId": "60de355bffcabb005be29adb",
"label": "Max"
},
{
"aggregationType": 5,
"questionId": "60de355bffcabb005be29adb",
"label": "Average"
},
{
"aggregationType": 4,
"questionId": "60de355bffcabb005be29adb",
"label": "Sum"
},
{
"aggregationType": 2,
"questionId": "60de355bffcabb005be29adc",
"label": "Min"
},
{
"aggregationType": 3,
"questionId": "60de355bffcabb005be29adc",
"label": "Max"
},
{
"aggregationType": 5,
"questionId": "60de355bffcabb005be29adc",
"label": "Average"
},
{
"aggregationType": 4,
"questionId": "60de355bffcabb005be29adc",
"label": "Sum"
},
{
"aggregationType": 2,
"questionId": "60de355bffcabb005be29add",
"label": "Min"
},
{
"aggregationType": 3,
"questionId": "60de355bffcabb005be29add",
"label": "Max"
},
{
"aggregationType": 5,
"questionId": "60de355bffcabb005be29add",
"label": "Average"
},
{
"aggregationType": 4,
"questionId": "60de355bffcabb005be29add",
"label": "Sum"
},
{
"aggregationType": 2,
"questionId": "60de355bffcabb005be29ade",
"label": "Min"
},
{
"aggregationType": 3,
"questionId": "60de355bffcabb005be29ade",
"label": "Max"
},
{
"aggregationType": 5,
"questionId": "60de355bffcabb005be29ade",
"label": "Average"
},
{
"aggregationType": 4,
"questionId": "60de355bffcabb005be29ade",
"label": "Sum"
},
{
"aggregationType": 2,
"questionId": "60de355bffcabb005be29adf",
"label": "Min"
},
{
"aggregationType": 3,
"questionId": "60de355bffcabb005be29adf",
"label": "Max"
},
{
"aggregationType": 5,
"questionId": "60de355bffcabb005be29adf",
"label": "Average"
},
{
"aggregationType": 2,
"questionId": "60de355bffcabb005be29ae0",
"label": "Min"
},
{
"aggregationType": 3,
"questionId": "60de355bffcabb005be29ae0",
"label": "Max"
},
{
"aggregationType": 5,
"questionId": "60de355bffcabb005be29ae0",
"label": "Average"
},
{
"aggregationType": 2,
"questionId": "60de355bffcabb005be29ae1",
"label": "Min"
},
{
"aggregationType": 3,
"questionId": "60de355bffcabb005be29ae1",
"label": "Max"
},
{
"aggregationType": 5,
"questionId": "60de355bffcabb005be29ae1",
"label": "Average"
},
{
"aggregationType": 2,
"questionId": "60de3564ffcabb005be29b2a",
"label": "Min"
},
{
"aggregationType": 3,
"questionId": "60de3564ffcabb005be29b2a",
"label": "Max"
},
{
"aggregationType": 5,
"questionId": "60de3564ffcabb005be29b2a",
"label": "Average"
},
{
"aggregationType": 2,
"questionId": "60de3564ffcabb005be29b2b",
"label": "Min"
},
{
"aggregationType": 3,
"questionId": "60de3564ffcabb005be29b2b",
"label": "Max"
},
{
"aggregationType": 5,
"questionId": "60de3564ffcabb005be29b2b",
"label": "Average"
},
{
"aggregationType": 2,
"questionId": "60de3564ffcabb005be29b2c",
"label": "Min"
},
{
"aggregationType": 3,
"questionId": "60de3564ffcabb005be29b2c",
"label": "Max"
},
{
"aggregationType": 5,
"questionId": "60de3564ffcabb005be29b2c",
"label": "Average"
},
{
"aggregationType": 2,
"questionId": "60de3564ffcabb005be29b2e",
"label": "Min"
},
{
"aggregationType": 3,
"questionId": "60de3564ffcabb005be29b2e",
"label": "Max"
},
{
"aggregationType": 5,
"questionId": "60de3564ffcabb005be29b2e",
"label": "Average"
},
{
"aggregationType": 4,
"questionId": "60de3564ffcabb005be29b2e",
"label": "Sum"
},
{
"aggregationType": 2,
"questionId": "60de3564ffcabb005be29b32",
"label": "Min"
},
{
"aggregationType": 3,
"questionId": "60de3564ffcabb005be29b32",
"label": "Max"
},
{
"aggregationType": 5,
"questionId": "60de3564ffcabb005be29b32",
"label": "Average"
},
{
"aggregationType": 4,
"questionId": "60de3564ffcabb005be29b32",
"label": "Sum"
},
{
"aggregationType": 2,
"questionId": "60de3564ffcabb005be29b33",
"label": "Min"
},
{
"aggregationType": 3,
"questionId": "60de3564ffcabb005be29b33",
"label": "Max"
},
{
"aggregationType": 5,
"questionId": "60de3564ffcabb005be29b33",
"label": "Average"
},
{
"aggregationType": 4,
"questionId": "60de3564ffcabb005be29b33",
"label": "Sum"
},
{
"aggregationType": 2,
"questionId": "60de3564ffcabb005be29b34",
"label": "Min"
},
{
"aggregationType": 3,
"questionId": "60de3564ffcabb005be29b34",
"label": "Max"
},
{
"aggregationType": 5,
"questionId": "60de3564ffcabb005be29b34",
"label": "Average"
},
{
"aggregationType": 4,
"questionId": "60de3564ffcabb005be29b34",
"label": "Sum"
},
{
"aggregationType": 2,
"questionId": "60de3564ffcabb005be29b35",
"label": "Min"
},
{
"aggregationType": 3,
"questionId": "60de3564ffcabb005be29b35",
"label": "Max"
},
{
"aggregationType": 5,
"questionId": "60de3564ffcabb005be29b35",
"label": "Average"
},
{
"aggregationType": 4,
"questionId": "60de3564ffcabb005be29b35",
"label": "Sum"
},
{
"aggregationType": 2,
"questionId": "60de3564ffcabb005be29b36",
"label": "Min"
},
{
"aggregationType": 3,
"questionId": "60de3564ffcabb005be29b36",
"label": "Max"
},
{
"aggregationType": 5,
"questionId": "60de3564ffcabb005be29b36",
"label": "Average"
},
{
"aggregationType": 2,
"questionId": "60de3564ffcabb005be29b37",
"label": "Min"
},
{
"aggregationType": 3,
"questionId": "60de3564ffcabb005be29b37",
"label": "Max"
},
{
"aggregationType": 5,
"questionId": "60de3564ffcabb005be29b37",
"label": "Average"
},
{
"aggregationType": 2,
"questionId": "60de3564ffcabb005be29b38",
"label": "Min"
},
{
"aggregationType": 3,
"questionId": "60de3564ffcabb005be29b38",
"label": "Max"
},
{
"aggregationType": 5,
"questionId": "60de3564ffcabb005be29b38",
"label": "Average"
},
{
"aggregationType": 2,
"questionId": "60de3564ffcabb005be29b3b",
"label": "Min"
},
{
"aggregationType": 3,
"questionId": "60de3564ffcabb005be29b3b",
"label": "Max"
},
{
"aggregationType": 5,
"questionId": "60de3564ffcabb005be29b3b",
"label": "Average"
},
{
"aggregationType": 2,
"questionId": "60de3564ffcabb005be29b3c",
"label": "Min"
},
{
"aggregationType": 3,
"questionId": "60de3564ffcabb005be29b3c",
"label": "Max"
},
{
"aggregationType": 5,
"questionId": "60de3564ffcabb005be29b3c",
"label": "Average"
},
{
"aggregationType": 2,
"questionId": "60de3564ffcabb005be29b3d",
"label": "Min"
},
{
"aggregationType": 3,
"questionId": "60de3564ffcabb005be29b3d",
"label": "Max"
},
{
"aggregationType": 5,
"questionId": "60de3564ffcabb005be29b3d",
"label": "Average"
},
{
"aggregationType": 2,
"questionId": "60de3564ffcabb005be29b3f",
"label": "Min"
},
{
"aggregationType": 3,
"questionId": "60de3564ffcabb005be29b3f",
"label": "Max"
},
{
"aggregationType": 5,
"questionId": "60de3564ffcabb005be29b3f",
"label": "Average"
},
{
"aggregationType": 4,
"questionId": "60de3564ffcabb005be29b3f",
"label": "Sum"
},
{
"aggregationType": 2,
"questionId": "60de3564ffcabb005be29b43",
"label": "Min"
},
{
"aggregationType": 3,
"questionId": "60de3564ffcabb005be29b43",
"label": "Max"
},
{
"aggregationType": 5,
"questionId": "60de3564ffcabb005be29b43",
"label": "Average"
},
{
"aggregationType": 4,
"questionId": "60de3564ffcabb005be29b43",
"label": "Sum"
},
{
"aggregationType": 2,
"questionId": "60de3564ffcabb005be29b44",
"label": "Min"
},
{
"aggregationType": 3,
"questionId": "60de3564ffcabb005be29b44",
"label": "Max"
},
{
"aggregationType": 5,
"questionId": "60de3564ffcabb005be29b44",
"label": "Average"
},
{
"aggregationType": 4,
"questionId": "60de3564ffcabb005be29b44",
"label": "Sum"
},
{
"aggregationType": 2,
"questionId": "60de3564ffcabb005be29b45",
"label": "Min"
},
{
"aggregationType": 3,
"questionId": "60de3564ffcabb005be29b45",
"label": "Max"
},
{
"aggregationType": 5,
"questionId": "60de3564ffcabb005be29b45",
"label": "Average"
},
{
"aggregationType": 4,
"questionId": "60de3564ffcabb005be29b45",
"label": "Sum"
},
{
"aggregationType": 2,
"questionId": "60de3564ffcabb005be29b46",
"label": "Min"
},
{
"aggregationType": 3,
"questionId": "60de3564ffcabb005be29b46",
"label": "Max"
},
{
"aggregationType": 5,
"questionId": "60de3564ffcabb005be29b46",
"label": "Average"
},
{
"aggregationType": 4,
"questionId": "60de3564ffcabb005be29b46",
"label": "Sum"
},
{
"aggregationType": 2,
"questionId": "60de3564ffcabb005be29b47",
"label": "Min"
},
{
"aggregationType": 3,
"questionId": "60de3564ffcabb005be29b47",
"label": "Max"
},
{
"aggregationType": 5,
"questionId": "60de3564ffcabb005be29b47",
"label": "Average"
},
{
"aggregationType": 2,
"questionId": "60de3564ffcabb005be29b48",
"label": "Min"
},
{
"aggregationType": 3,
"questionId": "60de3564ffcabb005be29b48",
"label": "Max"
},
{
"aggregationType": 5,
"questionId": "60de3564ffcabb005be29b48",
"label": "Average"
},
{
"aggregationType": 2,
"questionId": "60de3564ffcabb005be29b49",
"label": "Min"
},
{
"aggregationType": 3,
"questionId": "60de3564ffcabb005be29b49",
"label": "Max"
},
{
"aggregationType": 5,
"questionId": "60de3564ffcabb005be29b49",
"label": "Average"
},
{
"aggregationType": 2,
"questionId": "60de3564ffcabb005be29b4c",
"label": "Min"
},
{
"aggregationType": 3,
"questionId": "60de3564ffcabb005be29b4c",
"label": "Max"
},
{
"aggregationType": 5,
"questionId": "60de3564ffcabb005be29b4c",
"label": "Average"
},
{
"aggregationType": 2,
"questionId": "60de3564ffcabb005be29b4d",
"label": "Min"
},
{
"aggregationType": 3,
"questionId": "60de3564ffcabb005be29b4d",
"label": "Max"
},
{
"aggregationType": 5,
"questionId": "60de3564ffcabb005be29b4d",
"label": "Average"
},
{
"aggregationType": 2,
"questionId": "60de3564ffcabb005be29b4e",
"label": "Min"
},
{
"aggregationType": 3,
"questionId": "60de3564ffcabb005be29b4e",
"label": "Max"
},
{
"aggregationType": 5,
"questionId": "60de3564ffcabb005be29b4e",
"label": "Average"
},
{
"aggregationType": 2,
"questionId": "60de3564ffcabb005be29b50",
"label": "Min"
},
{
"aggregationType": 3,
"questionId": "60de3564ffcabb005be29b50",
"label": "Max"
},
{
"aggregationType": 5,
"questionId": "60de3564ffcabb005be29b50",
"label": "Average"
},
{
"aggregationType": 4,
"questionId": "60de3564ffcabb005be29b50",
"label": "Sum"
},
{
"aggregationType": 2,
"questionId": "60de3564ffcabb005be29b54",
"label": "Min"
},
{
"aggregationType": 3,
"questionId": "60de3564ffcabb005be29b54",
"label": "Max"
},
{
"aggregationType": 5,
"questionId": "60de3564ffcabb005be29b54",
"label": "Average"
},
{
"aggregationType": 4,
"questionId": "60de3564ffcabb005be29b54",
"label": "Sum"
},
{
"aggregationType": 2,
"questionId": "60de3564ffcabb005be29b55",
"label": "Min"
},
{
"aggregationType": 3,
"questionId": "60de3564ffcabb005be29b55",
"label": "Max"
},
{
"aggregationType": 5,
"questionId": "60de3564ffcabb005be29b55",
"label": "Average"
},
{
"aggregationType": 4,
"questionId": "60de3564ffcabb005be29b55",
"label": "Sum"
},
{
"aggregationType": 2,
"questionId": "60de3564ffcabb005be29b56",
"label": "Min"
},
{
"aggregationType": 3,
"questionId": "60de3564ffcabb005be29b56",
"label": "Max"
},
{
"aggregationType": 5,
"questionId": "60de3564ffcabb005be29b56",
"label": "Average"
},
{
"aggregationType": 4,
"questionId": "60de3564ffcabb005be29b56",
"label": "Sum"
},
{
"aggregationType": 2,
"questionId": "60de3564ffcabb005be29b57",
"label": "Min"
},
{
"aggregationType": 3,
"questionId": "60de3564ffcabb005be29b57",
"label": "Max"
},
{
"aggregationType": 5,
"questionId": "60de3564ffcabb005be29b57",
"label": "Average"
},
{
"aggregationType": 4,
"questionId": "60de3564ffcabb005be29b57",
"label": "Sum"
},
{
"aggregationType": 2,
"questionId": "60de3564ffcabb005be29b58",
"label": "Min"
},
{
"aggregationType": 3,
"questionId": "60de3564ffcabb005be29b58",
"label": "Max"
},
{
"aggregationType": 5,
"questionId": "60de3564ffcabb005be29b58",
"label": "Average"
},
{
"aggregationType": 2,
"questionId": "60de3564ffcabb005be29b59",
"label": "Min"
},
{
"aggregationType": 3,
"questionId": "60de3564ffcabb005be29b59",
"label": "Max"
},
{
"aggregationType": 5,
"questionId": "60de3564ffcabb005be29b59",
"label": "Average"
},
{
"aggregationType": 2,
"questionId": "60de3564ffcabb005be29b5a",
"label": "Min"
},
{
"aggregationType": 3,
"questionId": "60de3564ffcabb005be29b5a",
"label": "Max"
},
{
"aggregationType": 5,
"questionId": "60de3564ffcabb005be29b5a",
"label": "Average"
}
]
}Description
Get dimensions and measures available for the selected project based on its questions.Payload
{
"projectId": string,
"groups": array
}
projectId: Id of the project to look for. (Required).groups: List of question ids to filter the response with
Response
200 OK
{
"dimensions": array,
"measures": array,
}
dimensions: Array of the available questions to be used as dimensions for a pivot table.measures: Array of objects, each one representing a measure type for a question.
Measures
{
"aggregationType": number,
"questionId": string,
"label": string
}
aggregationType: Type of aggregator format for the value. Could be:- 1: count
- 2: min
- 3: max
- 4: sum
- 5: average
label: Name of the aggregation typequestionId: Id of the question this measure is available to
401 Unauthorized
Invalid authorization.
404 Not Found
Resource not found.
500 Internal Server Error
Error occurred in the service.
Was this page helpful?
⌘I