Advertisement
Grigory75

Untitled

Jun 11th, 2016
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
JSON 0.71 KB | None | 0 0
  1. {
  2.     "cubes": [
  3.     {
  4.         "name": "InvoiceLine",
  5.         "dimensions": ["Invoice"],
  6.         "joins": [
  7.           {"master":"InvoiceLine.InvoiceId", "detail": "Invoice.InvoiceId"}
  8.         ],
  9.         "measures": [{"name":"Quantity", "label":"Track Qnty"}],
  10.     "aggregates": [
  11.               {
  12.                   "name": "Quantity",
  13.                   "function": "sum",
  14.                   "measure": "Quantity"
  15.               },
  16.               {
  17.                   "name": "record_count",
  18.                   "function": "count"
  19.               }
  20.           ]
  21.        }
  22.     ],
  23.     "dimensions": [
  24.         {"name":"Invoice","attributes": ["InvoiceId","InvoiceDate","BillingAddress"] ,"label":"Invoice"}
  25.       ]
  26. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement