-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinvoiceData.xsd
2109 lines (2108 loc) · 106 KB
/
invoiceData.xsd
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
<?xml version="1.0" encoding="UTF-8"?>
<!--
# Projekt: Magyar Online Számla Rendszer invoiceData XML XSD séma
# Author: NAV Informatikai Intézet
# Version: v1.0 2018/05/30
-->
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns="http://schemas.nav.gov.hu/OSA/1.0/data" targetNamespace="http://schemas.nav.gov.hu/OSA/1.0/data" elementFormDefault="qualified" attributeFormDefault="unqualified">
<xs:simpleType name="AnnulmentCodeType">
<xs:annotation>
<xs:documentation xml:lang="hu">Technikai érvénytelenítés típusa</xs:documentation>
<xs:documentation xml:lang="en">Technical annulment type</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:string">
<xs:enumeration value="ERRATIC_DATA">
<xs:annotation>
<xs:documentation xml:lang="hu">Hibás adattartalom miatti technikai érvénytelenítés</xs:documentation>
<xs:documentation xml:lang="en">Technical annulment due to erratic data content</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="ERRATIC_INVOICE_NUMBER">
<xs:annotation>
<xs:documentation xml:lang="hu">Hibás számlaszám miatti technikai érvénytelenítés</xs:documentation>
<xs:documentation xml:lang="en">Technical annulment due to erratic invoice number</xs:documentation>
</xs:annotation>
</xs:enumeration>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="BankAccountNumberType">
<xs:annotation>
<xs:documentation xml:lang="hu">Bankszámla megadására szolgáló típus</xs:documentation>
<xs:documentation xml:lang="en">Type of bank account number</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:string">
<xs:minLength value="15"/>
<xs:maxLength value="34"/>
<xs:pattern value="[0-9]{8}[-][0-9]{8}[-][0-9]{8}|[0-9]{8}[-][0-9]{8}|[A-Z]{2}[0-9]{2}[0-9A-Za-z]{11,30}"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="CommunityVatNumberType">
<xs:annotation>
<xs:documentation xml:lang="hu">Közösségi adószám típus</xs:documentation>
<xs:documentation xml:lang="en">Community VAT registration number</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:string">
<xs:minLength value="4"/>
<xs:maxLength value="15"/>
<xs:whiteSpace value="collapse"/>
<xs:pattern value="[A-Z]{2}[0-9A-Z]{2,13}"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="CountryCodeType">
<xs:annotation>
<xs:documentation xml:lang="hu">Országkód típus ISO 3166 alpha-2 szabvány szerint</xs:documentation>
<xs:documentation xml:lang="en">Country code type (ISO 3166 alpha-2)</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:string">
<xs:length value="2"/>
<xs:pattern value="[A-Z]{2}"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="CountyCodeType">
<xs:annotation>
<xs:documentation xml:lang="hu">Megyekód</xs:documentation>
<xs:documentation xml:lang="en">County code</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:string">
<xs:length value="2"/>
<xs:pattern value="[0-9]{2}"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="CurrencyType">
<xs:annotation>
<xs:documentation xml:lang="hu">Pénznem típus (ISO 4217 szabvány szerinti 3 hosszú pénznem kód)</xs:documentation>
<xs:documentation xml:lang="en">Currency type (three digit ISO 4217 currency code)</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:string">
<xs:length value="3"/>
<xs:pattern value="[A-Z]{3}"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="DataNameType">
<xs:annotation>
<xs:documentation xml:lang="hu">Az adatmező egyedi azonosító típusa</xs:documentation>
<xs:documentation xml:lang="en">Unique identification type of the data field</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:string">
<xs:minLength value="1"/>
<xs:maxLength value="255"/>
<xs:pattern value="[A-Z][0-9]{5}[_][_A-Z0-9]{1,249}"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="DateType">
<xs:annotation>
<xs:documentation xml:lang="hu">Dátum típus</xs:documentation>
<xs:documentation xml:lang="en">Date type</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:date">
<xs:pattern value="\d{4}-\d{2}-\d{2}"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="EkaerIdType">
<xs:annotation>
<xs:documentation xml:lang="hu">EKÁER szám azonosító típus</xs:documentation>
<xs:documentation xml:lang="en">EKÁER number identifier type</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:string">
<xs:length value="15"/>
<xs:pattern value="[E]{1}[0-9]{6}[0-9A-F]{8}"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="ExchangeRateType">
<xs:annotation>
<xs:documentation xml:lang="hu">Árfolyam adat típus</xs:documentation>
<xs:documentation xml:lang="en">Exchange rate data type</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:decimal">
<xs:totalDigits value="14"/>
<xs:fractionDigits value="6"/>
<xs:minExclusive value="0.00"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="InvoiceAppearanceType">
<xs:annotation>
<xs:documentation xml:lang="hu">Számla megjelenési formája típus</xs:documentation>
<xs:documentation xml:lang="en">Form of appearance of the invoice type</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:string">
<xs:enumeration value="PAPER">
<xs:annotation>
<xs:documentation xml:lang="hu">Papír alapú számla</xs:documentation>
<xs:documentation xml:lang="en">Invoice issued on paper</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="ELECTRONIC">
<xs:annotation>
<xs:documentation xml:lang="hu">Elektronikus formában előállított, nem EDI számla</xs:documentation>
<xs:documentation xml:lang="en">Electronic invoice (non-EDI)</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="EDI">
<xs:annotation>
<xs:documentation xml:lang="hu">EDI számla</xs:documentation>
<xs:documentation xml:lang="en">EDI invoice</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="UNKNOWN">
<xs:annotation>
<xs:documentation xml:lang="hu">A szoftver nem képes azonosítani vagy a kiállításkor nem ismert</xs:documentation>
<xs:documentation xml:lang="en">The software cannot be identify the form of appearance of the invoice or it is unknown at the time of issue</xs:documentation>
</xs:annotation>
</xs:enumeration>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="InvoiceCategoryType">
<xs:annotation>
<xs:documentation xml:lang="hu">A számla típusa</xs:documentation>
<xs:documentation xml:lang="en">Type of invoice</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:string">
<xs:enumeration value="NORMAL">
<xs:annotation>
<xs:documentation xml:lang="hu">Normál (nem egyszerűsített és nem gyűjtő) számla</xs:documentation>
<xs:documentation xml:lang="en">Normal (not simplified and not aggregate) invoice</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="SIMPLIFIED">
<xs:annotation>
<xs:documentation xml:lang="hu">Egyszerűsített számla</xs:documentation>
<xs:documentation xml:lang="en">Simplified invoice</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="AGGREGATE">
<xs:annotation>
<xs:documentation xml:lang="hu">Gyűjtőszámla</xs:documentation>
<xs:documentation xml:lang="en">Aggregate invoice</xs:documentation>
</xs:annotation>
</xs:enumeration>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="LineNumberType">
<xs:annotation>
<xs:documentation xml:lang="hu">Tételszám típus</xs:documentation>
<xs:documentation xml:lang="en">Line number type</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:nonNegativeInteger">
<xs:minInclusive value="1"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="LineOperationType">
<xs:annotation>
<xs:documentation xml:lang="hu">A számlatétel módosítás típusa</xs:documentation>
<xs:documentation xml:lang="en">Invoice line modification type</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:string">
<xs:enumeration value="CREATE"/>
<xs:enumeration value="MODIFY"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="MarginSchemeType">
<xs:annotation>
<xs:documentation xml:lang="hu">Különbözet szerinti szabályozás típus</xs:documentation>
<xs:documentation xml:lang="en">Field type for inputting margin-scheme taxation</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:string">
<xs:enumeration value="TRAVEL_AGENCY">
<xs:annotation>
<xs:documentation xml:lang="hu">Utazási irodák</xs:documentation>
<xs:documentation xml:lang="en">Travel agencies</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="SECOND_HAND">
<xs:annotation>
<xs:documentation xml:lang="hu">Használt cikkek</xs:documentation>
<xs:documentation xml:lang="en">Second-hand goods</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="ARTWORK">
<xs:annotation>
<xs:documentation xml:lang="hu">Műalkotások</xs:documentation>
<xs:documentation xml:lang="en">Works of art</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="ANTIQUES">
<xs:annotation>
<xs:documentation xml:lang="hu">Gyűjteménydarabok és régiségek</xs:documentation>
<xs:documentation xml:lang="en">Collector’s items and antiques</xs:documentation>
</xs:annotation>
</xs:enumeration>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="MonetaryType">
<xs:annotation>
<xs:documentation xml:lang="hu">Pénzérték típus. Maximum 18 számjegy, ami 2 tizedesjegyet tartalmazhat</xs:documentation>
<xs:documentation xml:lang="en">Field type for money value input. Maximum 18 digits that may include 2 decimal places</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:decimal">
<xs:totalDigits value="18"/>
<xs:fractionDigits value="2"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="PaymentMethodType">
<xs:annotation>
<xs:documentation xml:lang="hu">Fizetés módja</xs:documentation>
<xs:documentation xml:lang="en">Method of payment</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:string">
<xs:enumeration value="TRANSFER">
<xs:annotation>
<xs:documentation xml:lang="hu">Banki átutalás</xs:documentation>
<xs:documentation xml:lang="en">Bank transfer</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="CASH">
<xs:annotation>
<xs:documentation xml:lang="hu">Készpénz</xs:documentation>
<xs:documentation xml:lang="en">Cash</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="CARD">
<xs:annotation>
<xs:documentation xml:lang="hu">Bankkártya, hitelkártya, egyéb készpénz helyettesítő eszköz</xs:documentation>
<xs:documentation xml:lang="en">Debit card, credit card, other cash-substitute payment instrument</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="VOUCHER">
<xs:annotation>
<xs:documentation xml:lang="hu">Utalvány, váltó, egyéb pénzhelyettesítő eszköz</xs:documentation>
<xs:documentation xml:lang="en">Voucher, bill of exchange, other non-cash payment instrument</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="OTHER">
<xs:annotation>
<xs:documentation xml:lang="hu">Egyéb</xs:documentation>
<xs:documentation xml:lang="en">Other</xs:documentation>
</xs:annotation>
</xs:enumeration>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="PostalCodeType">
<xs:annotation>
<xs:documentation xml:lang="hu">Irányítószám típus</xs:documentation>
<xs:documentation xml:lang="en">ZIP code type</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:string">
<xs:minLength value="4"/>
<xs:maxLength value="10"/>
<xs:pattern value="[A-Z0-9]{4,10}"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="ProductCodeCategoryType">
<xs:annotation>
<xs:documentation xml:lang="hu">A termékkód fajtájának jelölésére szolgáló típus</xs:documentation>
<xs:documentation xml:lang="en">The type used to mark the kind of product code</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:string">
<xs:minLength value="2"/>
<xs:maxLength value="5"/>
<xs:enumeration value="VTSZ">
<xs:annotation>
<xs:documentation xml:lang="hu">Vámtarifa szám VTSZ</xs:documentation>
<xs:documentation xml:lang="en">Customs tariff number CTN</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="SZJ">
<xs:annotation>
<xs:documentation xml:lang="hu">Szolgáltatás jegyzék szám SZJ</xs:documentation>
<xs:documentation xml:lang="en">Business service list number BSL</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="KN">
<xs:annotation>
<xs:documentation xml:lang="hu">KN kód (Kombinált Nómenklatúra, 2658/87/EGK rendelet I. melléklete)</xs:documentation>
<xs:documentation xml:lang="en">CN code (Combined Nomenclature, 2658/87/ECC Annex I)</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="AHK">
<xs:annotation>
<xs:documentation xml:lang="hu">A Jövedéki törvény (2016. évi LXVIII. tv) szerinti e-TKO adminisztratív hivatkozási kódja AHK</xs:documentation>
<xs:documentation xml:lang="en">Administrative reference code of e-TKO defined in the Act LXVIII of 2016 on Excise Duties</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="CSK">
<xs:annotation>
<xs:documentation xml:lang="hu">A termék 343/2011. (XII. 29) Korm. rendelet 1. sz. melléklet A) cím szerinti csomagolószer-katalógus kódja (CsK kód)</xs:documentation>
<xs:documentation xml:lang="en">Packaging product catalogue code of the product according to the Title A) in the Schedule No.1 of the Government Decree No. 343/2011. (XII. 29.)</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="KT">
<xs:annotation>
<xs:documentation xml:lang="hu">A termék 343/2011. (XII. 29) Korm. rendelet 1. sz. melléklet B) cím szerinti környezetvédelmi termékkódja (Kt kód)</xs:documentation>
<xs:documentation xml:lang="en">Environmental protection product code of the product according to the Title B) in the Schedule No.1 of the Government Decree No. 343/2011. (XII. 29.)</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="EJ">
<xs:annotation>
<xs:documentation xml:lang="hu">Építményjegyzék szám</xs:documentation>
<xs:documentation xml:lang="en">Classification of Inventory of Construction</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="OWN">
<xs:annotation>
<xs:documentation xml:lang="hu">A vállalkozás által képzett termékkód</xs:documentation>
<xs:documentation xml:lang="en">The own product code of the enterprise</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="OTHER">
<xs:annotation>
<xs:documentation xml:lang="hu">Egyéb termékkód</xs:documentation>
<xs:documentation xml:lang="en">Other product code</xs:documentation>
</xs:annotation>
</xs:enumeration>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="ProductCodeValueType">
<xs:annotation>
<xs:documentation xml:lang="hu">Termékkód típus</xs:documentation>
<xs:documentation xml:lang="en">Field type for inputting product codes</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:string">
<xs:minLength value="2"/>
<xs:maxLength value="30"/>
<xs:pattern value="[A-Z0-9]{2,30}"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="ProductFeeMeasuringUnitType">
<xs:annotation>
<xs:documentation xml:lang="hu">Díjtétel egység típus</xs:documentation>
<xs:documentation xml:lang="en">Unit of the rate type</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:string">
<xs:enumeration value="DARAB">
<xs:annotation>
<xs:documentation xml:lang="hu">Darab</xs:documentation>
<xs:documentation xml:lang="en">Piece</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="KG">
<xs:annotation>
<xs:documentation xml:lang="hu">Kilogramm</xs:documentation>
<xs:documentation xml:lang="en">Kilogram</xs:documentation>
</xs:annotation>
</xs:enumeration>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="ProductFeeOperationType">
<xs:annotation>
<xs:documentation xml:lang="hu">Termékdíj összesítés típus</xs:documentation>
<xs:documentation xml:lang="en">Product fee summary type</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:string">
<xs:enumeration value="REFUND">
<xs:annotation>
<xs:documentation xml:lang="hu">Visszaigénylés</xs:documentation>
<xs:documentation xml:lang="en">Refund</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="DEPOSIT">
<xs:annotation>
<xs:documentation xml:lang="hu">Raktárba szállítás</xs:documentation>
<xs:documentation xml:lang="en">Deposit</xs:documentation>
</xs:annotation>
</xs:enumeration>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="ProductStreamType">
<xs:annotation>
<xs:documentation xml:lang="hu">Termékáram típus</xs:documentation>
<xs:documentation xml:lang="en">Product stream</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:string">
<xs:enumeration value="BATTERY">
<xs:annotation>
<xs:documentation xml:lang="hu">Akkumulátor</xs:documentation>
<xs:documentation xml:lang="en">Battery</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="PACKAGING">
<xs:annotation>
<xs:documentation xml:lang="hu">Csomagolószer</xs:documentation>
<xs:documentation xml:lang="en">Packaging products</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="OTHER_PETROL">
<xs:annotation>
<xs:documentation xml:lang="hu">Egyéb kőolajtermék</xs:documentation>
<xs:documentation xml:lang="en">Other petroleum product</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="ELECTRONIC">
<xs:annotation>
<xs:documentation xml:lang="hu">Az elektromos, elektronikai berendezés</xs:documentation>
<xs:documentation xml:lang="en">The electric appliance, electronic equipment</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="TIRE">
<xs:annotation>
<xs:documentation xml:lang="hu">Gumiabroncs</xs:documentation>
<xs:documentation xml:lang="en">Tire</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="COMMERCIAL">
<xs:annotation>
<xs:documentation xml:lang="hu">Reklámhordozó papír</xs:documentation>
<xs:documentation xml:lang="en">Commercial printing paper</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="PLASTIC">
<xs:annotation>
<xs:documentation xml:lang="hu">Az egyéb műanyag termék</xs:documentation>
<xs:documentation xml:lang="en">Other plastic product</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="OTHER_CHEMICAL">
<xs:annotation>
<xs:documentation xml:lang="hu">Egyéb vegyipari termék</xs:documentation>
<xs:documentation xml:lang="en">Other chemical product</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="PAPER">
<xs:annotation>
<xs:documentation xml:lang="hu">Irodai papír</xs:documentation>
<xs:documentation xml:lang="en">Paper stationery</xs:documentation>
</xs:annotation>
</xs:enumeration>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="QuantityType">
<xs:annotation>
<xs:documentation xml:lang="hu">Mennyiségi érték típus. Maximum 22 számjegy, ami 6 tizedesjegyet tartalmazhat</xs:documentation>
<xs:documentation xml:lang="en">Field type for quantity values. Maximum 22 digits that may include 6 decimal places</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:decimal">
<xs:totalDigits value="22"/>
<xs:fractionDigits value="6"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="RateType">
<xs:annotation>
<xs:documentation xml:lang="hu">Arány megadására szolgáló típus. 0 és 1 közötti szám, legfeljebb 4 tizedesjegy pontossággal</xs:documentation>
<xs:documentation xml:lang="en">Rate type. A number between 0 and 1, may include maximum 4 decimal places</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:decimal">
<xs:minInclusive value="0"/>
<xs:maxInclusive value="1"/>
<xs:totalDigits value="5"/>
<xs:fractionDigits value="4"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="RegNumType">
<xs:annotation>
<xs:documentation xml:lang="hu">Kereskedelmi gépjármű forgalmi rendszáma (csak betűk és számok)</xs:documentation>
<xs:documentation xml:lang="en">Registration number of commercial motor vehicle (letters and numbers only)</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:string">
<xs:minLength value="2"/>
<xs:maxLength value="30"/>
<xs:pattern value="[A-Z0-9]{2,30}"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="SHA256Type">
<xs:annotation>
<xs:documentation xml:lang="hu">SHA256 kód megadására szolgáló típus</xs:documentation>
<xs:documentation xml:lang="en">Field type for holding an SHA256 code</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:string">
<xs:length value="64"/>
<xs:pattern value="[0-9A-F]{64}"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="SimpleText15NotBlankType">
<xs:annotation>
<xs:documentation xml:lang="hu">Legfeljebb 15 karaktert tartalmazó szöveg típus</xs:documentation>
<xs:documentation xml:lang="en">String of maximum 15 characters</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:string">
<xs:minLength value="1"/>
<xs:maxLength value="15"/>
<xs:pattern value=".*[^\s].*"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="SimpleText50NotBlankType">
<xs:annotation>
<xs:documentation xml:lang="hu">Legfeljebb 50 karaktert tartalmazó szöveg típus</xs:documentation>
<xs:documentation xml:lang="en">String of maximum 50 characters</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:string">
<xs:minLength value="1"/>
<xs:maxLength value="50"/>
<xs:pattern value=".*[^\s].*"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="SimpleText100NotBlankType">
<xs:annotation>
<xs:documentation>Legfeljebb 100 karaktert tartalmazó szöveg típus</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:string">
<xs:minLength value="1"/>
<xs:maxLength value="100"/>
<xs:pattern value=".*[^\s].*"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="SimpleText200NotBlankType">
<xs:annotation>
<xs:documentation xml:lang="hu">Legfeljebb 200 karaktert tartalmazó szöveg típus</xs:documentation>
<xs:documentation xml:lang="en">String of maximum 200 characters</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:string">
<xs:minLength value="1"/>
<xs:maxLength value="200"/>
<xs:pattern value=".*[^\s].*"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="SimpleText255NotBlankType">
<xs:annotation>
<xs:documentation xml:lang="hu">Legfeljebb 255 karaktert tartalmazó szöveg típus</xs:documentation>
<xs:documentation xml:lang="en">String of maximum 255 characters</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:string">
<xs:minLength value="1"/>
<xs:maxLength value="255"/>
<xs:pattern value=".*[^\s].*"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="SimpleText512NotBlankType">
<xs:annotation>
<xs:documentation xml:lang="hu">Legfeljebb 512 karaktert tartalmazó szöveg típus</xs:documentation>
<xs:documentation xml:lang="en">String of maximum 512 characters</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:string">
<xs:minLength value="1"/>
<xs:maxLength value="512"/>
<xs:pattern value=".*[^\s].*"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="SimpleText1024NotBlankType">
<xs:annotation>
<xs:documentation xml:lang="hu">Legfeljebb 1024 karaktert tartalmazó szöveg típus</xs:documentation>
<xs:documentation xml:lang="en">String of maximum 1024 characters</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:string">
<xs:minLength value="1"/>
<xs:maxLength value="1024"/>
<xs:pattern value=".*[^\s].*"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="TakeoverType">
<xs:annotation>
<xs:documentation xml:lang="hu">Az átvállalás adatait tartalmazó típus</xs:documentation>
<xs:documentation xml:lang="en">Field type for data of takeover</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:string">
<xs:enumeration value="01">
<xs:annotation>
<xs:documentation xml:lang="hu">A 2011. évi LXXXV. tv. 14. § (4) bekezdés szerint az eladó (első belföldi forgalomba hozó) vállalja át a vevő termékdíj-kötelezettségét</xs:documentation>
<xs:documentation xml:lang="en">The supplier takes over buyer’s product fee liability on the basis of Paragraph (4), Section 14 of the Act LXXXV of 2011</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="02_aa">
<xs:annotation>
<xs:documentation xml:lang="hu">A 2011. évi LXXXV. tv. 14. § (5) aa) alpontja szerint a vevő szerződés alapján átvállalja az eladó termékdíj-kötelezettségét</xs:documentation>
<xs:documentation xml:lang="en">On the basis of contract, the buyer takes over supplier’s product fee liability on the basis of sub-point aa), Paragraph (5), Section 14 of the Act LXXXV of 2011</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="02_ab"/>
<xs:enumeration value="02_b"/>
<xs:enumeration value="02_c"/>
<xs:enumeration value="02_d"/>
<xs:enumeration value="02_ea"/>
<xs:enumeration value="02_eb"/>
<xs:enumeration value="02_fa"/>
<xs:enumeration value="02_fb"/>
<xs:enumeration value="02_ga"/>
<xs:enumeration value="02_gb"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="TaxpayerIdType">
<xs:annotation>
<xs:documentation xml:lang="hu">Az adószám nyolc jegyű törzsszám része</xs:documentation>
<xs:documentation xml:lang="en">The 8-digit core number section of the tax number</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:string">
<xs:length value="8"/>
<xs:pattern value="[0-9]{8}"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="TimestampType">
<xs:annotation>
<xs:documentation xml:lang="hu">Időbélyeg típus</xs:documentation>
<xs:documentation xml:lang="en">Timestamp type</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:dateTime">
<xs:pattern value="\d{4}-\d{2}-\d{2}T\d{2}:\d{2}:\d{2}.\d{3}Z"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="VatCodeType">
<xs:annotation>
<xs:documentation xml:lang="hu">ÁFA kód</xs:documentation>
<xs:documentation xml:lang="en">VAT code</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:string">
<xs:length value="1"/>
<xs:pattern value="[1-5]{1}"/>
</xs:restriction>
</xs:simpleType>
<xs:complexType name="AdditionalDataType">
<xs:annotation>
<xs:documentation xml:lang="hu">További adat leírására szolgáló típus</xs:documentation>
<xs:documentation xml:lang="en">Type for additional data description</xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element name="dataName" type="DataNameType">
<xs:annotation>
<xs:documentation xml:lang="hu">Az adatmező egyedi azonosítója</xs:documentation>
<xs:documentation xml:lang="en">Unique identification of the data field</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="dataDescription" type="SimpleText255NotBlankType">
<xs:annotation>
<xs:documentation xml:lang="hu">Az adatmező tartalmának szöveges leírása</xs:documentation>
<xs:documentation xml:lang="en">Description of content of the data field</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="dataValue" type="SimpleText512NotBlankType">
<xs:annotation>
<xs:documentation xml:lang="hu">Az adat értéke</xs:documentation>
<xs:documentation xml:lang="en">Value of the data</xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
</xs:complexType>
<xs:complexType name="AddressType">
<xs:annotation>
<xs:documentation xml:lang="hu">Cím típus, amely vagy egyszerű, vagy részletes címet tartalmaz</xs:documentation>
<xs:documentation xml:lang="en">Format of address that includes either a simple or a detailed address</xs:documentation>
</xs:annotation>
<xs:choice>
<xs:element name="simpleAddress" type="SimpleAddressType">
<xs:annotation>
<xs:documentation xml:lang="hu">Egyszerű cím</xs:documentation>
<xs:documentation xml:lang="en">Simple address</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="detailedAddress" type="DetailedAddressType">
<xs:annotation>
<xs:documentation xml:lang="hu">Részletes cím</xs:documentation>
<xs:documentation xml:lang="en">Detailed address</xs:documentation>
</xs:annotation>
</xs:element>
</xs:choice>
</xs:complexType>
<xs:complexType name="AggregateInvoiceLineDataType">
<xs:annotation>
<xs:documentation xml:lang="hu">A gyűjtő számlára vonatkozó speciális adatokat tartalmazó típus</xs:documentation>
<xs:documentation xml:lang="en">Field type including aggregate invoice special data</xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element name="lineExchangeRate" type="ExchangeRateType" minOccurs="0">
<xs:annotation>
<xs:documentation xml:lang="hu">A tételhez tartozó árfolyam, 1 (egy) egységre vonatkoztatva. Csak külföldi pénznemben kiállított gyűjtő számla esetén kitöltendő</xs:documentation>
<xs:documentation xml:lang="en">The exchange rate applied to the item, pertaining to 1 (one) unit. This should be filled in only if an aggregate invoice in foreign currency is issued</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="lineDeliveryDate" type="DateType">
<xs:annotation>
<xs:documentation xml:lang="hu">Gyűjtőszámla esetén az adott tétel teljesítési dátuma</xs:documentation>
<xs:documentation xml:lang="en">Delivery date of the given item in the case of an aggregate invoice</xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
</xs:complexType>
<xs:complexType name="AircraftType">
<xs:annotation>
<xs:documentation xml:lang="hu">Légi közlekedési eszköz</xs:documentation>
<xs:documentation xml:lang="en">Aircraft</xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element name="takeOffWeight" type="QuantityType">
<xs:annotation>
<xs:documentation xml:lang="hu">Felszállási tömeg kilogrammban</xs:documentation>
<xs:documentation xml:lang="en">Take-off weight in kilogram</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="airCargo" type="xs:boolean" default="false">
<xs:annotation>
<xs:documentation xml:lang="hu">Értéke true ha a jármű az ÁFA tv. 259.§ 25. c) szerinti kivétel alá tartozik</xs:documentation>
<xs:documentation xml:lang="en">The value is true if the means of transport is exempt from VAT as per section 259 [25] (c)</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="operationHours" type="QuantityType">
<xs:annotation>
<xs:documentation xml:lang="hu">Repült órák száma</xs:documentation>
<xs:documentation xml:lang="en">Number of aviated hours</xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
</xs:complexType>
<xs:complexType name="CustomerDeclarationType">
<xs:annotation>
<xs:documentation xml:lang="hu">Ha az eladó a vevő nyilatkozata alapján mentesül a termékdíj megfizetése alól, akkor az érintett termékáram</xs:documentation>
<xs:documentation xml:lang="en">Should the supplier, based on statement given by the purchaser, be exempted from paying product fee, then the product stream affected</xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element name="productStream" type="ProductStreamType">
<xs:annotation>
<xs:documentation xml:lang="hu">Termékáram</xs:documentation>
<xs:documentation xml:lang="en">Product stream</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="productFeeWeight" type="QuantityType" minOccurs="0">
<xs:annotation>
<xs:documentation xml:lang="hu">Termékdíj köteles termék tömege kilogrammban</xs:documentation>
<xs:documentation xml:lang="en">Weight of product fee obliged product in kilogram</xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
</xs:complexType>
<xs:complexType name="CustomerInfoType">
<xs:annotation>
<xs:documentation xml:lang="hu">A vevő adatai</xs:documentation>
<xs:documentation xml:lang="en">Customer data</xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element name="customerTaxNumber" type="TaxNumberType" minOccurs="0">
<xs:annotation>
<xs:documentation xml:lang="hu">Adószám, amely alatt a számlán szereplő termékbeszerzés vagy szolgáltatás igénybevétele történt. Lehet csoportazonosító szám is</xs:documentation>
<xs:documentation xml:lang="en">Tax number or group identification number, under which the purchase of goods or services is done</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="groupMemberTaxNumber" type="TaxNumberType" minOccurs="0">
<xs:annotation>
<xs:documentation xml:lang="hu">Csoport tag adószáma, ha a termékbeszerzés vagy szolgáltatás igénybevétele csoportazonosító szám alatt történt</xs:documentation>
<xs:documentation xml:lang="en">Tax number of group member, when the purchase of goods or services is done under group identification number</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="communityVatNumber" type="CommunityVatNumberType" minOccurs="0">
<xs:annotation>
<xs:documentation xml:lang="hu">Közösségi adószám</xs:documentation>
<xs:documentation xml:lang="en">Community tax number</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="thirdStateTaxId" type="SimpleText50NotBlankType" minOccurs="0">
<xs:annotation>
<xs:documentation xml:lang="hu">Harmadik országbeli adóazonosító</xs:documentation>
<xs:documentation xml:lang="en">Third state tax identification number</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="customerName" type="SimpleText512NotBlankType">
<xs:annotation>
<xs:documentation xml:lang="hu">A vevő neve</xs:documentation>
<xs:documentation xml:lang="en">Name of the customer</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="customerAddress" type="AddressType">
<xs:annotation>
<xs:documentation xml:lang="hu">A vevő címe</xs:documentation>
<xs:documentation xml:lang="en">Address of the customer</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="customerBankAccountNumber" type="BankAccountNumberType" minOccurs="0">
<xs:annotation>
<xs:documentation xml:lang="hu">Vevő bankszámlaszáma</xs:documentation>
<xs:documentation xml:lang="en">Bank account number of the customer</xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
</xs:complexType>
<xs:complexType name="DetailedAddressType">
<xs:annotation>
<xs:documentation xml:lang="hu">Részletes címadatok</xs:documentation>
<xs:documentation xml:lang="en">Detailed address data</xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element name="countryCode" type="CountryCodeType" default="HU">
<xs:annotation>
<xs:documentation xml:lang="hu">Az országkód ISO 3166 alpha-2 szabvány szerint</xs:documentation>
<xs:documentation xml:lang="en">ISO 3166 alpha-2 country code</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="region" type="SimpleText50NotBlankType" minOccurs="0">
<xs:annotation>
<xs:documentation xml:lang="hu">Tartomány kódja (amennyiben értelmezhető az adott országban) az ISO 3166-2 alpha 2 szabvány szerint</xs:documentation>
<xs:documentation xml:lang="en">ISO 3166 alpha-2 province code (if appropriate in a given country)</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="postalCode" type="PostalCodeType">
<xs:annotation>
<xs:documentation xml:lang="hu">Irányítószám (amennyiben nem értelmezhető, 0000 értékkel kell kitölteni)</xs:documentation>
<xs:documentation xml:lang="en">ZIP code (If can not be interpreted, need to be filled "0000")</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="city" type="SimpleText255NotBlankType">
<xs:annotation>
<xs:documentation xml:lang="hu">Település</xs:documentation>
<xs:documentation xml:lang="en">Settlement</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="streetName" type="SimpleText255NotBlankType">
<xs:annotation>
<xs:documentation xml:lang="hu">Közterület neve</xs:documentation>
<xs:documentation xml:lang="en">Name of public place</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="publicPlaceCategory" type="SimpleText50NotBlankType">
<xs:annotation>
<xs:documentation xml:lang="hu">Közterület jellege</xs:documentation>
<xs:documentation xml:lang="en">Category of public place</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="number" type="SimpleText50NotBlankType" minOccurs="0">
<xs:annotation>
<xs:documentation xml:lang="hu">Házszám</xs:documentation>
<xs:documentation xml:lang="en">House number</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="building" type="SimpleText50NotBlankType" minOccurs="0">
<xs:annotation>
<xs:documentation xml:lang="hu">Épület</xs:documentation>
<xs:documentation xml:lang="en">Building</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="staircase" type="SimpleText50NotBlankType" minOccurs="0">
<xs:annotation>
<xs:documentation xml:lang="hu">Lépcsőház</xs:documentation>
<xs:documentation xml:lang="en">Staircase</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="floor" type="SimpleText50NotBlankType" minOccurs="0">
<xs:annotation>
<xs:documentation xml:lang="hu">Emelet</xs:documentation>
<xs:documentation xml:lang="en">Floor</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="door" type="SimpleText50NotBlankType" minOccurs="0">
<xs:annotation>
<xs:documentation xml:lang="hu">Ajtó</xs:documentation>
<xs:documentation xml:lang="en">Door number</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="lotNumber" type="SimpleText50NotBlankType" minOccurs="0">
<xs:annotation>
<xs:documentation xml:lang="hu">Helyrajzi szám</xs:documentation>
<xs:documentation xml:lang="en">Lot number</xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
</xs:complexType>
<xs:complexType name="DieselOilPurchaseType">
<xs:annotation>
<xs:documentation xml:lang="hu">Gázolaj adózottan történő beszerzésének adatai – 45/2016 (XI. 29.) NGM rendelet 75. § (1) a)</xs:documentation>
<xs:documentation xml:lang="en">Data of gas oil acquisition after taxation – point a), paragraph (1) of Section 75 of the NGM Decree No. 45/2016. (XI. 29.)</xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element name="purchaseLocation" type="SimpleAddressType">
<xs:annotation>
<xs:documentation xml:lang="hu">Gázolaj beszerzés helye</xs:documentation>
<xs:documentation xml:lang="en">Place of purchase of the gas oil</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="purchaseDate" type="DateType">
<xs:annotation>
<xs:documentation xml:lang="hu">Gázolaj beszerzés dátuma</xs:documentation>
<xs:documentation xml:lang="en">Date of purchase of gas oil</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="vehicleRegistrationNumber" type="RegNumType">
<xs:annotation>
<xs:documentation xml:lang="hu">Kereskedelmi jármű forgalmi rendszáma (csak betűk és számok</xs:documentation>
<xs:documentation xml:lang="en">Registration number of vehicle (letters and numbers only)</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="dieselOilQuantity" type="QuantityType" minOccurs="0">
<xs:annotation>
<xs:documentation xml:lang="hu">Gépi bérmunka-szolgáltatás során felhasznált gázolaj mennyisége literben – Jöt. 117. § (2)</xs:documentation>
<xs:documentation xml:lang="en">Fordítandó helyett: Quantity of diesel oil used for contract work and machinery hire service in liter – Act LXVIII of 2016 on Excise Tax section 117 (2)</xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
</xs:complexType>
<xs:complexType name="DiscountDataType">
<xs:annotation>
<xs:documentation xml:lang="hu">Árengedmény adatok</xs:documentation>
<xs:documentation xml:lang="en">Discount data</xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element name="discountDescription" type="SimpleText255NotBlankType" minOccurs="0">
<xs:annotation>
<xs:documentation xml:lang="hu">Az árengedmény leírása</xs:documentation>
<xs:documentation xml:lang="en">Description of the discount</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="discountValue" type="MonetaryType" minOccurs="0">
<xs:annotation>
<xs:documentation xml:lang="hu">Tételhez tartozó árengedmény összege a számla pénznemében, ha az egységár nem tartalmazza</xs:documentation>
<xs:documentation xml:lang="en">Total amount of discount per item expressed in the currency of the invoice if not included in the unit price</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="discountRate" type="RateType" minOccurs="0">
<xs:annotation>
<xs:documentation xml:lang="hu">Tételhez tartozó árengedmény aránya, ha az egységár nem tartalmazza</xs:documentation>
<xs:documentation xml:lang="en">Rate of discount per item expressed in the currency of the invoice if not included in the unit price</xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
</xs:complexType>
<xs:complexType name="EkaerIdsType">
<xs:annotation>
<xs:documentation xml:lang="hu">A tételhez tartozó EKÁER azonosító(k)</xs:documentation>
<xs:documentation xml:lang="en">EKAER ID-s of the item</xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element name="ekaerId" type="EkaerIdType" maxOccurs="unbounded">
<xs:annotation>
<xs:documentation xml:lang="hu">A tételhez tartozó EKÁER azonosító</xs:documentation>
<xs:documentation xml:lang="en">EKAER number(s) identifying the item; EKAER stands for Electronic Trade and Transport Control System</xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
</xs:complexType>
<xs:complexType name="FiscalRepresentativeType">
<xs:annotation>
<xs:documentation xml:lang="hu">A pénzügyi képviselő adatai</xs:documentation>
<xs:documentation xml:lang="en">Fiscal representative data</xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element name="fiscalRepresentativeTaxNumber" type="TaxNumberType">
<xs:annotation>
<xs:documentation xml:lang="hu">A pénzügyi képviselő adószáma</xs:documentation>
<xs:documentation xml:lang="en">Tax number of the fiscal representative</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="fiscalRepresentativeName" type="SimpleText512NotBlankType">
<xs:annotation>
<xs:documentation xml:lang="hu">A pénzügyi képviselő neve</xs:documentation>
<xs:documentation xml:lang="en">Name of the fiscal representative</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="fiscalRepresentativeAddress" type="AddressType">
<xs:annotation>
<xs:documentation xml:lang="hu">Pénzügyi képviselő címe</xs:documentation>
<xs:documentation xml:lang="en">Address of the fiscal representative</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="fiscalRepresentativeBankAccountNumber" type="BankAccountNumberType" minOccurs="0">
<xs:annotation>
<xs:documentation xml:lang="hu">Pénzügyi képviselő által a számla kibocsátó (eladó) számára megnyitott bankszámla bankszámlaszáma</xs:documentation>
<xs:documentation xml:lang="en">Bank account number opened by the fiscal representative for the issuer of the invoice (supplier)</xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
</xs:complexType>
<xs:complexType name="InvoiceDataType">
<xs:annotation>
<xs:documentation xml:lang="hu">Számla adatok</xs:documentation>
<xs:documentation xml:lang="en">Invoice data</xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element name="invoiceNumber" type="SimpleText50NotBlankType">
<xs:annotation>
<xs:documentation xml:lang="hu">Számla vagy módosító okirat sorszáma - ÁFA tv. 169. § b) vagy 170. § (1) bek. b) pont</xs:documentation>