...
Example: Top assignee broken out into months
...
language | text |
---|
wget -O- -q \ |
...
|
...
|
...
|
Response JSON
Code Block | ||
---|---|---|
| ||
{ "status" : "success", "content" : [ { "years" : [ { "year" : 2013, "months" : [ 154, 107, 90, 161, 135, 118, 221, 108, 157, 244, 218, 432 ], "total" : 2145 }, { "total" : 7533, "year" : 2014, "months" : [ 627, 571, 546, 571, 467, 555, 772, 715, 771, 669, 495, 774 ] }, { "year" : 2015, "months" : [ 622, 623, 713, 606, 518, 889, 574, 612, 617, 495, 486, 598 ], "total" : 7353 }, { "year" : 2016, "months" : [ 483, 814, 915, 663, 754, 505, 572, 751, 540, 729, 779, 582 ], "total" : 8087 }, { "total" : 9043, "year" : 2017, "months" : [ 758, 944, 784, 803, 842, 671, 763, 1101, 695, 709, 476, 497 ] }, { "months" : [ 948, 761, 912, 901, 742, 715, 0, 0, 0, 0, 0, 0 ], "year" : 2018, "total" : 4979 } ], "name" : "International Business Machines Corp", "country" : "US", "total" : 39140 } ], "time" : "0.195" } |
...
Example: Pivoting values from separate field embedded under years
...
...
language | text |
---|
wget -O- -q \ |
...
|
...
|
...
|
Response JSON
Code Block | ||
---|---|---|
| ||
{ "content" : [ { "name" : "International Business Machines Corp", "years" : [ { "year" : 2013, "cpcl3" : [ { "total" : 873, "value" : "h01l" }, { "value" : "g06f", "total" : 839 }, { "total" : 136, "value" : "h04l" } ], "total" : 2145 }, { "total" : 7533, "year" : 2014, "cpcl3" : [ { "value" : "g06f", "total" : 4148 }, { "total" : 1335, "value" : "h01l" }, { "value" : "h04l", "total" : 1288 } ] }, { "total" : 7353, "cpcl3" : [ { "total" : 4285, "value" : "g06f" }, { "value" : "h04l", "total" : 1420 }, { "value" : "h01l", "total" : 1169 } ], "year" : 2015 }, { "total" : 8087, "cpcl3" : [ { "value" : "g06f", "total" : 5115 }, { "total" : 1906, "value" : "h04l" }, { "total" : 1348, "value" : "h05k" } ], "year" : 2016 }, { "year" : 2017, "cpcl3" : [ { "total" : 5277, "value" : "g06f" }, { "value" : "h05k", "total" : 4739 }, { "value" : "h04l", "total" : 2209 } ], "total" : 9043 }, { "cpcl3" : [ { "value" : "g06f", "total" : 2833 }, { "total" : 1396, "value" : "h05k" }, { "value" : "h04l", "total" : 1213 } ], "year" : 2018, "total" : 4979 } ], "total" : 39140, "country" : "US" } ], "time" : "0.085", "status" : "success" } |
...
This example requests the top 2 assignees who publish in the F16L CPC area (PIPES; JOINTS OR FITTINGS FOR PIPES; SUPPORTS FOR PIPES, CABLES OR PROTECTIVE TUBING; MEANS FOR THERMAL INSULATION IN GENERAL) concentrating on E03B (Water supply installations). Note, the @min parameter is reduced to 1 (default being 10) to satisfy this narrow search field.
...
wget -O- -q \ |
...
|
...
|
...
|
Response JSON
Code Block | ||
---|---|---|
| ||
{ "status" : "success", "content" : [ { "name" : "ADEY HOLDINGS (2008) Ltd", "years" : [ { "year" : 2013, "total" : 0 }, { "year" : 2014, "total" : 0 }, { "total" : 0, "year" : 2015 }, { "total" : 0, "year" : 2016 }, { "total" : 0, "year" : 2017 }, { "year" : 2018, "total" : 3 } ], "total" : 3, "country" : "GB" }, { "total" : 2, "country" : "US", "name" : "AMTROL Licensing Inc", "years" : [ { "year" : 2013, "total" : 0 }, { "total" : 0, "year" : 2014 }, { "year" : 2015, "total" : 0 }, { "year" : 2016, "total" : 0 }, { "total" : 1, "year" : 2017 }, { "total" : 1, "year" : 2018 } ] } ], "time" : "0.130" } |
...