Benchmarks

Benchmarks

It is possible to create two types of benchmarks in Effect IO. These are set as part of survey settings. The two types are
  1. Range benchmark: Allows 2-X values that will be represented as "background" in the charts
  2. Single value benchmark: Set one reference value for the given benchmark
Multiple benchmarks can be created, but one report can use only one.

Currently there is no frontend to create these benchmarks. But you can set it up by using the JSON definitions below, and then contact support to help you import them to system.

Definition in JSON of range BMK

  1. "benchmarks": [
  2.     {
  3.       "id": "7a8394d1-d4e8-4a75-a26c-63411cd46ae5",
  4.       "name": {
  5.         "en": "First ever benchmark"
  6.       },
  7.       "ranges": [
  8.         {
  9.           "questionId": "fa352184-1198-47ad-8746-d1ba461c94c7",
  10.           "fromTo": [
  11.             {
  12.               "to": 3.2,
  13.               "from": 0
  14.             },
  15.             {
  16.               "to": 3.9,
  17.               "from": 3.2
  18.             },
  19.             {
  20.               "to": 5,
  21.               "from": 3.9
  22.             }
  23.           ]
  24.         },
  25.         {
  26.           "questionId": "17dd3d9f-b4b1-4ad3-9ebb-d64afb4a9bd5",
  27.           "fromTo": [
  28.             {
  29.               "to": 2.9,
  30.               "from": 0
  31.             },
  32.             {
  33.               "to": 3.5,
  34.               "from": 2.9
  35.             },
  36.             {
  37.               "to": 5,
  38.               "from": 3.5
  39.             }
  40.           ]
  41.         },
  42.         {
  43.           "questionId": "a169a096-d740-4c82-a303-a6c0eea15acc",
  44.           "fromTo": [
  45.             {
  46.               "to": 0,
  47.               "from": 0.8
  48.             },
  49.             {
  50.               "to": 3.2,
  51.               "from": 0.8
  52.             },
  53.             {
  54.               "to": 5,
  55.               "from": 3.2
  56.             }
  57.           ]
  58.         },
  59.         {
  60.           "questionId": "844ccea8-b6bc-43fa-a0f5-76dd26f3746d",
  61.           "fromTo": [
  62.             {
  63.               "to": 3.9,
  64.               "from": 0
  65.             },
  66.             {
  67.               "to": 4.2,
  68.               "from": 3.9
  69.             },
  70.             {
  71.               "to": 5,
  72.               "from": 4.2
  73.             }
  74.           ]
  75.         },
  76.         {
  77.           "questionId": "ac22db5d-8174-422c-a9b3-d37e1bc42867",
  78.           "fromTo": [
  79.             {
  80.               "to": 3,
  81.               "from": 0
  82.             },
  83.             {
  84.               "to": 4.1,
  85.               "from": 3
  86.             },
  87.             {
  88.               "to": 5,
  89.               "from": 4.1
  90.             }
  91.           ]
  92.         },
  93.         {
  94.           "questionId": "94487603-a1b4-42ac-b01c-a475e9d025fd",
  95.           "fromTo": [
  96.             {
  97.               "to": 2.2,
  98.               "from": 0
  99.             },
  100.             {
  101.               "to": 4,
  102.               "from": 2.2
  103.             },
  104.             {
  105.               "to": 5,
  106.               "from": 4
  107.             }
  108.           ]
  109.         }
  110.       ]
  111.     }

Definition in JSON of single value BMK

  1. "benchmarks":
  2.     [
  3.         {
  4.             "id": "7a8394d1-d4e8-4a75-a26c-63411cd46ae5",
  5.             "name":
  6.             {
  7.                 "en": "First ever benchmark"
  8.             },
  9.             "numbers":
  10.             {
  11.                 "fa352184-1198-47ad-8746-d1ba461c94c7": 5,
  12.                 "17dd3d9f-b4b1-4ad3-9ebb-d64afb4a9bd5": 3,
  13.                 "a169a096-d740-4c82-a303-a6c0eea15acc": 8,
  14.                 "844ccea8-b6bc-43fa-a0f5-76dd26f3746d": 2,
  15.                 "ac22db5d-8174-422c-a9b3-d37e1bc42867": 4,
  16.                 "94487603-a1b4-42ac-b01c-a475e9d025fd": 2
  17.             }
  18.         }
  19.     ]