-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathgridtariffapi.json
More file actions
520 lines (520 loc) · 14.7 KB
/
Copy pathgridtariffapi.json
File metadata and controls
520 lines (520 loc) · 14.7 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
{
"openapi": "3.0.1",
"info": {
"title": "Grid Tariff API",
"description": "Provides grid tariffs from Swedish DSOs.",
"version": "0.3.2",
"contact": {
"name": "Grid Tariff API",
"url": "https://github.com/RI-SE/Eltariff-API"
},
"license": {
"name": "Licence",
"url": "https://github.com/RI-SE/Eltariff-API/blob/main/LICENSE"
}
},
"servers": [
{
"url": "/"
}
],
"security": [
{
"BearerAuth": []
}
],
"tags": [
{
"name": "Information",
"description": "Information about the API implementation."
},
{
"name": "Tariff",
"description": "Grid tariff related operations."
},
{
"name": "Price",
"description": "Price related operations."
}
],
"paths": {
"/info": {
"get": {
"tags": [
"Information"
],
"operationId": "GetInfo",
"summary": "Get information about the API implementation.",
"description": "Get information about the API implementation.",
"responses": {
"200": {
"description": "Information about the API implementation.",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/InfoResponse"
}
}
}
},
"400": {
"$ref": "#/components/responses/BadRequest"
},
"501": {
"$ref": "#/components/responses/NotImplemented"
}
}
}
},
"/tariffs": {
"get": {
"tags": [
"Tariff"
],
"operationId": "GetTariffs",
"summary": "Get a collection of publicly available tariffs for the DSO without any customer data.",
"description": "Get a collection of publicly available tariffs for the DSO without any customer data.",
"responses": {
"200": {
"description": "All publicly available tariffs without any customer data.",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/TariffsResponse"
}
}
}
},
"400": {
"$ref": "#/components/responses/BadRequest"
},
"501": {
"$ref": "#/components/responses/NotImplemented"
}
}
}
},
"/tariffs/{id}": {
"parameters": [
{
"$ref": "#/components/parameters/IdInPath"
}
],
"get": {
"tags": [
"Tariff"
],
"operationId": "GetTariffById",
"summary": "Get grid tariff for the provided id.",
"description": "Get grid tariff for the provided id.",
"responses": {
"200": {
"description": "Single grid tariff object.",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/TariffResponse"
}
}
}
},
"400": {
"$ref": "#/components/responses/BadRequest"
},
"404": {
"$ref": "#/components/responses/NotFound"
},
"501": {
"$ref": "#/components/responses/NotImplemented"
}
}
}
},
"/tariffs/search": {
"post": {
"tags": [
"Tariff"
],
"operationId": "SearchTariffs",
"summary": "Search for grid tariffs matching provided search parameters.",
"description": "Search for grid tariffs matching provided search parameters.",
"requestBody": {
"description": "Search parameters.",
"required": true,
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/TariffsSearchRequest"
}
}
}
},
"responses": {
"200": {
"description": "Tariffs matching the search criteria and mapping between tariff and search parameters.",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/TariffsSearchResponse"
}
}
}
},
"400": {
"$ref": "#/components/responses/BadRequest"
},
"401": {
"$ref": "#/components/responses/Unauthorized"
},
"403": {
"$ref": "#/components/responses/Forbidden"
},
"404": {
"$ref": "#/components/responses/NotFound"
},
"501": {
"$ref": "#/components/responses/NotImplemented"
}
}
}
},
"/prices": {
"parameters": [
{
"name": "componentId",
"description": "A price component id.",
"in": "query",
"required": false,
"schema": {
"$ref": "common.schema.json#/definitions/Uuid"
}
},
{
"name": "product",
"description": "The product defined in the parent tariff object of the power price component.",
"in": "query",
"required": false,
"schema": {
"type": "string",
"description": "The tariff product.",
"example": "HOUR_63A_HOUSE",
"additionalProperties": false
}
},
{
"name": "date",
"description": "Get all defined prices for the given date.",
"in": "query",
"required": false,
"schema": {
"$ref": "time.schema.json#/definitions/Date"
}
},
{
"name": "fromIncluding",
"description": "Get all defined prices from this time and forward. Default is today midnight.",
"in": "query",
"required": false,
"schema": {
"$ref": "time.schema.json#/definitions/DateTimeWithOffset"
}
},
{
"name": "toExcluding",
"description": "Get all defined prices up to this time. Default is fromIncluding + 7 days.",
"in": "query",
"required": false,
"schema": {
"$ref": "time.schema.json#/definitions/DateTimeWithOffset"
}
}
],
"get": {
"tags": [
"Price"
],
"operationId": "GetPrices",
"summary": "Get prices for a price component.",
"description": "Returns prices for a price component for a given time period. The time period defaults to fromIncluding = today 00:00 and toExcluding = today 00:00 plus 7 full days. By looking 7 days ahead, forecasted prices are also returned.",
"responses": {
"200": {
"$ref": "#/components/responses/Prices"
},
"400": {
"$ref": "#/components/responses/BadRequest"
},
"404": {
"$ref": "#/components/responses/NotFound"
},
"501": {
"$ref": "#/components/responses/NotImplemented"
}
}
}
}
},
"components": {
"securitySchemes": {
"BearerAuth": {
"type": "http",
"scheme": "bearer",
"bearerFormat": "JWT"
}
},
"parameters": {
"IdInPath": {
"name": "id",
"description": "Unique identifier for an object",
"in": "path",
"required": true,
"schema": {
"$ref": "common.schema.json#/definitions/Uuid"
}
}
},
"schemas": {
"InfoResponse": {
"type": "object",
"properties": {
"name": {
"type": "string",
"description": "Name of the implemented API.",
"default": "Grid Tariff API"
},
"apiVersion": {
"type": "string",
"description": "Version of the implemented API specification.",
"example": "1.2.3"
},
"implementationVersion": {
"type": "string",
"description": "Version of the implementation. The format is set by the operator and can differ. In this example -r4 is the revision number of the implementation and the first three numbers the API version.",
"example": "1.2.3-r4"
},
"tariffDataLastUpdated": {
"description": "Timestamp that defines when the tariff data in /tariffs was last updated. Date-time in ISO 8601 / RFC 3339 style with required numeric offset in the form ±HH:MM.",
"allOf": [
{ "$ref": "time.schema.json#/definitions/DateTimeWithOffset" }
]
},
"operator": {
"type": "string",
"description": "Name of the company or organization operating this server.",
"example": "Grid Company AB"
},
"timeZone": {
"$ref": "time.schema.json#/definitions/TimeZone"
},
"identityProviderUrl": {
"type": "string",
"description": "URL to the identity provider server which provides access tokens.",
"example": "https://idp.gridcompany.se/oath2/token"
}
},
"required": [
"name",
"apiVersion",
"implementationVersion",
"tariffDataLastUpdated",
"operator",
"timeZone"
],
"additionalProperties": true
},
"TariffsResponse": {
"type": "object",
"properties": {
"tariffs": {
"type": "array",
"items": {
"$ref": "tariff.schema.json#/definitions/Tariff"
}
},
"calendarPatterns": {
"type": "array",
"items": {
"$ref": "time.schema.json#/definitions/CalendarPattern"
}
}
},
"required": [
"tariffs",
"calendarPatterns"
],
"additionalProperties": false
},
"TariffResponse": {
"type": "object",
"properties": {
"tariff": {
"$ref": "tariff.schema.json#/definitions/Tariff"
},
"calendarPatterns": {
"type": "array",
"items": {
"$ref": "time.schema.json#/definitions/CalendarPattern"
}
}
},
"required": [
"tariff",
"calendarPatterns"
],
"additionalProperties": false
},
"TariffsSearchRequest": {
"type": "object",
"properties": {
"meteringPointIds": {
"type": "array",
"description": "List of MPIDs you are the registered owner of as a private person or your company has e legal reason to request in a customer/provider relationship.",
"items": {
"$ref": "common.schema.json#/definitions/MeteringPointId"
}
}
},
"required": [
"meteringPointIds"
],
"additionalProperties": false
},
"TariffsSearchResponse": {
"type": "object",
"properties": {
"tariffs": {
"type": "array",
"items": {
"$ref": "tariff.schema.json#/definitions/Tariff"
}
},
"mappings": {
"type": "array",
"items": {
"$ref": "common.schema.json#/definitions/TariffMapping"
}
}
},
"required": [
"tariffs",
"mappings"
],
"additionalProperties": false
},
"ProblemDetails": {
"type": "object",
"properties": {
"status": {
"type": "integer",
"format": "int32",
"description": "HTTP status code of the error."
},
"title": {
"type": "string",
"description": "A short, human-readable summary of the problem."
},
"detail": {
"type": "string",
"description": "A detailed message explaining the error. May include an URL to a help page."
}
},
"required": [
"status",
"title"
],
"additionalProperties": true
}
},
"responses": {
"Prices": {
"description": "The prices for the provided component id and time period.",
"content": {
"application/json": {
"schema": {
"$ref": "price.schema.json#/definitions/PricesResponse"
}
}
}
},
"BadRequest": {
"description": "Bad Request",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ProblemDetails"
},
"example": {
"status": 400,
"title": "Bad Request",
"detail": "The request object is invalid.",
"instance": "/endpoint"
}
}
}
},
"Unauthorized": {
"description": "Unauthorized",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ProblemDetails"
},
"example": {
"status": 401,
"title": "Unauthorized",
"detail": "You do not have access to make this request.",
"instance": "/endpoint"
}
}
}
},
"Forbidden": {
"description": "Forbidden",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ProblemDetails"
},
"example": {
"status": 403,
"title": "Forbidden",
"detail": "The request you made is not allowed.",
"instance": "/endpoint"
}
}
}
},
"NotFound": {
"description": "Not Found",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ProblemDetails"
},
"example": {
"status": 404,
"title": "Not Found",
"detail": "The requested resource could not be found.",
"instance": "/endpoint"
}
}
}
},
"NotImplemented": {
"description": "Not Implemented",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ProblemDetails"
},
"example": {
"status": 501,
"title": "Not Implemented",
"detail": "The request method is not yet implemented on this server.",
"instance": "/endpoint"
}
}
}
}
}
}
}