-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathschema_etransport_v1.xsd
1263 lines (1225 loc) · 39.4 KB
/
schema_etransport_v1.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"?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"
xmlns="mfp:anaf:dgti:eTransport:declaratie:v1"
targetNamespace="mfp:anaf:dgti:eTransport:declaratie:v1" elementFormDefault="qualified"
attributeFormDefault="unqualified" version="1.02" xml:lang="ro">
<xs:element name="eTransport" type="eTransportType"/>
<xs:complexType name="eTransportType">
<xs:complexContent>
<xs:restriction base="xs:anyType">
<!-- choice pe secventa de elemente notificare SAU stergere SAU confirmare-->
<xs:choice>
<xs:element name="notificare" type="NotificareType"/>
<xs:element name="stergere" type="CorectieType"/>
<xs:element name="confirmare" type="ConfirmareType"/>
</xs:choice>
<xs:attribute name="codDeclarant" type="CodDeclarantType" use="required"/>
<xs:attribute name="refDeclarant" type="Str50"/>
</xs:restriction>
</xs:complexContent>
</xs:complexType>
<!-- elementul notificare -->
<xs:complexType name="NotificareType">
<xs:sequence>
<xs:element name="corectie" type="CorectieType" minOccurs="0" maxOccurs="1"/>
<xs:element name="bunuriTransportate" type="BunuriTransportateType" minOccurs="1" maxOccurs="unbounded"/>
<xs:element name="partenerComercial" type="PartenerComercialType" minOccurs="1" maxOccurs="1"/>
<xs:element name="dateTransport" type="DateTransportType" minOccurs="1" maxOccurs="1"/>
<xs:element name="locIncarcare" type="LocatieType" minOccurs="0" maxOccurs="1"/>
<xs:element name="locDescarcare" type="LocatieType" minOccurs="0" maxOccurs="1"/>
<xs:element name="documenteTransport" type="DocumenteTransportType" minOccurs="1" maxOccurs="unbounded"/>
<xs:element name="notificareAnterioara" type="NotificareAnterioaraType" minOccurs="0" maxOccurs="unbounded"/>
</xs:sequence>
<xs:attribute name="codTipOperatiune" type="CodTipOperatiuneType" use="required"/>
</xs:complexType>
<xs:simpleType name="UitType">
<xs:restriction base="xs:string">
<!-- primele 14 caractere: cifre 0-9 si litere majuscule, cu exceptia literelor O,I,Z,S,G,B (care seamana cu 0,1,2,5,6,8) -->
<!-- ultimele 2 caractere: cifre 0-9; reprezinta ultimele 2 cifre ale sumei codurilor ascii ale tuturor caracterelor anterioare -->
<xs:pattern value="[0-9ACDEFHJKLMNPQRTUVWXY]{14}[0-9]{2}"/>
</xs:restriction>
</xs:simpleType>
<xs:complexType name="CorectieType">
<xs:complexContent>
<xs:restriction base="xs:anyType">
<xs:attribute name="uit" type="UitType" use="required"/>
</xs:restriction>
</xs:complexContent>
</xs:complexType>
<!-- elementul confirmare -->
<xs:complexType name="ConfirmareType">
<xs:complexContent>
<xs:restriction base="xs:anyType">
<xs:attribute name="uit" type="UitType" use="required"/>
<xs:attribute name="tipConfirmare" type="TipConfirmareType" use="required"/>
<xs:attribute name="observatii" type="Str200"/>
</xs:restriction>
</xs:complexContent>
</xs:complexType>
<xs:complexType name="BunuriTransportateType">
<xs:complexContent>
<xs:restriction base="xs:anyType">
<xs:attribute name="nrCrt" type="xs:positiveInteger" use="required"/>
<xs:attribute name="codTarifar" type="CodTarifarType" use="required"/>
<xs:attribute name="denumireMarfa" type="Str200" use="required"/>
<xs:attribute name="codScopOperatiune" type="CodScopOperatiuneType" use="required"/>
<xs:attribute name="cantitate" type="PosDec_12_2_Type" use="required"/>
<xs:attribute name="codUnitateMasura" type="CodUMType" use="required"/>
<xs:attribute name="greutateNeta" type="PosDec_12_2_Type" use="required"/>
<xs:attribute name="greutateBruta" type="PosDec_12_2_Type" use="required"/>
<xs:attribute name="valoareLeiFaraTva" type="NonNegDec_12_2_Type" use="required"/>
<xs:attribute name="refDeclarant" type="Str50"/>
</xs:restriction>
</xs:complexContent>
</xs:complexType>
<xs:complexType name="NotificareAnterioaraType">
<xs:complexContent>
<xs:restriction base="xs:anyType">
<xs:attribute name="uit" type="UitType" use="required"/>
<xs:attribute name="observatii" type="Str200"/>
<xs:attribute name="refDeclarant" type="Str50"/>
</xs:restriction>
</xs:complexContent>
</xs:complexType>
<xs:complexType name="PartenerComercialType">
<xs:complexContent>
<xs:restriction base="xs:anyType">
<xs:attribute name="codTara" type="CodTaraType" use="required"/>
<xs:attribute name="cod" type="Cod30Type"/>
<xs:attribute name="denumire" type="Str200" use="required"/>
</xs:restriction>
</xs:complexContent>
</xs:complexType>
<xs:complexType name="DateTransportType">
<xs:complexContent>
<xs:restriction base="xs:anyType">
<xs:attribute name="nrVehicul" type="NrVehiculType" use="required"/>
<xs:attribute name="nrRemorca1" type="NrVehiculType"/>
<xs:attribute name="nrRemorca2" type="NrVehiculType"/>
<xs:attribute name="codTaraTransportator" type="CodTaraType" use="required"/>
<xs:attribute name="codTransportator" type="Cod30Type"/>
<xs:attribute name="denumireTransportator" type="Str200" use="required"/>
<xs:attribute name="dataTransport" type="xs:date" use="required"/>
<xs:attribute name="codPtf" type="CodPtfType"/>
<xs:attribute name="codBirouVamal" type="CodBirouVamalType"/>
</xs:restriction>
</xs:complexContent>
</xs:complexType>
<xs:complexType name="LocatieType">
<xs:complexContent>
<xs:restriction base="xs:anyType">
<xs:attribute name="codJudet" type="CodJudetType" use="required"/>
<xs:attribute name="denumireLocalitate" type="Str100" use="required"/>
<xs:attribute name="denumireStrada" type="Str100" use="required"/>
<xs:attribute name="numar" type="Str20"/>
<xs:attribute name="bloc" type="Str30"/>
<xs:attribute name="scara" type="Str20"/>
<xs:attribute name="etaj" type="Str20"/>
<xs:attribute name="apartament" type="Str20"/>
<xs:attribute name="alteInfo" type="Str200"/>
<xs:attribute name="codPostal" type="Str20"/>
</xs:restriction>
</xs:complexContent>
</xs:complexType>
<xs:complexType name="DocumenteTransportType">
<xs:complexContent>
<xs:restriction base="xs:anyType">
<xs:attribute name="tipDocument" type="TipDocumentType" use="required"/>
<xs:attribute name="numarDocument" type="Str50"/>
<xs:attribute name="dataDocument" type="xs:date" use="required"/>
<xs:attribute name="observatii" type="Str200"/>
</xs:restriction>
</xs:complexContent>
</xs:complexType>
<xs:simpleType name="Cod30Type">
<xs:restriction base="xs:token">
<xs:maxLength value="30"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="Str20">
<xs:restriction base="xs:string">
<xs:maxLength value="20"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="Str30">
<xs:restriction base="xs:string">
<xs:maxLength value="30"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="Str50">
<xs:restriction base="xs:string">
<xs:maxLength value="50"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="Str100">
<xs:restriction base="xs:string">
<xs:maxLength value="100"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="Str200">
<xs:restriction base="xs:string">
<xs:maxLength value="200"/>
</xs:restriction>
</xs:simpleType>
<xs:annotation>
<xs:documentation>Regula validare CUI/CIF/CNP</xs:documentation>
</xs:annotation>
<xs:simpleType name="CodDeclarantType">
<xs:restriction base="xs:string">
<xs:pattern value="((\d{13})|(\d{2,10}))"/>
</xs:restriction>
</xs:simpleType>
<xs:annotation>
<xs:documentation>
Valori posibile pentru campul codTipOperatiune:
"10" Achizitie intracomunitara,
"20" Livrare intracomunitara,
"30" Transport pe teritoriul national,
"40" Import,
"50" Export,
"60" Tranzactie intracomunitara - Intrare pentru depozitare/formare nou transport,
"70" Tranzactie intracomunitara - Iesire dupa depozitare/formare nou transport
</xs:documentation>
</xs:annotation>
<xs:simpleType name="CodTipOperatiuneType">
<xs:restriction base="xs:int">
<xs:enumeration value="10"/>
<xs:enumeration value="20"/>
<xs:enumeration value="30"/>
<xs:enumeration value="40"/>
<xs:enumeration value="50"/>
<xs:enumeration value="60"/>
<xs:enumeration value="70"/>
</xs:restriction>
</xs:simpleType>
<xs:annotation>
<xs:documentation>
Campul codScopOperatiune ia valori diferite, in functie de valoarea campului codTipOperatiune, astfel:
- pentru codTipOperatiune = "10" Achizitie intracomunitara:
"100101" Comercializare
"100201" Producție
"100301" Gratuități: mostre, produse promoționale, gratuități pt clienți
"100401" Echipament comercial
"100501" Mijloace fixe
"100601" Consum propriu
"100701" Nontransfer - Stoc la dispoziția clientului
"100702" Nontransfer - Bunuri prelucrate în sistem lohn
"100703" Nontransfer - Operațiuni de livrare cu instalare
"100801" Leasing financiar/operațional
"100802" Bunuri în garanție
"100901" Operațiuni scutite
"101001" Investiție in curs
"101101" Donații, ajutoare primite
"109901" Altele
- pentru codTipOperatiune = "20" Livrare intracomunitara:
"200101" Comercializare
"200301" Gratuități: mostre, produse promoționale, gratuități pt clienți
"200701" Nontransfer - Stoc la dispoziția clientului
"200702" Nontransfer - Bunuri prelucrate în sistem lohn
"200703" Nontransfer - Operațiuni de livrare cu instalare
"200801" Leasing financiar/operațional
"200802" Bunuri în garanție
"209901" Altele
- pentru codTipOperatiune = "30" Transport pe teritoriul national:
"300101" Comercializare
"300704" Transfer între gestiuni
"300705" Bunuri puse la dispoziția clientului
"309901" Altele
- pentru codTipOperatiune = "40" Import:
"404001" Import
- pentru codTipOperatiune = "50" Export:
"505001" Export
- pentru codTipOperatiune = "60" Tranzactie intracomunitara - Intrare pentru depozitare/formare nou transport:
"606001" Intrare pentru depozitare/formare transport nou
- pentru codTipOperatiune = "70" Tranzactie intracomunitara - Iesire dupa depozitare/formare nou transport:
"707001" Ieșire după depozitare/formare transport nou
</xs:documentation>
</xs:annotation>
<xs:simpleType name="CodScopOperatiuneType">
<xs:restriction base="xs:int">
<xs:enumeration value="100101"/>
<xs:enumeration value="100201"/>
<xs:enumeration value="100301"/>
<xs:enumeration value="100401"/>
<xs:enumeration value="100501"/>
<xs:enumeration value="100601"/>
<xs:enumeration value="100701"/>
<xs:enumeration value="100702"/>
<xs:enumeration value="100703"/>
<xs:enumeration value="100801"/>
<xs:enumeration value="100802"/>
<xs:enumeration value="100901"/>
<xs:enumeration value="101001"/>
<xs:enumeration value="101101"/>
<xs:enumeration value="109901"/>
<xs:enumeration value="200101"/>
<xs:enumeration value="200301"/>
<xs:enumeration value="200701"/>
<xs:enumeration value="200702"/>
<xs:enumeration value="200703"/>
<xs:enumeration value="200801"/>
<xs:enumeration value="200802"/>
<xs:enumeration value="209901"/>
<xs:enumeration value="300101"/>
<xs:enumeration value="300104"/>
<xs:enumeration value="300704"/>
<xs:enumeration value="300705"/>
<xs:enumeration value="309901"/>
<xs:enumeration value="404001"/>
<xs:enumeration value="505001"/>
<xs:enumeration value="606001"/>
<xs:enumeration value="707001"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="CodTarifarType">
<xs:restriction base="xs:string">
<xs:pattern value="[0-9]{4}|[0-9]{6}|[0-9]{8}"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="PosDec_12_2_Type">
<xs:restriction base="xs:decimal">
<xs:minExclusive value="0"/>
<xs:pattern value="[0-9]{0,12}(\.[0-9]{0,2})?"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="NonNegDec_12_2_Type">
<xs:restriction base="xs:decimal">
<xs:minInclusive value="0"/>
<xs:pattern value="[0-9]{0,12}(\.[0-9]{0,2})?"/>
</xs:restriction>
</xs:simpleType>
<xs:annotation>
<xs:documentation>
Valori posibile pentru campul codJudetType:
"1" Alba
"2" Arad
"3" Argeş
"4" Bacău
"5" Bihor
"6" Bistriţa-Năsăud
"7" Botoşani
"8" Braşov
"9" Brăila
"10" Buzău
"11" Caraş-Severin
"51" Călăraşi
"12" Cluj
"13" Constanţa
"14" Covasna
"16" Dolj
"15" Dâmboviţa
"17" Galaţi
"52" Giurgiu
"18" Gorj
"19" Harghita
"20" Hunedoara
"21" Ialomiţa
"22" Iaşi
"23" Ilfov
"24" Maramureş
"25" Mehedinţi
"40" Municipiul Bucureşti
"26" Mureş
"27" Neamţ
"28" Olt
"29" Prahova
"30" Satu Mare
"32" Sibiu
"33" Suceava
"31" Sălaj
"34" Teleorman
"35" Timiş
"36" Tulcea
"37" Vaslui
"39" Vrancea
"38" Vâlcea
</xs:documentation>
</xs:annotation>
<xs:simpleType name="CodJudetType">
<xs:restriction base="xs:int">
<xs:enumeration value="1"/>
<xs:enumeration value="2"/>
<xs:enumeration value="3"/>
<xs:enumeration value="4"/>
<xs:enumeration value="5"/>
<xs:enumeration value="6"/>
<xs:enumeration value="7"/>
<xs:enumeration value="8"/>
<xs:enumeration value="9"/>
<xs:enumeration value="10"/>
<xs:enumeration value="11"/>
<xs:enumeration value="51"/>
<xs:enumeration value="12"/>
<xs:enumeration value="13"/>
<xs:enumeration value="14"/>
<xs:enumeration value="15"/>
<xs:enumeration value="16"/>
<xs:enumeration value="17"/>
<xs:enumeration value="52"/>
<xs:enumeration value="18"/>
<xs:enumeration value="19"/>
<xs:enumeration value="20"/>
<xs:enumeration value="21"/>
<xs:enumeration value="22"/>
<xs:enumeration value="23"/>
<xs:enumeration value="24"/>
<xs:enumeration value="25"/>
<xs:enumeration value="26"/>
<xs:enumeration value="27"/>
<xs:enumeration value="28"/>
<xs:enumeration value="29"/>
<xs:enumeration value="30"/>
<xs:enumeration value="31"/>
<xs:enumeration value="32"/>
<xs:enumeration value="33"/>
<xs:enumeration value="34"/>
<xs:enumeration value="35"/>
<xs:enumeration value="36"/>
<xs:enumeration value="37"/>
<xs:enumeration value="38"/>
<xs:enumeration value="39"/>
<xs:enumeration value="40"/>
</xs:restriction>
</xs:simpleType>
<xs:annotation>
<xs:documentation>
Valori posibile pentru campul codPtf:
"1" Petea (HU)
"2" Borș (HU)
"3" Vărșand (HU)
"4" Nădlac (HU)
"5" Calafat (BG)
"6" Bechet (BG)
"7" Turnu Măgurele (BG)
"8" Zimnicea (BG)
"9" Giurgiu (BG)
"10" Ostrov (BG)
"11" Negru Vodă (BG)
"12" Vama Veche (BG)
"13" Călărași (BG)
"14" Corabia (BG)
"15" Oltenița (BG)
"16" Carei (HU)
"17" Cenad (HU)
"18" Episcopia Bihor (HU)
"19" Salonta (HU)
"20" Săcuieni (HU)
"21" Turnu (HU)
"22" Urziceni (HU)
"23" Valea lui Mihai (HU)
"24" Vladimirescu (HU)
"25" Porțile de Fier 1 (RS)
"26" Naidăș (RS)
"27" Stamora Moravița (RS)
"28" Jimbolia (RS)
"29" Halmeu (UA)
"30" Stânca Costești (MD)
"31" Sculeni (MD)
"32" Albița (MD)
"33" Oancea (MD)
"34" Galați Giurgiulești (MD)
"35" Constanța Sud Agigea (-)
"36" Siret (UA)
"37" Nădlac 2 - A1 (HU)
"38" Borș 2 - A3 (HU)
</xs:documentation>
</xs:annotation>
<xs:simpleType name="CodPtfType">
<xs:restriction base="xs:int">
<xs:enumeration value="1"/>
<xs:enumeration value="2"/>
<xs:enumeration value="3"/>
<xs:enumeration value="4"/>
<xs:enumeration value="5"/>
<xs:enumeration value="6"/>
<xs:enumeration value="7"/>
<xs:enumeration value="8"/>
<xs:enumeration value="9"/>
<xs:enumeration value="10"/>
<xs:enumeration value="11"/>
<xs:enumeration value="12"/>
<xs:enumeration value="13"/>
<xs:enumeration value="14"/>
<xs:enumeration value="15"/>
<xs:enumeration value="16"/>
<xs:enumeration value="17"/>
<xs:enumeration value="18"/>
<xs:enumeration value="19"/>
<xs:enumeration value="20"/>
<xs:enumeration value="21"/>
<xs:enumeration value="22"/>
<xs:enumeration value="23"/>
<xs:enumeration value="24"/>
<xs:enumeration value="25"/>
<xs:enumeration value="26"/>
<xs:enumeration value="27"/>
<xs:enumeration value="28"/>
<xs:enumeration value="29"/>
<xs:enumeration value="30"/>
<xs:enumeration value="31"/>
<xs:enumeration value="32"/>
<xs:enumeration value="33"/>
<xs:enumeration value="34"/>
<xs:enumeration value="35"/>
<xs:enumeration value="36"/>
<xs:enumeration value="37"/>
<xs:enumeration value="38"/>
</xs:restriction>
</xs:simpleType>
<xs:annotation>
<xs:documentation>
Valori posibile pentru campul codBirouVamal (BVI/F - Birou Vamal de Interior/Frontieră):
"12801" BVI Alba Iulia (ROBV0300)
"22801" BVI Arad (ROTM0200)
"22901" BVF Arad Aeroport (ROTM0230)
"22902" BVF Zona Liberă Curtici (ROTM2300)
"32801" BVI Pitești (ROCR7000)
"42801" BVI Bacău (ROIS0600)
"42901" BVF Bacău Aeroport (ROIS0620)
"52801" BVI Oradea (ROCJ6570)
"52901" BVF Oradea Aeroport (ROCJ6580)
"62801" BVI Bistriţa-Năsăud (ROCJ0400)
"72801" BVI Botoşani (ROIS1600)
"72901" BVF Stanca Costeşti (ROIS1610)
"72902" BVF Rădăuţi Prut (ROIS1620)
"82801" BVI Braşov (ROBV0900)
"92901" BVF Zona Liberă Brăila (ROGL0710)
"92902" BVF Brăila (ROGL0700)
"102801" BVI Buzău (ROGL1500)
"112801" BVI Reșița (ROTM7600)
"112901" BVF Naidăș (ROTM6100)
"122801" BVI Cluj Napoca (ROCJ1800)
"122901" BVF Cluj Napoca Aero (ROCJ1810)
"132901" BVF Constanţa Sud Agigea (ROCT1900)
"132902" BVF Mihail Kogălniceanu (ROCT5100)
"132903" BVF Mangalia (ROCT5400)
"132904" BVF Constanţa Port (ROCT1970)
"142801" BVI Sfântu Gheorghe (ROBV7820)
"152801" BVI Târgoviște (ROBU8600)
"162801" BVI Craiova (ROCR2100)
"162901" BVF Craiova Aeroport (ROCR2110)
"162902" BVF Bechet (ROCR1720)
"162903" BVF Calafat (ROCR1700)
"172901" BVF Zona Liberă Galaţi (ROGL3810)
"172902" BVF Giurgiuleşti (ROGL3850)
"172903" BVF Oancea (ROGL3610)
"172904" BVF Galaţi (ROGL3800)
"182801" BVI Târgu Jiu (ROCR8810)
"192801" BVI Miercurea Ciuc (ROBV5600)
"202801" BVI Deva (ROTM8100)
"212801" BVI Slobozia (ROCT8220)
"222901" BVF Iaşi Aero (ROIS4660)
"222902" BVF Sculeni (ROIS4990)
"222903" BVF Iaşi (ROIS4650)
"232801" BVI Antrepozite/Ilfov (ROBU1200)
"232901" BVF Otopeni Călători (ROBU1030)
"242801" BVI Baia Mare (ROCJ0500)
"242901" BVF Aero Baia Mare (ROCJ0510)
"242902" BVF Sighet (ROCJ8000)
"252901" BVF Orşova (ROCR7280)
"252902" BVF Porţile De Fier I (ROCR7270)
"252903" BVF Porţile De Fier II (ROCR7200)
"252904" BVF Drobeta Turnu Severin (ROCR9000)
"262801" BVI Târgu Mureş (ROBV8800)
"262901" BVF Târgu Mureş Aeroport (ROBV8820)
"272801" BVI Piatra Neamţ (ROIS7400)
"282801" BVI Corabia (ROCR2000)
"282802" BVI Olt (ROCR8210)
"292801" BVI Ploiești (ROBU7100)
"302801" BVI Satu-Mare (ROCJ7810)
"302901" BVF Halmeu (ROCJ4310)
"302902" BVF Aeroport Satu Mare (ROCJ7830)
"312801" BVI Zalău (ROCJ9700)
"322801" BVI Sibiu (ROBV7900)
"322901" BVF Sibiu Aeroport (ROBV7910)
"332801" BVI Suceava (ROIS8230)
"332901" BVF Dorneşti (ROIS2700)
"332902" BVF Siret (ROIS8200)
"332903" BVF Suceava Aero (ROIS8250)
"332904" BVF Vicovu De Sus (ROIS9620)
"342801" BVI Alexandria (ROCR0310)
"342901" BVF Turnu Măgurele (ROCR9100)
"342902" BVF Zimnicea (ROCR5800)
"352802" BVI Timişoara Bază (ROTM8720)
"352901" BVF Jimbolia (ROTM5010)
"352902" BVF Moraviţa (ROTM5510)
"352903" BVF Timişoara Aeroport (ROTM8730)
"362901" BVF Sulina (ROCT8300)
"362902" BVF Aeroport Delta Dunării Tulcea (ROGL8910)
"362903" BVF Tulcea (ROGL8900)
"362904" BVF Isaccea (ROGL8920)
"372801" BVI Vaslui (ROIS9610)
"372901" BVF Fălciu (-)
"372902" BVF Albiţa (ROIS0100)
"382801" BVI Râmnicu Vâlcea (ROCR7700)
"392801" BVI Focșani (ROGL3600)
"402801" BVI Bucureşti Poştă (ROBU1380)
"402802" BVI Târguri și Expoziții (ROBU1400)
"402901" BVF Băneasa (ROBU1040)
"512801" BVI Călăraşi (ROCT1710)
"522801" BVI Giurgiu (ROBU3910)
"522901" BVF Zona Liberă Giurgiu (ROBU3980)
</xs:documentation>
</xs:annotation>
<xs:simpleType name="CodBirouVamalType">
<xs:restriction base="xs:int">
<xs:enumeration value="12801"/>
<xs:enumeration value="22801"/>
<xs:enumeration value="22901"/>
<xs:enumeration value="22902"/>
<xs:enumeration value="32801"/>
<xs:enumeration value="42801"/>
<xs:enumeration value="42901"/>
<xs:enumeration value="52801"/>
<xs:enumeration value="52901"/>
<xs:enumeration value="62801"/>
<xs:enumeration value="72801"/>
<xs:enumeration value="72901"/>
<xs:enumeration value="72902"/>
<xs:enumeration value="82801"/>
<xs:enumeration value="92901"/>
<xs:enumeration value="92902"/>
<xs:enumeration value="102801"/>
<xs:enumeration value="112801"/>
<xs:enumeration value="112901"/>
<xs:enumeration value="122801"/>
<xs:enumeration value="122901"/>
<xs:enumeration value="132901"/>
<xs:enumeration value="132902"/>
<xs:enumeration value="132903"/>
<xs:enumeration value="132904"/>
<xs:enumeration value="142801"/>
<xs:enumeration value="152801"/>
<xs:enumeration value="162801"/>
<xs:enumeration value="162901"/>
<xs:enumeration value="162902"/>
<xs:enumeration value="162903"/>
<xs:enumeration value="172901"/>
<xs:enumeration value="172902"/>
<xs:enumeration value="172903"/>
<xs:enumeration value="172904"/>
<xs:enumeration value="182801"/>
<xs:enumeration value="192801"/>
<xs:enumeration value="202801"/>
<xs:enumeration value="212801"/>
<xs:enumeration value="222901"/>
<xs:enumeration value="222902"/>
<xs:enumeration value="222903"/>
<xs:enumeration value="232801"/>
<xs:enumeration value="232901"/>
<xs:enumeration value="242801"/>
<xs:enumeration value="242901"/>
<xs:enumeration value="242902"/>
<xs:enumeration value="252901"/>
<xs:enumeration value="252902"/>
<xs:enumeration value="252903"/>
<xs:enumeration value="252904"/>
<xs:enumeration value="262801"/>
<xs:enumeration value="262901"/>
<xs:enumeration value="272801"/>
<xs:enumeration value="282801"/>
<xs:enumeration value="282802"/>
<xs:enumeration value="292801"/>
<xs:enumeration value="302801"/>
<xs:enumeration value="302901"/>
<xs:enumeration value="302902"/>
<xs:enumeration value="312801"/>
<xs:enumeration value="322801"/>
<xs:enumeration value="322901"/>
<xs:enumeration value="332801"/>
<xs:enumeration value="332901"/>
<xs:enumeration value="332902"/>
<xs:enumeration value="332903"/>
<xs:enumeration value="332904"/>
<xs:enumeration value="342801"/>
<xs:enumeration value="342901"/>
<xs:enumeration value="342902"/>
<xs:enumeration value="352802"/>
<xs:enumeration value="352901"/>
<xs:enumeration value="352902"/>
<xs:enumeration value="352903"/>
<xs:enumeration value="362901"/>
<xs:enumeration value="362902"/>
<xs:enumeration value="362903"/>
<xs:enumeration value="362904"/>
<xs:enumeration value="372801"/>
<xs:enumeration value="372901"/>
<xs:enumeration value="372902"/>
<xs:enumeration value="382801"/>
<xs:enumeration value="392801"/>
<xs:enumeration value="402801"/>
<xs:enumeration value="402802"/>
<xs:enumeration value="402901"/>
<xs:enumeration value="512801"/>
<xs:enumeration value="522801"/>
<xs:enumeration value="522901"/>
</xs:restriction>
</xs:simpleType>
<xs:annotation>
<xs:documentation>
Valori posibile pentru campul tipConfirmare:
"10" Confirmat,
"20" Confirmat partial,
"30" Infirmat
</xs:documentation>
</xs:annotation>
<xs:simpleType name="TipConfirmareType">
<xs:restriction base="xs:int">
<xs:enumeration value="10"/>
<xs:enumeration value="20"/>
<xs:enumeration value="30"/>
</xs:restriction>
</xs:simpleType>
<xs:annotation>
<xs:documentation>
Valori posibile pentru tari. Atentie! Pentru Grecia exista doar intrarea "EL", nu și "GR".
"AD" Andorra
"AE" Emiratele Arabe Unite
"AF" Afganistan
"AG" Antigua şi Barbuda
"AI" Anguilla
"AL" Albania
"AM" Armenia
"AN" NETHERLANDS ANTILLES
"AO" Angola
"AQ" Antarctica
"AR" Argentina
"AS" Samoa Americană
"AT" Austria (UE)
"AU" Australia
"AW" Aruba
"AX" Insulele Aland
"AZ" Azerbaidjan
"BA" Bosnia şi Herţegovina
"BB" Barbados
"BD" Bangladesh
"BE" Belgia (UE)
"BF" Burkina Faso
"BG" Bulgaria (UE)
"BH" Bahrain
"BI" Burundi
"BJ" Benin
"BL" Saint-Barthélemy
"BM" Bermuda
"BN" Brunei
"BO" Bolivia
"BQ" Bonaire, Sint Eustatius si Saba (ins. Olandeze)
"BR" Brazilia
"BS" Bahamas
"BT" Bhutan
"BV" Insula Bouvet
"BW" Botswana
"BY" Belarus
"BZ" Belize
"CA" Canada
"CC" Insulele Cocos (Keeling)
"CD" Republica Democratică Congo
"CF" Republica Centrafricană
"CG" Congo
"CH" Elveţia
"CI" Côte d'Ivoire
"CK" Insulele Cook
"CL" Chile
"CM" Camerun
"CN" China
"CO" Columbia
"CR" Costa Rica
"CU" Cuba
"CV" Capul Verde
"CW" Curaçao
"CX" Insula Christmas
"CY" Cipru (UE)
"CZ" Cehia (UE)
"DE" Germania (UE)
"DJ" Djibouti
"DK" Danemarca (UE)
"DM" Dominica
"DO" Republica Dominicană
"DZ" Algeria
"EC" Ecuador
"EE" Estonia (UE)
"EG" Egipt
"EH" Sahara Occidentală
"EL" Grecia (UE)
"ER" Eritreea
"ES" Spania (UE)
"ET" Etiopia
"FI" Finlanda (UE)
"FJ" Fiji
"FK" Insulele Falkland
"FM" Micronezia
"FO" Insulele Feroe
"FR" Franţa (UE)
"GA" Gabon
"GB" Regatul Unit
"GD" Grenada
"GE" Georgia
"GF" Guyana Franceză
"GG" Guernsey
"GH" Ghana
"GI" Gibraltar
"GL" Groenlanda
"GM" Gambia
"GN" Guineea
"GP" Guadelupa
"GQ" Guineea Ecuatorială
"GS" Georgia de Sud şi Insulele Sandwich de Sud
"GT" Guatemala
"GU" Guam
"GW" Guineea-Bissau
"GY" Guyana
"HK" Hong Kong
"HM" Insula Heard şi Insulele McDonald
"HN" Honduras
"HR" Croaţia (UE)
"HT" Haiti
"HU" Ungaria (UE)
"ID" Indonezia
"IE" Irlanda (UE)
"IL" Israel
"IM" Insula Man
"IN" India
"IO" Teritoriul Britanic din Oceanul Indian
"IQ" Irak
"IR" Iran
"IS" Islanda
"IT" Italia (UE)
"JE" Jersey
"JM" Jamaica
"JO" Iordania
"JP" Japonia
"KE" Kenya
"KG" Kârgâzstan
"KH" Cambodgia
"KI" Kiribati
"KM" Comore
"KN" Saint Kitts şi Nevis
"KP" Coreea de Nord
"KR" Coreea de Sud
"KW" Kuweit
"KY" Insulele Cayman
"KZ" Kazahstan
"LA" Laos
"LB" Liban
"LC" Saint Lucia
"LI" Liechtenstein
"LK" Sri Lanka
"LR" Liberia
"LS" Lesotho
"LT" Lituania (UE)
"LU" Luxemburg (UE)
"LV" Letonia (UE)
"LY" Libia
"MA" Maroc
"MC" Monaco
"MD" Moldova
"ME" Muntenegru
"MF" Saint-Martin
"MG" Madagascar
"MH" Insulele Marshall
"MK" Macedonia de Nord
"ML" Mali
"MM" Myanmar/Birmania
"MN" Mongolia
"MO" Macao
"MP" Insulele Mariane de Nord
"MQ" Martinica
"MR" Mauritania
"MS" Montserrat
"MT" Malta (UE)
"MU" Mauritius
"MV" Maldive
"MW" Malawi
"MX" Mexic
"MY" Malaysia
"MZ" Mozambic
"NA" Namibia
"NC" Noua Caledonie
"NE" Niger
"NF" Insula Norfolk
"NG" Nigeria
"NI" Nicaragua
"NL" Ţările de Jos (UE)
"NO" Norvegia
"NP" Nepal
"NR" Nauru
"NU" Niue
"NZ" Noua Zeelandă
"OM" Oman
"PA" Panama
"PE" Peru
"PF" Polinezia Franceză
"PG" Papua-Noua Guinee
"PH" Filipine
"PK" Pakistan
"PL" Polonia (UE)
"PM" Saint-Pierre şi Miquelon
"PN" Insulele Pitcairn
"PR" Puerto Rico
"PS" Fisia Gaza
"PS" PALESTINA
"PT" Portugalia (UE)
"PW" Palau
"PY" Paraguay
"QA" Qatar
"RE" Réunion
"RO" România (UE)
"RS" Serbia
"RU" Rusia
"RW" Rwanda
"SA" Arabia Saudită
"SB" Insulele Solomon
"SC" Seychelles
"SD" Sudan
"SE" Suedia (UE)
"SG" Singapore
"SH" Sfânta Elena, Ascension şi Tristan da Cunha
"SI" Slovenia (UE)
"SJ" Svalbard şi Jan Mayen
"SK" Slovacia (UE)
"SL" Sierra Leone
"SM" San Marino
"SN" Senegal
"SO" Somalia
"SR" Suriname
"SS" Sudanul de Sud
"ST" Sao Tomé şi Príncipe
"SV" El Salvador
"SX" Sint-Maarten
"SY" Siria
"SZ" Eswatini
"TC" Insulele Turks şi Caicos
"TD" Ciad
"TF" Teritoriile Australe şi Antarctice Franceze
"TG" Togo
"TH" Thailanda
"TJ" Tadjikistan
"TK" Tokelau
"TL" Timorul de Est
"TM" Turkmenistan
"TN" Tunisia
"TO" Tonga
"TR" Turcia
"TT" Trinidad şi Tobago
"TV" Tuvalu
"TW" Taiwan
"TZ" Tanzania
"UA" Ucraina
"UG" Uganda
"UM" Insulele Minore Îndepărtate ale Statelor Unite
"US" S.U.A
"UY" Uruguay
"UZ" Uzbekistan
"VA" Vatican
"VC" Saint Vincent şi Grenadinele
"VE" Venezuela
"VG" Insulele Virgine Britanice
"VI" Insulele Virgine Americane
"VN" Vietnam
"VU" Vanuatu
"WF" Wallis şi Futuna
"WS" Samoa
"XC" Poses. Spaniole Africa de Nord
"XI" Irlanda de Nord (UE)
"XK" Kosovo
"XL" Melila
"YE" Yemen
"YT" Mayotte
"ZA" Africa de Sud
"ZM" Zambia
"ZW" Zimbabwe
</xs:documentation>
</xs:annotation>
<xs:simpleType name="CodTaraType">
<xs:restriction base="xs:string">
<xs:enumeration value="AD"/>
<xs:enumeration value="AE"/>
<xs:enumeration value="AF"/>
<xs:enumeration value="AG"/>
<xs:enumeration value="AI"/>
<xs:enumeration value="AL"/>
<xs:enumeration value="AM"/>
<xs:enumeration value="AN"/>
<xs:enumeration value="AO"/>
<xs:enumeration value="AQ"/>
<xs:enumeration value="AR"/>
<xs:enumeration value="AS"/>
<xs:enumeration value="AT"/>
<xs:enumeration value="AU"/>
<xs:enumeration value="AW"/>
<xs:enumeration value="AX"/>
<xs:enumeration value="AZ"/>
<xs:enumeration value="BA"/>
<xs:enumeration value="BB"/>
<xs:enumeration value="BD"/>
<xs:enumeration value="BE"/>
<xs:enumeration value="BF"/>
<xs:enumeration value="BG"/>
<xs:enumeration value="BH"/>
<xs:enumeration value="BI"/>
<xs:enumeration value="BJ"/>
<xs:enumeration value="BL"/>
<xs:enumeration value="BM"/>
<xs:enumeration value="BN"/>
<xs:enumeration value="BO"/>
<xs:enumeration value="BQ"/>
<xs:enumeration value="BR"/>
<xs:enumeration value="BS"/>
<xs:enumeration value="BT"/>