-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathopenapi.yaml
More file actions
923 lines (923 loc) · 22.1 KB
/
openapi.yaml
File metadata and controls
923 lines (923 loc) · 22.1 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
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
openapi: 3.1.0
info:
title: Termina Public API
version: 1.0.0
description: Public API for programmatic access to Termina services.
paths:
/api/v2/public/bills/upload/:
post:
operationId: public_bills_upload_create
description: Upload an energy bill PDF for automated extraction and storage.
tags:
- public
requestBody:
content:
multipart/form-data:
schema:
type: object
properties:
file:
type: string
format: binary
security:
- apiKey: []
responses:
'400':
content:
application/json:
schema:
$ref: '#/components/schemas/PublicBillsUploadCreateErrorResponse400'
description: ''
'401':
content:
application/json:
schema:
$ref: '#/components/schemas/ErrorResponse401'
examples:
AuthenticationFailed:
value:
type: client_error
errors:
- code: authentication_failed
detail: Incorrect authentication credentials.
attr: null
NotAuthenticated:
value:
type: client_error
errors:
- code: not_authenticated
detail: Authentication credentials were not provided.
attr: null
description: ''
'403':
content:
application/json:
schema:
$ref: '#/components/schemas/ErrorResponse403'
examples:
PermissionDenied:
value:
type: client_error
errors:
- code: permission_denied
detail: You do not have permission to perform this action.
attr: null
description: ''
'405':
content:
application/json:
schema:
$ref: '#/components/schemas/ErrorResponse405'
examples:
MethodNotAllowed:
value:
type: client_error
errors:
- code: method_not_allowed
detail: Method "get" not allowed.
attr: null
description: ''
'406':
content:
application/json:
schema:
$ref: '#/components/schemas/ErrorResponse406'
examples:
NotAcceptable:
value:
type: client_error
errors:
- code: not_acceptable
detail: Could not satisfy the request Accept header.
attr: null
description: ''
'415':
content:
application/json:
schema:
$ref: '#/components/schemas/ErrorResponse415'
examples:
UnsupportedMediaType:
value:
type: client_error
errors:
- code: unsupported_media_type
detail: Unsupported media type "application/json" in request.
attr: null
description: ''
'429':
content:
application/json:
schema:
$ref: '#/components/schemas/ErrorResponse429'
examples:
Throttled:
value:
type: client_error
errors:
- code: throttled
detail: Request was throttled.
attr: null
description: ''
'500':
content:
application/json:
schema:
$ref: '#/components/schemas/ErrorResponse500'
examples:
APIException:
value:
type: server_error
errors:
- code: error
detail: A server error occurred.
attr: null
description: ''
'200':
content:
application/json:
schema:
$ref: '#/components/schemas/BillUploadResponse'
description: ''
components:
schemas:
BillQuantityUnit:
enum:
- kWh
- MJ
- m3
- kW
- kW day
- kVA
- kVA day
- days
- months
- kg
- bottle
- litre
title: BillQuantityUnit
type: string
BillRateUnit:
enum:
- cent/kWh
- $/kWh
- cent/MJ
- $/MJ
- cent/day
- $/day
- $/month
- $/bill
- $/year
- $/kW
- $/kW/day
- $/kW/month
- $/kVA
- $/kVA/day
- $/kVA/month
- $/m3
- cent/m3
- $/kg
- $/bottle
- $/litre
title: BillRateUnit
type: string
BillUploadResponse:
properties:
bill_uuid:
title: Bill Uuid
type: string
energy_data:
anyOf:
- $ref: '#/components/schemas/EnergyBill'
- type: 'null'
validation_issues:
items:
$ref: '#/components/schemas/ValidationIssue'
title: Validation Issues
type: array
required:
- bill_uuid
- energy_data
- validation_issues
title: BillUploadResponse
type: object
BillingTimePeriod:
properties:
start_date:
title: Start Date
type: string
end_date:
title: End Date
type: string
days:
anyOf:
- type: integer
- type: 'null'
default: null
title: Days
required:
- start_date
- end_date
title: BillingTimePeriod
type: object
ChargeLineItem:
properties:
retailer_note:
anyOf:
- type: string
- type: 'null'
default: null
description: Supplementary retailer text for this charge, or null
title: Retailer Note
classification:
$ref: '#/components/schemas/PriceClassification'
description: Standardised charge classification
tariff_name:
description: Charge name as shown on the bill
title: Tariff Name
type: string
rate_steps:
items:
$ref: '#/components/schemas/RateStep'
title: Rate Steps
type: array
amount:
title: Amount
type: number
period_start:
anyOf:
- type: string
- type: 'null'
default: null
title: Period Start
period_end:
anyOf:
- type: string
- type: 'null'
default: null
title: Period End
is_all_other_times:
anyOf:
- type: boolean
- type: 'null'
default: false
description: True if this is a catch-all time band covering all remaining
times
title: Is All Other Times
tou_timing:
anyOf:
- items:
$ref: '#/components/schemas/TimingBlock'
type: array
- type: 'null'
default: null
description: Time-of-use timing windows for this charge, or null
title: Tou Timing
required:
- classification
- tariff_name
- rate_steps
- amount
title: ChargeLineItem
type: object
ClientErrorEnum:
enum:
- client_error
type: string
EnergyBill:
properties:
schema_version:
default: '1.0'
description: Schema version
title: Schema Version
type: string
retailer_name:
description: Energy retailer name
title: Retailer Name
type: string
account_number:
title: Account Number
type: string
account_name:
anyOf:
- type: string
- type: 'null'
default: null
title: Account Name
fuel_type:
$ref: '#/components/schemas/EnergyTypeEnum'
description: 'Fuel type: ''elec'' (electricity) or ''gas'''
site_identifier:
title: Site Identifier
type: string
supply_address:
anyOf:
- type: string
- type: 'null'
default: null
title: Supply Address
billing_period:
$ref: '#/components/schemas/BillingTimePeriod'
invoice_number:
title: Invoice Number
type: string
issue_date:
anyOf:
- type: string
- type: 'null'
default: null
title: Issue Date
due_date:
anyOf:
- type: string
- type: 'null'
default: null
title: Due Date
read_type:
anyOf:
- $ref: '#/components/schemas/ReadType'
- type: 'null'
default: null
rates_include_gst:
anyOf:
- type: boolean
- type: 'null'
default: null
title: Rates Include Gst
charges:
description: List of energy-related charges and credits
items:
$ref: '#/components/schemas/ChargeLineItem'
title: Charges
type: array
total_amount:
description: Net total of all charges and credits including GST
title: Total Amount
type: number
total_due:
anyOf:
- type: number
- type: 'null'
default: null
description: Total account balance due including prior balance, or null
if no prior balance
title: Total Due
bpay_biller_code:
anyOf:
- type: string
- type: 'null'
default: null
title: Bpay Biller Code
bpay_customer_reference:
anyOf:
- type: string
- type: 'null'
default: null
title: Bpay Customer Reference
is_final_bill:
anyOf:
- type: boolean
- type: 'null'
default: null
description: Whether this is a final/closing bill
title: Is Final Bill
tariff_code:
anyOf:
- type: string
- type: 'null'
default: null
title: Tariff Code
meter_number:
anyOf:
- type: string
- type: 'null'
default: null
title: Meter Number
meter_reads:
anyOf:
- items:
$ref: '#/components/schemas/MeterRead'
type: array
- type: 'null'
default: null
title: Meter Reads
required:
- retailer_name
- account_number
- fuel_type
- site_identifier
- billing_period
- invoice_number
- charges
- total_amount
title: EnergyBill
type: object
EnergyTypeEnum:
enum:
- elec
- gas
- lpg
title: EnergyTypeEnum
type: string
Error401:
type: object
properties:
code:
$ref: '#/components/schemas/ErrorCode401Enum'
detail:
type: string
attr:
type: string
nullable: true
required:
- attr
- code
- detail
Error403:
type: object
properties:
code:
$ref: '#/components/schemas/ErrorCode403Enum'
detail:
type: string
attr:
type: string
nullable: true
required:
- attr
- code
- detail
Error405:
type: object
properties:
code:
$ref: '#/components/schemas/ErrorCode405Enum'
detail:
type: string
attr:
type: string
nullable: true
required:
- attr
- code
- detail
Error406:
type: object
properties:
code:
$ref: '#/components/schemas/ErrorCode406Enum'
detail:
type: string
attr:
type: string
nullable: true
required:
- attr
- code
- detail
Error415:
type: object
properties:
code:
$ref: '#/components/schemas/ErrorCode415Enum'
detail:
type: string
attr:
type: string
nullable: true
required:
- attr
- code
- detail
Error429:
type: object
properties:
code:
$ref: '#/components/schemas/ErrorCode429Enum'
detail:
type: string
attr:
type: string
nullable: true
required:
- attr
- code
- detail
Error500:
type: object
properties:
code:
$ref: '#/components/schemas/ErrorCode500Enum'
detail:
type: string
attr:
type: string
nullable: true
required:
- attr
- code
- detail
ErrorCode401Enum:
enum:
- authentication_failed
- not_authenticated
type: string
ErrorCode403Enum:
enum:
- permission_denied
type: string
ErrorCode405Enum:
enum:
- method_not_allowed
type: string
ErrorCode406Enum:
enum:
- not_acceptable
type: string
ErrorCode415Enum:
enum:
- unsupported_media_type
type: string
ErrorCode429Enum:
enum:
- throttled
type: string
ErrorCode500Enum:
enum:
- error
type: string
ErrorResponse401:
type: object
properties:
type:
$ref: '#/components/schemas/ClientErrorEnum'
errors:
type: array
items:
$ref: '#/components/schemas/Error401'
required:
- errors
- type
ErrorResponse403:
type: object
properties:
type:
$ref: '#/components/schemas/ClientErrorEnum'
errors:
type: array
items:
$ref: '#/components/schemas/Error403'
required:
- errors
- type
ErrorResponse405:
type: object
properties:
type:
$ref: '#/components/schemas/ClientErrorEnum'
errors:
type: array
items:
$ref: '#/components/schemas/Error405'
required:
- errors
- type
ErrorResponse406:
type: object
properties:
type:
$ref: '#/components/schemas/ClientErrorEnum'
errors:
type: array
items:
$ref: '#/components/schemas/Error406'
required:
- errors
- type
ErrorResponse415:
type: object
properties:
type:
$ref: '#/components/schemas/ClientErrorEnum'
errors:
type: array
items:
$ref: '#/components/schemas/Error415'
required:
- errors
- type
ErrorResponse429:
type: object
properties:
type:
$ref: '#/components/schemas/ClientErrorEnum'
errors:
type: array
items:
$ref: '#/components/schemas/Error429'
required:
- errors
- type
ErrorResponse500:
type: object
properties:
type:
$ref: '#/components/schemas/ServerErrorEnum'
errors:
type: array
items:
$ref: '#/components/schemas/Error500'
required:
- errors
- type
MeterRead:
properties:
meter_number:
anyOf:
- type: string
- type: 'null'
default: null
title: Meter Number
register_name:
anyOf:
- type: string
- type: 'null'
default: null
title: Register Name
previous_read:
anyOf:
- type: number
- type: 'null'
default: null
title: Previous Read
current_read:
anyOf:
- type: number
- type: 'null'
default: null
title: Current Read
read_date:
anyOf:
- type: string
- type: 'null'
default: null
title: Read Date
previous_read_date:
anyOf:
- type: string
- type: 'null'
default: null
title: Previous Read Date
multiplier:
anyOf:
- type: number
- type: 'null'
default: null
title: Multiplier
consumption:
anyOf:
- type: number
- type: 'null'
default: null
title: Consumption
consumption_unit:
anyOf:
- $ref: '#/components/schemas/BillQuantityUnit'
- type: 'null'
default: null
read_type:
anyOf:
- $ref: '#/components/schemas/ReadType'
- type: 'null'
default: null
title: MeterRead
type: object
ParseError:
type: object
properties:
code:
$ref: '#/components/schemas/ParseErrorCodeEnum'
detail:
type: string
attr:
type: string
nullable: true
required:
- attr
- code
- detail
ParseErrorCodeEnum:
enum:
- parse_error
type: string
ParseErrorResponse:
type: object
properties:
type:
$ref: '#/components/schemas/ClientErrorEnum'
errors:
type: array
items:
$ref: '#/components/schemas/ParseError'
required:
- errors
- type
PriceClassification:
enum:
- Network Peak
- Network Off Peak
- Network Shoulder
- Network Supply
- Network Anytime
- Network Controlled Load
- Network Metering Charge
- Network Low Demand
- Network High Demand
- Network Anytime Demand
- Network Capacity Charge
- Network Congestion Charge
- Network Solar FIT
- Network General TOU
- Transmission General TOU
- Greenpower
- Retail Peak
- Retail Off Peak
- Retail Shoulder
- Retail Anytime
- General TOU
- High Demand
- Low Demand
- Anytime Demand
- Congestion Charge
- Metering
- Supply
- Controlled Load Supply
- Controlled Load
- Solar FIT
- Market Charge Other
- VEET
- LRET
- SRES
- AEMO Ancillary
- AEMO Pool Fees
- SREC
- Participant Charge
- ESC
- NSW ESS
- Operator Consumption
- General Environmental Charge
- Demand Price
- Capacity Charge
- Additional Billing
- Connection
- Disconnection
- AEMO FRC
- AEMO UFE
- Network Management
- AEMO Directional
- Credit
- Late Fees
- Line Loss Charge
- Demand Reduction
- Billing Fee
- EA Levy
- GIC Levy
- LPG Rental
- LPG Usage
- LPG Swapped
- Power Factor Charge
- Load Shift
- Network Load Shift
title: PriceClassification
type: string
PublicBillsUploadCreateErrorResponse400:
oneOf:
- $ref: '#/components/schemas/ParseErrorResponse'
discriminator:
propertyName: type
mapping:
client_error: '#/components/schemas/ParseErrorResponse'
RateStep:
properties:
lower_bound:
anyOf:
- type: number
- type: 'null'
default: null
title: Lower Bound
rate:
title: Rate
type: number
rate_unit:
$ref: '#/components/schemas/BillRateUnit'
description: Unit of the rate (e.g. 'cent/kWh', '$/day')
quantity:
anyOf:
- type: number
- type: 'null'
default: null
title: Quantity
quantity_unit:
anyOf:
- $ref: '#/components/schemas/BillQuantityUnit'
- type: 'null'
default: null
amount:
anyOf:
- type: number
- type: 'null'
default: null
title: Amount
required:
- rate
- rate_unit
title: RateStep
type: object
ReadType:
enum:
- actual
- estimated
- substituted
title: ReadType
type: string
ServerErrorEnum:
enum:
- server_error
type: string
SeverityEnum:
enum:
- WARNING
- ERROR
- ERROR_IGNORABLE
type: string
TimePeriod:
properties:
start_time:
maximum: 23
minimum: 0
title: Start Time
type: integer
end_time:
maximum: 23
minimum: 0
title: End Time
type: integer
required:
- start_time
- end_time
title: TimePeriod
type: object
TimingBlock:
additionalProperties: true
properties:
months:
anyOf:
- items:
type: integer
type: array
- type: 'null'
default: null
title: Months
days_of_week:
anyOf:
- items:
type: integer
type: array
- type: 'null'
default: null
title: Days Of Week
time_periods:
anyOf:
- items:
$ref: '#/components/schemas/TimePeriod'
type: array
- type: 'null'
default: null
title: Time Periods
title: TimingBlock
type: object
ValidationIssue:
properties:
severity:
allOf:
- $ref: '#/components/schemas/SeverityEnum'
title: Severity
field:
anyOf:
- type: string
- type: 'null'
title: Field
message:
title: Message
type: string
required:
- severity
- field
- message
title: ValidationIssue
type: object
securitySchemes:
apiKey:
type: apiKey
in: header
name: X-API-Key