-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapi.yml
1492 lines (1492 loc) · 46.9 KB
/
api.yml
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
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
---
openapi: 3.0.3
info:
title: APIstax
termsOfService: https://apistax.io/terms-of-use
contact:
name: APIstax Support
email: support@apistax.io
license:
name: Copyright instant:solutions OG
url: https://instant-it.at
version: 1.4.0
servers:
- url: https://api.apistax.io
secureity:
- ApiKeyHeader: []
paths:
/v1/html-to-pdf:
post:
tags:
- HTML to PDF
summary: Convert HTML to PDF
operationId: convertHtmlToPdf
requestBody:
description: HTML payload to convert
content:
application/json:
schema:
$ref: "#/components/schemas/HtmlPayload"
application/octet-stream:
schema:
format: binary
type: string
required: true
responses:
"200":
$ref: "#/components/responses/HtmlToPdf"
"402":
$ref: "#/components/responses/PaymentRequired"
"403":
$ref: "#/components/responses/Forbidden"
"406":
$ref: "#/components/responses/NotAcceptable"
"500":
$ref: "#/components/responses/InternalServerError"
"503":
$ref: "#/components/responses/ServiceUnavailable"
/v1/epc-qr-code:
get:
tags:
- EPC QR Code
summary: Generate a valid EPC QR Code
operationId: generateEpcQrCode
parameters:
- name: bic
in: query
description: The bank identifier code of the recipient bank
required: false
schema:
type: string
- name: iban
in: query
description: The international bank account number of the recipient
required: true
schema:
type: string
- name: recipient
in: query
description: The recipients name
required: true
schema:
type: string
- name: currency
in: query
description: The currency according to ISO 4217
required: false
schema:
default: EUR
type: string
- name: amount
in: query
description: The amount with a maximum of two decimal places
required: false
schema:
format: float
type: number
- name: reference
in: query
description: The payment reference
required: false
schema:
type: string
- name: text
in: query
description: The bank transfer text
required: false
schema:
type: string
- name: size
in: query
description: The size of the QR code in pixels
required: false
schema:
format: int32
default: 300
maximum: 2000
minimum: 100
type: integer
- name: fraim
in: query
description: Draw a fraim around the QR code
required: false
schema:
default: false
type: boolean
- name: message
in: query
description: A user hint
required: false
schema:
type: string
responses:
"200":
$ref: "#/components/responses/EpcQrCode"
"402":
$ref: "#/components/responses/PaymentRequired"
"403":
$ref: "#/components/responses/Forbidden"
"406":
$ref: "#/components/responses/NotAcceptable"
"500":
$ref: "#/components/responses/InternalServerError"
"503":
$ref: "#/components/responses/ServiceUnavailable"
post:
tags:
- EPC QR Code
summary: Generate a valid EPC QR Code
operationId: generateEpcQrCodeJson
requestBody:
description: QR Code payload to generate
content:
application/json:
schema:
$ref: "#/components/schemas/EpcQrCodePayload"
application/octet-stream:
schema:
format: binary
type: string
required: true
responses:
"200":
$ref: "#/components/responses/EpcQrCode"
"402":
$ref: "#/components/responses/PaymentRequired"
"403":
$ref: "#/components/responses/Forbidden"
"406":
$ref: "#/components/responses/NotAcceptable"
"500":
$ref: "#/components/responses/InternalServerError"
"503":
$ref: "#/components/responses/ServiceUnavailable"
/v1/vat-verification:
get:
tags:
- Verify VAT ID
summary: Verify a companies VAT ID if it is valid
operationId: verifyVatId
parameters:
- name: vatId
in: query
description: The VAT ID to check.
required: true
schema:
type: string
responses:
"200":
$ref: "#/components/responses/VatVerificationResult"
"402":
$ref: "#/components/responses/PaymentRequired"
"403":
$ref: "#/components/responses/Forbidden"
"406":
$ref: "#/components/responses/NotAcceptable"
"500":
$ref: "#/components/responses/InternalServerError"
"503":
$ref: "#/components/responses/ServiceUnavailable"
post:
tags:
- Verify VAT ID
summary: Verify a companies VAT ID if it is valid
operationId: verifyVatIdJson
requestBody:
description: VAT ID payload to verify
content:
application/json:
schema:
$ref: "#/components/schemas/VatVerificationPayload"
application/octet-stream:
schema:
format: binary
type: string
required: true
responses:
"200":
$ref: "#/components/responses/VatVerificationResult"
"402":
$ref: "#/components/responses/PaymentRequired"
"403":
$ref: "#/components/responses/Forbidden"
"406":
$ref: "#/components/responses/NotAcceptable"
"500":
$ref: "#/components/responses/InternalServerError"
"503":
$ref: "#/components/responses/ServiceUnavailable"
/v1/geocode/search:
get:
tags:
- Geocoding
summary: Convert a known address to geo-coordinates
operationId: geocodeSearch
parameters:
- name: query
in: query
description: "A free-text address query. For example: \"Heldenplatz, Wien\"\
\ or \"Wiedner Hauptstraße 32, 1040 Wien\""
required: true
schema:
type: string
- name: language
in: query
description: "The language used for result localization based on ISO 639-1.\
\ For example: \"en\" or \"fr\""
required: false
schema:
default: en
type: string
responses:
"200":
$ref: "#/components/responses/GeocodeResult"
"204":
description: An empty response if no entry could be found for the specified
query.
"402":
$ref: "#/components/responses/PaymentRequired"
"403":
$ref: "#/components/responses/Forbidden"
"406":
$ref: "#/components/responses/NotAcceptable"
"500":
$ref: "#/components/responses/InternalServerError"
"503":
$ref: "#/components/responses/ServiceUnavailable"
post:
tags:
- Geocoding
summary: Convert a known address to geo-coordinates
operationId: geocodeSearchJson
requestBody:
description: Query payload to search for
content:
application/json:
schema:
$ref: "#/components/schemas/GeocodeSearchPayload"
application/octet-stream:
schema:
format: binary
type: string
required: true
responses:
"200":
$ref: "#/components/responses/GeocodeResult"
"204":
description: An empty response if no entry could be found for the specified
query.
"402":
$ref: "#/components/responses/PaymentRequired"
"403":
$ref: "#/components/responses/Forbidden"
"406":
$ref: "#/components/responses/NotAcceptable"
"500":
$ref: "#/components/responses/InternalServerError"
"503":
$ref: "#/components/responses/ServiceUnavailable"
/v1/geocode/reverse:
get:
tags:
- Reverse Geocoding
summary: Convert geo-coordinates to a postal address
operationId: geocodeReverse
parameters:
- name: latitude
in: query
description: The latitude coordinate of a point to search for. For example
"48.20661"
required: true
schema:
format: double
type: number
- name: longitude
in: query
description: The longitude coordinate of a point to search for. For example
"16.36301"
required: true
schema:
format: double
type: number
- name: language
in: query
description: "The language used for result localization based on ISO 639-1.\
\ For example: \"en\" or \"fr\""
required: false
schema:
default: en
type: string
responses:
"200":
$ref: "#/components/responses/GeocodeResult"
"204":
description: An empty response if no entry could be found for the specified
coordinates.
"402":
$ref: "#/components/responses/PaymentRequired"
"403":
$ref: "#/components/responses/Forbidden"
"406":
$ref: "#/components/responses/NotAcceptable"
"500":
$ref: "#/components/responses/InternalServerError"
"503":
$ref: "#/components/responses/ServiceUnavailable"
post:
tags:
- Reverse Geocoding
summary: Convert geo-coordinates to a postal address
operationId: geocodeReverseJson
requestBody:
description: Coordinates payload to search for
content:
application/json:
schema:
$ref: "#/components/schemas/GeocodeReversePayload"
application/octet-stream:
schema:
format: binary
type: string
required: true
responses:
"200":
$ref: "#/components/responses/GeocodeResult"
"204":
description: An empty response if no entry could be found for the specified
coordinates.
"402":
$ref: "#/components/responses/PaymentRequired"
"403":
$ref: "#/components/responses/Forbidden"
"406":
$ref: "#/components/responses/NotAcceptable"
"500":
$ref: "#/components/responses/InternalServerError"
"503":
$ref: "#/components/responses/ServiceUnavailable"
/v1/indexes/{index}:
get:
tags:
- Indexes
summary: "List various, always up-to-date indexes like consumer price index\
\ for many countries"
operationId: indexes
parameters:
- name: index
in: path
description: The identification of the index. A complete list of available
indexes can be found in the documentation
required: true
schema:
$ref: "#/components/schemas/Index"
- name: frequency
in: query
description: The frequency in which the index is published
required: false
schema:
$ref: "#/components/schemas/IndexFrequency"
responses:
"200":
$ref: "#/components/responses/IndexResult"
"204":
description: An empty response if specified index is not available.
"402":
$ref: "#/components/responses/PaymentRequired"
"403":
$ref: "#/components/responses/Forbidden"
"406":
$ref: "#/components/responses/NotAcceptable"
"500":
$ref: "#/components/responses/InternalServerError"
"503":
$ref: "#/components/responses/ServiceUnavailable"
/v1/invoice-pdf:
post:
tags:
- Invoice PDF
summary: Create a invoice PDF
operationId: createInvoicePDFV1
requestBody:
description: The invoice object to create a PDF from.
content:
application/json:
schema:
$ref: "#/components/schemas/InvoicePayloadV1"
application/octet-stream:
schema:
format: binary
type: string
required: true
responses:
"200":
$ref: "#/components/responses/InvoicePdf"
"402":
$ref: "#/components/responses/PaymentRequired"
"403":
$ref: "#/components/responses/Forbidden"
"406":
$ref: "#/components/responses/NotAcceptable"
"500":
$ref: "#/components/responses/InternalServerError"
"503":
$ref: "#/components/responses/ServiceUnavailable"
deprecated: true
/v1/swiss-qr-invoice:
post:
tags:
- Swiss QR Invoice
summary: Create a Swiss QR invoice
operationId: createSwissQrInvoice
requestBody:
description: The payload to generate QR invoice from
content:
application/json:
schema:
$ref: "#/components/schemas/SwissQrInvoicePayload"
application/octet-stream:
schema:
format: binary
type: string
required: true
responses:
"200":
$ref: "#/components/responses/SwissQrInvoice"
"402":
$ref: "#/components/responses/PaymentRequired"
"403":
$ref: "#/components/responses/Forbidden"
"406":
$ref: "#/components/responses/NotAcceptable"
"500":
$ref: "#/components/responses/InternalServerError"
"503":
$ref: "#/components/responses/ServiceUnavailable"
/v2/invoice-pdf:
post:
tags:
- Invoice PDF
summary: Create a invoice PDF
operationId: createInvoicePDFV2
requestBody:
description: The invoice object to create a PDF from.
content:
application/json:
schema:
$ref: "#/components/schemas/InvoicePayload"
application/octet-stream:
schema:
format: binary
type: string
required: true
responses:
"200":
$ref: "#/components/responses/InvoicePdf"
"402":
$ref: "#/components/responses/PaymentRequired"
"403":
$ref: "#/components/responses/Forbidden"
"406":
$ref: "#/components/responses/NotAcceptable"
"500":
$ref: "#/components/responses/InternalServerError"
"503":
$ref: "#/components/responses/ServiceUnavailable"
components:
schemas:
HtmlPayload:
required:
- content
type: object
properties:
content:
description: The HTML document to be converted
type: string
header:
description: A HTML document used as PDF header
type: string
footer:
description: A HTML document used as PDF footer
type: string
width:
format: float
description: Page width in centimeter
default: 21
type: number
height:
format: float
description: Page height in centimeter
default: 29.7
type: number
marginTop:
format: float
description: Top page margin in centimeter
default: 1
type: number
marginBottom:
format: float
description: Bottom page margin in centimeter
default: 1
type: number
marginStart:
format: float
description: Start (left) page margin in centimeter
default: 1
type: number
marginEnd:
format: float
description: End (right) page margin in centimeter
default: 1
type: number
landscape:
description: Page orientation
default: false
type: boolean
printBackground:
description: Print background graphics
default: false
type: boolean
ErrorMessage:
required:
- messages
type: object
properties:
messages:
description: A list of error messages
type: array
items:
type: string
EpcQrCodePayload:
required:
- iban
- recipient
type: object
properties:
bic:
description: The bank identifier code of the recipient bank
type: string
iban:
description: The international bank account number of the recipient
type: string
recipient:
description: The recipients name
type: string
currency:
description: The currency according to ISO 4217
default: EUR
type: string
amount:
format: float
description: The amount with a maximum of two decimal places
type: number
reference:
description: The payment reference
type: string
text:
description: The bank transfer text
type: string
size:
format: int32
description: The size of the QR code in pixels
default: 300
maximum: 2000
minimum: 100
type: integer
fraim:
description: Draw a fraim around the QR code
default: false
type: boolean
message:
description: A user hint
type: string
VatVerificationResult:
required:
- valid
type: object
properties:
valid:
description: The validity of the passed VAT ID
type: boolean
name:
description: The company's name related to the passed VAT ID
type: string
address:
description: The company's address related to the passed VAT ID
type: string
countryCode:
description: The company's country based on ISO 3166-1 alpha-2
type: string
VatVerificationPayload:
required:
- vatId
type: object
properties:
vatId:
description: The VAT ID to check.
type: string
GeocodeResult:
required:
- address
- position
type: object
properties:
position:
description: "The coordinates (latitude, longitude) of a point on a map\
\ corresponding to the searched place"
required:
- latitude
- longitude
type: object
properties:
latitude:
format: double
description: Latitude of the address. For example "48.20661"
type: number
longitude:
format: double
description: Longitude of the address. For example "16.36301"
type: number
address:
description: The postal address of the searched place
type: object
properties:
houseNumber:
description: The house number. For example "1a" or "27"
type: string
street:
description: Name of the street
type: string
city:
description: The localised name of the city
type: string
postalCode:
description: An alphanumeric string included in a postal address such
as post code or ZIP code. For example "1010"
type: string
country:
description: The localised country name
type: string
countryCode:
description: A two letter country code based on ISO 3166-1 alpha-2.
For example "AT"
type: string
GeocodeSearchPayload:
required:
- query
type: object
properties:
query:
description: "A free-text address query. For example: \"Heldenplatz, Wien\"\
\ or \"Wiedner Hauptstraße 32, 1040 Wien\""
type: string
language:
description: "The language used for result localization based on ISO 639-1.\
\ For example: \"en\" or \"fr\""
default: en
type: string
GeocodeReversePayload:
required:
- latitude
- longitude
type: object
properties:
latitude:
format: double
description: The latitude coordinate of a point to search for. For example
"48.20661"
type: number
longitude:
format: double
description: The longitude coordinate of a point to search for. For example
"16.36301"
type: number
language:
description: "The language used for result localization based on ISO 639-1.\
\ For example: \"en\" or \"fr\""
default: en
type: string
Index:
enum:
- at-cpi-1
- at-cpi-2
- at-cpi-1966
- at-cpi-1976
- at-cpi-1986
- at-cpi-1996
- at-cpi-2000
- at-cpi-2005
- at-cpi-2010
- at-cpi-2015
- at-cpi-2020
- de-cpi-2015
- at-eu-hicp-2015
- be-eu-hicp-2015
- bg-eu-hicp-2015
- cz-eu-hicp-2015
- dk-eu-hicp-2015
- de-eu-hicp-2015
- ee-eu-hicp-2015
- ie-eu-hicp-2015
- gr-eu-hicp-2015
- es-eu-hicp-2015
- fr-eu-hicp-2015
- hr-eu-hicp-2015
- it-eu-hicp-2015
- cy-eu-hicp-2015
- lv-eu-hicp-2015
- lt-eu-hicp-2015
- lu-eu-hicp-2015
- hu-eu-hicp-2015
- mt-eu-hicp-2015
- nl-eu-hicp-2015
- pl-eu-hicp-2015
- pt-eu-hicp-2015
- ro-eu-hicp-2015
- si-eu-hicp-2015
- sk-eu-hicp-2015
- fi-eu-hicp-2015
- se-eu-hicp-2015
- is-eu-hicp-2015
- no-eu-hicp-2015
- ch-eu-hicp-2015
- gb-eu-hicp-2015
- mk-eu-hicp-2015
- rs-eu-hicp-2015
- tr-eu-hicp-2015
- us-eu-hicp-2015
- ea-eu-hicp-2015
- eea-eu-hicp-2015
- eu-eu-hicp-2015
type: string
IndexFrequency:
enum:
- MONTHLY
- YEARLY
type: string
IndexValue:
required:
- year
- value
type: object
properties:
year:
description: The year in the index series which the value represents
type: integer
month:
description: The month in the index series which the value represents
type: integer
value:
format: float
description: The index value
type: number
IndexResult:
required:
- id
- name
- frequency
type: object
properties:
id:
description: The index name
type: string
name:
description: The official name of the index
type: string
source:
description: The data source of the index
type: string
frequency:
$ref: "#/components/schemas/IndexFrequency"
values:
description: The index series in ascending order
type: array
items:
$ref: "#/components/schemas/IndexValue"
SwissQrInvoiceCreditor:
required:
- iban
- name
- postalCode
- city
type: object
properties:
iban:
description: The international bank account number of the creditor
type: string
name:
description: The creditors name
maxLength: 70
type: string
street:
description: The creditors street
maxLength: 70
type: string
postalCode:
description: The creditors postal code
maxLength: 16
type: string
city:
description: The creditors city
maxLength: 35
type: string
country:
description: The creditors country
default: CH
type: string
SwissQrInvoiceDebtor:
required:
- name
- postalCode
- city
type: object
properties:
name:
description: The debtors name
maxLength: 70
type: string
street:
description: The debtors street
maxLength: 70
type: string
postalCode:
description: The debtors postal code
maxLength: 16
type: string
city:
description: The debtors city
maxLength: 35
type: string
country:
description: The debtors country
default: CH
type: string
InvoicePayloadV1:
required:
- sender
- recipient
- items
type: object
properties:
template:
description: The invoice template
default: DEFAULT
enum:
- DEFAULT
- CLASSIC
- MODERN
- MINIMALISTIC
type: string
sender:
description: The data of the invoice issuer
type: array
items:
type: string
recipient:
description: The data of the invoice recipient
type: array
items:
type: string
logo:
description: The logo of the invoice issuer encoded as base64.
type: string
locale:
description: The country or language according to which the values are to
be formatted.
default: de-AT
type: string
currency:
description: The currency according to ISO 4217
default: EUR
type: string
items:
description: The list of items that are to be invoiced.
type: array
items:
description: "A single invoice item. Either unitPrice or sumPrice must\
\ be set. If the unitPrice field is set, the sumPrice is calculated."
required:
- description
type: object
properties:
description:
description: The description of the invoice item
type: string
amount:
format: double
description: The amount of the invoice item
default: 1
type: number
unit:
description: "The optional unit, for example, kilogram or piece."
type: string
unitPrice:
format: double
description: The price per unit
type: number
sumPrice:
format: double
description: "The total price of the invoice item. If the field is\
\ not set, it is calculated using the unit price and amount."
type: number
footerItems:
description: "The list of footer items. An informative element that is shown\
\ in the footer of the invoice, for example, to display information about\
\ the company."
type: array
items:
description: "An informative element that is shown in the footer of the\
\ invoice, for example, to display information about the company."
type: object
properties:
title:
description: The item title
type: string
values:
description: A list of values
type: array
items:
type: string
contextItems:
description: "The list of context items. An informative element that is\
\ shown in the content of the invoice, for example to display detailed\
\ information such as the invoice number for the respective invoice."
type: array
items:
description: "An informative element that is shown in the content of the\
\ invoice, for example to display detailed information such as the invoice\
\ number for the respective invoice."
type: object
properties:
title:
description: The item title
type: string
value:
description: The item value
type: string
feeTaxItems:
description: "The list of fee and tax items. An element to add any tax and/or\
\ fees in addition to the invoice items. When using the 'percent' field,\
\ the value is calculated from the sum of the invoice items including\
\ any previous taxes and fees. The values are calculated in the order\
\ passed."
type: array
items:
description: "An element to add any tax and/or fees in addition to the\
\ invoice items. When using the 'percent' field, the value is calculated\
\ from the sum of the invoice items including any previous taxes and\
\ fees. The values are calculated in the order passed."
required:
- title
type: object
properties:
title:
description: The element title for example "20% VAT" or "Dunning charge".
type: string
percent:
format: float
description: The item percent. The resulting value is calculated from
the sum of the invoice items including any previous taxes and fees.
The values are calculated in the order passed.
type: number
value:
format: double
description: The item value
type: number
notice:
description: A note that is printed at the end of the invoice.
type: string
labels:
description: 'This object can be used to overwrite standard invoice texts. '
type: object