synmax-api-python-client 4.4.0__py3-none-any.whl → 4.6.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- synmax/hyperion/v4/hyperion_client.pyi +2 -2
- synmax/hyperion/v4/openapi.yaml +213 -75
- synmax/leviaton/__init__.py +0 -0
- synmax/leviaton/v1/__init__.py +5 -0
- synmax/leviaton/v1/leviaton_client.py +36 -0
- synmax/leviaton/v1/leviaton_client.pyi +89 -0
- synmax/leviaton/v1/openapi.yaml +3707 -0
- {synmax_api_python_client-4.4.0.dist-info → synmax_api_python_client-4.6.0.dist-info}/METADATA +1 -1
- {synmax_api_python_client-4.4.0.dist-info → synmax_api_python_client-4.6.0.dist-info}/RECORD +12 -6
- test/ip_rate_example.py +61 -0
- {synmax_api_python_client-4.4.0.dist-info → synmax_api_python_client-4.6.0.dist-info}/WHEEL +0 -0
- {synmax_api_python_client-4.4.0.dist-info → synmax_api_python_client-4.6.0.dist-info}/top_level.txt +0 -0
|
@@ -0,0 +1,3707 @@
|
|
|
1
|
+
components:
|
|
2
|
+
schemas:
|
|
3
|
+
400ErrorResponse:
|
|
4
|
+
properties:
|
|
5
|
+
error:
|
|
6
|
+
example: Bad Request
|
|
7
|
+
type: string
|
|
8
|
+
message:
|
|
9
|
+
example: Request body must be a valid JSON object
|
|
10
|
+
type: string
|
|
11
|
+
type: object
|
|
12
|
+
405ErrorResponse:
|
|
13
|
+
properties:
|
|
14
|
+
error:
|
|
15
|
+
example: Method Not Allowed
|
|
16
|
+
type: string
|
|
17
|
+
message:
|
|
18
|
+
example: GET method is not allowed for this endpoint
|
|
19
|
+
type: string
|
|
20
|
+
type: object
|
|
21
|
+
500ErrorResponse:
|
|
22
|
+
properties:
|
|
23
|
+
error:
|
|
24
|
+
example: Internal Server Error
|
|
25
|
+
type: string
|
|
26
|
+
message:
|
|
27
|
+
example: An unexpected error occurred while processing the request
|
|
28
|
+
type: string
|
|
29
|
+
type: object
|
|
30
|
+
501ErrorResponse:
|
|
31
|
+
properties:
|
|
32
|
+
error:
|
|
33
|
+
example: Not Implemented
|
|
34
|
+
type: string
|
|
35
|
+
message:
|
|
36
|
+
example: This endpoint is not implemented yet
|
|
37
|
+
type: string
|
|
38
|
+
type: object
|
|
39
|
+
CountryInformation:
|
|
40
|
+
properties:
|
|
41
|
+
code:
|
|
42
|
+
description: The country code.
|
|
43
|
+
example: TW
|
|
44
|
+
nullable: true
|
|
45
|
+
type: string
|
|
46
|
+
country_id:
|
|
47
|
+
description: The unique identifier for the country.
|
|
48
|
+
example: TWFIWRVIT
|
|
49
|
+
type: string
|
|
50
|
+
modified_at:
|
|
51
|
+
description: The UTC timestamp of the last modification to the country information
|
|
52
|
+
in the database.
|
|
53
|
+
example: '2025-07-27T22:43:41.371622+00:00'
|
|
54
|
+
format: date-time
|
|
55
|
+
type: string
|
|
56
|
+
name:
|
|
57
|
+
description: The name of the country.
|
|
58
|
+
example: Taiwan
|
|
59
|
+
type: string
|
|
60
|
+
polygon:
|
|
61
|
+
description: The polygon coordinates of the country.
|
|
62
|
+
example:
|
|
63
|
+
- - - - 121.0
|
|
64
|
+
- 22.0
|
|
65
|
+
- - 121.0
|
|
66
|
+
- 25.0
|
|
67
|
+
- - 123.0
|
|
68
|
+
- 25.0
|
|
69
|
+
- - 123.0
|
|
70
|
+
- 22.0
|
|
71
|
+
- - 121.0
|
|
72
|
+
- 22.0
|
|
73
|
+
nullable: true
|
|
74
|
+
properties:
|
|
75
|
+
coordinates:
|
|
76
|
+
items:
|
|
77
|
+
items:
|
|
78
|
+
items:
|
|
79
|
+
items:
|
|
80
|
+
type: number
|
|
81
|
+
type: array
|
|
82
|
+
type: array
|
|
83
|
+
type: array
|
|
84
|
+
type: array
|
|
85
|
+
type:
|
|
86
|
+
enum:
|
|
87
|
+
- Polygon
|
|
88
|
+
- MultiPolygon
|
|
89
|
+
type: string
|
|
90
|
+
type: object
|
|
91
|
+
required:
|
|
92
|
+
- country_id
|
|
93
|
+
- name
|
|
94
|
+
- code
|
|
95
|
+
- polygon
|
|
96
|
+
- modified_at
|
|
97
|
+
type: object
|
|
98
|
+
CountryQuery:
|
|
99
|
+
properties:
|
|
100
|
+
ids:
|
|
101
|
+
description: Filter by country id.
|
|
102
|
+
example:
|
|
103
|
+
- TWFIWRVIT
|
|
104
|
+
items:
|
|
105
|
+
format: uuid
|
|
106
|
+
type: string
|
|
107
|
+
type: array
|
|
108
|
+
names:
|
|
109
|
+
description: Filter by country name.
|
|
110
|
+
example:
|
|
111
|
+
- Malaysia
|
|
112
|
+
- Japan
|
|
113
|
+
items:
|
|
114
|
+
type: string
|
|
115
|
+
type: array
|
|
116
|
+
polygons:
|
|
117
|
+
description: A closed list of closed EPSG:4326 lon, lat coordinate pairs
|
|
118
|
+
to filter by.
|
|
119
|
+
example:
|
|
120
|
+
- - - 99.6
|
|
121
|
+
- 1.0
|
|
122
|
+
- - 99.6
|
|
123
|
+
- 7.5
|
|
124
|
+
- - 104.5
|
|
125
|
+
- 7.5
|
|
126
|
+
- - 104.5
|
|
127
|
+
- 1.0
|
|
128
|
+
- - 99.6
|
|
129
|
+
- 1.0
|
|
130
|
+
- - - 109.0
|
|
131
|
+
- 1.0
|
|
132
|
+
- - 109.0
|
|
133
|
+
- 7.5
|
|
134
|
+
- - 115.0
|
|
135
|
+
- 7.5
|
|
136
|
+
- - 115.0
|
|
137
|
+
- 1.0
|
|
138
|
+
- - 109.0
|
|
139
|
+
- 1.0
|
|
140
|
+
items:
|
|
141
|
+
items:
|
|
142
|
+
items:
|
|
143
|
+
format: float
|
|
144
|
+
type: number
|
|
145
|
+
type: array
|
|
146
|
+
type: array
|
|
147
|
+
type: array
|
|
148
|
+
unrefcodes:
|
|
149
|
+
description: Filter by port codes.
|
|
150
|
+
example:
|
|
151
|
+
- AUGLT
|
|
152
|
+
- AUSAB
|
|
153
|
+
items:
|
|
154
|
+
type: string
|
|
155
|
+
type: array
|
|
156
|
+
type: object
|
|
157
|
+
ForecastTimestamps:
|
|
158
|
+
properties:
|
|
159
|
+
forecast_model_package_version:
|
|
160
|
+
description: The version of the forecast service used to generate the forecast.
|
|
161
|
+
example: 0.48.1
|
|
162
|
+
type: string
|
|
163
|
+
forecast_run_at_timestamp:
|
|
164
|
+
description: The UTC timestamp of when the forecast was generated.
|
|
165
|
+
example: '2025-07-27T22:43:41.371622+00:00'
|
|
166
|
+
format: date-time
|
|
167
|
+
type: string
|
|
168
|
+
forecast_run_uuid:
|
|
169
|
+
description: The UUID of the generated forecast.
|
|
170
|
+
example: 667957fd-6905-4c62-afa5-c9fc3cdd7757
|
|
171
|
+
type: string
|
|
172
|
+
modified_at:
|
|
173
|
+
description: The UTC timestamp of when the table was updated.
|
|
174
|
+
example: '2025-07-27T22:43:41.371622+00:00'
|
|
175
|
+
format: date-time
|
|
176
|
+
type: string
|
|
177
|
+
type: object
|
|
178
|
+
ForecastTransaction:
|
|
179
|
+
properties:
|
|
180
|
+
destination_country:
|
|
181
|
+
description: The country where the transaction is forecasted to occur.
|
|
182
|
+
example: USA
|
|
183
|
+
type: string
|
|
184
|
+
destination_country_code:
|
|
185
|
+
description: The ISO 3166-1 alpha-2 country code where the transaction is
|
|
186
|
+
forecasted to occur.
|
|
187
|
+
example: US
|
|
188
|
+
type: string
|
|
189
|
+
destination_terminal:
|
|
190
|
+
description: The terminal where the transaction is forecasted to occur.
|
|
191
|
+
example: Sabine Pass
|
|
192
|
+
type: string
|
|
193
|
+
destination_terminal_id:
|
|
194
|
+
description: The unique identifier for the terminal.
|
|
195
|
+
example: terminal_220d7ad08
|
|
196
|
+
type: string
|
|
197
|
+
imo:
|
|
198
|
+
description: International Maritime Organization number identifying the
|
|
199
|
+
vessel.
|
|
200
|
+
example: 9020766
|
|
201
|
+
type: integer
|
|
202
|
+
loading_origin_country:
|
|
203
|
+
description: The country where the transaction is forecasted to originate
|
|
204
|
+
from.
|
|
205
|
+
example: USA
|
|
206
|
+
nullable: true
|
|
207
|
+
type: string
|
|
208
|
+
loading_origin_country_code:
|
|
209
|
+
description: The ISO 3166-1 alpha-2 country code where the transaction is
|
|
210
|
+
forecasted to originate from.
|
|
211
|
+
example: US
|
|
212
|
+
nullable: true
|
|
213
|
+
type: string
|
|
214
|
+
loading_origin_terminal:
|
|
215
|
+
description: The terminal where the transaction is forecasted to originate
|
|
216
|
+
from.
|
|
217
|
+
example: Sabine Pass
|
|
218
|
+
nullable: true
|
|
219
|
+
type: string
|
|
220
|
+
loading_origin_terminal_id:
|
|
221
|
+
description: The unique identifier for the terminal.
|
|
222
|
+
example: terminal_220d7ad08
|
|
223
|
+
format: uuid
|
|
224
|
+
nullable: true
|
|
225
|
+
type: string
|
|
226
|
+
loading_origin_timestamp:
|
|
227
|
+
description: The UTC timestamp of the forecasted origin of the transaction.
|
|
228
|
+
example: '2025-07-27T22:43:41.371622+00:00'
|
|
229
|
+
format: date-time
|
|
230
|
+
nullable: true
|
|
231
|
+
type: string
|
|
232
|
+
modified_at:
|
|
233
|
+
description: The UTC timestamp of the last modification to the forecast
|
|
234
|
+
transaction in the database.
|
|
235
|
+
example: '2025-07-27T22:43:41.371622+00:00'
|
|
236
|
+
format: date-time
|
|
237
|
+
type: string
|
|
238
|
+
timestamp:
|
|
239
|
+
description: The UTC timestamp of the forecasted transaction.
|
|
240
|
+
example: '2025-07-27T22:43:41.371622+00:00'
|
|
241
|
+
format: date-time
|
|
242
|
+
type: string
|
|
243
|
+
transaction_number:
|
|
244
|
+
description: The unique identifier for the transaction.
|
|
245
|
+
example: 1
|
|
246
|
+
type: integer
|
|
247
|
+
transaction_type:
|
|
248
|
+
description: The type of a forecast transaction, either loading or offloading.
|
|
249
|
+
enum:
|
|
250
|
+
- loading
|
|
251
|
+
- offloading
|
|
252
|
+
example: loading
|
|
253
|
+
type: string
|
|
254
|
+
vessel_name:
|
|
255
|
+
description: The name of the vessel.
|
|
256
|
+
example: INEOS INTUITION
|
|
257
|
+
type: string
|
|
258
|
+
volume:
|
|
259
|
+
description: The forecasted volume of LNG.
|
|
260
|
+
example: 2694400.0
|
|
261
|
+
format: float
|
|
262
|
+
type: number
|
|
263
|
+
volume_unit:
|
|
264
|
+
description: The unit of measurement for the forecasted volume.
|
|
265
|
+
example: mcf
|
|
266
|
+
type: string
|
|
267
|
+
required:
|
|
268
|
+
- imo
|
|
269
|
+
- destination_terminal
|
|
270
|
+
- timestamp
|
|
271
|
+
- volume
|
|
272
|
+
- volume_unit
|
|
273
|
+
- transaction_type
|
|
274
|
+
- modified_at
|
|
275
|
+
type: object
|
|
276
|
+
ForecastTransactionHistory:
|
|
277
|
+
properties:
|
|
278
|
+
destination_country:
|
|
279
|
+
description: The country where the transaction is forecasted to occur.
|
|
280
|
+
example: USA
|
|
281
|
+
type: string
|
|
282
|
+
destination_country_code:
|
|
283
|
+
description: The ISO 3166-1 alpha-2 country code where the transaction is
|
|
284
|
+
forecasted to occur.
|
|
285
|
+
example: US
|
|
286
|
+
type: string
|
|
287
|
+
destination_terminal:
|
|
288
|
+
description: The terminal where the transaction is forecasted to occur.
|
|
289
|
+
example: Everett
|
|
290
|
+
type: string
|
|
291
|
+
destination_terminal_id:
|
|
292
|
+
description: The unique identifier for the terminal.
|
|
293
|
+
example: terminal_28c27df09
|
|
294
|
+
type: string
|
|
295
|
+
forecast_run_at:
|
|
296
|
+
description: The UTC timestamp of the forecast run.
|
|
297
|
+
example: '2025-07-27T22:43:41.371622+00:00'
|
|
298
|
+
format: date-time
|
|
299
|
+
type: string
|
|
300
|
+
imo:
|
|
301
|
+
description: International Maritime Organization number identifying the
|
|
302
|
+
vessel.
|
|
303
|
+
example: 7359785
|
|
304
|
+
type: integer
|
|
305
|
+
loading_origin_country:
|
|
306
|
+
description: The country where the transaction is forecasted to originate
|
|
307
|
+
from.
|
|
308
|
+
example: USA
|
|
309
|
+
nullable: true
|
|
310
|
+
type: string
|
|
311
|
+
loading_origin_country_code:
|
|
312
|
+
description: The ISO 3166-1 alpha-2 country code where the transaction is
|
|
313
|
+
forecasted to originate from.
|
|
314
|
+
example: US
|
|
315
|
+
nullable: true
|
|
316
|
+
type: string
|
|
317
|
+
loading_origin_terminal:
|
|
318
|
+
description: The terminal where the transaction is forecasted to originate
|
|
319
|
+
from.
|
|
320
|
+
example: Cove Point L
|
|
321
|
+
nullable: true
|
|
322
|
+
type: string
|
|
323
|
+
loading_origin_terminal_id:
|
|
324
|
+
description: The unique identifier for the terminal.
|
|
325
|
+
example: terminal_28c27df09
|
|
326
|
+
format: uuid
|
|
327
|
+
nullable: true
|
|
328
|
+
type: string
|
|
329
|
+
loading_origin_timestamp:
|
|
330
|
+
description: The UTC timestamp of the forecasted origin of the transaction.
|
|
331
|
+
example: '2025-07-27T22:43:41.371622+00:00'
|
|
332
|
+
format: date-time
|
|
333
|
+
nullable: true
|
|
334
|
+
type: string
|
|
335
|
+
modified_at:
|
|
336
|
+
description: The UTC timestamp of the last modification to the forecast
|
|
337
|
+
transaction in the database.
|
|
338
|
+
example: '2025-07-27T22:43:41.371622+00:00'
|
|
339
|
+
format: date-time
|
|
340
|
+
type: string
|
|
341
|
+
timestamp:
|
|
342
|
+
description: The UTC timestamp of the actual transaction.
|
|
343
|
+
example: '2025-07-27T22:43:41.371622+00:00'
|
|
344
|
+
format: date-time
|
|
345
|
+
type: string
|
|
346
|
+
transaction_number:
|
|
347
|
+
description: The unique identifier for the transaction.
|
|
348
|
+
example: 3
|
|
349
|
+
type: integer
|
|
350
|
+
transaction_type:
|
|
351
|
+
description: The type of a forecast transaction, either loading or offloading.
|
|
352
|
+
enum:
|
|
353
|
+
- loading
|
|
354
|
+
- offloading
|
|
355
|
+
example: offloading
|
|
356
|
+
type: string
|
|
357
|
+
vessel_name:
|
|
358
|
+
description: The name of the vessel.
|
|
359
|
+
example: BUBUK
|
|
360
|
+
type: string
|
|
361
|
+
volume:
|
|
362
|
+
description: The forecasted volume of LNG.
|
|
363
|
+
example: 3143155.6788808666
|
|
364
|
+
format: float
|
|
365
|
+
type: number
|
|
366
|
+
volume_unit:
|
|
367
|
+
description: The unit of measurement for the forecasted volume.
|
|
368
|
+
example: mcf
|
|
369
|
+
type: string
|
|
370
|
+
required:
|
|
371
|
+
- imo
|
|
372
|
+
- loading_origin_terminal
|
|
373
|
+
- loading_origin_country
|
|
374
|
+
- loading_origin_timestamp
|
|
375
|
+
- destination_terminal
|
|
376
|
+
- destination_country
|
|
377
|
+
- timestamp
|
|
378
|
+
- volume
|
|
379
|
+
- volume_unit
|
|
380
|
+
- transaction_type
|
|
381
|
+
- forecast_run_at
|
|
382
|
+
- modified_at
|
|
383
|
+
type: object
|
|
384
|
+
RegionInformation:
|
|
385
|
+
properties:
|
|
386
|
+
created_at:
|
|
387
|
+
description: The UTC timestamp of when the region was created.
|
|
388
|
+
example: '2025-07-27T22:43:41.371622+00:00'
|
|
389
|
+
format: date-time
|
|
390
|
+
type: string
|
|
391
|
+
modified_at:
|
|
392
|
+
description: The UTC timestamp of the last modification to the region information
|
|
393
|
+
in the database.
|
|
394
|
+
example: '2025-07-27T22:43:41.371622+00:00'
|
|
395
|
+
format: date-time
|
|
396
|
+
type: string
|
|
397
|
+
name:
|
|
398
|
+
description: The name of the region.
|
|
399
|
+
example: JKTC
|
|
400
|
+
type: string
|
|
401
|
+
region_id:
|
|
402
|
+
description: The unique identifier for the region.
|
|
403
|
+
example: region_b7aa7495e
|
|
404
|
+
type: string
|
|
405
|
+
required:
|
|
406
|
+
- region_id
|
|
407
|
+
- name
|
|
408
|
+
- modified_at
|
|
409
|
+
type: object
|
|
410
|
+
RegionQuery:
|
|
411
|
+
properties:
|
|
412
|
+
ids:
|
|
413
|
+
description: Filter by region id.
|
|
414
|
+
example:
|
|
415
|
+
- region_b7aa7495e
|
|
416
|
+
items:
|
|
417
|
+
format: uuid
|
|
418
|
+
type: string
|
|
419
|
+
type: array
|
|
420
|
+
include_polygons:
|
|
421
|
+
default: true
|
|
422
|
+
description: Whether to include polygons in the response. Set to false to
|
|
423
|
+
exclude them.
|
|
424
|
+
example: true
|
|
425
|
+
type: boolean
|
|
426
|
+
names:
|
|
427
|
+
description: Filter by region name.
|
|
428
|
+
example:
|
|
429
|
+
- JKTC
|
|
430
|
+
items:
|
|
431
|
+
type: string
|
|
432
|
+
type: array
|
|
433
|
+
polygons:
|
|
434
|
+
description: A closed list of closed EPSG:4326 lon, lat coordinate pairs
|
|
435
|
+
to filter by.
|
|
436
|
+
example:
|
|
437
|
+
- - - 99.6
|
|
438
|
+
- 1.0
|
|
439
|
+
- - 99.6
|
|
440
|
+
- 7.5
|
|
441
|
+
- - 104.5
|
|
442
|
+
- 7.5
|
|
443
|
+
- - 104.5
|
|
444
|
+
- 1.0
|
|
445
|
+
- - 99.6
|
|
446
|
+
- 1.0
|
|
447
|
+
- - - 109.0
|
|
448
|
+
- 1.0
|
|
449
|
+
- - 109.0
|
|
450
|
+
- 7.5
|
|
451
|
+
- - 115.0
|
|
452
|
+
- 7.5
|
|
453
|
+
- - 115.0
|
|
454
|
+
- 1.0
|
|
455
|
+
- - 109.0
|
|
456
|
+
- 1.0
|
|
457
|
+
items:
|
|
458
|
+
items:
|
|
459
|
+
items:
|
|
460
|
+
format: float
|
|
461
|
+
type: number
|
|
462
|
+
type: array
|
|
463
|
+
type: array
|
|
464
|
+
type: array
|
|
465
|
+
type: object
|
|
466
|
+
TerminalInfo:
|
|
467
|
+
properties:
|
|
468
|
+
berth_count:
|
|
469
|
+
description: The number of berths at the terminal.
|
|
470
|
+
example: 1
|
|
471
|
+
nullable: true
|
|
472
|
+
type: integer
|
|
473
|
+
captains_destination_names:
|
|
474
|
+
description: List of captains destinations associated with this terminal
|
|
475
|
+
example:
|
|
476
|
+
- Sabine Pass
|
|
477
|
+
- Freeport LNG
|
|
478
|
+
items:
|
|
479
|
+
type: string
|
|
480
|
+
nullable: true
|
|
481
|
+
type: array
|
|
482
|
+
category:
|
|
483
|
+
description: The category of the terminal (Liquefaction/Regasification).
|
|
484
|
+
enum:
|
|
485
|
+
- Liquefaction
|
|
486
|
+
- Regasification
|
|
487
|
+
example: Liquefaction
|
|
488
|
+
type: string
|
|
489
|
+
country:
|
|
490
|
+
description: The country where the terminal is located.
|
|
491
|
+
example: Australia
|
|
492
|
+
type: string
|
|
493
|
+
country_code:
|
|
494
|
+
description: The ISO 3166-1 alpha-2 country code of the terminal.
|
|
495
|
+
example: AU
|
|
496
|
+
type: string
|
|
497
|
+
first_operation_year:
|
|
498
|
+
description: The year when the terminal first started operations.
|
|
499
|
+
example: 2017
|
|
500
|
+
nullable: true
|
|
501
|
+
type: integer
|
|
502
|
+
latitude:
|
|
503
|
+
description: The latitude of the terminal.
|
|
504
|
+
example: -13.76867
|
|
505
|
+
format: float
|
|
506
|
+
type: number
|
|
507
|
+
longitude:
|
|
508
|
+
description: The longitude of the terminal.
|
|
509
|
+
example: 123.315025
|
|
510
|
+
format: float
|
|
511
|
+
type: number
|
|
512
|
+
modified_at:
|
|
513
|
+
description: The timestamp of the last modification to the terminal information
|
|
514
|
+
in the database.
|
|
515
|
+
example: '2025-07-27T22:43:41.371622+00:00'
|
|
516
|
+
format: date-time
|
|
517
|
+
type: string
|
|
518
|
+
name:
|
|
519
|
+
description: The name of the terminal.
|
|
520
|
+
example: Prelude FLNG
|
|
521
|
+
type: string
|
|
522
|
+
nameplate_capacity:
|
|
523
|
+
description: The nameplate capacity of the terminal.
|
|
524
|
+
example: 3.6
|
|
525
|
+
format: float
|
|
526
|
+
nullable: true
|
|
527
|
+
type: number
|
|
528
|
+
nameplate_capacity_unit:
|
|
529
|
+
description: The unit of measurement for the nameplate capacity.
|
|
530
|
+
example: mcf
|
|
531
|
+
nullable: true
|
|
532
|
+
type: string
|
|
533
|
+
polygon:
|
|
534
|
+
description: The polygon coordinates of the terminal.
|
|
535
|
+
example:
|
|
536
|
+
- - - - 123.282394
|
|
537
|
+
- -13.759394
|
|
538
|
+
- - 123.333035
|
|
539
|
+
- -13.740219
|
|
540
|
+
- - 123.340931
|
|
541
|
+
- -13.770732
|
|
542
|
+
- - 123.325481
|
|
543
|
+
- -13.789238
|
|
544
|
+
- - 123.304195
|
|
545
|
+
- -13.797573
|
|
546
|
+
- - 123.291492
|
|
547
|
+
- -13.78657
|
|
548
|
+
- - 123.301449
|
|
549
|
+
- -13.773233
|
|
550
|
+
- - 123.283596
|
|
551
|
+
- -13.761562
|
|
552
|
+
- - 123.282394
|
|
553
|
+
- -13.759394
|
|
554
|
+
nullable: true
|
|
555
|
+
properties:
|
|
556
|
+
coordinates:
|
|
557
|
+
items:
|
|
558
|
+
items:
|
|
559
|
+
items:
|
|
560
|
+
items:
|
|
561
|
+
type: number
|
|
562
|
+
type: array
|
|
563
|
+
type: array
|
|
564
|
+
type: array
|
|
565
|
+
type: array
|
|
566
|
+
type:
|
|
567
|
+
enum:
|
|
568
|
+
- Polygon
|
|
569
|
+
- MultiPolygon
|
|
570
|
+
type: string
|
|
571
|
+
type: object
|
|
572
|
+
storage_capacity:
|
|
573
|
+
description: The storage capacity of the terminal.
|
|
574
|
+
example: 0.0
|
|
575
|
+
format: float
|
|
576
|
+
nullable: true
|
|
577
|
+
type: number
|
|
578
|
+
storage_capacity_unit:
|
|
579
|
+
description: The unit of measurement for the storage capacity.
|
|
580
|
+
example: mcf
|
|
581
|
+
nullable: true
|
|
582
|
+
type: string
|
|
583
|
+
terminal_id:
|
|
584
|
+
description: The unique identifier for the terminal.
|
|
585
|
+
example: terminal_656a17536
|
|
586
|
+
format: uuid
|
|
587
|
+
type: string
|
|
588
|
+
unrefcode:
|
|
589
|
+
description: The UNREF code of the terminal.
|
|
590
|
+
example: AUPRL
|
|
591
|
+
type: string
|
|
592
|
+
required:
|
|
593
|
+
- terminal_id
|
|
594
|
+
- name
|
|
595
|
+
- unrefcode
|
|
596
|
+
- category
|
|
597
|
+
- country_code
|
|
598
|
+
- country
|
|
599
|
+
- longitude
|
|
600
|
+
- latitude
|
|
601
|
+
- modified_at
|
|
602
|
+
type: object
|
|
603
|
+
TerminalQuery:
|
|
604
|
+
properties:
|
|
605
|
+
category:
|
|
606
|
+
description: Filter by terminal category (Liquefaction/Regasification).
|
|
607
|
+
enum:
|
|
608
|
+
- Liquefaction
|
|
609
|
+
- Regasification
|
|
610
|
+
example: Liquefaction
|
|
611
|
+
type: string
|
|
612
|
+
countries:
|
|
613
|
+
description: Filter by ISO 3166 country names.
|
|
614
|
+
example:
|
|
615
|
+
- USA
|
|
616
|
+
- Japan
|
|
617
|
+
items:
|
|
618
|
+
type: string
|
|
619
|
+
type: array
|
|
620
|
+
ids:
|
|
621
|
+
description: Filter by terminal id.
|
|
622
|
+
example:
|
|
623
|
+
- terminal_5f9a9c5bb
|
|
624
|
+
items:
|
|
625
|
+
format: uuid
|
|
626
|
+
type: string
|
|
627
|
+
type: array
|
|
628
|
+
names:
|
|
629
|
+
description: Filter by terminal name.
|
|
630
|
+
example:
|
|
631
|
+
- Sabine Pass
|
|
632
|
+
- Mugardos R
|
|
633
|
+
items:
|
|
634
|
+
type: string
|
|
635
|
+
type: array
|
|
636
|
+
polygons:
|
|
637
|
+
description: A closed list of closed EPSG:4326 lon, lat coordinate pairs
|
|
638
|
+
to filter by.
|
|
639
|
+
example:
|
|
640
|
+
- - - 99.6
|
|
641
|
+
- 1.0
|
|
642
|
+
- - 99.6
|
|
643
|
+
- 7.5
|
|
644
|
+
- - 104.5
|
|
645
|
+
- 7.5
|
|
646
|
+
- - 104.5
|
|
647
|
+
- 1.0
|
|
648
|
+
- - 99.6
|
|
649
|
+
- 1.0
|
|
650
|
+
- - - 109.0
|
|
651
|
+
- 1.0
|
|
652
|
+
- - 109.0
|
|
653
|
+
- 7.5
|
|
654
|
+
- - 115.0
|
|
655
|
+
- 7.5
|
|
656
|
+
- - 115.0
|
|
657
|
+
- 1.0
|
|
658
|
+
- - 109.0
|
|
659
|
+
- 1.0
|
|
660
|
+
items:
|
|
661
|
+
items:
|
|
662
|
+
items:
|
|
663
|
+
format: float
|
|
664
|
+
type: number
|
|
665
|
+
type: array
|
|
666
|
+
type: array
|
|
667
|
+
type: array
|
|
668
|
+
regions:
|
|
669
|
+
description: Filter by country region.
|
|
670
|
+
example:
|
|
671
|
+
- Asia
|
|
672
|
+
- Europe
|
|
673
|
+
items:
|
|
674
|
+
type: string
|
|
675
|
+
type: array
|
|
676
|
+
unrefcodes:
|
|
677
|
+
description: Filter by terminal unref code.
|
|
678
|
+
example:
|
|
679
|
+
- AUGLT
|
|
680
|
+
- AUSAB
|
|
681
|
+
items:
|
|
682
|
+
type: string
|
|
683
|
+
type: array
|
|
684
|
+
type: object
|
|
685
|
+
TerminalUtilization:
|
|
686
|
+
properties:
|
|
687
|
+
berth_count:
|
|
688
|
+
description: The number of berths at the terminal.
|
|
689
|
+
type: integer
|
|
690
|
+
captains_destination_names:
|
|
691
|
+
description: List of captains destinations associated with this terminal
|
|
692
|
+
items:
|
|
693
|
+
type: string
|
|
694
|
+
type: array
|
|
695
|
+
category:
|
|
696
|
+
description: The category of the terminal (Liquefaction/Regasification).
|
|
697
|
+
enum:
|
|
698
|
+
- Liquefaction
|
|
699
|
+
- Regasification
|
|
700
|
+
type: string
|
|
701
|
+
country:
|
|
702
|
+
description: The country where the terminal is located.
|
|
703
|
+
type: string
|
|
704
|
+
first_operation_year:
|
|
705
|
+
description: The year when the terminal first started operations.
|
|
706
|
+
type: integer
|
|
707
|
+
id:
|
|
708
|
+
description: The unique identifier for the terminal.
|
|
709
|
+
format: uuid
|
|
710
|
+
type: string
|
|
711
|
+
latitude:
|
|
712
|
+
description: The latitude of the terminal.
|
|
713
|
+
format: float
|
|
714
|
+
type: number
|
|
715
|
+
liquefaction_capacity:
|
|
716
|
+
description: The liquefaction capacity of the terminal.
|
|
717
|
+
format: float
|
|
718
|
+
nullable: true
|
|
719
|
+
type: number
|
|
720
|
+
longitude:
|
|
721
|
+
description: The longitude of the terminal.
|
|
722
|
+
format: float
|
|
723
|
+
type: number
|
|
724
|
+
modified_at:
|
|
725
|
+
description: The timestamp of the last modification to the terminal utilization
|
|
726
|
+
record in the database.
|
|
727
|
+
format: date-time
|
|
728
|
+
type: string
|
|
729
|
+
name:
|
|
730
|
+
description: The name of the terminal.
|
|
731
|
+
type: string
|
|
732
|
+
polygon:
|
|
733
|
+
description: The polygon coordinates of the terminal.
|
|
734
|
+
items:
|
|
735
|
+
items:
|
|
736
|
+
format: float
|
|
737
|
+
type: number
|
|
738
|
+
type: array
|
|
739
|
+
nullable: true
|
|
740
|
+
type: array
|
|
741
|
+
terminal_timestamp:
|
|
742
|
+
description: The timestamp of the terminal utilization record.
|
|
743
|
+
format: date-time
|
|
744
|
+
type: string
|
|
745
|
+
unrefcode:
|
|
746
|
+
description: The UNREF code of the terminal.
|
|
747
|
+
type: string
|
|
748
|
+
vessel_count:
|
|
749
|
+
description: The number of vessels associated with the terminal.
|
|
750
|
+
type: integer
|
|
751
|
+
volume_loaded:
|
|
752
|
+
description: The volume of LNG loaded at the terminal.
|
|
753
|
+
format: float
|
|
754
|
+
type: number
|
|
755
|
+
volume_loaded_unit:
|
|
756
|
+
description: The unit of measurement for the volume loaded.
|
|
757
|
+
type: string
|
|
758
|
+
type: object
|
|
759
|
+
Transaction:
|
|
760
|
+
properties:
|
|
761
|
+
destination_country:
|
|
762
|
+
description: The country where the terminal is located.
|
|
763
|
+
example: USA
|
|
764
|
+
nullable: true
|
|
765
|
+
type: string
|
|
766
|
+
destination_country_code:
|
|
767
|
+
description: The ISO 3166-1 alpha-2 country code where the terminal is located.
|
|
768
|
+
example: US
|
|
769
|
+
nullable: true
|
|
770
|
+
type: string
|
|
771
|
+
destination_terminal:
|
|
772
|
+
description: The name of the terminal where the transaction occurred.
|
|
773
|
+
example: Sabine Pass
|
|
774
|
+
nullable: true
|
|
775
|
+
type: string
|
|
776
|
+
destination_terminal_id:
|
|
777
|
+
description: The unique identifier for the terminal.
|
|
778
|
+
example: terminal_25cd7fc53
|
|
779
|
+
format: uuid
|
|
780
|
+
nullable: true
|
|
781
|
+
type: string
|
|
782
|
+
forecast_run_at:
|
|
783
|
+
description: The UTC timestamp of the forecast run.
|
|
784
|
+
example: '2025-07-27T22:43:41.371622+00:00'
|
|
785
|
+
format: date-time
|
|
786
|
+
nullable: true
|
|
787
|
+
type: string
|
|
788
|
+
forecasted_transaction:
|
|
789
|
+
description: Indicates whether the transaction is forecasted.
|
|
790
|
+
example: true
|
|
791
|
+
type: boolean
|
|
792
|
+
imo:
|
|
793
|
+
description: International Maritime Organization number identifying the
|
|
794
|
+
vessel.
|
|
795
|
+
example: 8608872
|
|
796
|
+
type: integer
|
|
797
|
+
loading_origin_country:
|
|
798
|
+
description: The country where the transaction is forecasted to originate
|
|
799
|
+
from.
|
|
800
|
+
example: Australia
|
|
801
|
+
nullable: true
|
|
802
|
+
type: string
|
|
803
|
+
loading_origin_country_code:
|
|
804
|
+
description: The ISO 3166-1 alpha-2 country code where the transaction is
|
|
805
|
+
forecasted to originate from.
|
|
806
|
+
example: AU
|
|
807
|
+
nullable: true
|
|
808
|
+
type: string
|
|
809
|
+
loading_origin_terminal:
|
|
810
|
+
description: The terminal where the transaction is forecasted to originate
|
|
811
|
+
from.
|
|
812
|
+
example: North West Shelf
|
|
813
|
+
nullable: true
|
|
814
|
+
type: string
|
|
815
|
+
loading_origin_terminal_id:
|
|
816
|
+
description: The unique identifier for the origin terminal.
|
|
817
|
+
example: terminal_25cd7fc53
|
|
818
|
+
format: uuid
|
|
819
|
+
nullable: true
|
|
820
|
+
type: string
|
|
821
|
+
loading_origin_timestamp:
|
|
822
|
+
example: '2025-07-27T22:43:41.371622+00:00'
|
|
823
|
+
format: date-time
|
|
824
|
+
nullable: true
|
|
825
|
+
type: string
|
|
826
|
+
modified_at:
|
|
827
|
+
description: The UTC timestamp of the last modification to the transaction
|
|
828
|
+
in the database.
|
|
829
|
+
example: '2025-07-27T22:43:41.371622+00:00'
|
|
830
|
+
format: date-time
|
|
831
|
+
type: string
|
|
832
|
+
timestamp:
|
|
833
|
+
description: The UTC timestamp of the actual transaction.
|
|
834
|
+
example: '2025-07-27T22:43:41.371622+00:00'
|
|
835
|
+
format: date-time
|
|
836
|
+
nullable: true
|
|
837
|
+
type: string
|
|
838
|
+
transaction_number:
|
|
839
|
+
description: The number of the transaction.
|
|
840
|
+
example: 1
|
|
841
|
+
nullable: true
|
|
842
|
+
type: integer
|
|
843
|
+
transaction_type:
|
|
844
|
+
description: The type of transaction, either loading or offloading.
|
|
845
|
+
enum:
|
|
846
|
+
- loading
|
|
847
|
+
- offloading
|
|
848
|
+
example: loading
|
|
849
|
+
nullable: true
|
|
850
|
+
type: string
|
|
851
|
+
vessel_name:
|
|
852
|
+
description: The name of the vessel.
|
|
853
|
+
example: LNGT ANTARCTICA
|
|
854
|
+
nullable: true
|
|
855
|
+
type: string
|
|
856
|
+
volume:
|
|
857
|
+
description: The volume of LNG involved in the transaction.
|
|
858
|
+
example: 2667035.0
|
|
859
|
+
format: float
|
|
860
|
+
nullable: true
|
|
861
|
+
type: number
|
|
862
|
+
volume_unit:
|
|
863
|
+
description: The unit of measurement for the volume.
|
|
864
|
+
example: mcf
|
|
865
|
+
nullable: true
|
|
866
|
+
type: string
|
|
867
|
+
required:
|
|
868
|
+
- imo
|
|
869
|
+
- loading_origin_terminal
|
|
870
|
+
- loading_origin_country
|
|
871
|
+
- loading_origin_timestamp
|
|
872
|
+
- destination_terminal
|
|
873
|
+
- destination_terminal_id
|
|
874
|
+
- destination_country
|
|
875
|
+
- timestamp
|
|
876
|
+
- volume
|
|
877
|
+
- volume_unit
|
|
878
|
+
- modified_at
|
|
879
|
+
type: object
|
|
880
|
+
TransactionDetails:
|
|
881
|
+
properties:
|
|
882
|
+
destination_country:
|
|
883
|
+
description: The country where the terminal is located.
|
|
884
|
+
example: Japan
|
|
885
|
+
nullable: true
|
|
886
|
+
type: string
|
|
887
|
+
destination_country_code:
|
|
888
|
+
description: The ISO 3166-1 alpha-2 country code where the terminal is located.
|
|
889
|
+
example: JP
|
|
890
|
+
nullable: true
|
|
891
|
+
type: string
|
|
892
|
+
destination_terminal:
|
|
893
|
+
description: The name of the terminal where the transaction occurred.
|
|
894
|
+
example: Tobata Kitakyushu
|
|
895
|
+
nullable: true
|
|
896
|
+
type: string
|
|
897
|
+
destination_terminal_id:
|
|
898
|
+
description: The unique identifier for the terminal.
|
|
899
|
+
example: terminal_9a3564cac
|
|
900
|
+
format: uuid
|
|
901
|
+
nullable: true
|
|
902
|
+
type: string
|
|
903
|
+
forecast_run_at:
|
|
904
|
+
description: The UTC timestamp of the forecast run.
|
|
905
|
+
example: '2025-07-27T22:43:41.371622+00:00'
|
|
906
|
+
format: date-time
|
|
907
|
+
nullable: true
|
|
908
|
+
type: string
|
|
909
|
+
forecasted_transaction:
|
|
910
|
+
description: Indicates whether the transaction is forecasted.
|
|
911
|
+
example: true
|
|
912
|
+
type: boolean
|
|
913
|
+
imo:
|
|
914
|
+
description: International Maritime Organization number identifying the
|
|
915
|
+
vessel.
|
|
916
|
+
example: 9433884
|
|
917
|
+
type: integer
|
|
918
|
+
loading_origin_country:
|
|
919
|
+
description: The country where the transaction is forecasted to originate
|
|
920
|
+
from.
|
|
921
|
+
example: Japan
|
|
922
|
+
nullable: true
|
|
923
|
+
type: string
|
|
924
|
+
loading_origin_country_code:
|
|
925
|
+
description: The ISO 3166-1 alpha-2 country code where the transaction is
|
|
926
|
+
forecasted to originate from.
|
|
927
|
+
example: JP
|
|
928
|
+
nullable: true
|
|
929
|
+
type: string
|
|
930
|
+
loading_origin_terminal:
|
|
931
|
+
description: The terminal where the transaction is forecasted to originate
|
|
932
|
+
from.
|
|
933
|
+
example: Terminal 9220
|
|
934
|
+
nullable: true
|
|
935
|
+
type: string
|
|
936
|
+
loading_origin_terminal_id:
|
|
937
|
+
description: The unique identifier for the origin terminal.
|
|
938
|
+
example: terminal_df01c7aa2
|
|
939
|
+
format: uuid
|
|
940
|
+
nullable: true
|
|
941
|
+
type: string
|
|
942
|
+
loading_origin_timestamp:
|
|
943
|
+
description: The UTC timestamp of the forecasted origin of the transaction.
|
|
944
|
+
example: '2025-07-27T22:43:41.371622+00:00'
|
|
945
|
+
format: date-time
|
|
946
|
+
nullable: true
|
|
947
|
+
type: string
|
|
948
|
+
modified_at:
|
|
949
|
+
description: The UTC timestamp of the last modification to the transaction
|
|
950
|
+
in the database.
|
|
951
|
+
example: '2025-07-27T22:43:41.371622+00:00'
|
|
952
|
+
format: date-time
|
|
953
|
+
type: string
|
|
954
|
+
route_score:
|
|
955
|
+
description: The forecast route score is the product of forecast scores
|
|
956
|
+
along a given forecast route.
|
|
957
|
+
example: 0.6942790140289807
|
|
958
|
+
format: float
|
|
959
|
+
nullable: true
|
|
960
|
+
type: number
|
|
961
|
+
route_score_weighted_volume:
|
|
962
|
+
description: The forecast volume multiplied by the forecast route score.
|
|
963
|
+
example: 1826821.6556637555
|
|
964
|
+
format: float
|
|
965
|
+
nullable: true
|
|
966
|
+
type: number
|
|
967
|
+
score:
|
|
968
|
+
description: The forecast score is the probability of a single forecast.
|
|
969
|
+
example: 0.6942790140289807
|
|
970
|
+
format: float
|
|
971
|
+
nullable: true
|
|
972
|
+
type: number
|
|
973
|
+
timestamp:
|
|
974
|
+
description: The UTC timestamp of the actual transaction.
|
|
975
|
+
example: '2025-07-27T22:43:41.371622+00:00'
|
|
976
|
+
format: date-time
|
|
977
|
+
type: string
|
|
978
|
+
transaction_number:
|
|
979
|
+
description: The number of the transaction.
|
|
980
|
+
example: 1
|
|
981
|
+
nullable: true
|
|
982
|
+
type: integer
|
|
983
|
+
transaction_type:
|
|
984
|
+
description: The type of transaction, either loading or offloading.
|
|
985
|
+
enum:
|
|
986
|
+
- loading
|
|
987
|
+
- offloading
|
|
988
|
+
example: offloading
|
|
989
|
+
nullable: true
|
|
990
|
+
type: string
|
|
991
|
+
vessel_name:
|
|
992
|
+
description: The name of the vessel.
|
|
993
|
+
example: SHINJU MARU NO.2
|
|
994
|
+
type: string
|
|
995
|
+
volume:
|
|
996
|
+
description: The volume of LNG involved in the transaction.
|
|
997
|
+
example: 0.008897133333333333
|
|
998
|
+
format: float
|
|
999
|
+
type: number
|
|
1000
|
+
volume_unit:
|
|
1001
|
+
description: The unit of measurement for the volume.
|
|
1002
|
+
example: bcf
|
|
1003
|
+
type: string
|
|
1004
|
+
required:
|
|
1005
|
+
- imo
|
|
1006
|
+
- loading_origin_country
|
|
1007
|
+
- loading_origin_terminal
|
|
1008
|
+
- loading_origin_timestamp
|
|
1009
|
+
- destination_terminal
|
|
1010
|
+
- destination_terminal_id
|
|
1011
|
+
- destination_country
|
|
1012
|
+
- timestamp
|
|
1013
|
+
- volume
|
|
1014
|
+
- volume_unit
|
|
1015
|
+
- modified_at
|
|
1016
|
+
type: object
|
|
1017
|
+
TransactionForecastDetails:
|
|
1018
|
+
properties:
|
|
1019
|
+
destination_country:
|
|
1020
|
+
description: The country where the transaction is forecasted to occur.
|
|
1021
|
+
example: Spain
|
|
1022
|
+
type: string
|
|
1023
|
+
destination_country_code:
|
|
1024
|
+
description: The ISO 3166-1 alpha-2 country code where the transaction is
|
|
1025
|
+
forecasted to occur.
|
|
1026
|
+
example: ES
|
|
1027
|
+
type: string
|
|
1028
|
+
destination_terminal:
|
|
1029
|
+
description: The terminal where the transaction is forecasted to occur.
|
|
1030
|
+
example: Mugardos R
|
|
1031
|
+
type: string
|
|
1032
|
+
destination_terminal_id:
|
|
1033
|
+
description: The unique identifier for the terminal.
|
|
1034
|
+
example: terminal_7e1c3aad4
|
|
1035
|
+
nullable: true
|
|
1036
|
+
type: string
|
|
1037
|
+
forecast_run_at:
|
|
1038
|
+
description: The UTC timestamp of the forecast run.
|
|
1039
|
+
example: '2025-07-27T22:43:41.371622+00:00'
|
|
1040
|
+
format: date-time
|
|
1041
|
+
type: string
|
|
1042
|
+
imo:
|
|
1043
|
+
description: International Maritime Organization number identifying the
|
|
1044
|
+
vessel.
|
|
1045
|
+
example: 9020766
|
|
1046
|
+
type: integer
|
|
1047
|
+
loading_origin_country:
|
|
1048
|
+
description: The country where the transaction is forecasted to originate
|
|
1049
|
+
from.
|
|
1050
|
+
example: USA
|
|
1051
|
+
nullable: true
|
|
1052
|
+
type: string
|
|
1053
|
+
loading_origin_country_code:
|
|
1054
|
+
description: The ISO 3166-1 alpha-2 country code where the transaction is
|
|
1055
|
+
forecasted to originate from.
|
|
1056
|
+
example: US
|
|
1057
|
+
nullable: true
|
|
1058
|
+
type: string
|
|
1059
|
+
loading_origin_terminal:
|
|
1060
|
+
description: The terminal where the transaction is forecasted to originate
|
|
1061
|
+
from.
|
|
1062
|
+
example: Sabine Pass
|
|
1063
|
+
nullable: true
|
|
1064
|
+
type: string
|
|
1065
|
+
loading_origin_terminal_id:
|
|
1066
|
+
description: The unique identifier for the terminal.
|
|
1067
|
+
example: terminal_220d7ad08
|
|
1068
|
+
format: uuid
|
|
1069
|
+
nullable: true
|
|
1070
|
+
type: string
|
|
1071
|
+
loading_origin_timestamp:
|
|
1072
|
+
description: The UTC timestamp of the forecasted origin of the transaction.
|
|
1073
|
+
example: '2025-07-27T22:43:41.371622+00:00'
|
|
1074
|
+
format: date-time
|
|
1075
|
+
nullable: true
|
|
1076
|
+
type: string
|
|
1077
|
+
modified_at:
|
|
1078
|
+
description: The UTC timestamp of the last modification to the forecast
|
|
1079
|
+
transaction in the database.
|
|
1080
|
+
example: '2025-07-27T22:43:41.371622+00:00'
|
|
1081
|
+
format: date-time
|
|
1082
|
+
type: string
|
|
1083
|
+
route_score:
|
|
1084
|
+
description: The forecast route score is the product of forecast scores
|
|
1085
|
+
along a given forecast route.
|
|
1086
|
+
example: 0.6942790140289807
|
|
1087
|
+
format: float
|
|
1088
|
+
type: number
|
|
1089
|
+
route_score_weighted_volume:
|
|
1090
|
+
description: The forecast volume multiplied by the forecast route score.
|
|
1091
|
+
example: 1826821.6556637555
|
|
1092
|
+
format: float
|
|
1093
|
+
type: number
|
|
1094
|
+
score:
|
|
1095
|
+
description: The forecast score is the probability of a single forecast.
|
|
1096
|
+
example: 0.6942790140289807
|
|
1097
|
+
format: float
|
|
1098
|
+
type: number
|
|
1099
|
+
timestamp:
|
|
1100
|
+
description: The UTC timestamp of the actual transaction.
|
|
1101
|
+
example: '2025-07-27T22:43:41.371622+00:00'
|
|
1102
|
+
format: date-time
|
|
1103
|
+
type: string
|
|
1104
|
+
transaction_number:
|
|
1105
|
+
description: The unique identifier for the transaction.
|
|
1106
|
+
example: 1
|
|
1107
|
+
type: integer
|
|
1108
|
+
transaction_type:
|
|
1109
|
+
description: The type of a forecast transaction, either loading or offloading.
|
|
1110
|
+
enum:
|
|
1111
|
+
- loading
|
|
1112
|
+
- offloading
|
|
1113
|
+
example: offloading
|
|
1114
|
+
type: string
|
|
1115
|
+
vessel_name:
|
|
1116
|
+
description: The name of the vessel.
|
|
1117
|
+
example: INEOS INTUITION
|
|
1118
|
+
type: string
|
|
1119
|
+
volume:
|
|
1120
|
+
description: The forecasted volume of LNG.
|
|
1121
|
+
example: 2631250.0
|
|
1122
|
+
format: float
|
|
1123
|
+
type: number
|
|
1124
|
+
volume_unit:
|
|
1125
|
+
description: The unit of measurement for the forecasted volume.
|
|
1126
|
+
example: mcf
|
|
1127
|
+
type: string
|
|
1128
|
+
required:
|
|
1129
|
+
- imo
|
|
1130
|
+
- loading_origin_terminal
|
|
1131
|
+
- loading_origin_country
|
|
1132
|
+
- loading_origin_timestamp
|
|
1133
|
+
- destination_terminal
|
|
1134
|
+
- destination_country
|
|
1135
|
+
- timestamp
|
|
1136
|
+
- volume
|
|
1137
|
+
- volume_unit
|
|
1138
|
+
- score
|
|
1139
|
+
- route_score
|
|
1140
|
+
- route_score_weighted_volume
|
|
1141
|
+
- transaction_type
|
|
1142
|
+
- forecast_run_at
|
|
1143
|
+
- modified_at
|
|
1144
|
+
type: object
|
|
1145
|
+
TransactionHistory:
|
|
1146
|
+
properties:
|
|
1147
|
+
destination_country:
|
|
1148
|
+
description: The country where the terminal is located.
|
|
1149
|
+
example: Japan
|
|
1150
|
+
type: string
|
|
1151
|
+
destination_country_code:
|
|
1152
|
+
description: The ISO 3166-1 alpha-2 country code where the terminal is located.
|
|
1153
|
+
example: JP
|
|
1154
|
+
type: string
|
|
1155
|
+
destination_terminal:
|
|
1156
|
+
description: The name of the terminal where the transaction occurred.
|
|
1157
|
+
example: Yufutsu
|
|
1158
|
+
type: string
|
|
1159
|
+
destination_terminal_id:
|
|
1160
|
+
description: The unique identifier for the terminal.
|
|
1161
|
+
example: terminal_5c68727c3
|
|
1162
|
+
format: uuid
|
|
1163
|
+
nullable: true
|
|
1164
|
+
type: string
|
|
1165
|
+
imo:
|
|
1166
|
+
description: International Maritime Organization number identifying the
|
|
1167
|
+
vessel.
|
|
1168
|
+
example: 9554729
|
|
1169
|
+
type: integer
|
|
1170
|
+
loading_origin_country:
|
|
1171
|
+
description: The country where the transaction is forecasted to originate
|
|
1172
|
+
from.
|
|
1173
|
+
example: Japan
|
|
1174
|
+
nullable: true
|
|
1175
|
+
type: string
|
|
1176
|
+
loading_origin_country_code:
|
|
1177
|
+
description: The ISO 3166-1 alpha-2 country code where the transaction is
|
|
1178
|
+
forecasted to originate from.
|
|
1179
|
+
example: JP
|
|
1180
|
+
nullable: true
|
|
1181
|
+
type: string
|
|
1182
|
+
loading_origin_terminal:
|
|
1183
|
+
description: The terminal where the transaction is forecasted to originate
|
|
1184
|
+
from.
|
|
1185
|
+
example: Ishikari
|
|
1186
|
+
nullable: true
|
|
1187
|
+
type: string
|
|
1188
|
+
loading_origin_terminal_id:
|
|
1189
|
+
description: The unique identifier for the origin terminal.
|
|
1190
|
+
example: terminal_1c148436c
|
|
1191
|
+
format: uuid
|
|
1192
|
+
nullable: true
|
|
1193
|
+
type: string
|
|
1194
|
+
loading_origin_timestamp:
|
|
1195
|
+
description: The UTC timestamp of the forecasted origin of the transaction.
|
|
1196
|
+
example: '2025-07-27T22:43:41.371622+00:00'
|
|
1197
|
+
format: date-time
|
|
1198
|
+
nullable: true
|
|
1199
|
+
type: string
|
|
1200
|
+
modified_at:
|
|
1201
|
+
description: The UTC timestamp of the last modification to the transaction
|
|
1202
|
+
in the database.
|
|
1203
|
+
example: '2025-07-27T22:43:41.371622+00:00'
|
|
1204
|
+
format: date-time
|
|
1205
|
+
type: string
|
|
1206
|
+
timestamp:
|
|
1207
|
+
description: The UTC timestamp of the actual transaction.
|
|
1208
|
+
example: '2025-07-27T22:43:41.371622+00:00'
|
|
1209
|
+
format: date-time
|
|
1210
|
+
type: string
|
|
1211
|
+
transaction_type:
|
|
1212
|
+
description: The type of transaction, either loading or offloading.
|
|
1213
|
+
enum:
|
|
1214
|
+
- loading
|
|
1215
|
+
- offloading
|
|
1216
|
+
example: offloading
|
|
1217
|
+
type: string
|
|
1218
|
+
vessel_name:
|
|
1219
|
+
description: The name of the vessel.
|
|
1220
|
+
example: AKEBONO MARU
|
|
1221
|
+
type: string
|
|
1222
|
+
volume:
|
|
1223
|
+
description: The volume of LNG involved in the transaction.
|
|
1224
|
+
example: 0.0062378166666666665
|
|
1225
|
+
format: float
|
|
1226
|
+
type: number
|
|
1227
|
+
volume_unit:
|
|
1228
|
+
description: The unit of measurement for the volume.
|
|
1229
|
+
example: bcf
|
|
1230
|
+
type: string
|
|
1231
|
+
required:
|
|
1232
|
+
- imo
|
|
1233
|
+
- loading_origin_terminal
|
|
1234
|
+
- loading_origin_country
|
|
1235
|
+
- loading_origin_timestamp
|
|
1236
|
+
- destination_terminal
|
|
1237
|
+
- destination_terminal_id
|
|
1238
|
+
- destination_country
|
|
1239
|
+
- timestamp
|
|
1240
|
+
- volume
|
|
1241
|
+
- volume_unit
|
|
1242
|
+
- modified_at
|
|
1243
|
+
type: object
|
|
1244
|
+
TransactionsForecastQuery:
|
|
1245
|
+
properties:
|
|
1246
|
+
destination_countries:
|
|
1247
|
+
description: A list of destination ISO 3166 country names to filter the
|
|
1248
|
+
transactions.
|
|
1249
|
+
example:
|
|
1250
|
+
- Japan
|
|
1251
|
+
- Malaysia
|
|
1252
|
+
items:
|
|
1253
|
+
type: string
|
|
1254
|
+
nullable: true
|
|
1255
|
+
type: array
|
|
1256
|
+
destination_country_codes:
|
|
1257
|
+
description: A list of destination ISO 3166-1 alpha-2 country codes to filter
|
|
1258
|
+
the transactions.
|
|
1259
|
+
example:
|
|
1260
|
+
- JP
|
|
1261
|
+
- MY
|
|
1262
|
+
items:
|
|
1263
|
+
type: string
|
|
1264
|
+
nullable: true
|
|
1265
|
+
type: array
|
|
1266
|
+
destination_polygons:
|
|
1267
|
+
description: A closed list of closed EPSG:4326 lon, lat coordinate pairs
|
|
1268
|
+
to filter by.
|
|
1269
|
+
example:
|
|
1270
|
+
- - - -125.0
|
|
1271
|
+
- 24.5
|
|
1272
|
+
- - -125.0
|
|
1273
|
+
- 49.5
|
|
1274
|
+
- - -66.9
|
|
1275
|
+
- 49.5
|
|
1276
|
+
- - -66.9
|
|
1277
|
+
- 24.5
|
|
1278
|
+
- - -125.0
|
|
1279
|
+
- 24.5
|
|
1280
|
+
- - - 122.9
|
|
1281
|
+
- 24.0
|
|
1282
|
+
- - 122.9
|
|
1283
|
+
- 45.5
|
|
1284
|
+
- - 146.0
|
|
1285
|
+
- 45.5
|
|
1286
|
+
- - 146.0
|
|
1287
|
+
- 24.0
|
|
1288
|
+
- - 122.9
|
|
1289
|
+
- 24.0
|
|
1290
|
+
items:
|
|
1291
|
+
items:
|
|
1292
|
+
items:
|
|
1293
|
+
format: float
|
|
1294
|
+
type: number
|
|
1295
|
+
type: array
|
|
1296
|
+
type: array
|
|
1297
|
+
nullable: true
|
|
1298
|
+
type: array
|
|
1299
|
+
destination_regions:
|
|
1300
|
+
description: A list of destination regions to filter the transactions.
|
|
1301
|
+
example:
|
|
1302
|
+
- Asia
|
|
1303
|
+
- Europe
|
|
1304
|
+
items:
|
|
1305
|
+
type: string
|
|
1306
|
+
nullable: true
|
|
1307
|
+
type: array
|
|
1308
|
+
destination_terminals:
|
|
1309
|
+
description: A list of destination terminal names to filter the transactions.
|
|
1310
|
+
example:
|
|
1311
|
+
- Higashi-Ohgishima
|
|
1312
|
+
- PFLNG DUA
|
|
1313
|
+
items:
|
|
1314
|
+
type: string
|
|
1315
|
+
nullable: true
|
|
1316
|
+
type: array
|
|
1317
|
+
forecast_run_at:
|
|
1318
|
+
description: The UTC timestamp of the forecast run to filter the transactions.
|
|
1319
|
+
example: '2025-07-27T22:43:41.371622+00:00'
|
|
1320
|
+
format: date-time
|
|
1321
|
+
nullable: true
|
|
1322
|
+
type: string
|
|
1323
|
+
imos:
|
|
1324
|
+
description: A list of IMO numbers to filter the transactions.
|
|
1325
|
+
example:
|
|
1326
|
+
- 9030838
|
|
1327
|
+
items:
|
|
1328
|
+
type: integer
|
|
1329
|
+
nullable: true
|
|
1330
|
+
type: array
|
|
1331
|
+
origin_countries:
|
|
1332
|
+
description: A list of origin ISO 3166 country names to filter the transactions.
|
|
1333
|
+
example:
|
|
1334
|
+
- Malaysia
|
|
1335
|
+
items:
|
|
1336
|
+
type: string
|
|
1337
|
+
nullable: true
|
|
1338
|
+
type: array
|
|
1339
|
+
origin_country_codes:
|
|
1340
|
+
description: A list of origin ISO 3166-1 alpha-2 country codes to filter
|
|
1341
|
+
the transactions.
|
|
1342
|
+
example:
|
|
1343
|
+
- MY
|
|
1344
|
+
items:
|
|
1345
|
+
type: string
|
|
1346
|
+
nullable: true
|
|
1347
|
+
type: array
|
|
1348
|
+
origin_polygons:
|
|
1349
|
+
description: A closed list of closed EPSG:4326 lon, lat coordinate pairs
|
|
1350
|
+
to filter by.
|
|
1351
|
+
example:
|
|
1352
|
+
- - - 99.6
|
|
1353
|
+
- 1.0
|
|
1354
|
+
- - 99.6
|
|
1355
|
+
- 7.5
|
|
1356
|
+
- - 104.5
|
|
1357
|
+
- 7.5
|
|
1358
|
+
- - 104.5
|
|
1359
|
+
- 1.0
|
|
1360
|
+
- - 99.6
|
|
1361
|
+
- 1.0
|
|
1362
|
+
- - - 109.0
|
|
1363
|
+
- 1.0
|
|
1364
|
+
- - 109.0
|
|
1365
|
+
- 7.5
|
|
1366
|
+
- - 115.0
|
|
1367
|
+
- 7.5
|
|
1368
|
+
- - 115.0
|
|
1369
|
+
- 1.0
|
|
1370
|
+
- - 109.0
|
|
1371
|
+
- 1.0
|
|
1372
|
+
items:
|
|
1373
|
+
items:
|
|
1374
|
+
items:
|
|
1375
|
+
format: float
|
|
1376
|
+
type: number
|
|
1377
|
+
type: array
|
|
1378
|
+
type: array
|
|
1379
|
+
nullable: true
|
|
1380
|
+
type: array
|
|
1381
|
+
origin_regions:
|
|
1382
|
+
description: A list of origin regions to filter the transactions.
|
|
1383
|
+
example:
|
|
1384
|
+
- Asia
|
|
1385
|
+
items:
|
|
1386
|
+
type: string
|
|
1387
|
+
nullable: true
|
|
1388
|
+
type: array
|
|
1389
|
+
origin_terminal_ids:
|
|
1390
|
+
description: A list of origin terminal ids to filter the transactions.
|
|
1391
|
+
example:
|
|
1392
|
+
- terminal_75375a6e8
|
|
1393
|
+
items:
|
|
1394
|
+
format: uuid
|
|
1395
|
+
type: string
|
|
1396
|
+
nullable: true
|
|
1397
|
+
type: array
|
|
1398
|
+
origin_terminals:
|
|
1399
|
+
description: A list of origin terminal names to filter the transactions.
|
|
1400
|
+
example:
|
|
1401
|
+
- Chita
|
|
1402
|
+
- Sodeshi
|
|
1403
|
+
- MLNG
|
|
1404
|
+
items:
|
|
1405
|
+
type: string
|
|
1406
|
+
nullable: true
|
|
1407
|
+
type: array
|
|
1408
|
+
transaction_type:
|
|
1409
|
+
description: The type of transaction to filter the transactions.
|
|
1410
|
+
enum:
|
|
1411
|
+
- loading
|
|
1412
|
+
- offloading
|
|
1413
|
+
example: loading
|
|
1414
|
+
nullable: true
|
|
1415
|
+
type: string
|
|
1416
|
+
type: object
|
|
1417
|
+
TransactionsQuery:
|
|
1418
|
+
properties:
|
|
1419
|
+
destination_countries:
|
|
1420
|
+
description: A list of destination ISO 3166 country names to filter the
|
|
1421
|
+
transactions.
|
|
1422
|
+
example:
|
|
1423
|
+
- Japan
|
|
1424
|
+
- Malaysia
|
|
1425
|
+
items:
|
|
1426
|
+
type: string
|
|
1427
|
+
nullable: true
|
|
1428
|
+
type: array
|
|
1429
|
+
destination_country_codes:
|
|
1430
|
+
description: A list of destination ISO 3166-1 alpha-2 country codes to filter
|
|
1431
|
+
the transactions.
|
|
1432
|
+
example:
|
|
1433
|
+
- JP
|
|
1434
|
+
- MY
|
|
1435
|
+
items:
|
|
1436
|
+
type: string
|
|
1437
|
+
nullable: true
|
|
1438
|
+
type: array
|
|
1439
|
+
destination_polygons:
|
|
1440
|
+
description: A closed list of closed EPSG:4326 lon, lat coordinate pairs
|
|
1441
|
+
to filter by.
|
|
1442
|
+
example:
|
|
1443
|
+
- - - -125.0
|
|
1444
|
+
- 24.5
|
|
1445
|
+
- - -125.0
|
|
1446
|
+
- 49.5
|
|
1447
|
+
- - -66.9
|
|
1448
|
+
- 49.5
|
|
1449
|
+
- - -66.9
|
|
1450
|
+
- 24.5
|
|
1451
|
+
- - -125.0
|
|
1452
|
+
- 24.5
|
|
1453
|
+
- - - 122.9
|
|
1454
|
+
- 24.0
|
|
1455
|
+
- - 122.9
|
|
1456
|
+
- 45.5
|
|
1457
|
+
- - 146.0
|
|
1458
|
+
- 45.5
|
|
1459
|
+
- - 146.0
|
|
1460
|
+
- 24.0
|
|
1461
|
+
- - 122.9
|
|
1462
|
+
- 24.0
|
|
1463
|
+
items:
|
|
1464
|
+
items:
|
|
1465
|
+
items:
|
|
1466
|
+
format: float
|
|
1467
|
+
type: number
|
|
1468
|
+
type: array
|
|
1469
|
+
type: array
|
|
1470
|
+
nullable: true
|
|
1471
|
+
type: array
|
|
1472
|
+
destination_regions:
|
|
1473
|
+
description: A list of destination regions to filter the transactions.
|
|
1474
|
+
example:
|
|
1475
|
+
- Asia
|
|
1476
|
+
- Europe
|
|
1477
|
+
items:
|
|
1478
|
+
type: string
|
|
1479
|
+
nullable: true
|
|
1480
|
+
type: array
|
|
1481
|
+
destination_terminals:
|
|
1482
|
+
description: A list of destination terminal names to filter the transactions.
|
|
1483
|
+
example:
|
|
1484
|
+
- Higashi-Ohgishima
|
|
1485
|
+
- PFLNG DUA
|
|
1486
|
+
items:
|
|
1487
|
+
type: string
|
|
1488
|
+
nullable: true
|
|
1489
|
+
type: array
|
|
1490
|
+
forecast_run_at:
|
|
1491
|
+
description: The UTC timestamp of the forecast run to filter the transactions.
|
|
1492
|
+
example: '2025-07-27T22:43:41.371622+00:00'
|
|
1493
|
+
format: date-time
|
|
1494
|
+
nullable: true
|
|
1495
|
+
type: string
|
|
1496
|
+
from_timestamp:
|
|
1497
|
+
description: The start UTC timestamp to filter the transactions.
|
|
1498
|
+
example: '2025-07-27T22:43:41.371622+00:00'
|
|
1499
|
+
format: date-time
|
|
1500
|
+
nullable: true
|
|
1501
|
+
type: string
|
|
1502
|
+
imos:
|
|
1503
|
+
description: A list of IMO numbers to filter the transactions.
|
|
1504
|
+
example:
|
|
1505
|
+
- 9030838
|
|
1506
|
+
items:
|
|
1507
|
+
type: integer
|
|
1508
|
+
nullable: true
|
|
1509
|
+
type: array
|
|
1510
|
+
origin_countries:
|
|
1511
|
+
description: A list of origin ISO 3166 country names to filter the transactions.
|
|
1512
|
+
example:
|
|
1513
|
+
- Malaysia
|
|
1514
|
+
items:
|
|
1515
|
+
type: string
|
|
1516
|
+
nullable: true
|
|
1517
|
+
type: array
|
|
1518
|
+
origin_country_codes:
|
|
1519
|
+
description: A list of origin ISO 3166-1 alpha-2 country codes to filter
|
|
1520
|
+
the transactions.
|
|
1521
|
+
example:
|
|
1522
|
+
- MY
|
|
1523
|
+
items:
|
|
1524
|
+
type: string
|
|
1525
|
+
nullable: true
|
|
1526
|
+
type: array
|
|
1527
|
+
origin_polygons:
|
|
1528
|
+
description: A closed list of closed EPSG:4326 lon, lat coordinate pairs
|
|
1529
|
+
to filter by.
|
|
1530
|
+
example:
|
|
1531
|
+
- - - 99.6
|
|
1532
|
+
- 1.0
|
|
1533
|
+
- - 99.6
|
|
1534
|
+
- 7.5
|
|
1535
|
+
- - 104.5
|
|
1536
|
+
- 7.5
|
|
1537
|
+
- - 104.5
|
|
1538
|
+
- 1.0
|
|
1539
|
+
- - 99.6
|
|
1540
|
+
- 1.0
|
|
1541
|
+
- - - 109.0
|
|
1542
|
+
- 1.0
|
|
1543
|
+
- - 109.0
|
|
1544
|
+
- 7.5
|
|
1545
|
+
- - 115.0
|
|
1546
|
+
- 7.5
|
|
1547
|
+
- - 115.0
|
|
1548
|
+
- 1.0
|
|
1549
|
+
- - 109.0
|
|
1550
|
+
- 1.0
|
|
1551
|
+
items:
|
|
1552
|
+
items:
|
|
1553
|
+
items:
|
|
1554
|
+
format: float
|
|
1555
|
+
type: number
|
|
1556
|
+
type: array
|
|
1557
|
+
type: array
|
|
1558
|
+
nullable: true
|
|
1559
|
+
type: array
|
|
1560
|
+
origin_regions:
|
|
1561
|
+
description: A list of origin regions to filter the transactions.
|
|
1562
|
+
example:
|
|
1563
|
+
- Asia
|
|
1564
|
+
items:
|
|
1565
|
+
type: string
|
|
1566
|
+
nullable: true
|
|
1567
|
+
type: array
|
|
1568
|
+
origin_terminal_ids:
|
|
1569
|
+
description: A list of origin terminal ids to filter the transactions.
|
|
1570
|
+
example:
|
|
1571
|
+
- terminal_75375a6e8
|
|
1572
|
+
items:
|
|
1573
|
+
format: uuid
|
|
1574
|
+
type: string
|
|
1575
|
+
nullable: true
|
|
1576
|
+
type: array
|
|
1577
|
+
origin_terminals:
|
|
1578
|
+
description: A list of origin terminal names to filter the transactions.
|
|
1579
|
+
example:
|
|
1580
|
+
- Chita
|
|
1581
|
+
- Sodeshi
|
|
1582
|
+
- MLNG
|
|
1583
|
+
items:
|
|
1584
|
+
type: string
|
|
1585
|
+
nullable: true
|
|
1586
|
+
type: array
|
|
1587
|
+
to_timestamp:
|
|
1588
|
+
description: The end UTC timestamp to filter the transactions.
|
|
1589
|
+
example: '2025-07-27T22:43:41.371622+00:00'
|
|
1590
|
+
format: date-time
|
|
1591
|
+
nullable: true
|
|
1592
|
+
type: string
|
|
1593
|
+
transaction_type:
|
|
1594
|
+
description: The type of transaction to filter the transactions.
|
|
1595
|
+
enum:
|
|
1596
|
+
- loading
|
|
1597
|
+
- offloading
|
|
1598
|
+
example: loading
|
|
1599
|
+
nullable: true
|
|
1600
|
+
type: string
|
|
1601
|
+
type: object
|
|
1602
|
+
VesselDetails:
|
|
1603
|
+
properties:
|
|
1604
|
+
callsign:
|
|
1605
|
+
description: The international radio call sign assigned to the vessel.
|
|
1606
|
+
example: 9HA4285
|
|
1607
|
+
nullable: true
|
|
1608
|
+
type: string
|
|
1609
|
+
captains_destination:
|
|
1610
|
+
description: The destination provided by the vessel's captain.
|
|
1611
|
+
example: NORAF>USMAH
|
|
1612
|
+
nullable: true
|
|
1613
|
+
type: string
|
|
1614
|
+
captains_eta:
|
|
1615
|
+
description: The estimated time of arrival at the destination provided by
|
|
1616
|
+
the vessel's captain.
|
|
1617
|
+
example: '2025-07-27T22:43:41.371622+00:00'
|
|
1618
|
+
format: date-time
|
|
1619
|
+
nullable: true
|
|
1620
|
+
type: string
|
|
1621
|
+
charterer:
|
|
1622
|
+
description: The name of the charterer of the vessel.
|
|
1623
|
+
example: SHELL
|
|
1624
|
+
nullable: true
|
|
1625
|
+
type: string
|
|
1626
|
+
first_active_date:
|
|
1627
|
+
description: The date when the vessel was first active in the system.
|
|
1628
|
+
example: '2025-07-27T22:43:41.371622+00:00'
|
|
1629
|
+
format: date-time
|
|
1630
|
+
nullable: true
|
|
1631
|
+
type: string
|
|
1632
|
+
first_operation_date:
|
|
1633
|
+
description: The date when the vessel first started operations.
|
|
1634
|
+
example: '2025-07-27T22:43:41.371622+00:00'
|
|
1635
|
+
format: date-time
|
|
1636
|
+
nullable: true
|
|
1637
|
+
type: string
|
|
1638
|
+
flag_state:
|
|
1639
|
+
description: The flag state of the vessel, indicating the country under
|
|
1640
|
+
which the vessel is registered.
|
|
1641
|
+
example: USA
|
|
1642
|
+
nullable: true
|
|
1643
|
+
type: string
|
|
1644
|
+
forecast_destination_terminal:
|
|
1645
|
+
description: The terminal where the vessel is forecasted to arrive.
|
|
1646
|
+
example: Gibbstown LNG
|
|
1647
|
+
nullable: true
|
|
1648
|
+
type: string
|
|
1649
|
+
forecast_destination_terminal_id:
|
|
1650
|
+
description: The unique identifier for the forecasted destination terminal.
|
|
1651
|
+
example: terminal_28c27df09
|
|
1652
|
+
format: uuid
|
|
1653
|
+
nullable: true
|
|
1654
|
+
type: string
|
|
1655
|
+
forecast_destination_timestamp:
|
|
1656
|
+
description: The UTC timestamp of the forecasted destination.
|
|
1657
|
+
example: '2025-07-27T22:43:41.371622+00:00'
|
|
1658
|
+
format: date-time
|
|
1659
|
+
nullable: true
|
|
1660
|
+
type: string
|
|
1661
|
+
heading:
|
|
1662
|
+
description: The current heading of the vessel in degrees.
|
|
1663
|
+
example: 511.0
|
|
1664
|
+
format: float
|
|
1665
|
+
nullable: true
|
|
1666
|
+
type: number
|
|
1667
|
+
imo:
|
|
1668
|
+
description: International Maritime Organization number identifying the
|
|
1669
|
+
vessel.
|
|
1670
|
+
example: 9771523
|
|
1671
|
+
nullable: true
|
|
1672
|
+
type: integer
|
|
1673
|
+
is_loaded:
|
|
1674
|
+
description: Indicates whether the vessel is currently loaded with cargo.
|
|
1675
|
+
example: false
|
|
1676
|
+
nullable: true
|
|
1677
|
+
type: boolean
|
|
1678
|
+
last_ais_signal_timestamp:
|
|
1679
|
+
description: The UTC timestamp of the last received AIS signal from the
|
|
1680
|
+
vessel.
|
|
1681
|
+
example: '2025-07-27T22:43:41.371622+00:00'
|
|
1682
|
+
format: date-time
|
|
1683
|
+
nullable: true
|
|
1684
|
+
type: string
|
|
1685
|
+
latitude:
|
|
1686
|
+
description: The current latitude of the vessel in decimal degrees.
|
|
1687
|
+
example: 39.1794283333333
|
|
1688
|
+
format: float
|
|
1689
|
+
nullable: true
|
|
1690
|
+
type: number
|
|
1691
|
+
length:
|
|
1692
|
+
description: The overall length of the vessel in meters
|
|
1693
|
+
example: 180
|
|
1694
|
+
nullable: true
|
|
1695
|
+
type: number
|
|
1696
|
+
longitude:
|
|
1697
|
+
description: The current longitude of the vessel in decimal degrees.
|
|
1698
|
+
example: -70.1175833333333
|
|
1699
|
+
format: float
|
|
1700
|
+
nullable: true
|
|
1701
|
+
type: number
|
|
1702
|
+
maximum_capacity:
|
|
1703
|
+
description: The maximum capacity of the vessel in cubic meters.
|
|
1704
|
+
example: 27500.0
|
|
1705
|
+
nullable: true
|
|
1706
|
+
type: number
|
|
1707
|
+
maximum_capacity_unit:
|
|
1708
|
+
description: The unit of measurement for the maximum capacity.
|
|
1709
|
+
example: CUBIC_METER
|
|
1710
|
+
nullable: true
|
|
1711
|
+
type: string
|
|
1712
|
+
mmsi:
|
|
1713
|
+
description: The Maritime Mobile Service Identity, a unique 9-digit identifier
|
|
1714
|
+
for maritime communications.
|
|
1715
|
+
example: 249557000
|
|
1716
|
+
nullable: true
|
|
1717
|
+
type: integer
|
|
1718
|
+
modified_at:
|
|
1719
|
+
description: The UTC timestamp of the last modification to the vessel's
|
|
1720
|
+
information in the database.
|
|
1721
|
+
example: '2025-07-27T22:43:41.371622+00:00'
|
|
1722
|
+
format: date-time
|
|
1723
|
+
type: string
|
|
1724
|
+
name:
|
|
1725
|
+
description: The name of the vessel.
|
|
1726
|
+
example: INEOS INTUITION
|
|
1727
|
+
nullable: true
|
|
1728
|
+
type: string
|
|
1729
|
+
route_score:
|
|
1730
|
+
description: The forecast route score is the product of forecast scores
|
|
1731
|
+
along a given forecast route.
|
|
1732
|
+
example: 0.75
|
|
1733
|
+
format: float
|
|
1734
|
+
nullable: true
|
|
1735
|
+
type: number
|
|
1736
|
+
route_score_weighted_volume:
|
|
1737
|
+
description: The forecast volume multiplied by the forecast route score.
|
|
1738
|
+
example: 1000.0
|
|
1739
|
+
format: float
|
|
1740
|
+
nullable: true
|
|
1741
|
+
type: number
|
|
1742
|
+
score:
|
|
1743
|
+
description: The forecast score is the probability of a single forecast.
|
|
1744
|
+
example: 0.85
|
|
1745
|
+
format: float
|
|
1746
|
+
nullable: true
|
|
1747
|
+
type: number
|
|
1748
|
+
speed:
|
|
1749
|
+
description: The current speed of the vessel in knots.
|
|
1750
|
+
example: 11.1
|
|
1751
|
+
format: float
|
|
1752
|
+
nullable: true
|
|
1753
|
+
type: number
|
|
1754
|
+
status:
|
|
1755
|
+
description: The current status of the vessel, such as "active", "inactive",
|
|
1756
|
+
etc.
|
|
1757
|
+
example: ACTIVE
|
|
1758
|
+
nullable: true
|
|
1759
|
+
type: string
|
|
1760
|
+
vessel_type:
|
|
1761
|
+
description: The type of vessel, such as "LNG Tanker", etc.
|
|
1762
|
+
example: COMBINATION_GAS_CARRIER
|
|
1763
|
+
nullable: true
|
|
1764
|
+
type: string
|
|
1765
|
+
width:
|
|
1766
|
+
description: The overall width of the vessel in meters
|
|
1767
|
+
example: 26
|
|
1768
|
+
nullable: true
|
|
1769
|
+
type: number
|
|
1770
|
+
type: object
|
|
1771
|
+
VesselForecast:
|
|
1772
|
+
properties:
|
|
1773
|
+
captains_destination:
|
|
1774
|
+
description: The destination provided by the vessel's captain.
|
|
1775
|
+
nullable: true
|
|
1776
|
+
type: string
|
|
1777
|
+
captains_eta:
|
|
1778
|
+
description: The estimated time of arrival at the destination provided by
|
|
1779
|
+
the vessel's captain.
|
|
1780
|
+
format: date-time
|
|
1781
|
+
nullable: true
|
|
1782
|
+
type: string
|
|
1783
|
+
country:
|
|
1784
|
+
description: The country where the vessel is forecasted to arrive.
|
|
1785
|
+
nullable: true
|
|
1786
|
+
type: string
|
|
1787
|
+
forecast_destination_terminal:
|
|
1788
|
+
description: The terminal where the vessel is forecasted to arrive.
|
|
1789
|
+
nullable: true
|
|
1790
|
+
type: string
|
|
1791
|
+
forecast_destination_terminal_id:
|
|
1792
|
+
description: The unique identifier for the forecasted destination terminal.
|
|
1793
|
+
format: uuid
|
|
1794
|
+
nullable: true
|
|
1795
|
+
type: string
|
|
1796
|
+
forecast_destination_timestamp:
|
|
1797
|
+
description: The UTC timestamp of the forecasted destination.
|
|
1798
|
+
format: date-time
|
|
1799
|
+
nullable: true
|
|
1800
|
+
type: string
|
|
1801
|
+
forecast_run_at:
|
|
1802
|
+
description: The UTC timestamp of the forecast run.
|
|
1803
|
+
format: date-time
|
|
1804
|
+
nullable: true
|
|
1805
|
+
type: string
|
|
1806
|
+
imo:
|
|
1807
|
+
description: International Maritime Organization number identifying the
|
|
1808
|
+
vessel.
|
|
1809
|
+
nullable: true
|
|
1810
|
+
type: integer
|
|
1811
|
+
modified_at:
|
|
1812
|
+
description: The UTC timestamp of the last modification to the forecast
|
|
1813
|
+
in the database.
|
|
1814
|
+
format: date-time
|
|
1815
|
+
nullable: true
|
|
1816
|
+
type: string
|
|
1817
|
+
origin_country:
|
|
1818
|
+
description: The country where the vessel is forecasted to depart from.
|
|
1819
|
+
nullable: true
|
|
1820
|
+
type: string
|
|
1821
|
+
origin_terminal:
|
|
1822
|
+
description: The terminal where the vessel is forecasted to depart from.
|
|
1823
|
+
nullable: true
|
|
1824
|
+
type: string
|
|
1825
|
+
origin_terminal_ids:
|
|
1826
|
+
description: A list of unique identifiers for the forecasted origin terminals.
|
|
1827
|
+
items:
|
|
1828
|
+
format: uuid
|
|
1829
|
+
type: string
|
|
1830
|
+
nullable: true
|
|
1831
|
+
type: array
|
|
1832
|
+
origin_timestamp:
|
|
1833
|
+
description: The UTC timestamp of the forecasted departure of the vessel.
|
|
1834
|
+
format: date-time
|
|
1835
|
+
nullable: true
|
|
1836
|
+
type: string
|
|
1837
|
+
volume:
|
|
1838
|
+
description: The forecasted volume of LNG.
|
|
1839
|
+
format: float
|
|
1840
|
+
nullable: true
|
|
1841
|
+
type: number
|
|
1842
|
+
volume_unit:
|
|
1843
|
+
description: The unit of measurement for the forecasted volume.
|
|
1844
|
+
nullable: true
|
|
1845
|
+
type: string
|
|
1846
|
+
required:
|
|
1847
|
+
- imo
|
|
1848
|
+
- origin_terminal
|
|
1849
|
+
- origin_country
|
|
1850
|
+
- origin_timestamp
|
|
1851
|
+
- captains_destination
|
|
1852
|
+
- captains_eta
|
|
1853
|
+
- forecast_destination_timestamp
|
|
1854
|
+
- forecast_destination_terminal
|
|
1855
|
+
- country
|
|
1856
|
+
- volume
|
|
1857
|
+
- volume_unit
|
|
1858
|
+
- forecast_run_at
|
|
1859
|
+
- modified_at
|
|
1860
|
+
type: object
|
|
1861
|
+
VesselForecastDetails:
|
|
1862
|
+
properties:
|
|
1863
|
+
captains_destination:
|
|
1864
|
+
description: The destination provided by the vessel's captain.
|
|
1865
|
+
nullable: true
|
|
1866
|
+
type: string
|
|
1867
|
+
captains_eta:
|
|
1868
|
+
description: The estimated time of arrival at the destination provided by
|
|
1869
|
+
the vessel's captain.
|
|
1870
|
+
format: date-time
|
|
1871
|
+
nullable: true
|
|
1872
|
+
type: string
|
|
1873
|
+
country:
|
|
1874
|
+
description: The country where the vessel is forecasted to arrive.
|
|
1875
|
+
nullable: true
|
|
1876
|
+
type: string
|
|
1877
|
+
forecast_destination_terminal:
|
|
1878
|
+
description: The terminal where the vessel is forecasted to arrive.
|
|
1879
|
+
nullable: true
|
|
1880
|
+
type: string
|
|
1881
|
+
forecast_destination_terminal_id:
|
|
1882
|
+
description: The unique identifier for the forecasted destination terminal.
|
|
1883
|
+
format: uuid
|
|
1884
|
+
nullable: true
|
|
1885
|
+
type: string
|
|
1886
|
+
forecast_destination_timestamp:
|
|
1887
|
+
description: The UTC timestamp of the forecasted destination.
|
|
1888
|
+
format: date-time
|
|
1889
|
+
nullable: true
|
|
1890
|
+
type: string
|
|
1891
|
+
forecast_run_at:
|
|
1892
|
+
description: The UTC timestamp of the forecast run.
|
|
1893
|
+
format: date-time
|
|
1894
|
+
nullable: true
|
|
1895
|
+
type: string
|
|
1896
|
+
imo:
|
|
1897
|
+
description: International Maritime Organization number identifying the
|
|
1898
|
+
vessel.
|
|
1899
|
+
nullable: true
|
|
1900
|
+
type: integer
|
|
1901
|
+
modified_at:
|
|
1902
|
+
description: The UTC timestamp of the last modification to the forecast
|
|
1903
|
+
in the database.
|
|
1904
|
+
format: date-time
|
|
1905
|
+
nullable: true
|
|
1906
|
+
type: string
|
|
1907
|
+
origin_country:
|
|
1908
|
+
description: The country where the vessel is forecasted to depart from.
|
|
1909
|
+
nullable: true
|
|
1910
|
+
type: string
|
|
1911
|
+
origin_terminal:
|
|
1912
|
+
description: The terminal where the vessel is forecasted to depart from.
|
|
1913
|
+
nullable: true
|
|
1914
|
+
type: string
|
|
1915
|
+
origin_terminal_ids:
|
|
1916
|
+
description: A list of unique identifiers for the forecasted origin terminals.
|
|
1917
|
+
items:
|
|
1918
|
+
format: uuid
|
|
1919
|
+
type: string
|
|
1920
|
+
nullable: true
|
|
1921
|
+
type: array
|
|
1922
|
+
origin_timestamp:
|
|
1923
|
+
description: The UTC timestamp of the forecasted departure of the vessel.
|
|
1924
|
+
format: date-time
|
|
1925
|
+
nullable: true
|
|
1926
|
+
type: string
|
|
1927
|
+
route_score:
|
|
1928
|
+
description: The forecast route score is the product of forecast scores
|
|
1929
|
+
along a given forecast route.
|
|
1930
|
+
format: float
|
|
1931
|
+
nullable: true
|
|
1932
|
+
type: number
|
|
1933
|
+
route_score_weighted_volume:
|
|
1934
|
+
description: The forecast volume multiplied by the forecast route score.
|
|
1935
|
+
format: float
|
|
1936
|
+
nullable: true
|
|
1937
|
+
type: number
|
|
1938
|
+
score:
|
|
1939
|
+
description: The forecast score is the probability of a single forecast.
|
|
1940
|
+
format: float
|
|
1941
|
+
nullable: true
|
|
1942
|
+
type: number
|
|
1943
|
+
volume:
|
|
1944
|
+
description: The forecasted volume of LNG.
|
|
1945
|
+
format: float
|
|
1946
|
+
nullable: true
|
|
1947
|
+
type: number
|
|
1948
|
+
volume_unit:
|
|
1949
|
+
description: The unit of measurement for the forecasted volume.
|
|
1950
|
+
nullable: true
|
|
1951
|
+
type: string
|
|
1952
|
+
required:
|
|
1953
|
+
- imo
|
|
1954
|
+
- origin_terminal
|
|
1955
|
+
- origin_country
|
|
1956
|
+
- origin_timestamp
|
|
1957
|
+
- captains_destination
|
|
1958
|
+
- captains_eta
|
|
1959
|
+
- forecast_destination_timestamp
|
|
1960
|
+
- forecast_destination_terminal
|
|
1961
|
+
- country
|
|
1962
|
+
- volume
|
|
1963
|
+
- volume_unit
|
|
1964
|
+
- score
|
|
1965
|
+
- route_score
|
|
1966
|
+
- route_score_weighted_volume
|
|
1967
|
+
- forecast_run_at
|
|
1968
|
+
- modified_at
|
|
1969
|
+
type: object
|
|
1970
|
+
VesselForecastHistoryQuery:
|
|
1971
|
+
properties:
|
|
1972
|
+
forecast_run_at:
|
|
1973
|
+
description: The UTC timestamp of the forecast run to filter the vessels.
|
|
1974
|
+
format: date-time
|
|
1975
|
+
nullable: true
|
|
1976
|
+
type: string
|
|
1977
|
+
from_timestamp:
|
|
1978
|
+
description: The start UTC timestamp to filter the vessels.
|
|
1979
|
+
format: date-time
|
|
1980
|
+
nullable: true
|
|
1981
|
+
type: string
|
|
1982
|
+
imos:
|
|
1983
|
+
description: A list of IMO numbers to filter the vessels.
|
|
1984
|
+
items:
|
|
1985
|
+
type: integer
|
|
1986
|
+
nullable: true
|
|
1987
|
+
type: array
|
|
1988
|
+
mmsis:
|
|
1989
|
+
description: A list of MMSI numbers to filter the vessels.
|
|
1990
|
+
items:
|
|
1991
|
+
type: integer
|
|
1992
|
+
nullable: true
|
|
1993
|
+
type: array
|
|
1994
|
+
names:
|
|
1995
|
+
description: A list of vessel names to filter the vessels.
|
|
1996
|
+
items:
|
|
1997
|
+
type: string
|
|
1998
|
+
nullable: true
|
|
1999
|
+
type: array
|
|
2000
|
+
polygons:
|
|
2001
|
+
description: A closed list of closed EPSG:4326 lon, lat coordinate pairs
|
|
2002
|
+
to filter by.
|
|
2003
|
+
items:
|
|
2004
|
+
items:
|
|
2005
|
+
items:
|
|
2006
|
+
format: float
|
|
2007
|
+
type: number
|
|
2008
|
+
type: array
|
|
2009
|
+
type: array
|
|
2010
|
+
nullable: true
|
|
2011
|
+
type: array
|
|
2012
|
+
to_timestamp:
|
|
2013
|
+
description: The end UTC timestamp to filter the vessels.
|
|
2014
|
+
format: date-time
|
|
2015
|
+
nullable: true
|
|
2016
|
+
type: string
|
|
2017
|
+
type: object
|
|
2018
|
+
VesselForecastQuery:
|
|
2019
|
+
properties:
|
|
2020
|
+
forecast_run_at:
|
|
2021
|
+
description: The UTC timestamp of the forecast run to filter the vessels.
|
|
2022
|
+
format: date-time
|
|
2023
|
+
nullable: true
|
|
2024
|
+
type: string
|
|
2025
|
+
imos:
|
|
2026
|
+
description: A list of IMO numbers to filter the vessels.
|
|
2027
|
+
items:
|
|
2028
|
+
type: integer
|
|
2029
|
+
nullable: true
|
|
2030
|
+
type: array
|
|
2031
|
+
mmsis:
|
|
2032
|
+
description: A list of MMSI numbers to filter the vessels.
|
|
2033
|
+
items:
|
|
2034
|
+
type: integer
|
|
2035
|
+
nullable: true
|
|
2036
|
+
type: array
|
|
2037
|
+
names:
|
|
2038
|
+
description: A list of vessel names to filter the vessels.
|
|
2039
|
+
items:
|
|
2040
|
+
type: string
|
|
2041
|
+
nullable: true
|
|
2042
|
+
type: array
|
|
2043
|
+
polygons:
|
|
2044
|
+
description: A closed list of closed EPSG:4326 lon, lat coordinate pairs
|
|
2045
|
+
to filter by.
|
|
2046
|
+
items:
|
|
2047
|
+
items:
|
|
2048
|
+
items:
|
|
2049
|
+
format: float
|
|
2050
|
+
type: number
|
|
2051
|
+
type: array
|
|
2052
|
+
type: array
|
|
2053
|
+
nullable: true
|
|
2054
|
+
type: array
|
|
2055
|
+
type: object
|
|
2056
|
+
VesselHistoryQuery:
|
|
2057
|
+
properties:
|
|
2058
|
+
from_timestamp:
|
|
2059
|
+
description: The start UTC timestamp to filter the vessels.
|
|
2060
|
+
example: '2025-07-27T22:43:41.371622+00:00'
|
|
2061
|
+
format: date-time
|
|
2062
|
+
nullable: true
|
|
2063
|
+
type: string
|
|
2064
|
+
imos:
|
|
2065
|
+
description: A list of IMO numbers to filter the vessels.
|
|
2066
|
+
example:
|
|
2067
|
+
- 9771523
|
|
2068
|
+
items:
|
|
2069
|
+
type: integer
|
|
2070
|
+
nullable: true
|
|
2071
|
+
type: array
|
|
2072
|
+
mmsis:
|
|
2073
|
+
description: A list of MMSI numbers to filter the vessels.
|
|
2074
|
+
example:
|
|
2075
|
+
- 249557000
|
|
2076
|
+
items:
|
|
2077
|
+
type: integer
|
|
2078
|
+
nullable: true
|
|
2079
|
+
type: array
|
|
2080
|
+
names:
|
|
2081
|
+
description: A list of vessel names to filter the vessels.
|
|
2082
|
+
example:
|
|
2083
|
+
- INEOS INTUITION
|
|
2084
|
+
- LNG ENDEAVOUR
|
|
2085
|
+
items:
|
|
2086
|
+
type: string
|
|
2087
|
+
nullable: true
|
|
2088
|
+
type: array
|
|
2089
|
+
polygons:
|
|
2090
|
+
description: A closed list of closed EPSG:4326 lon, lat coordinate pairs
|
|
2091
|
+
to filter by.
|
|
2092
|
+
example:
|
|
2093
|
+
- - - 99.6
|
|
2094
|
+
- 1.0
|
|
2095
|
+
- - 99.6
|
|
2096
|
+
- 7.5
|
|
2097
|
+
- - 104.5
|
|
2098
|
+
- 7.5
|
|
2099
|
+
- - 104.5
|
|
2100
|
+
- 1.0
|
|
2101
|
+
- - 99.6
|
|
2102
|
+
- 1.0
|
|
2103
|
+
- - - 109.0
|
|
2104
|
+
- 1.0
|
|
2105
|
+
- - 109.0
|
|
2106
|
+
- 7.5
|
|
2107
|
+
- - 115.0
|
|
2108
|
+
- 7.5
|
|
2109
|
+
- - 115.0
|
|
2110
|
+
- 1.0
|
|
2111
|
+
- - 109.0
|
|
2112
|
+
- 1.0
|
|
2113
|
+
items:
|
|
2114
|
+
items:
|
|
2115
|
+
items:
|
|
2116
|
+
format: float
|
|
2117
|
+
type: number
|
|
2118
|
+
type: array
|
|
2119
|
+
type: array
|
|
2120
|
+
nullable: true
|
|
2121
|
+
type: array
|
|
2122
|
+
to_timestamp:
|
|
2123
|
+
description: The end UTC timestamp to filter the vessels.
|
|
2124
|
+
example: '2025-07-27T22:43:41.371622+00:00'
|
|
2125
|
+
format: date-time
|
|
2126
|
+
nullable: true
|
|
2127
|
+
type: string
|
|
2128
|
+
type: object
|
|
2129
|
+
VesselInfo:
|
|
2130
|
+
properties:
|
|
2131
|
+
callsign:
|
|
2132
|
+
description: The international radio call sign assigned to the vessel.
|
|
2133
|
+
example: 9HA4285
|
|
2134
|
+
nullable: true
|
|
2135
|
+
type: string
|
|
2136
|
+
captains_destination:
|
|
2137
|
+
description: The destination provided by the vessel's captain.
|
|
2138
|
+
example: NORAF>USMAH
|
|
2139
|
+
nullable: true
|
|
2140
|
+
type: string
|
|
2141
|
+
captains_eta:
|
|
2142
|
+
description: The estimated time of arrival at the destination provided by
|
|
2143
|
+
the vessel's captain.
|
|
2144
|
+
example: '2025-07-27T22:43:41.371622+00:00'
|
|
2145
|
+
format: date-time
|
|
2146
|
+
nullable: true
|
|
2147
|
+
type: string
|
|
2148
|
+
charterer:
|
|
2149
|
+
description: The name of the charterer of the vessel.
|
|
2150
|
+
example: SHELL
|
|
2151
|
+
nullable: true
|
|
2152
|
+
type: string
|
|
2153
|
+
first_active_date:
|
|
2154
|
+
description: The UTC date when the vessel was first active in the system.
|
|
2155
|
+
example: '2025-07-27T22:43:41.371622+00:00'
|
|
2156
|
+
format: date-time
|
|
2157
|
+
nullable: true
|
|
2158
|
+
type: string
|
|
2159
|
+
first_operation_date:
|
|
2160
|
+
description: The UTC date when the vessel first started operations.
|
|
2161
|
+
example: '2025-07-27T22:43:41.371622+00:00'
|
|
2162
|
+
format: date-time
|
|
2163
|
+
nullable: true
|
|
2164
|
+
type: string
|
|
2165
|
+
flag_state:
|
|
2166
|
+
description: The flag state of the vessel, indicating the country under
|
|
2167
|
+
which the vessel is registered.
|
|
2168
|
+
example: USA
|
|
2169
|
+
nullable: true
|
|
2170
|
+
type: string
|
|
2171
|
+
forecast_destination_terminal:
|
|
2172
|
+
description: The terminal where the vessel is forecasted to arrive.
|
|
2173
|
+
example: Gibbstown LNG
|
|
2174
|
+
nullable: true
|
|
2175
|
+
type: string
|
|
2176
|
+
forecast_destination_terminal_id:
|
|
2177
|
+
description: The unique identifier for the forecasted destination terminal.
|
|
2178
|
+
example: terminal_28c27df09
|
|
2179
|
+
format: uuid
|
|
2180
|
+
nullable: true
|
|
2181
|
+
type: string
|
|
2182
|
+
forecast_destination_timestamp:
|
|
2183
|
+
description: The UTC timestamp of the forecasted destination.
|
|
2184
|
+
example: '2025-07-27T22:43:41.371622+00:00'
|
|
2185
|
+
format: date-time
|
|
2186
|
+
nullable: true
|
|
2187
|
+
type: string
|
|
2188
|
+
heading:
|
|
2189
|
+
description: The current heading of the vessel in degrees.
|
|
2190
|
+
example: 511.0
|
|
2191
|
+
format: float
|
|
2192
|
+
nullable: true
|
|
2193
|
+
type: number
|
|
2194
|
+
imo:
|
|
2195
|
+
description: International Maritime Organization number identifying the
|
|
2196
|
+
vessel.
|
|
2197
|
+
example: 9771523
|
|
2198
|
+
nullable: true
|
|
2199
|
+
type: integer
|
|
2200
|
+
is_loaded:
|
|
2201
|
+
description: Indicates whether the vessel is currently loaded with cargo.
|
|
2202
|
+
example: true
|
|
2203
|
+
nullable: true
|
|
2204
|
+
type: boolean
|
|
2205
|
+
last_ais_signal_timestamp:
|
|
2206
|
+
description: The UTC timestamp of the last received AIS signal from the
|
|
2207
|
+
vessel.
|
|
2208
|
+
example: '2025-07-27T22:43:41.371622+00:00'
|
|
2209
|
+
format: date-time
|
|
2210
|
+
nullable: true
|
|
2211
|
+
type: string
|
|
2212
|
+
latitude:
|
|
2213
|
+
description: The current latitude of the vessel in decimal degrees.
|
|
2214
|
+
example: 39.1794283333333
|
|
2215
|
+
format: float
|
|
2216
|
+
nullable: true
|
|
2217
|
+
type: number
|
|
2218
|
+
length:
|
|
2219
|
+
description: The overall length of the vessel in meters
|
|
2220
|
+
example: 180
|
|
2221
|
+
format: integer
|
|
2222
|
+
nullable: true
|
|
2223
|
+
type: number
|
|
2224
|
+
longitude:
|
|
2225
|
+
description: The current longitude of the vessel in decimal degrees.
|
|
2226
|
+
example: -70.1175833333333
|
|
2227
|
+
format: float
|
|
2228
|
+
nullable: true
|
|
2229
|
+
type: number
|
|
2230
|
+
maximum_capacity:
|
|
2231
|
+
description: The maximum capacity of the vessel in cubic meters.
|
|
2232
|
+
example: 27500.0
|
|
2233
|
+
nullable: true
|
|
2234
|
+
type: number
|
|
2235
|
+
maximum_capacity_unit:
|
|
2236
|
+
description: The unit of measurement for the maximum capacity.
|
|
2237
|
+
example: CUBIC_METER
|
|
2238
|
+
nullable: true
|
|
2239
|
+
type: string
|
|
2240
|
+
mmsi:
|
|
2241
|
+
description: The Maritime Mobile Service Identity, a unique 9-digit identifier
|
|
2242
|
+
for maritime communications.
|
|
2243
|
+
example: 249557000
|
|
2244
|
+
nullable: true
|
|
2245
|
+
type: integer
|
|
2246
|
+
modified_at:
|
|
2247
|
+
description: The UTC timestamp of the last modification to the vessel's
|
|
2248
|
+
information in the database.
|
|
2249
|
+
example: '2025-07-27T22:43:41.371622+00:00'
|
|
2250
|
+
format: date-time
|
|
2251
|
+
nullable: true
|
|
2252
|
+
type: string
|
|
2253
|
+
name:
|
|
2254
|
+
description: The name of the vessel.
|
|
2255
|
+
example: INEOS INTUITION
|
|
2256
|
+
nullable: true
|
|
2257
|
+
type: string
|
|
2258
|
+
speed:
|
|
2259
|
+
description: The current speed of the vessel in knots.
|
|
2260
|
+
example: 11.1
|
|
2261
|
+
format: float
|
|
2262
|
+
nullable: true
|
|
2263
|
+
type: number
|
|
2264
|
+
status:
|
|
2265
|
+
description: The current status of the vessel, such as "active", "inactive",
|
|
2266
|
+
etc.
|
|
2267
|
+
example: ACTIVE
|
|
2268
|
+
nullable: true
|
|
2269
|
+
type: string
|
|
2270
|
+
vessel_type:
|
|
2271
|
+
description: The type of vessel, such as "LNG Tanker", etc.
|
|
2272
|
+
example: COMBINATION_GAS_CARRIER
|
|
2273
|
+
nullable: true
|
|
2274
|
+
type: string
|
|
2275
|
+
width:
|
|
2276
|
+
description: The overall width of the vessel in meters
|
|
2277
|
+
example: 26
|
|
2278
|
+
format: integer
|
|
2279
|
+
nullable: true
|
|
2280
|
+
type: number
|
|
2281
|
+
type: object
|
|
2282
|
+
VesselQuery:
|
|
2283
|
+
properties:
|
|
2284
|
+
imos:
|
|
2285
|
+
description: A list of IMO numbers to filter the vessels.
|
|
2286
|
+
example:
|
|
2287
|
+
- 9771523
|
|
2288
|
+
items:
|
|
2289
|
+
type: integer
|
|
2290
|
+
nullable: true
|
|
2291
|
+
type: array
|
|
2292
|
+
mmsis:
|
|
2293
|
+
description: A list of MMSI numbers to filter the vessels.
|
|
2294
|
+
example:
|
|
2295
|
+
- 249557000
|
|
2296
|
+
items:
|
|
2297
|
+
type: integer
|
|
2298
|
+
nullable: true
|
|
2299
|
+
type: array
|
|
2300
|
+
names:
|
|
2301
|
+
description: A list of vessel names to filter the vessels.
|
|
2302
|
+
example:
|
|
2303
|
+
- INEOS INTUITION
|
|
2304
|
+
- LNG ENDEAVOUR
|
|
2305
|
+
items:
|
|
2306
|
+
type: string
|
|
2307
|
+
nullable: true
|
|
2308
|
+
type: array
|
|
2309
|
+
polygons:
|
|
2310
|
+
description: A closed list of closed EPSG:4326 lon, lat coordinate pairs
|
|
2311
|
+
to filter by.
|
|
2312
|
+
example:
|
|
2313
|
+
- - - 99.6
|
|
2314
|
+
- 1.0
|
|
2315
|
+
- - 99.6
|
|
2316
|
+
- 7.5
|
|
2317
|
+
- - 104.5
|
|
2318
|
+
- 7.5
|
|
2319
|
+
- - 104.5
|
|
2320
|
+
- 1.0
|
|
2321
|
+
- - 99.6
|
|
2322
|
+
- 1.0
|
|
2323
|
+
- - - 109.0
|
|
2324
|
+
- 1.0
|
|
2325
|
+
- - 109.0
|
|
2326
|
+
- 7.5
|
|
2327
|
+
- - 115.0
|
|
2328
|
+
- 7.5
|
|
2329
|
+
- - 115.0
|
|
2330
|
+
- 1.0
|
|
2331
|
+
- - 109.0
|
|
2332
|
+
- 1.0
|
|
2333
|
+
items:
|
|
2334
|
+
items:
|
|
2335
|
+
items:
|
|
2336
|
+
format: float
|
|
2337
|
+
type: number
|
|
2338
|
+
type: array
|
|
2339
|
+
type: array
|
|
2340
|
+
nullable: true
|
|
2341
|
+
type: array
|
|
2342
|
+
type: object
|
|
2343
|
+
VolumeConversion:
|
|
2344
|
+
properties:
|
|
2345
|
+
from_unit:
|
|
2346
|
+
$ref: '#/components/schemas/units_literal'
|
|
2347
|
+
input_volume:
|
|
2348
|
+
description: The input volume to be converted.
|
|
2349
|
+
format: float
|
|
2350
|
+
type: number
|
|
2351
|
+
output_volume:
|
|
2352
|
+
description: The converted volume in the specified unit.
|
|
2353
|
+
format: float
|
|
2354
|
+
type: number
|
|
2355
|
+
to_unit:
|
|
2356
|
+
$ref: '#/components/schemas/units_literal'
|
|
2357
|
+
type: object
|
|
2358
|
+
VolumeConversionQuery:
|
|
2359
|
+
properties:
|
|
2360
|
+
from_unit:
|
|
2361
|
+
$ref: '#/components/schemas/units_literal'
|
|
2362
|
+
description: The unit of the input volume.
|
|
2363
|
+
to_unit:
|
|
2364
|
+
$ref: '#/components/schemas/units_literal'
|
|
2365
|
+
description: The unit of the desired output.
|
|
2366
|
+
volumes:
|
|
2367
|
+
description: The volume value to be converted.
|
|
2368
|
+
items:
|
|
2369
|
+
format: float
|
|
2370
|
+
type: number
|
|
2371
|
+
type: array
|
|
2372
|
+
type: object
|
|
2373
|
+
VolumeFlow:
|
|
2374
|
+
properties:
|
|
2375
|
+
count:
|
|
2376
|
+
description: The mean count of the volume of the forecasted flow.
|
|
2377
|
+
example: 13.0
|
|
2378
|
+
format: float
|
|
2379
|
+
type: number
|
|
2380
|
+
count_std:
|
|
2381
|
+
description: The standard deviation of the count of the volume of the forecasted
|
|
2382
|
+
flow.
|
|
2383
|
+
example: 0.0
|
|
2384
|
+
format: float
|
|
2385
|
+
nullable: true
|
|
2386
|
+
type: number
|
|
2387
|
+
timestamp:
|
|
2388
|
+
description: The UTC timestamp of the forecasted flow.
|
|
2389
|
+
example: '2025-07-27T22:43:41.371622+00:00'
|
|
2390
|
+
format: date-time
|
|
2391
|
+
type: string
|
|
2392
|
+
volume:
|
|
2393
|
+
description: The mean volume of the forecasted flow.
|
|
2394
|
+
example: 41.011715
|
|
2395
|
+
format: float
|
|
2396
|
+
type: number
|
|
2397
|
+
volume_std:
|
|
2398
|
+
description: The standard deviation of the volume of the forecasted flow.
|
|
2399
|
+
example: 0.0
|
|
2400
|
+
format: float
|
|
2401
|
+
nullable: true
|
|
2402
|
+
type: number
|
|
2403
|
+
volume_unit:
|
|
2404
|
+
description: The unit of measurement for the forecasted volume.
|
|
2405
|
+
example: bcf
|
|
2406
|
+
type: string
|
|
2407
|
+
required:
|
|
2408
|
+
- timestamp
|
|
2409
|
+
- volume
|
|
2410
|
+
- volume_unit
|
|
2411
|
+
- count
|
|
2412
|
+
type: object
|
|
2413
|
+
VolumeFlowHistoryQuery:
|
|
2414
|
+
anyOf:
|
|
2415
|
+
- required:
|
|
2416
|
+
- imos
|
|
2417
|
+
- required:
|
|
2418
|
+
- destination_terminals
|
|
2419
|
+
- required:
|
|
2420
|
+
- destination_countries
|
|
2421
|
+
- required:
|
|
2422
|
+
- destination_country_codes
|
|
2423
|
+
- required:
|
|
2424
|
+
- origin_terminals
|
|
2425
|
+
- required:
|
|
2426
|
+
- origin_countries
|
|
2427
|
+
- required:
|
|
2428
|
+
- origin_country_codes
|
|
2429
|
+
- required:
|
|
2430
|
+
- origin_polygons
|
|
2431
|
+
- required:
|
|
2432
|
+
- destination_polygons
|
|
2433
|
+
- required:
|
|
2434
|
+
- destination_regions
|
|
2435
|
+
- required:
|
|
2436
|
+
- origin_regions
|
|
2437
|
+
- required:
|
|
2438
|
+
- transaction_type
|
|
2439
|
+
- required:
|
|
2440
|
+
- from_timestamp
|
|
2441
|
+
- required:
|
|
2442
|
+
- to_timestamp
|
|
2443
|
+
properties:
|
|
2444
|
+
destination_countries:
|
|
2445
|
+
description: A list of destination ISO 3166 country names to filter by.
|
|
2446
|
+
example:
|
|
2447
|
+
- Spain
|
|
2448
|
+
- USA
|
|
2449
|
+
items:
|
|
2450
|
+
type: string
|
|
2451
|
+
nullable: true
|
|
2452
|
+
type: array
|
|
2453
|
+
destination_country_codes:
|
|
2454
|
+
description: A list of destination ISO 3166-1 alpha-2 country codes to filter
|
|
2455
|
+
by.
|
|
2456
|
+
example:
|
|
2457
|
+
- ES
|
|
2458
|
+
- US
|
|
2459
|
+
items:
|
|
2460
|
+
type: string
|
|
2461
|
+
nullable: true
|
|
2462
|
+
type: array
|
|
2463
|
+
destination_polygons:
|
|
2464
|
+
description: A closed list of closed EPSG:4326 lon, lat coordinate pairs
|
|
2465
|
+
to filter by.
|
|
2466
|
+
example:
|
|
2467
|
+
- - - -125.0
|
|
2468
|
+
- 24.5
|
|
2469
|
+
- - -125.0
|
|
2470
|
+
- 49.5
|
|
2471
|
+
- - -66.9
|
|
2472
|
+
- 49.5
|
|
2473
|
+
- - -66.9
|
|
2474
|
+
- 24.5
|
|
2475
|
+
- - -125.0
|
|
2476
|
+
- 24.5
|
|
2477
|
+
- - - 122.9
|
|
2478
|
+
- 24.0
|
|
2479
|
+
- - 122.9
|
|
2480
|
+
- 45.5
|
|
2481
|
+
- - 146.0
|
|
2482
|
+
- 45.5
|
|
2483
|
+
- - 146.0
|
|
2484
|
+
- 24.0
|
|
2485
|
+
- - 122.9
|
|
2486
|
+
- 24.0
|
|
2487
|
+
items:
|
|
2488
|
+
items:
|
|
2489
|
+
items:
|
|
2490
|
+
format: float
|
|
2491
|
+
type: number
|
|
2492
|
+
type: array
|
|
2493
|
+
type: array
|
|
2494
|
+
nullable: true
|
|
2495
|
+
type: array
|
|
2496
|
+
destination_regions:
|
|
2497
|
+
description: A list of destination regions to filter by.
|
|
2498
|
+
example:
|
|
2499
|
+
- Asia
|
|
2500
|
+
- Europe
|
|
2501
|
+
items:
|
|
2502
|
+
type: string
|
|
2503
|
+
nullable: true
|
|
2504
|
+
type: array
|
|
2505
|
+
destination_terminals:
|
|
2506
|
+
description: A list of destination terminal names to filter by.
|
|
2507
|
+
example:
|
|
2508
|
+
- Sabine Pass
|
|
2509
|
+
- Mugardos R
|
|
2510
|
+
items:
|
|
2511
|
+
type: string
|
|
2512
|
+
nullable: true
|
|
2513
|
+
type: array
|
|
2514
|
+
from_timestamp:
|
|
2515
|
+
description: The start UTC timestamp to filter by.
|
|
2516
|
+
example: '2025-07-27T22:43:41.371622+00:00'
|
|
2517
|
+
format: date-time
|
|
2518
|
+
nullable: true
|
|
2519
|
+
type: string
|
|
2520
|
+
origin_countries:
|
|
2521
|
+
description: A list of origin ISO 3166 country names to filter by.
|
|
2522
|
+
example:
|
|
2523
|
+
- Malaysia
|
|
2524
|
+
- Japan
|
|
2525
|
+
items:
|
|
2526
|
+
type: string
|
|
2527
|
+
nullable: true
|
|
2528
|
+
type: array
|
|
2529
|
+
origin_country_codes:
|
|
2530
|
+
description: A list of origin ISO 3166-1 alpha-2 country codes to filter
|
|
2531
|
+
by.
|
|
2532
|
+
example:
|
|
2533
|
+
- MY
|
|
2534
|
+
- JP
|
|
2535
|
+
items:
|
|
2536
|
+
type: string
|
|
2537
|
+
nullable: true
|
|
2538
|
+
type: array
|
|
2539
|
+
origin_polygons:
|
|
2540
|
+
description: A closed list of closed EPSG:4326 lon, lat coordinate pairs
|
|
2541
|
+
to filter by.
|
|
2542
|
+
example:
|
|
2543
|
+
- - - 99.6
|
|
2544
|
+
- 1.0
|
|
2545
|
+
- - 99.6
|
|
2546
|
+
- 7.5
|
|
2547
|
+
- - 104.5
|
|
2548
|
+
- 7.5
|
|
2549
|
+
- - 104.5
|
|
2550
|
+
- 1.0
|
|
2551
|
+
- - 99.6
|
|
2552
|
+
- 1.0
|
|
2553
|
+
- - - 109.0
|
|
2554
|
+
- 1.0
|
|
2555
|
+
- - 109.0
|
|
2556
|
+
- 7.5
|
|
2557
|
+
- - 115.0
|
|
2558
|
+
- 7.5
|
|
2559
|
+
- - 115.0
|
|
2560
|
+
- 1.0
|
|
2561
|
+
- - 109.0
|
|
2562
|
+
- 1.0
|
|
2563
|
+
items:
|
|
2564
|
+
items:
|
|
2565
|
+
items:
|
|
2566
|
+
format: float
|
|
2567
|
+
type: number
|
|
2568
|
+
type: array
|
|
2569
|
+
type: array
|
|
2570
|
+
nullable: true
|
|
2571
|
+
type: array
|
|
2572
|
+
origin_regions:
|
|
2573
|
+
description: A list of origin regions to filter by.
|
|
2574
|
+
example:
|
|
2575
|
+
- Asia
|
|
2576
|
+
- Europe
|
|
2577
|
+
items:
|
|
2578
|
+
type: string
|
|
2579
|
+
nullable: true
|
|
2580
|
+
type: array
|
|
2581
|
+
origin_terminals:
|
|
2582
|
+
description: A list of origin terminal names to filter by.
|
|
2583
|
+
example:
|
|
2584
|
+
- Chita
|
|
2585
|
+
- Sodeshi
|
|
2586
|
+
- MLNG
|
|
2587
|
+
items:
|
|
2588
|
+
type: string
|
|
2589
|
+
nullable: true
|
|
2590
|
+
type: array
|
|
2591
|
+
to_timestamp:
|
|
2592
|
+
description: The end UTC timestamp to filter by.
|
|
2593
|
+
example: '2025-07-27T22:43:41.371622+00:00'
|
|
2594
|
+
format: date-time
|
|
2595
|
+
nullable: true
|
|
2596
|
+
type: string
|
|
2597
|
+
transaction_type:
|
|
2598
|
+
description: The type of transaction to filter by.
|
|
2599
|
+
enum:
|
|
2600
|
+
- loading
|
|
2601
|
+
- offloading
|
|
2602
|
+
example: loading
|
|
2603
|
+
nullable: true
|
|
2604
|
+
type: string
|
|
2605
|
+
type: object
|
|
2606
|
+
VolumeFlowQuery:
|
|
2607
|
+
anyOf:
|
|
2608
|
+
- required:
|
|
2609
|
+
- imos
|
|
2610
|
+
- required:
|
|
2611
|
+
- destination_terminals
|
|
2612
|
+
- required:
|
|
2613
|
+
- destination_countries
|
|
2614
|
+
- required:
|
|
2615
|
+
- destination_country_codes
|
|
2616
|
+
- required:
|
|
2617
|
+
- origin_terminals
|
|
2618
|
+
- required:
|
|
2619
|
+
- origin_terminal_ids
|
|
2620
|
+
- required:
|
|
2621
|
+
- origin_countries
|
|
2622
|
+
- required:
|
|
2623
|
+
- origin_country_codes
|
|
2624
|
+
- required:
|
|
2625
|
+
- origin_polygons
|
|
2626
|
+
- required:
|
|
2627
|
+
- destination_polygons
|
|
2628
|
+
- required:
|
|
2629
|
+
- destination_regions
|
|
2630
|
+
- required:
|
|
2631
|
+
- origin_regions
|
|
2632
|
+
- required:
|
|
2633
|
+
- transaction_type
|
|
2634
|
+
- required:
|
|
2635
|
+
- from_timestamp
|
|
2636
|
+
- required:
|
|
2637
|
+
- to_timestamp
|
|
2638
|
+
- required:
|
|
2639
|
+
- forecast_run_at
|
|
2640
|
+
properties:
|
|
2641
|
+
destination_countries:
|
|
2642
|
+
description: A list of destination ISO 3166 country names to filter by.
|
|
2643
|
+
example:
|
|
2644
|
+
- Spain
|
|
2645
|
+
- USA
|
|
2646
|
+
items:
|
|
2647
|
+
type: string
|
|
2648
|
+
nullable: true
|
|
2649
|
+
type: array
|
|
2650
|
+
destination_country_codes:
|
|
2651
|
+
description: A list of destination ISO 3166-1 alpha-2 country codes to filter
|
|
2652
|
+
by.
|
|
2653
|
+
example:
|
|
2654
|
+
- ES
|
|
2655
|
+
- US
|
|
2656
|
+
items:
|
|
2657
|
+
type: string
|
|
2658
|
+
nullable: true
|
|
2659
|
+
type: array
|
|
2660
|
+
destination_polygons:
|
|
2661
|
+
description: A closed list of closed EPSG:4326 lon, lat coordinate pairs
|
|
2662
|
+
to filter by.
|
|
2663
|
+
example:
|
|
2664
|
+
- - - -125.0
|
|
2665
|
+
- 24.5
|
|
2666
|
+
- - -125.0
|
|
2667
|
+
- 49.5
|
|
2668
|
+
- - -66.9
|
|
2669
|
+
- 49.5
|
|
2670
|
+
- - -66.9
|
|
2671
|
+
- 24.5
|
|
2672
|
+
- - -125.0
|
|
2673
|
+
- 24.5
|
|
2674
|
+
- - - 122.9
|
|
2675
|
+
- 24.0
|
|
2676
|
+
- - 122.9
|
|
2677
|
+
- 45.5
|
|
2678
|
+
- - 146.0
|
|
2679
|
+
- 45.5
|
|
2680
|
+
- - 146.0
|
|
2681
|
+
- 24.0
|
|
2682
|
+
- - 122.9
|
|
2683
|
+
- 24.0
|
|
2684
|
+
items:
|
|
2685
|
+
items:
|
|
2686
|
+
items:
|
|
2687
|
+
format: float
|
|
2688
|
+
type: number
|
|
2689
|
+
type: array
|
|
2690
|
+
type: array
|
|
2691
|
+
nullable: true
|
|
2692
|
+
type: array
|
|
2693
|
+
destination_regions:
|
|
2694
|
+
description: A list of destination regions to filter by.
|
|
2695
|
+
example:
|
|
2696
|
+
- Asia
|
|
2697
|
+
- Europe
|
|
2698
|
+
items:
|
|
2699
|
+
type: string
|
|
2700
|
+
nullable: true
|
|
2701
|
+
type: array
|
|
2702
|
+
destination_terminal_ids:
|
|
2703
|
+
example:
|
|
2704
|
+
- terminal_7e1c3aad4
|
|
2705
|
+
items:
|
|
2706
|
+
format: uuid
|
|
2707
|
+
type: string
|
|
2708
|
+
nullable: true
|
|
2709
|
+
type: array
|
|
2710
|
+
destination_terminals:
|
|
2711
|
+
description: A list of destination terminal names to filter by.
|
|
2712
|
+
example:
|
|
2713
|
+
- Sabine Pass
|
|
2714
|
+
- Mugardos R
|
|
2715
|
+
items:
|
|
2716
|
+
type: string
|
|
2717
|
+
nullable: true
|
|
2718
|
+
type: array
|
|
2719
|
+
forecast_run_at:
|
|
2720
|
+
description: The UTC timestamp of the forecast run to filter by.
|
|
2721
|
+
example: '2025-07-27T22:43:41.371622+00:00'
|
|
2722
|
+
format: date-time
|
|
2723
|
+
nullable: true
|
|
2724
|
+
type: string
|
|
2725
|
+
from_timestamp:
|
|
2726
|
+
description: The start UTC timestamp to filter by.
|
|
2727
|
+
example: '2025-07-27T22:43:41.371622+00:00'
|
|
2728
|
+
format: date-time
|
|
2729
|
+
nullable: true
|
|
2730
|
+
type: string
|
|
2731
|
+
origin_countries:
|
|
2732
|
+
description: A list of origin ISO 3166 country names to filter by.
|
|
2733
|
+
example:
|
|
2734
|
+
- Malaysia
|
|
2735
|
+
- Japan
|
|
2736
|
+
items:
|
|
2737
|
+
type: string
|
|
2738
|
+
nullable: true
|
|
2739
|
+
type: array
|
|
2740
|
+
origin_country_codes:
|
|
2741
|
+
description: A list of origin ISO 3166-1 alpha-2 country codes to filter
|
|
2742
|
+
by.
|
|
2743
|
+
example:
|
|
2744
|
+
- MY
|
|
2745
|
+
- JP
|
|
2746
|
+
items:
|
|
2747
|
+
type: string
|
|
2748
|
+
nullable: true
|
|
2749
|
+
type: array
|
|
2750
|
+
origin_polygons:
|
|
2751
|
+
description: A closed list of closed EPSG:4326 lon, lat coordinate pairs
|
|
2752
|
+
to filter by.
|
|
2753
|
+
example:
|
|
2754
|
+
- - - 99.6
|
|
2755
|
+
- 1.0
|
|
2756
|
+
- - 99.6
|
|
2757
|
+
- 7.5
|
|
2758
|
+
- - 104.5
|
|
2759
|
+
- 7.5
|
|
2760
|
+
- - 104.5
|
|
2761
|
+
- 1.0
|
|
2762
|
+
- - 99.6
|
|
2763
|
+
- 1.0
|
|
2764
|
+
- - - 109.0
|
|
2765
|
+
- 1.0
|
|
2766
|
+
- - 109.0
|
|
2767
|
+
- 7.5
|
|
2768
|
+
- - 115.0
|
|
2769
|
+
- 7.5
|
|
2770
|
+
- - 115.0
|
|
2771
|
+
- 1.0
|
|
2772
|
+
- - 109.0
|
|
2773
|
+
- 1.0
|
|
2774
|
+
items:
|
|
2775
|
+
items:
|
|
2776
|
+
items:
|
|
2777
|
+
format: float
|
|
2778
|
+
type: number
|
|
2779
|
+
type: array
|
|
2780
|
+
type: array
|
|
2781
|
+
nullable: true
|
|
2782
|
+
type: array
|
|
2783
|
+
origin_regions:
|
|
2784
|
+
description: A list of origin regions to filter by.
|
|
2785
|
+
example:
|
|
2786
|
+
- Asia
|
|
2787
|
+
- Europe
|
|
2788
|
+
items:
|
|
2789
|
+
type: string
|
|
2790
|
+
nullable: true
|
|
2791
|
+
type: array
|
|
2792
|
+
origin_terminal_ids:
|
|
2793
|
+
description: A list of origin terminal ids to filter by.
|
|
2794
|
+
example:
|
|
2795
|
+
- terminal_75375a6e8
|
|
2796
|
+
items:
|
|
2797
|
+
format: uuid
|
|
2798
|
+
type: string
|
|
2799
|
+
nullable: true
|
|
2800
|
+
type: array
|
|
2801
|
+
origin_terminals:
|
|
2802
|
+
description: A list of origin terminal names to filter by.
|
|
2803
|
+
example:
|
|
2804
|
+
- Chita
|
|
2805
|
+
- Sodeshi
|
|
2806
|
+
- MLNG
|
|
2807
|
+
items:
|
|
2808
|
+
type: string
|
|
2809
|
+
nullable: true
|
|
2810
|
+
type: array
|
|
2811
|
+
to_timestamp:
|
|
2812
|
+
description: The end UTC timestamp to filter by.
|
|
2813
|
+
example: '2025-07-27T22:43:41.371622+00:00'
|
|
2814
|
+
format: date-time
|
|
2815
|
+
nullable: true
|
|
2816
|
+
type: string
|
|
2817
|
+
transaction_type:
|
|
2818
|
+
description: The type of transaction to filter by.
|
|
2819
|
+
enum:
|
|
2820
|
+
- loading
|
|
2821
|
+
- offloading
|
|
2822
|
+
example: loading
|
|
2823
|
+
nullable: true
|
|
2824
|
+
type: string
|
|
2825
|
+
type: object
|
|
2826
|
+
units_literal:
|
|
2827
|
+
description: Supported units for volume conversion.
|
|
2828
|
+
enum:
|
|
2829
|
+
- cf
|
|
2830
|
+
- mcf
|
|
2831
|
+
- bcf
|
|
2832
|
+
- tcf
|
|
2833
|
+
- cubic_meter
|
|
2834
|
+
- cubic_meter_gas
|
|
2835
|
+
- gas_bcm
|
|
2836
|
+
- LNG_t
|
|
2837
|
+
- LNG_mt
|
|
2838
|
+
type: string
|
|
2839
|
+
securitySchemes:
|
|
2840
|
+
ApiKeyAuth:
|
|
2841
|
+
in: header
|
|
2842
|
+
name: Access-Key
|
|
2843
|
+
type: apiKey
|
|
2844
|
+
info:
|
|
2845
|
+
description: An api to use as an example of a spec driven project
|
|
2846
|
+
title: Example API
|
|
2847
|
+
version: 0.0.1
|
|
2848
|
+
openapi: 3.0.3
|
|
2849
|
+
paths:
|
|
2850
|
+
/countries:
|
|
2851
|
+
post:
|
|
2852
|
+
operationId: routes.countries.countries.post
|
|
2853
|
+
requestBody:
|
|
2854
|
+
content:
|
|
2855
|
+
application/json:
|
|
2856
|
+
schema:
|
|
2857
|
+
$ref: '#/components/schemas/CountryQuery'
|
|
2858
|
+
required: true
|
|
2859
|
+
responses:
|
|
2860
|
+
'200':
|
|
2861
|
+
content:
|
|
2862
|
+
application/json:
|
|
2863
|
+
schema:
|
|
2864
|
+
items:
|
|
2865
|
+
$ref: '#/components/schemas/CountryInformation'
|
|
2866
|
+
type: array
|
|
2867
|
+
description: A list of ISO 3166 country information
|
|
2868
|
+
'400':
|
|
2869
|
+
content:
|
|
2870
|
+
application/json:
|
|
2871
|
+
schema:
|
|
2872
|
+
$ref: '#/components/schemas/400ErrorResponse'
|
|
2873
|
+
description: Bad Request - Invalid query parameters
|
|
2874
|
+
'405':
|
|
2875
|
+
content:
|
|
2876
|
+
application/json:
|
|
2877
|
+
schema:
|
|
2878
|
+
$ref: '#/components/schemas/405ErrorResponse'
|
|
2879
|
+
description: Method Not Allowed
|
|
2880
|
+
'500':
|
|
2881
|
+
content:
|
|
2882
|
+
application/json:
|
|
2883
|
+
schema:
|
|
2884
|
+
$ref: '#/components/schemas/500ErrorResponse'
|
|
2885
|
+
description: Internal Server Error
|
|
2886
|
+
'501':
|
|
2887
|
+
content:
|
|
2888
|
+
application/json:
|
|
2889
|
+
schema:
|
|
2890
|
+
$ref: '#/components/schemas/501ErrorResponse'
|
|
2891
|
+
description: Not Implemented
|
|
2892
|
+
security:
|
|
2893
|
+
- ApiKeyAuth:
|
|
2894
|
+
- leviaton_countries
|
|
2895
|
+
summary: Returns a list of ISO 3166 country names, ISO 3166 Alpha-2 country
|
|
2896
|
+
codes, and the countries polygons including their EEZ (except United States
|
|
2897
|
+
of America -> USA). Any of these values can be used to narrow down API requests
|
|
2898
|
+
on other endpoints.
|
|
2899
|
+
x-method-name: countries
|
|
2900
|
+
/forecast_run_at_timestamps:
|
|
2901
|
+
get:
|
|
2902
|
+
operationId: routes.transactions.transactions_forecast_metadata.get
|
|
2903
|
+
responses:
|
|
2904
|
+
'200':
|
|
2905
|
+
content:
|
|
2906
|
+
application/json:
|
|
2907
|
+
schema:
|
|
2908
|
+
items:
|
|
2909
|
+
$ref: '#/components/schemas/ForecastTimestamps'
|
|
2910
|
+
type: array
|
|
2911
|
+
description: A list of distinct forecast run timestamps
|
|
2912
|
+
'400':
|
|
2913
|
+
content:
|
|
2914
|
+
application/json:
|
|
2915
|
+
schema:
|
|
2916
|
+
$ref: '#/components/schemas/400ErrorResponse'
|
|
2917
|
+
description: Bad Request - Invalid query parameters
|
|
2918
|
+
'405':
|
|
2919
|
+
content:
|
|
2920
|
+
application/json:
|
|
2921
|
+
schema:
|
|
2922
|
+
$ref: '#/components/schemas/405ErrorResponse'
|
|
2923
|
+
description: Method Not Allowed
|
|
2924
|
+
'500':
|
|
2925
|
+
content:
|
|
2926
|
+
application/json:
|
|
2927
|
+
schema:
|
|
2928
|
+
$ref: '#/components/schemas/500ErrorResponse'
|
|
2929
|
+
description: Internal Server Error
|
|
2930
|
+
'501':
|
|
2931
|
+
content:
|
|
2932
|
+
application/json:
|
|
2933
|
+
schema:
|
|
2934
|
+
$ref: '#/components/schemas/501ErrorResponse'
|
|
2935
|
+
description: Not Implemented
|
|
2936
|
+
security:
|
|
2937
|
+
- ApiKeyAuth:
|
|
2938
|
+
- leviaton_transactions
|
|
2939
|
+
summary: Returns the distinct timestamps and the IDs of all previous forecast
|
|
2940
|
+
runs
|
|
2941
|
+
x-method-name: forecast_run_at_timestamps
|
|
2942
|
+
/healthcheck:
|
|
2943
|
+
get:
|
|
2944
|
+
operationId: routes.healthcheck.healthcheck.get
|
|
2945
|
+
responses:
|
|
2946
|
+
'200':
|
|
2947
|
+
content:
|
|
2948
|
+
application/json:
|
|
2949
|
+
schema:
|
|
2950
|
+
properties:
|
|
2951
|
+
status:
|
|
2952
|
+
example: healthy
|
|
2953
|
+
type: string
|
|
2954
|
+
type: object
|
|
2955
|
+
description: The API is healthy
|
|
2956
|
+
'500':
|
|
2957
|
+
content:
|
|
2958
|
+
application/json:
|
|
2959
|
+
schema:
|
|
2960
|
+
$ref: '#/components/schemas/500ErrorResponse'
|
|
2961
|
+
description: Internal Server Error
|
|
2962
|
+
summary: Returns the health status of the API
|
|
2963
|
+
x-method-name: healthcheck
|
|
2964
|
+
/regions:
|
|
2965
|
+
post:
|
|
2966
|
+
operationId: routes.countries.regions.post
|
|
2967
|
+
requestBody:
|
|
2968
|
+
content:
|
|
2969
|
+
application/json:
|
|
2970
|
+
schema:
|
|
2971
|
+
$ref: '#/components/schemas/RegionQuery'
|
|
2972
|
+
required: true
|
|
2973
|
+
responses:
|
|
2974
|
+
'200':
|
|
2975
|
+
content:
|
|
2976
|
+
application/json:
|
|
2977
|
+
schema:
|
|
2978
|
+
items:
|
|
2979
|
+
$ref: '#/components/schemas/RegionInformation'
|
|
2980
|
+
type: array
|
|
2981
|
+
description: A list of regions
|
|
2982
|
+
'400':
|
|
2983
|
+
content:
|
|
2984
|
+
application/json:
|
|
2985
|
+
schema:
|
|
2986
|
+
$ref: '#/components/schemas/400ErrorResponse'
|
|
2987
|
+
description: Bad Request - Invalid query parameters
|
|
2988
|
+
'405':
|
|
2989
|
+
content:
|
|
2990
|
+
application/json:
|
|
2991
|
+
schema:
|
|
2992
|
+
$ref: '#/components/schemas/405ErrorResponse'
|
|
2993
|
+
description: Method Not Allowed
|
|
2994
|
+
'500':
|
|
2995
|
+
content:
|
|
2996
|
+
application/json:
|
|
2997
|
+
schema:
|
|
2998
|
+
$ref: '#/components/schemas/500ErrorResponse'
|
|
2999
|
+
description: Internal Server Error
|
|
3000
|
+
'501':
|
|
3001
|
+
content:
|
|
3002
|
+
application/json:
|
|
3003
|
+
schema:
|
|
3004
|
+
$ref: '#/components/schemas/501ErrorResponse'
|
|
3005
|
+
description: Not Implemented
|
|
3006
|
+
security:
|
|
3007
|
+
- ApiKeyAuth:
|
|
3008
|
+
- leviaton_regions
|
|
3009
|
+
summary: |
|
|
3010
|
+
Returns a list of polygons commonly used regions in an LNG context. These polygons can be used to narrow down results on other endpoints. Example polygons are "JKTC"
|
|
3011
|
+
"North West Europe", "Europe w/o Norway", "Europe w. Turkey", "North America",
|
|
3012
|
+
"South America", "Middle East", "West Africa", "South East Asia", "South Asia",
|
|
3013
|
+
"Asia w/o Middle East"
|
|
3014
|
+
x-method-name: regions
|
|
3015
|
+
/terminals:
|
|
3016
|
+
post:
|
|
3017
|
+
operationId: routes.terminals.terminal_info.post
|
|
3018
|
+
requestBody:
|
|
3019
|
+
content:
|
|
3020
|
+
application/json:
|
|
3021
|
+
schema:
|
|
3022
|
+
$ref: '#/components/schemas/TerminalQuery'
|
|
3023
|
+
required: true
|
|
3024
|
+
responses:
|
|
3025
|
+
'200':
|
|
3026
|
+
content:
|
|
3027
|
+
application/json:
|
|
3028
|
+
schema:
|
|
3029
|
+
items:
|
|
3030
|
+
$ref: '#/components/schemas/TerminalInfo'
|
|
3031
|
+
type: array
|
|
3032
|
+
description: A list of terminals
|
|
3033
|
+
'400':
|
|
3034
|
+
content:
|
|
3035
|
+
application/json:
|
|
3036
|
+
schema:
|
|
3037
|
+
$ref: '#/components/schemas/400ErrorResponse'
|
|
3038
|
+
description: Bad Request - Invalid query parameters
|
|
3039
|
+
'405':
|
|
3040
|
+
content:
|
|
3041
|
+
application/json:
|
|
3042
|
+
schema:
|
|
3043
|
+
$ref: '#/components/schemas/405ErrorResponse'
|
|
3044
|
+
description: Method Not Allowed
|
|
3045
|
+
'500':
|
|
3046
|
+
content:
|
|
3047
|
+
application/json:
|
|
3048
|
+
schema:
|
|
3049
|
+
$ref: '#/components/schemas/500ErrorResponse'
|
|
3050
|
+
description: Internal Server Error
|
|
3051
|
+
'501':
|
|
3052
|
+
content:
|
|
3053
|
+
application/json:
|
|
3054
|
+
schema:
|
|
3055
|
+
$ref: '#/components/schemas/501ErrorResponse'
|
|
3056
|
+
description: Not Implemented
|
|
3057
|
+
security:
|
|
3058
|
+
- ApiKeyAuth:
|
|
3059
|
+
- leviaton_terminals
|
|
3060
|
+
summary: Returns a list of detailed information about all liquefaction and regasification
|
|
3061
|
+
LNG terminals.
|
|
3062
|
+
x-method-name: terminals
|
|
3063
|
+
/transactions:
|
|
3064
|
+
post:
|
|
3065
|
+
operationId: routes.transactions.transactions.post
|
|
3066
|
+
requestBody:
|
|
3067
|
+
content:
|
|
3068
|
+
application/json:
|
|
3069
|
+
schema:
|
|
3070
|
+
$ref: '#/components/schemas/TransactionsQuery'
|
|
3071
|
+
required: true
|
|
3072
|
+
responses:
|
|
3073
|
+
'200':
|
|
3074
|
+
content:
|
|
3075
|
+
application/json:
|
|
3076
|
+
schema:
|
|
3077
|
+
items:
|
|
3078
|
+
$ref: '#/components/schemas/Transaction'
|
|
3079
|
+
type: array
|
|
3080
|
+
description: Successful transaction response
|
|
3081
|
+
'400':
|
|
3082
|
+
content:
|
|
3083
|
+
application/json:
|
|
3084
|
+
schema:
|
|
3085
|
+
properties:
|
|
3086
|
+
error:
|
|
3087
|
+
example: Invalid input
|
|
3088
|
+
type: string
|
|
3089
|
+
message:
|
|
3090
|
+
example: The 'from_timestamp' field is required.
|
|
3091
|
+
type: string
|
|
3092
|
+
type: object
|
|
3093
|
+
description: Bad Request - Invalid query parameters
|
|
3094
|
+
'405':
|
|
3095
|
+
content:
|
|
3096
|
+
application/json:
|
|
3097
|
+
schema:
|
|
3098
|
+
$ref: '#/components/schemas/405ErrorResponse'
|
|
3099
|
+
description: Method Not Allowed
|
|
3100
|
+
'500':
|
|
3101
|
+
content:
|
|
3102
|
+
application/json:
|
|
3103
|
+
schema:
|
|
3104
|
+
$ref: '#/components/schemas/500ErrorResponse'
|
|
3105
|
+
description: Internal Server Error
|
|
3106
|
+
'501':
|
|
3107
|
+
content:
|
|
3108
|
+
application/json:
|
|
3109
|
+
schema:
|
|
3110
|
+
$ref: '#/components/schemas/501ErrorResponse'
|
|
3111
|
+
description: Not Implemented
|
|
3112
|
+
security:
|
|
3113
|
+
- ApiKeyAuth:
|
|
3114
|
+
- leviaton_transactions
|
|
3115
|
+
summary: Returns a detailed list of historic and forecasted future transactions,
|
|
3116
|
+
including the volume, vessels, and terminals involved. The data is refreshed
|
|
3117
|
+
every hour.
|
|
3118
|
+
x-method-name: transactions
|
|
3119
|
+
/transactions/details:
|
|
3120
|
+
post:
|
|
3121
|
+
operationId: routes.transactions.transactions_details.post
|
|
3122
|
+
requestBody:
|
|
3123
|
+
content:
|
|
3124
|
+
application/json:
|
|
3125
|
+
schema:
|
|
3126
|
+
$ref: '#/components/schemas/TransactionsQuery'
|
|
3127
|
+
required: true
|
|
3128
|
+
responses:
|
|
3129
|
+
'200':
|
|
3130
|
+
content:
|
|
3131
|
+
application/json:
|
|
3132
|
+
schema:
|
|
3133
|
+
items:
|
|
3134
|
+
$ref: '#/components/schemas/TransactionDetails'
|
|
3135
|
+
type: array
|
|
3136
|
+
description: Successful transaction response
|
|
3137
|
+
'400':
|
|
3138
|
+
content:
|
|
3139
|
+
application/json:
|
|
3140
|
+
schema:
|
|
3141
|
+
properties:
|
|
3142
|
+
error:
|
|
3143
|
+
example: Invalid input
|
|
3144
|
+
type: string
|
|
3145
|
+
message:
|
|
3146
|
+
example: The 'from_timestamp' field is required.
|
|
3147
|
+
type: string
|
|
3148
|
+
type: object
|
|
3149
|
+
description: Bad Request - Invalid query parameters
|
|
3150
|
+
'405':
|
|
3151
|
+
content:
|
|
3152
|
+
application/json:
|
|
3153
|
+
schema:
|
|
3154
|
+
$ref: '#/components/schemas/405ErrorResponse'
|
|
3155
|
+
description: Method Not Allowed
|
|
3156
|
+
'500':
|
|
3157
|
+
content:
|
|
3158
|
+
application/json:
|
|
3159
|
+
schema:
|
|
3160
|
+
$ref: '#/components/schemas/500ErrorResponse'
|
|
3161
|
+
description: Internal Server Error
|
|
3162
|
+
'501':
|
|
3163
|
+
content:
|
|
3164
|
+
application/json:
|
|
3165
|
+
schema:
|
|
3166
|
+
$ref: '#/components/schemas/501ErrorResponse'
|
|
3167
|
+
description: Not Implemented
|
|
3168
|
+
security:
|
|
3169
|
+
- ApiKeyAuth:
|
|
3170
|
+
- leviaton_transactions
|
|
3171
|
+
summary: Returns a list of transaction details with multi-step ahead predicted
|
|
3172
|
+
transactions including prediction scores. The data is refreshed every hour.
|
|
3173
|
+
x-method-name: transactions_details
|
|
3174
|
+
/transactions/forecast:
|
|
3175
|
+
post:
|
|
3176
|
+
operationId: routes.transactions.transaction_forecast.post
|
|
3177
|
+
requestBody:
|
|
3178
|
+
content:
|
|
3179
|
+
application/json:
|
|
3180
|
+
schema:
|
|
3181
|
+
$ref: '#/components/schemas/TransactionsForecastQuery'
|
|
3182
|
+
required: true
|
|
3183
|
+
responses:
|
|
3184
|
+
'200':
|
|
3185
|
+
content:
|
|
3186
|
+
application/json:
|
|
3187
|
+
schema:
|
|
3188
|
+
items:
|
|
3189
|
+
$ref: '#/components/schemas/ForecastTransaction'
|
|
3190
|
+
type: array
|
|
3191
|
+
description: Successful transaction forecast history response
|
|
3192
|
+
'400':
|
|
3193
|
+
content:
|
|
3194
|
+
application/json:
|
|
3195
|
+
schema:
|
|
3196
|
+
$ref: '#/components/schemas/400ErrorResponse'
|
|
3197
|
+
description: Bad Request - Invalid query parameters
|
|
3198
|
+
'405':
|
|
3199
|
+
content:
|
|
3200
|
+
application/json:
|
|
3201
|
+
schema:
|
|
3202
|
+
$ref: '#/components/schemas/405ErrorResponse'
|
|
3203
|
+
description: Method Not Allowed
|
|
3204
|
+
'500':
|
|
3205
|
+
content:
|
|
3206
|
+
application/json:
|
|
3207
|
+
schema:
|
|
3208
|
+
$ref: '#/components/schemas/500ErrorResponse'
|
|
3209
|
+
description: Internal Server Error
|
|
3210
|
+
'501':
|
|
3211
|
+
content:
|
|
3212
|
+
application/json:
|
|
3213
|
+
schema:
|
|
3214
|
+
$ref: '#/components/schemas/501ErrorResponse'
|
|
3215
|
+
description: Not Implemented
|
|
3216
|
+
security:
|
|
3217
|
+
- ApiKeyAuth:
|
|
3218
|
+
- leviaton_transactions
|
|
3219
|
+
summary: Returns a list of forecasted transactions, including the volume, vessels,
|
|
3220
|
+
and terminals involved. The forecasts are refreshed on an hourly basis.
|
|
3221
|
+
x-method-name: transactions_forecast
|
|
3222
|
+
/transactions/forecast/details:
|
|
3223
|
+
post:
|
|
3224
|
+
operationId: routes.transactions.transaction_forecast_details.post
|
|
3225
|
+
requestBody:
|
|
3226
|
+
content:
|
|
3227
|
+
application/json:
|
|
3228
|
+
schema:
|
|
3229
|
+
$ref: '#/components/schemas/TransactionsForecastQuery'
|
|
3230
|
+
required: true
|
|
3231
|
+
responses:
|
|
3232
|
+
'200':
|
|
3233
|
+
content:
|
|
3234
|
+
application/json:
|
|
3235
|
+
schema:
|
|
3236
|
+
items:
|
|
3237
|
+
$ref: '#/components/schemas/TransactionForecastDetails'
|
|
3238
|
+
type: array
|
|
3239
|
+
description: Successful transaction forecast history response
|
|
3240
|
+
'400':
|
|
3241
|
+
content:
|
|
3242
|
+
application/json:
|
|
3243
|
+
schema:
|
|
3244
|
+
$ref: '#/components/schemas/400ErrorResponse'
|
|
3245
|
+
description: Bad Request - Invalid query parameters
|
|
3246
|
+
'405':
|
|
3247
|
+
content:
|
|
3248
|
+
application/json:
|
|
3249
|
+
schema:
|
|
3250
|
+
$ref: '#/components/schemas/405ErrorResponse'
|
|
3251
|
+
description: Method Not Allowed
|
|
3252
|
+
'500':
|
|
3253
|
+
content:
|
|
3254
|
+
application/json:
|
|
3255
|
+
schema:
|
|
3256
|
+
$ref: '#/components/schemas/500ErrorResponse'
|
|
3257
|
+
description: Internal Server Error
|
|
3258
|
+
'501':
|
|
3259
|
+
content:
|
|
3260
|
+
application/json:
|
|
3261
|
+
schema:
|
|
3262
|
+
$ref: '#/components/schemas/501ErrorResponse'
|
|
3263
|
+
description: Not Implemented
|
|
3264
|
+
security:
|
|
3265
|
+
- ApiKeyAuth:
|
|
3266
|
+
- leviaton_transactions
|
|
3267
|
+
summary: Returns a list of forecasted transactions, including a detailed route
|
|
3268
|
+
prediction breakdown. The forecasts are refreshed on an hourly basis.
|
|
3269
|
+
x-method-name: transactions_forecast_details
|
|
3270
|
+
/transactions/forecast/history:
|
|
3271
|
+
post:
|
|
3272
|
+
operationId: routes.transactions.transaction_forecast_history.post
|
|
3273
|
+
requestBody:
|
|
3274
|
+
content:
|
|
3275
|
+
application/json:
|
|
3276
|
+
schema:
|
|
3277
|
+
$ref: '#/components/schemas/TransactionsForecastQuery'
|
|
3278
|
+
required: true
|
|
3279
|
+
responses:
|
|
3280
|
+
'200':
|
|
3281
|
+
content:
|
|
3282
|
+
application/json:
|
|
3283
|
+
schema:
|
|
3284
|
+
items:
|
|
3285
|
+
$ref: '#/components/schemas/ForecastTransactionHistory'
|
|
3286
|
+
type: array
|
|
3287
|
+
description: Successful transaction forecast history response
|
|
3288
|
+
'400':
|
|
3289
|
+
content:
|
|
3290
|
+
application/json:
|
|
3291
|
+
schema:
|
|
3292
|
+
$ref: '#/components/schemas/400ErrorResponse'
|
|
3293
|
+
description: Bad Request - Invalid query parameters
|
|
3294
|
+
'405':
|
|
3295
|
+
content:
|
|
3296
|
+
application/json:
|
|
3297
|
+
schema:
|
|
3298
|
+
$ref: '#/components/schemas/405ErrorResponse'
|
|
3299
|
+
description: Method Not Allowed
|
|
3300
|
+
'500':
|
|
3301
|
+
content:
|
|
3302
|
+
application/json:
|
|
3303
|
+
schema:
|
|
3304
|
+
$ref: '#/components/schemas/500ErrorResponse'
|
|
3305
|
+
description: Internal Server Error
|
|
3306
|
+
'501':
|
|
3307
|
+
content:
|
|
3308
|
+
application/json:
|
|
3309
|
+
schema:
|
|
3310
|
+
$ref: '#/components/schemas/501ErrorResponse'
|
|
3311
|
+
description: Not Implemented
|
|
3312
|
+
security:
|
|
3313
|
+
- ApiKeyAuth:
|
|
3314
|
+
- leviaton_transactions
|
|
3315
|
+
summary: Returns historic versions of Leviaton's forecasted transactions, including
|
|
3316
|
+
the volume, vessels, and terminals involved. Fetch a *forecast_run_at_timestamp*
|
|
3317
|
+
using /forecast_run_at_timestamps endpoints and use that date to view a historic
|
|
3318
|
+
version of our forecasted transactions.
|
|
3319
|
+
x-method-name: transactions_forecast_history
|
|
3320
|
+
/transactions/forecast/history/details:
|
|
3321
|
+
post:
|
|
3322
|
+
operationId: routes.transactions.transaction_forecast_history_details.post
|
|
3323
|
+
requestBody:
|
|
3324
|
+
content:
|
|
3325
|
+
application/json:
|
|
3326
|
+
schema:
|
|
3327
|
+
$ref: '#/components/schemas/TransactionsForecastQuery'
|
|
3328
|
+
required: true
|
|
3329
|
+
responses:
|
|
3330
|
+
'200':
|
|
3331
|
+
content:
|
|
3332
|
+
application/json:
|
|
3333
|
+
schema:
|
|
3334
|
+
items:
|
|
3335
|
+
$ref: '#/components/schemas/TransactionForecastDetails'
|
|
3336
|
+
type: array
|
|
3337
|
+
description: Successful transaction forecast history response
|
|
3338
|
+
'400':
|
|
3339
|
+
content:
|
|
3340
|
+
application/json:
|
|
3341
|
+
schema:
|
|
3342
|
+
$ref: '#/components/schemas/400ErrorResponse'
|
|
3343
|
+
description: Bad Request - Invalid query parameters
|
|
3344
|
+
'405':
|
|
3345
|
+
content:
|
|
3346
|
+
application/json:
|
|
3347
|
+
schema:
|
|
3348
|
+
$ref: '#/components/schemas/405ErrorResponse'
|
|
3349
|
+
description: Method Not Allowed
|
|
3350
|
+
'500':
|
|
3351
|
+
content:
|
|
3352
|
+
application/json:
|
|
3353
|
+
schema:
|
|
3354
|
+
$ref: '#/components/schemas/500ErrorResponse'
|
|
3355
|
+
description: Internal Server Error
|
|
3356
|
+
'501':
|
|
3357
|
+
content:
|
|
3358
|
+
application/json:
|
|
3359
|
+
schema:
|
|
3360
|
+
$ref: '#/components/schemas/501ErrorResponse'
|
|
3361
|
+
description: Not Implemented
|
|
3362
|
+
security:
|
|
3363
|
+
- ApiKeyAuth:
|
|
3364
|
+
- leviaton_transactions
|
|
3365
|
+
summary: Returns a version of Leviaton's detailed history of forecasted transactions,
|
|
3366
|
+
including a detailed route prediction breakdown. Fetch a *forecast_run_at_timestamp*
|
|
3367
|
+
using /forecast_run_at_timestamps endpoints and use that date to view a historic
|
|
3368
|
+
version of our forecasted transactions.
|
|
3369
|
+
x-method-name: transactions_forecast_history_details
|
|
3370
|
+
/transactions/history:
|
|
3371
|
+
post:
|
|
3372
|
+
operationId: routes.transactions.transaction_history.post
|
|
3373
|
+
requestBody:
|
|
3374
|
+
content:
|
|
3375
|
+
application/json:
|
|
3376
|
+
schema:
|
|
3377
|
+
$ref: '#/components/schemas/TransactionsQuery'
|
|
3378
|
+
required: true
|
|
3379
|
+
responses:
|
|
3380
|
+
'200':
|
|
3381
|
+
content:
|
|
3382
|
+
application/json:
|
|
3383
|
+
schema:
|
|
3384
|
+
items:
|
|
3385
|
+
$ref: '#/components/schemas/TransactionHistory'
|
|
3386
|
+
type: array
|
|
3387
|
+
description: Successful transaction history response
|
|
3388
|
+
'400':
|
|
3389
|
+
content:
|
|
3390
|
+
application/json:
|
|
3391
|
+
schema:
|
|
3392
|
+
properties:
|
|
3393
|
+
error:
|
|
3394
|
+
example: Invalid input
|
|
3395
|
+
type: string
|
|
3396
|
+
message:
|
|
3397
|
+
example: The 'from_timestamp' field is required.
|
|
3398
|
+
type: string
|
|
3399
|
+
type: object
|
|
3400
|
+
description: Bad Request - Invalid query parameters
|
|
3401
|
+
'405':
|
|
3402
|
+
content:
|
|
3403
|
+
application/json:
|
|
3404
|
+
schema:
|
|
3405
|
+
$ref: '#/components/schemas/405ErrorResponse'
|
|
3406
|
+
description: Method Not Allowed
|
|
3407
|
+
'500':
|
|
3408
|
+
content:
|
|
3409
|
+
application/json:
|
|
3410
|
+
schema:
|
|
3411
|
+
$ref: '#/components/schemas/500ErrorResponse'
|
|
3412
|
+
description: Internal Server Error
|
|
3413
|
+
'501':
|
|
3414
|
+
content:
|
|
3415
|
+
application/json:
|
|
3416
|
+
schema:
|
|
3417
|
+
$ref: '#/components/schemas/501ErrorResponse'
|
|
3418
|
+
description: Not Implemented
|
|
3419
|
+
security:
|
|
3420
|
+
- ApiKeyAuth:
|
|
3421
|
+
- leviaton_transactions
|
|
3422
|
+
summary: Returns a history of transactions, including the volume, vessels, and
|
|
3423
|
+
terminals involved
|
|
3424
|
+
x-method-name: transactions_history
|
|
3425
|
+
/vessels:
|
|
3426
|
+
post:
|
|
3427
|
+
operationId: routes.vessels.vessel_info.post
|
|
3428
|
+
requestBody:
|
|
3429
|
+
content:
|
|
3430
|
+
application/json:
|
|
3431
|
+
schema:
|
|
3432
|
+
$ref: '#/components/schemas/VesselQuery'
|
|
3433
|
+
required: true
|
|
3434
|
+
responses:
|
|
3435
|
+
'200':
|
|
3436
|
+
content:
|
|
3437
|
+
application/json:
|
|
3438
|
+
schema:
|
|
3439
|
+
items:
|
|
3440
|
+
$ref: '#/components/schemas/VesselInfo'
|
|
3441
|
+
type: array
|
|
3442
|
+
description: A list of vessels
|
|
3443
|
+
'400':
|
|
3444
|
+
content:
|
|
3445
|
+
application/json:
|
|
3446
|
+
schema:
|
|
3447
|
+
$ref: '#/components/schemas/400ErrorResponse'
|
|
3448
|
+
description: Bad Request - Invalid query parameters
|
|
3449
|
+
'405':
|
|
3450
|
+
content:
|
|
3451
|
+
application/json:
|
|
3452
|
+
schema:
|
|
3453
|
+
$ref: '#/components/schemas/405ErrorResponse'
|
|
3454
|
+
description: Method Not Allowed
|
|
3455
|
+
'500':
|
|
3456
|
+
content:
|
|
3457
|
+
application/json:
|
|
3458
|
+
schema:
|
|
3459
|
+
$ref: '#/components/schemas/500ErrorResponse'
|
|
3460
|
+
description: Internal Server Error
|
|
3461
|
+
'501':
|
|
3462
|
+
content:
|
|
3463
|
+
application/json:
|
|
3464
|
+
schema:
|
|
3465
|
+
$ref: '#/components/schemas/501ErrorResponse'
|
|
3466
|
+
description: Not Implemented
|
|
3467
|
+
security:
|
|
3468
|
+
- ApiKeyAuth:
|
|
3469
|
+
- leviaton_vessels
|
|
3470
|
+
summary: Returns detailed information about vessels, their position, and next
|
|
3471
|
+
most likely destination.
|
|
3472
|
+
x-method-name: vessels
|
|
3473
|
+
/vessels/details:
|
|
3474
|
+
post:
|
|
3475
|
+
operationId: routes.vessels.vessel_details.post
|
|
3476
|
+
requestBody:
|
|
3477
|
+
content:
|
|
3478
|
+
application/json:
|
|
3479
|
+
schema:
|
|
3480
|
+
$ref: '#/components/schemas/VesselQuery'
|
|
3481
|
+
application/x-ndjson:
|
|
3482
|
+
schema:
|
|
3483
|
+
$ref: '#/components/schemas/VesselQuery'
|
|
3484
|
+
required: true
|
|
3485
|
+
responses:
|
|
3486
|
+
'200':
|
|
3487
|
+
content:
|
|
3488
|
+
application/json:
|
|
3489
|
+
schema:
|
|
3490
|
+
items:
|
|
3491
|
+
$ref: '#/components/schemas/VesselDetails'
|
|
3492
|
+
type: array
|
|
3493
|
+
application/x-ndjson:
|
|
3494
|
+
schema:
|
|
3495
|
+
items:
|
|
3496
|
+
$ref: '#/components/schemas/VesselDetails'
|
|
3497
|
+
type: array
|
|
3498
|
+
description: A list of vessels
|
|
3499
|
+
'400':
|
|
3500
|
+
content:
|
|
3501
|
+
application/json:
|
|
3502
|
+
schema:
|
|
3503
|
+
$ref: '#/components/schemas/400ErrorResponse'
|
|
3504
|
+
description: Bad Request - Invalid query parameters
|
|
3505
|
+
'405':
|
|
3506
|
+
content:
|
|
3507
|
+
application/json:
|
|
3508
|
+
schema:
|
|
3509
|
+
$ref: '#/components/schemas/405ErrorResponse'
|
|
3510
|
+
description: Method Not Allowed
|
|
3511
|
+
'500':
|
|
3512
|
+
content:
|
|
3513
|
+
application/json:
|
|
3514
|
+
schema:
|
|
3515
|
+
$ref: '#/components/schemas/500ErrorResponse'
|
|
3516
|
+
description: Internal Server Error
|
|
3517
|
+
'501':
|
|
3518
|
+
content:
|
|
3519
|
+
application/json:
|
|
3520
|
+
schema:
|
|
3521
|
+
$ref: '#/components/schemas/501ErrorResponse'
|
|
3522
|
+
description: Not Implemented
|
|
3523
|
+
security:
|
|
3524
|
+
- ApiKeyAuth:
|
|
3525
|
+
- leviaton_vessels
|
|
3526
|
+
summary: Returns detailed information about vessels, their position, and detailed
|
|
3527
|
+
predictions incl. prediction scores about their next destination.
|
|
3528
|
+
x-method-name: vessels_details
|
|
3529
|
+
/vessels/history:
|
|
3530
|
+
post:
|
|
3531
|
+
operationId: routes.vessels.vessel_history.post
|
|
3532
|
+
requestBody:
|
|
3533
|
+
content:
|
|
3534
|
+
application/json:
|
|
3535
|
+
schema:
|
|
3536
|
+
$ref: '#/components/schemas/VesselHistoryQuery'
|
|
3537
|
+
required: true
|
|
3538
|
+
responses:
|
|
3539
|
+
'200':
|
|
3540
|
+
content:
|
|
3541
|
+
application/json:
|
|
3542
|
+
schema:
|
|
3543
|
+
items:
|
|
3544
|
+
$ref: '#/components/schemas/VesselInfo'
|
|
3545
|
+
type: array
|
|
3546
|
+
application/x-ndjson:
|
|
3547
|
+
schema:
|
|
3548
|
+
items:
|
|
3549
|
+
$ref: '#/components/schemas/VesselInfo'
|
|
3550
|
+
type: array
|
|
3551
|
+
description: Successful vessel history response
|
|
3552
|
+
'400':
|
|
3553
|
+
content:
|
|
3554
|
+
application/json:
|
|
3555
|
+
schema:
|
|
3556
|
+
$ref: '#/components/schemas/400ErrorResponse'
|
|
3557
|
+
description: Bad Request - Invalid parameters
|
|
3558
|
+
'405':
|
|
3559
|
+
content:
|
|
3560
|
+
application/json:
|
|
3561
|
+
schema:
|
|
3562
|
+
$ref: '#/components/schemas/405ErrorResponse'
|
|
3563
|
+
description: Method Not Allowed
|
|
3564
|
+
'500':
|
|
3565
|
+
content:
|
|
3566
|
+
application/json:
|
|
3567
|
+
schema:
|
|
3568
|
+
$ref: '#/components/schemas/500ErrorResponse'
|
|
3569
|
+
description: Internal Server Error
|
|
3570
|
+
'501':
|
|
3571
|
+
content:
|
|
3572
|
+
application/json:
|
|
3573
|
+
schema:
|
|
3574
|
+
$ref: '#/components/schemas/501ErrorResponse'
|
|
3575
|
+
description: Not Implemented
|
|
3576
|
+
security:
|
|
3577
|
+
- ApiKeyAuth:
|
|
3578
|
+
- leviaton_vessels
|
|
3579
|
+
summary: Returns detailed information about vessel activity and their position
|
|
3580
|
+
history.
|
|
3581
|
+
x-method-name: vessels_history
|
|
3582
|
+
/volume_flows:
|
|
3583
|
+
post:
|
|
3584
|
+
operationId: routes.volume_flows.volume_flows.post
|
|
3585
|
+
requestBody:
|
|
3586
|
+
content:
|
|
3587
|
+
application/json:
|
|
3588
|
+
schema:
|
|
3589
|
+
$ref: '#/components/schemas/VolumeFlowQuery'
|
|
3590
|
+
required: true
|
|
3591
|
+
responses:
|
|
3592
|
+
'200':
|
|
3593
|
+
content:
|
|
3594
|
+
application/json:
|
|
3595
|
+
schema:
|
|
3596
|
+
items:
|
|
3597
|
+
$ref: '#/components/schemas/VolumeFlow'
|
|
3598
|
+
type: array
|
|
3599
|
+
description: Successful volume flows response
|
|
3600
|
+
'400':
|
|
3601
|
+
content:
|
|
3602
|
+
application/json:
|
|
3603
|
+
schema:
|
|
3604
|
+
$ref: '#/components/schemas/400ErrorResponse'
|
|
3605
|
+
description: Bad Request - Invalid query parameters
|
|
3606
|
+
'405':
|
|
3607
|
+
content:
|
|
3608
|
+
application/json:
|
|
3609
|
+
schema:
|
|
3610
|
+
$ref: '#/components/schemas/405ErrorResponse'
|
|
3611
|
+
description: Method Not Allowed
|
|
3612
|
+
'500':
|
|
3613
|
+
content:
|
|
3614
|
+
application/json:
|
|
3615
|
+
schema:
|
|
3616
|
+
$ref: '#/components/schemas/500ErrorResponse'
|
|
3617
|
+
description: Internal Server Error
|
|
3618
|
+
'501':
|
|
3619
|
+
content:
|
|
3620
|
+
application/json:
|
|
3621
|
+
schema:
|
|
3622
|
+
$ref: '#/components/schemas/501ErrorResponse'
|
|
3623
|
+
description: Not Implemented
|
|
3624
|
+
security:
|
|
3625
|
+
- ApiKeyAuth:
|
|
3626
|
+
- leviaton_volume_flows
|
|
3627
|
+
summary: |
|
|
3628
|
+
Returns LNG volumes transferred to specified terminals or countries over a given time period.
|
|
3629
|
+
The volume_flows endpoint calculates the LNG volume transferred to a set of destination terminals/countries (and optionally from a set of origin terminals/countries) for a given time range. For historical time periods this is simply the observed number of transactions that occurred at the destinations.
|
|
3630
|
+
For future time periods, forecasted volumes are calculated. Forecasted volumes are calculated using the route_score_weighted_volume field from the transactions/forecast endpoint. The route_score_weighted_volume is the volume of a potential transaction multiplied by the likelihood of that transaction occurring. Forecast volumes are the sum of the route_score_weighted_volume for the destinations in the given time period. Note that this means partial transactions are included in the forecast volume. Uncertainties in the forecast volume are estimated using our uncertainty in the forecast transaction timestamp.
|
|
3631
|
+
|
|
3632
|
+
- Historical data:
|
|
3633
|
+
|
|
3634
|
+
- Shows actual observed transaction volumes.
|
|
3635
|
+
|
|
3636
|
+
- Forecasted data:
|
|
3637
|
+
|
|
3638
|
+
- Predicts future volumes based on:
|
|
3639
|
+
|
|
3640
|
+
- Potential vessel arrivals and their cargo volumes
|
|
3641
|
+
- Probability of each arrival occurring
|
|
3642
|
+
- Arrival time uncertainties
|
|
3643
|
+
x-method-name: volume_flows
|
|
3644
|
+
/volume_flows/history:
|
|
3645
|
+
post:
|
|
3646
|
+
operationId: routes.volume_flows.volume_flows_history.post
|
|
3647
|
+
requestBody:
|
|
3648
|
+
content:
|
|
3649
|
+
application/json:
|
|
3650
|
+
schema:
|
|
3651
|
+
$ref: '#/components/schemas/VolumeFlowHistoryQuery'
|
|
3652
|
+
required: true
|
|
3653
|
+
responses:
|
|
3654
|
+
'200':
|
|
3655
|
+
content:
|
|
3656
|
+
application/json:
|
|
3657
|
+
schema:
|
|
3658
|
+
items:
|
|
3659
|
+
$ref: '#/components/schemas/VolumeFlow'
|
|
3660
|
+
type: array
|
|
3661
|
+
description: Successful volume flows history response
|
|
3662
|
+
'400':
|
|
3663
|
+
content:
|
|
3664
|
+
application/json:
|
|
3665
|
+
schema:
|
|
3666
|
+
$ref: '#/components/schemas/400ErrorResponse'
|
|
3667
|
+
description: Bad Request - Invalid query parameters
|
|
3668
|
+
'405':
|
|
3669
|
+
content:
|
|
3670
|
+
application/json:
|
|
3671
|
+
schema:
|
|
3672
|
+
$ref: '#/components/schemas/405ErrorResponse'
|
|
3673
|
+
description: Method Not Allowed
|
|
3674
|
+
'500':
|
|
3675
|
+
content:
|
|
3676
|
+
application/json:
|
|
3677
|
+
schema:
|
|
3678
|
+
$ref: '#/components/schemas/500ErrorResponse'
|
|
3679
|
+
description: Internal Server Error
|
|
3680
|
+
'501':
|
|
3681
|
+
content:
|
|
3682
|
+
application/json:
|
|
3683
|
+
schema:
|
|
3684
|
+
$ref: '#/components/schemas/501ErrorResponse'
|
|
3685
|
+
description: Not Implemented
|
|
3686
|
+
security:
|
|
3687
|
+
- ApiKeyAuth:
|
|
3688
|
+
- leviaton_volume_flows
|
|
3689
|
+
summary: |
|
|
3690
|
+
Returns historic versions of Leviaton's LNG volumes transferred to specified terminals or countries over a given time period.
|
|
3691
|
+
The volume_flows endpoint calculates the LNG volume transferred to a set of destination terminals/countries (and optionally from a set of origin terminals/countries) for a given time range. For historical time periods this is simply the observed number of transactions that occurred at the destinations.
|
|
3692
|
+
For future time periods, forecasted volumes are calculated. Forecasted volumes are calculated using the route_score_weighted_volume field from the transactions/forecast endpoint. The route_score_weighted_volume is the volume of a potential transaction multiplied by the likelihood of that transaction occurring. Forecast volumes are the sum of the route_score_weighted_volume for the destinations in the given time period. Note that this means partial transactions are included in the forecast volume. Uncertainties in the forecast volume are estimated using our uncertainty in the forecast transaction timestamp.
|
|
3693
|
+
|
|
3694
|
+
- Historical data:
|
|
3695
|
+
|
|
3696
|
+
- Shows actual observed transaction volumes.
|
|
3697
|
+
|
|
3698
|
+
- Forecasted data:
|
|
3699
|
+
|
|
3700
|
+
- Predicts future volumes based on:
|
|
3701
|
+
|
|
3702
|
+
- Potential vessel arrivals and their cargo volumes
|
|
3703
|
+
- Probability of each arrival occurring
|
|
3704
|
+
- Arrival time uncertainties
|
|
3705
|
+
x-method-name: volume_flows_history
|
|
3706
|
+
servers:
|
|
3707
|
+
- url: /v1
|