-
Notifications
You must be signed in to change notification settings - Fork 0
/
modelspec.json
132 lines (132 loc) · 4.25 KB
/
modelspec.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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
{
"name": "Echelon-2-COPERT",
"description":"Echelon-2-COPERT accepts the output of Echelon model and together with more input data creates an XLSX output compatible with COPERT",
"version": "latest-e2c1",
"status":"draft",
"dockerImage":"registry.gitlab.com/inlecom/lead/models/echelon-2-copert:latest-e2c1",
"url": "https://gitlab.com/inlecom/lead/models/echelon-2-copert",
"modelData": [
{
"name": "Echelon Output JSON",
"variableName": "echelon_json",
"description": "JSON Input matching Echelon's model output",
"isOutput": false,
"isOutputDir": false,
"isOptional": false,
"inputType": "CLI",
"chartType": "NONE",
"modelDataType": {
"name": "file",
"description": "",
"dataType": "file",
"extension": "json",
"validators": [
{
"name": "required",
"description": "required",
"validatorType": "required",
"value": ""
}
],
"objectKeys": []
}
},
{
"name": "Vehicles JSON",
"variableName": "vehicles_json",
"description": "JSON describing vehicles.",
"isOutput": false,
"isOptional": false,
"chartType": "NONE",
"modelDataType": {
"name": "file",
"description": "",
"dataType": "file",
"extension": "json",
"validators": [],
"objectKeys": []
}
},
{
"name": "Climate JSON",
"variableName": "climate_json",
"description": "JSON describing climate.",
"isOutput": false,
"isOptional": false,
"chartType": "NONE",
"modelDataType": {
"name": "file",
"description": "",
"dataType": "file",
"extension": "json",
"validators": [],
"objectKeys": []
}
},
{
"name": "Year",
"variableName": "year",
"description": "Year to be used for Copert input",
"isOutput": false,
"isOptional": false,
"chartType": "NONE",
"modelDataType": {
"name": "number",
"description": "number",
"dataType": "number",
"extension": null,
"validators": [],
"objectKeys": []
}
},
{
"name": "OUTDIR",
"variableName": "outdir",
"description": "output directory",
"isOutput": false,
"isOutputDir": true,
"isOptional": false,
"inputType": "CLI",
"chartType": "NONE",
"modelDataType": {
"name": "string",
"description": "",
"dataType": "string",
"extension": null,
"validators": [
{
"name": "required",
"description": "required",
"validatorType": "required",
"value": ""
}
],
"objectKeys": []
}
},
{
"name": "xlsx Output",
"variableName": "copert_input",
"description": "copert input",
"isOutput": true,
"isOutputDir": false,
"isOptional": false,
"chartType": "NONE",
"modelDataType": {
"name": "file",
"description": "",
"dataType": "file",
"extension": "xlsx",
"validators": [
{
"name": "required",
"description": "required",
"validatorType": "required",
"value": ""
}
],
"objectKeys": []
}
}
]
}