-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathreports.json
100 lines (100 loc) · 2.65 KB
/
reports.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
99
100
{
"name": "Google Workspace Report",
"readme_file": "README.md",
"version": "1.0",
"language": "python",
"reports": [
{
"name": "Google Workspace report",
"readme_file": "reports/google_workspace_report/README.md",
"entrypoint": "reports.google_workspace_report.entrypoint.generate",
"audience": [
"provider",
"vendor"
],
"report_spec": "2",
"parameters": [
{
"id": "date",
"type": "date_range",
"name": "Subscription Creation",
"description": "Optional: in case that is desired, report can be limited to subscriptions created in the selected period of time"
},
{
"id": "connection_type",
"type": "checkbox",
"name": "Transaction type",
"required": true,
"description": "Select the type of transaction to include in report",
"choices": [
{
"value": "test",
"label": "Test"
},
{
"value": "production",
"label": "Production"
}
]
},
{
"id": "mkp",
"type": "marketplace",
"name": "Marketplaces",
"required": true,
"description": "Select the marketplaces you want to include in report"
},
{
"id": "status",
"type": "checkbox",
"name": "Subscription status",
"required": true,
"description": "Specify the subscription status to include in report",
"choices": [
{
"value": "active",
"label": "Active"
},
{
"value": "suspended",
"label": "Suspended"
},
{
"value": "terminating",
"label": "Terminating"
},
{
"value": "terminated",
"label": "Terminated"
}
]
}
],
"renderers": [
{
"id": "xlsx",
"type": "xlsx",
"default": true,
"description": "Export data in Microsoft Excel 2020 format.",
"template": "reports/google_workspace_report/templates/xlsx/template.xlsx",
"args": {
"start_row": 2,
"start_col": 1
}
},
{
"id": "json",
"type": "json",
"default": false,
"description": "Export data as JSON"
},
{
"id": "csv",
"type": "csv",
"default": false,
"description": "Export data as CSV"
}
]
}
]
}