-
Notifications
You must be signed in to change notification settings - Fork 0
/
openapi.yaml
243 lines (218 loc) · 6.11 KB
/
openapi.yaml
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
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
openapi: 3.1.0
info:
title: Price forecasting service
description: '
This API service is used to forecast product price given the contributing materials
that form the final product.
You can provide a variable "months" to set the forecasting period
forecast starts from 2/2023, as it is the last timestamp sample in the training
set
## Details on data
"st37": "Weight of ST37 in KG",
"p_st37": "Spot price of ST37",
"p_high_carbon": "Spot price of High Carbon",
"alu": "Weight of Alu in KG",
"labour": "Labor hours",
"high_carbon": "Weight of High Carbon in KG",
"medium_carbon": "Weight of Medium Carbon in KG",
"p_medium_carbon": "Spot Price of Medium Carbon",
"p_nodular_cast_iron": "Spot Price of Nodular Cast Iron",
"nodular_cast_iron": "Weight of Nodular Cast Iron in KG",
"grey_cast_iron": "Weight of Grey Cast Iron in KG",
"p_grey_cast_iron": "Spot Price of Grey Cast Iron",
"nonalloy_cast": "Weight of Nonalloy Cast in KG",
"p_nonalloy_cast": "Spot Price of Nonalloy Cast",
"months": "Forecasting period in months (default is 24 months if argument not
provided)"
'
version: 0.1.0
paths:
/status:
get:
summary: Read Root
operationId: read_root_status_get
responses:
'200':
description: Successful Response
content:
application/json:
schema: {}
/help:
get:
summary: Get Help
operationId: get_help_help_get
responses:
'200':
description: Successful Response
content:
application/json:
schema: {}
/calculate/:
get:
summary: Calculate
operationId: calculate_calculate__get
parameters:
- name: st37
in: query
required: false
schema:
type: number
title: ST37
description: Weight of ST37
description: Weight of ST37
- name: p_st37
in: query
required: false
schema:
type: number
title: spot_ST37
description: spot price of ST37
description: spot price of ST37
- name: p_high_carbon
in: query
required: false
schema:
type: number
title: spot_High_Carbon
description: spot price of High Carbon
description: spot price of High Carbon
- name: alu
in: query
required: false
schema:
type: number
title: Alu
description: Weight of Alu
description: Weight of Alu
- name: labour
in: query
required: false
schema:
type: number
title: Labour
description: Labor hours
description: Labor hours
- name: high_carbon
in: query
required: false
schema:
type: number
title: high_carbon
description: Weight of High Carbon
description: Weight of High Carbon
- name: medium_carbon
in: query
required: false
schema:
type: number
title: medium_carbon
description: Weight of Medium Carbon
description: Weight of Medium Carbon
- name: p_medium_carbon
in: query
required: false
schema:
type: number
title: Spot_Medium_Carbon
description: Spot Price of Medium Carbon
description: Spot Price of Medium Carbon
- name: p_nodular_cast_iron
in: query
required: false
schema:
type: number
title: Spot_Nodular_Iron
description: Spot Price of Nodular Cast Iron
description: Spot Price of Nodular Cast Iron
- name: nodular_cast_iron
in: query
required: false
schema:
type: number
title: nodular_cast_iron
description: Weight of Nodular Cast Iron
description: Weight of Nodular Cast Iron
- name: grey_cast_iron
in: query
required: false
schema:
type: number
title: grey_cast_iron
description: Weight of Grey Cast Iron
description: Weight of Grey Cast Iron
- name: p_grey_cast_iron
in: query
required: false
schema:
type: number
title: Spot_grey_cast_iron
description: Spot Price of Grey_Cast_Iron
description: Spot Price of Grey_Cast_Iron
- name: nonalloy_cast
in: query
required: false
schema:
type: number
title: nonalloy_cast
description: Weight of Nonalloy Cast
description: Weight of Nonalloy Cast
- name: p_nonalloy_cast
in: query
required: false
schema:
type: number
title: Spot_nonalloy_cast
description: Spot Price of Nonalloy Cast
description: Spot Price of Nonalloy Cast
- name: months
in: query
required: false
schema:
type: integer
title: length of prediction time
description: Forecasting period in months
description: Forecasting period in months
responses:
'200':
description: Successful Response
content:
application/json:
schema: {}
'422':
description: Validation Error
content:
application/json:
schema:
$ref: '#/components/schemas/HTTPValidationError'
components:
schemas:
HTTPValidationError:
properties:
detail:
items:
$ref: '#/components/schemas/ValidationError'
type: array
title: Detail
type: object
title: HTTPValidationError
ValidationError:
properties:
loc:
items:
anyOf:
- type: string
- type: integer
type: array
title: Location
msg:
type: string
title: Message
type:
type: string
title: Error Type
type: object
required:
- loc
- msg
- type
title: ValidationError