-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfiguration.json
103 lines (103 loc) · 4.89 KB
/
configuration.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
101
102
103
{
"kinds": [
{
"name": "dgp_kind",
"display": "OpenFiscal",
"dgp": true,
"fields": [
{
"display": "About the Data",
"type": "section",
"fields": [
{
"name": "extra.metadata.source",
"display": "Data Source",
"description": "Name of the organization that owns the data"
},
{
"name": "extra.metadata.geo_scope",
"display": "Geographical scope",
"description": "e.g. particular region, whole country etc."
},
{
"name": "extra.metadata.update_date",
"display": "For which period this data is relevant",
"description": "e.g. Specific fiscal year, quarter etc."
},
{
"name": "extra.metadata.revision",
"display": "Revision of this dataset",
"description": "e.g. 1, 2, 3 etc."
}
]
},
{
"display": "Technical Info",
"description": "Some details regarding how the data will be generated",
"type": "section",
"fields": [
{
"name": "extra.metadata.dataset-name",
"display": "Dataset Name",
"description": "All datasets with the same dataset name will be aggregated into a single repository"
}
]
},
{
"display": "Point of Contact",
"description": "Optional point-of-contact information.<br/>We recommend using organizational level contact information and not personal.",
"type": "section",
"expandable": true,
"fields": [
{
"name": "extra.metadata.contact_name",
"display": "Full Name"
},
{
"name": "extra.metadata.contact_phone_number",
"display": "Phone Number"
},
{
"name": "extra.metadata.contact_email",
"display": "Email Address"
}
]
}
]
}
],
"theme": {
"primary": "#333",
"primary_dark": "#222",
"secondary": "#fff"
},
"schedules": [
{"name": "@daily", "display": "Daily"},
{"name": "@weekly", "display": "Weekly"},
{"name": "@monthly", "display": "Monthly"},
{"name": "@yearly", "display": "Yearly"},
{"name": "manual", "display": "Manual"}
],
"homepage": "https://openfiscal.org/",
"taskDescription": "Describe this dataset briefly - origin, kind etc. ",
"dateFormats": [
{"display": "Automatic", "format": "auto"},
{"display": "Automatic - YMD", "format": "auto_ymd"},
{"display": "Automatic - YDM", "format": "auto_ydm"},
{"display": "Automatic - DMY", "format": "auto_dmy"},
{"display": "Automatic - MDY", "format": "auto_mdy"},
{"display": "MM/DD/YY - 04/22/14", "format": "%m/%d/%y"},
{"display": "MM/DD/YYYY - 04/22/2014", "format": "%m/%d/%Y"},
{"display": "DD/MM/YY - 22/04/14", "format": "%d/%m/%y"},
{"display": "DD/MM/YYYY - 22/04/2014", "format": "%d/%m/%Y"},
{"display": "YYYY-MM-DD - 2014-04-14", "format": "default"},
{"display": "YYYY/MM/DD - 2014/04/14", "format": "%Y/%m/%d"},
{"display": "DD-MMM-YY - 22-Apr-14", "format": "%d-%b-%y"},
{"display": "MMM DD YYYY - Apr 22 2014", "format": "%b %d %Y"},
{"display": "YYYY-MM-DDTHH:MM:SS - 2014-04-22T00:00:00", "format": "%Y-%m-%dT%H:%M:%S"},
{"display": "YYYY-MM-DDTHH:MM:SSZ - 2014-04-22T00:00:00Z", "format": "%Y-%m-%dT%H:%M:%SZ"},
{"display": "DD-MM-YYYY HH:MM:SS ZZZ - 22-04-2014 00:00:00 UTC", "format": "%d-%m-%Y %H:%M:%S %Z"},
{"display": "MM-DD-YYYY HH:MM:SS ZZZ - 04-22-2014 00:00:00 UTC", "format": "%m-%d-%Y %H:%M:%S %Z"},
{"display": "DD/MM/YYYY HH:MM:SS PM - 22/4/2014 00:00:00 PM", "format": "%d/%m/%Y %H:%M:%S %p"}
]
}