init
This commit is contained in:
0
airflow/ods/lm/lm_common/.gitkeep
Normal file
0
airflow/ods/lm/lm_common/.gitkeep
Normal file
95
airflow/ods/lm/lm_common/lm.xsd
Normal file
95
airflow/ods/lm/lm_common/lm.xsd
Normal file
@@ -0,0 +1,95 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"
|
||||
xmlns="http://exdi.ecb.int/lm"
|
||||
targetNamespace="http://exdi.ecb.int/lm"
|
||||
elementFormDefault="qualified"
|
||||
attributeFormDefault="unqualified">
|
||||
|
||||
<xs:simpleType name="isoCode">
|
||||
<xs:restriction base="xs:string">
|
||||
<xs:pattern value="[A-Z0-9]*" />
|
||||
<xs:minLength value="2" />
|
||||
<xs:maxLength value="3" />
|
||||
</xs:restriction>
|
||||
</xs:simpleType>
|
||||
|
||||
<xs:simpleType name="positiveInt">
|
||||
<xs:restriction base="xs:int">
|
||||
<xs:minInclusive value="1" />
|
||||
<xs:maxInclusive value="2147483647" />
|
||||
</xs:restriction>
|
||||
</xs:simpleType>
|
||||
|
||||
<xs:simpleType name="freeText">
|
||||
<xs:restriction base="xs:string">
|
||||
<xs:maxLength value="4000" />
|
||||
</xs:restriction>
|
||||
</xs:simpleType>
|
||||
|
||||
<xs:simpleType name="sendingRound">
|
||||
<xs:restriction base="xs:nonNegativeInteger">
|
||||
<xs:minInclusive value="0" />
|
||||
<xs:maxInclusive value="99" />
|
||||
</xs:restriction>
|
||||
</xs:simpleType>
|
||||
|
||||
<xs:simpleType name="maintenancePeriod">
|
||||
<xs:restriction base="xs:string">
|
||||
<xs:pattern value="[1-9][0-9]{3}[0-9]{2}" />
|
||||
<xs:maxLength value="6" />
|
||||
</xs:restriction>
|
||||
</xs:simpleType>
|
||||
|
||||
<xs:simpleType name="percent">
|
||||
<xs:restriction base="xs:decimal">
|
||||
<xs:totalDigits value="5" />
|
||||
<xs:fractionDigits value="2" />
|
||||
<xs:minInclusive value="-100.00" />
|
||||
<xs:maxInclusive value="100.00" />
|
||||
</xs:restriction>
|
||||
</xs:simpleType>
|
||||
|
||||
<xs:simpleType name="amountInEuro">
|
||||
<xs:restriction base="xs:decimal">
|
||||
<xs:totalDigits value="17" />
|
||||
<xs:fractionDigits value="2" />
|
||||
<xs:minInclusive value="-999999999999999.99" />
|
||||
<xs:maxInclusive value="999999999999999.99" />
|
||||
</xs:restriction>
|
||||
</xs:simpleType>
|
||||
|
||||
<xs:simpleType name="decimalEuroValue">
|
||||
<xs:restriction base="xs:decimal">
|
||||
<xs:totalDigits value="17" />
|
||||
<xs:fractionDigits value="8" />
|
||||
<xs:minInclusive value="0" />
|
||||
<xs:maxInclusive value="999999999.99999999" />
|
||||
</xs:restriction>
|
||||
</xs:simpleType>
|
||||
|
||||
<xs:simpleType name="mfiCode">
|
||||
<xs:restriction base="xs:string">
|
||||
<xs:maxLength value="255"/>
|
||||
</xs:restriction>
|
||||
</xs:simpleType>
|
||||
|
||||
<xs:simpleType name="bankName">
|
||||
<xs:restriction base="xs:string">
|
||||
<xs:minLength value="1"/>
|
||||
<xs:maxLength value="500" />
|
||||
</xs:restriction>
|
||||
</xs:simpleType>
|
||||
|
||||
<xs:simpleType name="comment">
|
||||
<xs:restriction base="xs:string">
|
||||
<xs:maxLength value="4000"/>
|
||||
</xs:restriction>
|
||||
</xs:simpleType>
|
||||
|
||||
<xs:simpleType name="forecastName">
|
||||
<xs:restriction base="xs:string">
|
||||
<xs:maxLength value="50" />
|
||||
</xs:restriction>
|
||||
</xs:simpleType>
|
||||
|
||||
</xs:schema>
|
||||
Reference in New Issue
Block a user