Advertisement
metalni

data view mapping

Mar 21st, 2023
692
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
JSON 3.35 KB | None | 0 0
  1. {
  2.  
  3.   "supportsHighlight": true,
  4.   "dataRoles": [
  5.     {
  6.       "displayName": "Item name compl",
  7.       "name": "category",
  8.       "kind": "Grouping"
  9.     },
  10.     {
  11.       "displayName": "Dates",
  12.       "name": "date",
  13.       "kind": "Grouping"
  14.     },
  15.     {
  16.       "displayName": "Dates well test",
  17.       "name": "date_wr",
  18.       "kind": "Grouping"
  19.     },
  20.     {
  21.       "displayName": "check cat",
  22.       "name": "check_cat",
  23.       "kind": "Grouping"
  24.     },
  25.     {
  26.       "displayName": "value1",
  27.       "kind": "Measure",
  28.       "name": "value1"
  29.     },
  30.     {
  31.       "displayName": "value1 unit",
  32.       "name": "value1_unit",
  33.       "kind": "Measure"
  34.     },
  35.  
  36.     {
  37.       "displayName": "value2",
  38.       "name": "value2",
  39.       "kind": "Measure"
  40.     },
  41.     {
  42.       "displayName": "value2 unit",
  43.       "name": "value2_unit",
  44.       "kind": "Measure"
  45.     },
  46.     {
  47.       "displayName": "value3",
  48.       "name": "value3",
  49.       "kind": "Measure"
  50.     },
  51.     {
  52.       "displayName": "value3 unit",
  53.       "name": "value3_unit",
  54.       "kind": "Measure"
  55.     },
  56.     {
  57.       "displayName": "value4",
  58.       "name": "value4",
  59.       "kind": "Measure"
  60.     },
  61.     {
  62.       "displayName": "value4 unit",
  63.       "name": "value4_unit",
  64.       "kind": "Measure"
  65.     },
  66.     {
  67.       "displayName": "check val",
  68.       "name": "check_val",
  69.       "kind": "Measure"
  70.     }
  71.   ],
  72.  
  73.   "dataViewMappings": [
  74.     {
  75.       "categorical": {
  76.         "categories": {
  77.           "select": [
  78.             {
  79.               "for": {
  80.                 "in": "category"
  81.               }
  82.             },
  83.             {
  84.               "for": {
  85.                 "in": "date"
  86.               }
  87.             },
  88.             {
  89.               "for": {
  90.                 "in": "date_wr"
  91.               }
  92.             }
  93.           ]
  94.         },
  95.         "values": {
  96.           "group": {
  97.             "by": "date",
  98.             "select": [
  99.               {
  100.                 "bind": {
  101.                   "to": "value1"
  102.                 }
  103.               },
  104.               {
  105.                 "bind": {
  106.                   "to": "value1_unit"
  107.                 }
  108.               },
  109.               {
  110.                 "bind": {
  111.                   "to": "value2"
  112.                 }
  113.               },
  114.               {
  115.                 "bind": {
  116.                   "to": "value2_unit"
  117.                 }
  118.               },
  119.               {
  120.                 "bind": {
  121.                   "to": "value3"
  122.                 }
  123.               },
  124.               {
  125.                 "bind": {
  126.                   "to": "value3_unit"
  127.                 }
  128.               },
  129.               {
  130.                 "bind": {
  131.                   "to": "value4"
  132.                 }
  133.               },
  134.               {
  135.                 "bind": {
  136.                   "to": "value4_unit"
  137.                 }
  138.               }
  139.             ]
  140.           }
  141.         }
  142.       }
  143.     },
  144.     {
  145.       "categorical": {
  146.         "categories": {
  147.           "select": [
  148.            
  149.             {
  150.               "for": {
  151.                 "in": "check_cat"
  152.               }
  153.             }
  154.           ]
  155.         },
  156.         "values": {
  157.           "group": {
  158.             "by": "check_cat",
  159.             "select": [
  160.               {
  161.                 "bind": {
  162.                   "to": "check_val"
  163.                 }
  164.               }
  165.             ]
  166.           }
  167.         }
  168.       }
  169.     }
  170.   ]
  171. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement