Redmine #1224: made sloleks-related adjustments to inventory and added related examples

This commit is contained in:
2022-03-03 14:30:15 +01:00
parent 13791bdabe
commit 76c406dffc
6 changed files with 329 additions and 161 deletions

View File

@@ -147,10 +147,19 @@
</xsd:restriction>
</xsd:simpleType>
<xsd:complexType name="subcategoryType">
<xsd:simpleContent>
<xsd:extension base="xsd:string">
<xsd:attribute name="type" type="xsd:string"/>
</xsd:extension>
</xsd:simpleContent>
</xsd:complexType>
<!-- Grammatical information -->
<xsd:complexType name="grammarType">
<xsd:sequence>
<xsd:element name="category" type="categoryType" minOccurs="0"/> <!-- identifies the part of speech, unless it's not a single lexeme -->
<xsd:element name="subcategory" type="subcategoryType" minOccurs="0" maxOccurs="unbounded"/> <!-- marks relevant subcategory information -->
<xsd:element name="grammarFeature" type="grammarFeatureType" minOccurs="0" maxOccurs="unbounded"/> <!-- relevant grammatical features -->
</xsd:sequence>
</xsd:complexType>
@@ -575,12 +584,12 @@
<xsd:complexType name="accentuationType">
<xsd:sequence>
<xsd:element name="form" type="formType"/>
<xsd:element name="form" type="formType" minOccurs="0"/>
<xsd:element name="measureList" type="measureListType" minOccurs="0"/>
</xsd:sequence>
<xsd:attribute name="id" type="xsd:integer"/>
<xsd:attribute name="orthography_id" type="xsd:integer"/>
<xsd:attribute name="stressPatterns" type="xsd:string"/>
<xsd:attribute name="accentuationPatterns" type="xsd:string"/>
<xsd:attribute name="status" type="xsd:string"/>
<xsd:attribute name="norm" type="xsd:string"/>
</xsd:complexType>
@@ -621,6 +630,7 @@
<xsd:attribute name="tonemic_accentuation_id" type="xsd:integer"/>
<xsd:attribute name="status" type="xsd:string"/>
<xsd:attribute name="norm" type="xsd:string"/>
<xsd:attribute name="type" type="xsd:string"/>
</xsd:complexType>
<xsd:complexType name="pronunciationListType">
@@ -636,11 +646,12 @@
</xsd:sequence>
<xsd:attribute name="id" type="xsd:integer"/>
<xsd:attribute name="orthography_id" type="xsd:integer"/>
<xsd:attribute name="status" type="xsd:string"/>
</xsd:complexType>
<xsd:complexType name="hyphenationListType">
<xsd:sequence>
<xsd:element name="hyphenation" type="hyphenationType" maxOccurs="unbounded"/>
<xsd:element name="hyphenation" type="hyphenationType" minOccurs="0" maxOccurs="unbounded"/>
</xsd:sequence>
</xsd:complexType>