-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcapabilities.json
98 lines (98 loc) · 2.08 KB
/
capabilities.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"dataRoles": [
{
"displayName": "Population",
"description": "Numeric variable (positive integer)",
"kind": "GroupingOrMeasure",
"name": "population"
},
{
"displayName": "Occurrence",
"description": "Numeric variable (nonnegative integer). Must be smaller than 'Population'",
"kind": "GroupingOrMeasure",
"name": "occurrence"
},
{
"displayName": "Tooltips",
"description": "Fields to be used as mouseover tooltips",
"kind": "Grouping",
"name": "tooltips"
}
],
"dataViewMappings": [
{
"conditions": [
{
"population": {
"max": 1
},
"occurrence": {
"max": 1
},
"tooltips": {
"max": 7
}
}
],
"scriptResult": {
"dataInput": {
"table": {
"rows": {
"select": [
{
"for": {
"in": "population"
}
},
{
"for": {
"in": "occurrence"
}
},
{
"for": {
"in": "tooltips"
}
}
],
"dataReductionAlgorithm": {
"top": {}
}
}
}
},
"script": {
"scriptProviderDefault": "R",
"scriptOutputType": "png",
"source": {
"objectName": "rcv_script",
"propertyName": "source"
},
"provider": {
"objectName": "rcv_script",
"propertyName": "provider"
}
}
}
}
],
"objects": {
"rcv_script": {
"properties": {
"provider": {
"type": {
"text": true
}
},
"source": {
"type": {
"scripting": {
"source": true
}
}
}
}
}
},
"suppressDefaultTitle": true
}