-
Notifications
You must be signed in to change notification settings - Fork 2
/
DTE_v10.xsd
5190 lines (5190 loc) · 223 KB
/
DTE_v10.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="ISO-8859-1"?>
<!-- edited with XMLSPY v5 rel. 4 U (http://www.xmlspy.com) by Zulema Olguín Traro (Servicios de Impuestos Internos) -->
<xs:schema targetNamespace="http://www.sii.cl/SiiDte" xmlns:SiiDte="http://www.sii.cl/SiiDte" xmlns:ds="http://www.w3.org/2000/09/xmldsig#" xmlns:xs="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified" attributeFormDefault="unqualified">
<xs:include schemaLocation="SiiTypes_v10.xsd"/>
<xs:import namespace="http://www.w3.org/2000/09/xmldsig#" schemaLocation="xmldsignature_v10.xsd"/>
<xs:element name="DTE" type="SiiDte:DTEDefType"/>
<xs:complexType name="DTEDefType">
<xs:annotation>
<xs:documentation>Documento Tributario Electronico</xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:choice>
<xs:element name="Documento">
<xs:annotation>
<xs:documentation>Informacion Tributaria del DTE</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:sequence>
<xs:element name="Encabezado">
<xs:annotation>
<xs:documentation>Identificacion y Totales del Documento</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:sequence>
<xs:element name="IdDoc">
<xs:annotation>
<xs:documentation>Identificacion del DTE</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:sequence>
<xs:element name="TipoDTE" type="SiiDte:DTEType">
<xs:annotation>
<xs:documentation>Tipo de DTE</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="Folio" type="SiiDte:FolioType">
<xs:annotation>
<xs:documentation>Folio del Documento Electronico</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="FchEmis" type="SiiDte:FechaType">
<xs:annotation>
<xs:documentation>Fecha Emision Contable del DTE (AAAA-MM-DD)</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="IndNoRebaja" minOccurs="0">
<xs:annotation>
<xs:documentation>Nota de Credito sin Derecho a Descontar Debito</xs:documentation>
</xs:annotation>
<xs:simpleType>
<xs:restriction base="xs:positiveInteger">
<xs:enumeration value="1">
<xs:annotation>
<xs:documentation>Nota de Credito sin Derecho a Descontar Debito</xs:documentation>
</xs:annotation>
</xs:enumeration>
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="TipoDespacho" minOccurs="0">
<xs:annotation>
<xs:documentation>Indica Modo de Despacho de los Bienes que Acompanan al DTE</xs:documentation>
</xs:annotation>
<xs:simpleType>
<xs:restriction base="xs:positiveInteger">
<xs:enumeration value="1">
<xs:annotation>
<xs:documentation>Despacho por Cuenta del Comprador</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="2">
<xs:annotation>
<xs:documentation>Despacho por Cuenta del Emisor a Instalaciones del Comprador</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="3">
<xs:annotation>
<xs:documentation>Despacho por Cuenta del Emisor a Otras Instalaciones</xs:documentation>
</xs:annotation>
</xs:enumeration>
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="IndTraslado" minOccurs="0">
<xs:annotation>
<xs:documentation>Incluido en Guias de Despacho para Especifiicar el Tipo de Traslado de Productos</xs:documentation>
</xs:annotation>
<xs:simpleType>
<xs:restriction base="xs:positiveInteger">
<xs:enumeration value="1">
<xs:annotation>
<xs:documentation>Operacion Constituye Venta</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="2">
<xs:annotation>
<xs:documentation>Venta por Efectuar</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="3">
<xs:annotation>
<xs:documentation>Consignacion</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="4">
<xs:annotation>
<xs:documentation>Promocion o Donacion (RUT Emisor = RUT Receptor)</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="5">
<xs:annotation>
<xs:documentation>Traslado Interno</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="6">
<xs:annotation>
<xs:documentation>Otros Traslados que no Constituyen Venta</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="7">
<xs:annotation>
<xs:documentation>Guia de Devolucion</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="8"/>
<xs:enumeration value="9"/>
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="TpoImpresion" minOccurs="0">
<xs:annotation>
<xs:documentation>Tipo de impresión N (Normal) o T (Ticket) </xs:documentation>
</xs:annotation>
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:length value="1"/>
<xs:enumeration value="N"/>
<xs:enumeration value="T"/>
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="IndServicio" minOccurs="0">
<xs:annotation>
<xs:documentation>Indica si Transaccion Corresponde a la Prestacion de un Servicio</xs:documentation>
</xs:annotation>
<xs:simpleType>
<xs:restriction base="xs:positiveInteger">
<xs:enumeration value="1">
<xs:annotation>
<xs:documentation>Facturacion de Servicios Periodicos Domiciliarios</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="2">
<xs:annotation>
<xs:documentation>Facturacion de Otros Servicios Periodicos</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="3">
<xs:annotation>
<xs:documentation>Factura de Servicio</xs:documentation>
</xs:annotation>
</xs:enumeration>
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="MntBruto" minOccurs="0">
<xs:annotation>
<xs:documentation>Indica el Uso de Montos Brutos en Detalle</xs:documentation>
</xs:annotation>
<xs:simpleType>
<xs:restriction base="xs:integer">
<xs:enumeration value="1">
<xs:annotation>
<xs:documentation>Monto de Lineas de Detalle Corresponde a Valores Brutos (IVA + Impuestos Adicionales)</xs:documentation>
</xs:annotation>
</xs:enumeration>
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="TpoTranCompra" type="SiiDte:TipoTransCOMPRA" minOccurs="0">
<xs:annotation>
<xs:documentation>Tipo de Transacción para el comprador</xs:documentation>
<xs:documentation>Indica el Uso de Montos Brutos en Detalle</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="TpoTranVenta" type="SiiDte:TipoTransVENTA" minOccurs="0">
<xs:annotation>
<xs:documentation>Tipo de Transacción para el vendedor</xs:documentation>
<xs:documentation>Indica el Uso de Montos Brutos en Detalle</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="FmaPago" minOccurs="0">
<xs:annotation>
<xs:documentation>Forma de Pago del DTE</xs:documentation>
</xs:annotation>
<xs:simpleType>
<xs:restriction base="xs:positiveInteger">
<xs:enumeration value="1">
<xs:annotation>
<xs:documentation>Pago Contado</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="2">
<xs:annotation>
<xs:documentation>Pago Credito</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="3">
<xs:annotation>
<xs:documentation>Sin Costo</xs:documentation>
</xs:annotation>
</xs:enumeration>
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="FmaPagExp" minOccurs="0">
<xs:annotation>
<xs:documentation>Forma de Pago Exportación Tabla Formas de Pago de Aduanas</xs:documentation>
</xs:annotation>
<xs:simpleType>
<xs:restriction base="xs:positiveInteger">
<xs:totalDigits value="2"/>
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="FchCancel" type="SiiDte:FechaType" minOccurs="0">
<xs:annotation>
<xs:documentation>Fecha de Cancelacion del DTE (AAAA-MM-DD)</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="MntCancel" type="SiiDte:MontoType" minOccurs="0">
<xs:annotation>
<xs:documentation>Monto Cancelado al emitirse el documento</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="SaldoInsol" type="SiiDte:MontoType" minOccurs="0">
<xs:annotation>
<xs:documentation>Saldo Insoluto al emitirse el documento</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="MntPagos" minOccurs="0" maxOccurs="30">
<xs:annotation>
<xs:documentation>Tabla de Montos de Pago</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:sequence>
<xs:element name="FchPago" type="SiiDte:FechaType">
<xs:annotation>
<xs:documentation>Fecha de Pago (AAAA-MM-DD)</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="MntPago" type="SiiDte:MontoType">
<xs:annotation>
<xs:documentation>Monto de Pago</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="GlosaPagos" minOccurs="0">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="40"/>
</xs:restriction>
</xs:simpleType>
</xs:element>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="PeriodoDesde" type="SiiDte:FechaType" minOccurs="0">
<xs:annotation>
<xs:documentation>Periodo de Facturacion - Desde (AAAA-MM-DD)</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="PeriodoHasta" type="SiiDte:FechaType" minOccurs="0">
<xs:annotation>
<xs:documentation>Periodo Facturacion - Hasta (AAAA-MM-DD)</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="MedioPago" type="SiiDte:MedioPagoType" minOccurs="0">
<xs:annotation>
<xs:documentation>Medio de Pago</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="TpoCtaPago" minOccurs="0">
<xs:annotation>
<xs:documentation>Tipo Cuenta de Pago</xs:documentation>
</xs:annotation>
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="10"/>
<xs:minLength value="5"/>
<xs:enumeration value="AHORRO"/>
<xs:enumeration value="CORRIENTE"/>
<xs:enumeration value="VISTA"/>
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="NumCtaPago" minOccurs="0">
<xs:annotation>
<xs:documentation>Número de la cuenta del pago</xs:documentation>
</xs:annotation>
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="20"/>
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="BcoPago" minOccurs="0">
<xs:annotation>
<xs:documentation>Banco donde se realiza el pago</xs:documentation>
</xs:annotation>
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="40"/>
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="TermPagoCdg" minOccurs="0">
<xs:annotation>
<xs:documentation>Codigo del Termino de Pago Acordado</xs:documentation>
</xs:annotation>
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="4"/>
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="TermPagoGlosa" minOccurs="0">
<xs:annotation>
<xs:documentation>Términos del Pago - glosa</xs:documentation>
</xs:annotation>
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="100"/>
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="TermPagoDias" minOccurs="0">
<xs:annotation>
<xs:documentation>Dias de Acuerdo al Codigo de Termino de Pago</xs:documentation>
</xs:annotation>
<xs:simpleType>
<xs:restriction base="xs:positiveInteger">
<xs:totalDigits value="3"/>
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="FchVenc" type="SiiDte:FechaType" minOccurs="0">
<xs:annotation>
<xs:documentation>Fecha de Vencimiento del Pago (AAAA-MM-DD)</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="TipoFactEsp" minOccurs="0">
<xs:annotation>
<xs:documentation>Tipo de Factura Especial</xs:documentation>
</xs:annotation>
<xs:simpleType>
<xs:restriction base="xs:nonNegativeInteger">
<xs:totalDigits value="1"/>
<xs:enumeration value="1"/>
</xs:restriction>
</xs:simpleType>
</xs:element>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="Emisor">
<xs:annotation>
<xs:documentation>Datos del Emisor</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:sequence>
<xs:element name="RUTEmisor" type="SiiDte:RUTType">
<xs:annotation>
<xs:documentation>RUT del Emisor del DTE</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="RznSoc">
<xs:annotation>
<xs:documentation>Nombre o Razon Social del Emisor</xs:documentation>
</xs:annotation>
<xs:simpleType>
<xs:restriction base="SiiDte:RznSocLargaType"/>
</xs:simpleType>
</xs:element>
<xs:element name="GiroEmis">
<xs:annotation>
<xs:documentation>Giro Comercial del Emisor Relevante para el DTE </xs:documentation>
</xs:annotation>
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="80"/>
<xs:minLength value="1"/>
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="Telefono" minOccurs="0" maxOccurs="2">
<xs:annotation>
<xs:documentation>Telefono Emisor</xs:documentation>
</xs:annotation>
<xs:simpleType>
<xs:restriction base="SiiDte:FonoType">
<xs:maxLength value="20"/>
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="CorreoEmisor" type="SiiDte:MailType" minOccurs="0">
<xs:annotation>
<xs:documentation>Correo Elect. de contacto en empresa del receptor </xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="Acteco" maxOccurs="4">
<xs:annotation>
<xs:documentation>Codigo de Actividad Economica del Emisor Relevante para el DTE</xs:documentation>
</xs:annotation>
<xs:simpleType>
<xs:restriction base="xs:positiveInteger">
<xs:totalDigits value="6"/>
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="GuiaExport" minOccurs="0">
<xs:annotation>
<xs:documentation>Emisor de una Guía de despacho para Exportación </xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:sequence>
<xs:element name="CdgTraslado" minOccurs="0">
<xs:annotation>
<xs:documentation>Código Emisor Traslado Excepcional </xs:documentation>
</xs:annotation>
<xs:simpleType>
<xs:restriction base="xs:positiveInteger">
<xs:totalDigits value="1"/>
<xs:enumeration value="1"/>
<xs:enumeration value="2"/>
<xs:enumeration value="3"/>
<xs:enumeration value="4"/>
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="FolioAut" type="SiiDte:NroResolType" minOccurs="0">
<xs:annotation>
<xs:documentation>Folio Autorización ( N° de Resolución del SI)</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="FchAut" type="SiiDte:FechaType" minOccurs="0">
<xs:annotation>
<xs:documentation>Fecha de emisión de la Resolución de autorización (AAAA-MM-DD)</xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="Sucursal" minOccurs="0">
<xs:annotation>
<xs:documentation>Sucursal que Emite el DTE</xs:documentation>
</xs:annotation>
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="20"/>
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="CdgSIISucur" minOccurs="0">
<xs:annotation>
<xs:documentation>Codigo de Sucursal Entregado por el SII</xs:documentation>
</xs:annotation>
<xs:simpleType>
<xs:restriction base="xs:positiveInteger">
<xs:totalDigits value="9"/>
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="DirOrigen" minOccurs="0">
<xs:annotation>
<xs:documentation>Direccion de Origen</xs:documentation>
</xs:annotation>
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="70"/>
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="CmnaOrigen" type="SiiDte:ComunaType" minOccurs="0">
<xs:annotation>
<xs:documentation>Comuna de Origen</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="CiudadOrigen" type="SiiDte:CiudadType" minOccurs="0">
<xs:annotation>
<xs:documentation>Ciudad de Origen</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="CdgVendedor" minOccurs="0">
<xs:annotation>
<xs:documentation>Codigo del Vendedor</xs:documentation>
</xs:annotation>
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="60"/>
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="IdAdicEmisor" minOccurs="0">
<xs:annotation>
<xs:documentation>Identificador Adicional del Emisor </xs:documentation>
</xs:annotation>
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="20"/>
<xs:minLength value="1"/>
</xs:restriction>
</xs:simpleType>
</xs:element>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="RUTMandante" type="SiiDte:RUTType" minOccurs="0">
<xs:annotation>
<xs:documentation>RUT a Cuenta de Quien se Emite el DTE</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="Receptor">
<xs:annotation>
<xs:documentation>Datos del Receptor</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:sequence>
<xs:element name="RUTRecep" type="SiiDte:RUTType">
<xs:annotation>
<xs:documentation>RUT del Receptor del DTE</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="CdgIntRecep" minOccurs="0">
<xs:annotation>
<xs:documentation>Codigo Interno del Receptor</xs:documentation>
</xs:annotation>
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="20"/>
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="RznSocRecep" type="SiiDte:RznSocLargaType">
<xs:annotation>
<xs:documentation>Nombre o Razon Social del Receptor</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="Extranjero" minOccurs="0">
<xs:annotation>
<xs:documentation>Receptor Extranjero</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:sequence>
<xs:element name="NumId" minOccurs="0">
<xs:annotation>
<xs:documentation>Num. Identif. Receptor Extranjero</xs:documentation>
</xs:annotation>
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="20"/>
<xs:minLength value="1"/>
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="Nacionalidad" minOccurs="0">
<xs:annotation>
<xs:documentation>Nacionalidad Receptor Extranjero</xs:documentation>
</xs:annotation>
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="3"/>
<xs:minLength value="1"/>
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="TipoDocID" minOccurs="0">
<xs:annotation>
<xs:documentation>Tipo de Documento del Turista</xs:documentation>
</xs:annotation>
<xs:simpleType>
<xs:restriction base="xs:nonNegativeInteger">
<xs:enumeration value="1"/>
<xs:enumeration value="2"/>
</xs:restriction>
</xs:simpleType>
</xs:element>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="GiroRecep" minOccurs="0">
<xs:annotation>
<xs:documentation>Giro Comercial del Receptor</xs:documentation>
</xs:annotation>
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="40"/>
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="Contacto" minOccurs="0">
<xs:annotation>
<xs:documentation>Telefono o E-mail de Contacto del Receptor</xs:documentation>
</xs:annotation>
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="80"/>
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="CorreoRecep" type="SiiDte:MailType" minOccurs="0">
<xs:annotation>
<xs:documentation>Correo Elect. de contacto en empresa del receptor </xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="DirRecep" minOccurs="0">
<xs:annotation>
<xs:documentation>Direccion en la Cual se Envian los Productos o se Prestan los Servicios</xs:documentation>
</xs:annotation>
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="70"/>
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="CmnaRecep" type="SiiDte:ComunaType" minOccurs="0">
<xs:annotation>
<xs:documentation>Comuna de Recepcion</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="CiudadRecep" type="SiiDte:CiudadType" minOccurs="0">
<xs:annotation>
<xs:documentation>Ciudad de Recepcion</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="DirPostal" minOccurs="0">
<xs:annotation>
<xs:documentation>Direccion Postal</xs:documentation>
</xs:annotation>
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="70"/>
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="CmnaPostal" type="SiiDte:ComunaType" minOccurs="0">
<xs:annotation>
<xs:documentation>Comuna Postal</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="CiudadPostal" type="SiiDte:CiudadType" minOccurs="0">
<xs:annotation>
<xs:documentation>Ciudad Postal</xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="RUTSolicita" type="SiiDte:RUTType" minOccurs="0">
<xs:annotation>
<xs:documentation>RUT que solicita el DTE en Venta a Publico</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="Transporte" minOccurs="0">
<xs:annotation>
<xs:documentation>Informacion de Transporte de Mercaderias</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:sequence>
<xs:element name="Patente" minOccurs="0">
<xs:annotation>
<xs:documentation>Patente del Vehiculo que Transporta los Bienes</xs:documentation>
</xs:annotation>
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="8"/>
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="RUTTrans" type="SiiDte:RUTType" minOccurs="0">
<xs:annotation>
<xs:documentation>RUT del Transportista</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="Chofer" minOccurs="0">
<xs:complexType>
<xs:sequence>
<xs:element name="RUTChofer" type="SiiDte:RUTType">
<xs:annotation>
<xs:documentation>RUT del Chofer</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="NombreChofer">
<xs:annotation>
<xs:documentation>Nombre del Chofer</xs:documentation>
</xs:annotation>
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="30"/>
</xs:restriction>
</xs:simpleType>
</xs:element>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="DirDest" minOccurs="0">
<xs:annotation>
<xs:documentation>Direccion de Destino</xs:documentation>
</xs:annotation>
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="70"/>
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="CmnaDest" type="SiiDte:ComunaType" minOccurs="0">
<xs:annotation>
<xs:documentation>Comuna de Destino</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="CiudadDest" type="SiiDte:CiudadType" minOccurs="0">
<xs:annotation>
<xs:documentation>Ciudad de Destino</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="Aduana" minOccurs="0">
<xs:annotation>
<xs:documentation>documentos de Exportación y guías de despacho </xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:sequence>
<xs:element name="CodModVenta" minOccurs="0">
<xs:annotation>
<xs:documentation>Código según tabla "Modalidad de Venta" de aduana</xs:documentation>
</xs:annotation>
<xs:simpleType>
<xs:restriction base="xs:positiveInteger">
<xs:totalDigits value="2"/>
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="CodClauVenta" minOccurs="0">
<xs:annotation>
<xs:documentation>Código según Tabla "Cláusula compra-venta" de Aduana</xs:documentation>
</xs:annotation>
<xs:simpleType>
<xs:restriction base="xs:positiveInteger">
<xs:totalDigits value="2"/>
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="TotClauVenta" type="SiiDte:Dec16_2Type" minOccurs="0">
<xs:annotation>
<xs:documentation>Total Cláusula de venta</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="CodViaTransp" minOccurs="0">
<xs:annotation>
<xs:documentation>Indicar el Código de la vía de transporte utilizada para transportar la mercadería, según tabla Vías de Transporte de Aduana</xs:documentation>
</xs:annotation>
<xs:simpleType>
<xs:restriction base="xs:positiveInteger">
<xs:totalDigits value="2"/>
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="NombreTransp" minOccurs="0">
<xs:annotation>
<xs:documentation>Nombre o Identificación del Medio de Transporte</xs:documentation>
</xs:annotation>
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="40"/>
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="RUTCiaTransp" type="SiiDte:RUTType" minOccurs="0">
<xs:annotation>
<xs:documentation>Rut Cía. Transportadora</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="NomCiaTransp" minOccurs="0">
<xs:annotation>
<xs:documentation>Nombre Cía. Transportadora</xs:documentation>
</xs:annotation>
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="40"/>
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="IdAdicTransp" minOccurs="0">
<xs:annotation>
<xs:documentation>Identificador Adicional Cía. Transportadora</xs:documentation>
</xs:annotation>
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="20"/>
<xs:minLength value="1"/>
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="Booking" minOccurs="0">
<xs:annotation>
<xs:documentation>Numero de reserva del Operador</xs:documentation>
</xs:annotation>
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="20"/>
<xs:minLength value="1"/>
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="Operador" minOccurs="0">
<xs:annotation>
<xs:documentation>Código del Operador</xs:documentation>
</xs:annotation>
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="20"/>
<xs:minLength value="1"/>
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="CodPtoEmbarque" minOccurs="0">
<xs:annotation>
<xs:documentation>Código del puerto de embarque según tabla de Aduana </xs:documentation>
</xs:annotation>
<xs:simpleType>
<xs:restriction base="xs:positiveInteger">
<xs:totalDigits value="4"/>
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="IdAdicPtoEmb" minOccurs="0">
<xs:annotation>
<xs:documentation>Identificador Adicional Puerto de Embarque</xs:documentation>
</xs:annotation>
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="20"/>
<xs:minLength value="1"/>
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="CodPtoDesemb" minOccurs="0">
<xs:annotation>
<xs:documentation>Código del puerto de desembarque según tabla de Aduana </xs:documentation>
</xs:annotation>
<xs:simpleType>
<xs:restriction base="xs:positiveInteger">
<xs:totalDigits value="4"/>
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="IdAdicPtoDesemb" minOccurs="0">
<xs:annotation>
<xs:documentation>Identificador Adicional Puerto de Desembarque</xs:documentation>
</xs:annotation>
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="20"/>
<xs:minLength value="1"/>
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="Tara" minOccurs="0">
<xs:simpleType>
<xs:restriction base="xs:positiveInteger">
<xs:totalDigits value="7"/>
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="CodUnidMedTara" minOccurs="0">
<xs:annotation>
<xs:documentation>Código de la unidad de medida según tabla de Aduana </xs:documentation>
</xs:annotation>
<xs:simpleType>
<xs:restriction base="xs:positiveInteger">
<xs:totalDigits value="2"/>
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="PesoBruto" minOccurs="0">
<xs:annotation>
<xs:documentation>Sumatoria de los pesos brutos de todos los ítems del documento</xs:documentation>
</xs:annotation>
<xs:simpleType>
<xs:restriction base="xs:decimal">
<xs:totalDigits value="10"/>
<xs:fractionDigits value="2"/>
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="CodUnidPesoBruto" minOccurs="0">
<xs:annotation>
<xs:documentation>Código de la unidad de medida según tabla de Aduana </xs:documentation>
</xs:annotation>
<xs:simpleType>
<xs:restriction base="xs:positiveInteger">
<xs:totalDigits value="2"/>
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="PesoNeto" minOccurs="0">
<xs:annotation>
<xs:documentation>Sumatoria de los pesos netos de todos los ítems del documento</xs:documentation>
</xs:annotation>
<xs:simpleType>
<xs:restriction base="xs:decimal">
<xs:totalDigits value="10"/>
<xs:fractionDigits value="2"/>
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="CodUnidPesoNeto" minOccurs="0">
<xs:annotation>
<xs:documentation>Código de la unidad de medida según tabla de Aduana </xs:documentation>
</xs:annotation>
<xs:simpleType>
<xs:restriction base="xs:positiveInteger">
<xs:totalDigits value="2"/>
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="TotItems" minOccurs="0">
<xs:annotation>
<xs:documentation>Indique el total de items del documento</xs:documentation>
</xs:annotation>
<xs:simpleType>
<xs:restriction base="xs:positiveInteger">
<xs:totalDigits value="18"/>
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="TotBultos" minOccurs="0">
<xs:annotation>
<xs:documentation>Cantidad total de bultos que ampara el documento.</xs:documentation>
</xs:annotation>
<xs:simpleType>
<xs:restriction base="xs:positiveInteger">
<xs:totalDigits value="18"/>
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="TipoBultos" minOccurs="0" maxOccurs="10">
<xs:annotation>
<xs:documentation>Tabla de descripción de los distintos tipos de bultos</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:sequence>
<xs:element name="CodTpoBultos" minOccurs="0">
<xs:annotation>
<xs:documentation>Código según tabla "Tipos de Bultos" de aduana</xs:documentation>
</xs:annotation>
<xs:simpleType>
<xs:restriction base="xs:positiveInteger">
<xs:totalDigits value="3"/>
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="CantBultos" minOccurs="0">
<xs:annotation>
<xs:documentation>Cantidad de Bultos </xs:documentation>
</xs:annotation>
<xs:simpleType>
<xs:restriction base="xs:positiveInteger">
<xs:totalDigits value="10"/>
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="Marcas" minOccurs="0">
<xs:annotation>
<xs:documentation>Identificación de marcas, cuando es distinto de contenedor</xs:documentation>
</xs:annotation>
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="255"/>
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="IdContainer" minOccurs="0">
<xs:annotation>
<xs:documentation>Se utiliza cuando el tipo de bulto es contenedor</xs:documentation>
</xs:annotation>
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="25"/>
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="Sello" minOccurs="0">
<xs:annotation>
<xs:documentation>Sello contenedor. Con digito verificador</xs:documentation>
</xs:annotation>
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="20"/>
</xs:restriction>
</xs:simpleType>
</xs:element>