1 <?xml version="1.0" encoding="UTF-8"?>
\r
2 <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema">
\r
4 <xs:element name="infoPrestaciones" type="InfoPrestacionesType"/>
\r
6 <xs:complexType name="InfoPrestacionesType">
\r
8 <xs:element name="prestador" type="PrestadorType"/>
\r
9 <xs:element name="lineas" type="LineasType"/>
\r
11 <xs:attribute name="fechaEnvio" type="xs:date"/>
\r
14 <xs:complexType name="PrestadorType">
\r
16 <xs:element name="CUIT" type="CUITType"/>
\r
20 <xs:complexType name="LineasType">
\r
22 <xs:element name="linea" type="LineaType" minOccurs="0" maxOccurs="unbounded"/>
\r
26 <xs:complexType name="LineaType">
\r
28 <xs:element name="tipoAutorizacion" type="TipoAutorizacionType"/>
\r
29 <xs:element name="codigoAfiliado" type="xs:positiveInteger"/>
\r
30 <xs:element name="codigoPrestacion" type="CodigoPrestacionType"/>
\r
31 <xs:element name="fechaRealizacion" type="xs:date"/>
\r
32 <xs:element name="porcentajeCobertura" type="PorcentajeCoberturaType"/>
\r
34 <xs:attribute name="codigoAutorizacion" type="xs:positiveInteger"/>
\r
37 <xs:simpleType name="CUITType">
\r
38 <xs:restriction base="xs:string">
\r
39 <xs:pattern value="\d{2}-\d{8}-\d{1}"/>
\r
43 <xs:simpleType name="TipoAutorizacionType">
\r
44 <xs:restriction base="xs:normalizedString">
\r
45 <xs:enumeration value="Manual"/>
\r
46 <xs:enumeration value="Automatica"/>
\r
50 <xs:simpleType name="CodigoPrestacionType">
\r
51 <xs:restriction base="xs:normalizedString">
\r
52 <xs:minLength value="1"/>
\r
53 <xs:maxLength value="8"/>
\r
57 <xs:simpleType name="PorcentajeCoberturaType">
\r
58 <xs:restriction base="xs:decimal">
\r
59 <xs:minInclusive value="0"/>
\r
60 <xs:maxInclusive value="100"/>
\r