@@ -182,6 +182,7 @@ Note: DTD @-annotations are not currently converted to .xsd. For full CLDR file
182
182
<xs : complexType mixed =" true" >
183
183
<xs : attribute name =" type" type =" xs:NMTOKEN" use =" required" />
184
184
<xs : attribute name =" alt" type =" xs:NMTOKENS" />
185
+ <xs : attribute name =" menu" type =" xs:NMTOKENS" />
185
186
<xs : attribute name =" draft" >
186
187
<xs : simpleType >
187
188
<xs : restriction base =" xs:token" >
@@ -203,6 +204,7 @@ Note: DTD @-annotations are not currently converted to .xsd. For full CLDR file
203
204
204
205
205
206
207
+
206
208
<xs : element name =" script" >
207
209
<xs : complexType mixed =" true" >
208
210
<xs : attribute name =" type" type =" xs:NMTOKEN" use =" required" />
@@ -696,6 +698,7 @@ Note: DTD @-annotations are not currently converted to .xsd. For full CLDR file
696
698
<xs : complexType mixed =" true" >
697
699
<xs : attribute name =" key" type =" xs:NMTOKEN" use =" required" />
698
700
<xs : attribute name =" type" type =" xs:NMTOKEN" use =" required" />
701
+ <xs : attribute name =" scope" type =" xs:NMTOKEN" />
699
702
<xs : attribute name =" alt" type =" xs:NMTOKENS" />
700
703
<xs : attribute name =" draft" >
701
704
<xs : simpleType >
@@ -718,6 +721,7 @@ Note: DTD @-annotations are not currently converted to .xsd. For full CLDR file
718
721
719
722
720
723
724
+
721
725
<xs : element name =" transformNames" >
722
726
<xs : complexType >
723
727
<xs : choice >
@@ -1196,12 +1200,15 @@ Note: DTD @-annotations are not currently converted to .xsd. For full CLDR file
1196
1200
<xs : attribute name =" type" >
1197
1201
<xs : simpleType >
1198
1202
<xs : restriction base =" xs:token" >
1199
- <xs : enumeration value =" auxiliary" />
1200
1203
<xs : enumeration value =" standard" />
1204
+ <xs : enumeration value =" auxiliary" />
1205
+ <xs : enumeration value =" numbers" />
1206
+ <xs : enumeration value =" numbers-auxiliary" />
1201
1207
<xs : enumeration value =" punctuation" />
1202
- <xs : enumeration value =" currencySymbol" />
1208
+ <xs : enumeration value =" punctuation-auxiliary" />
1209
+ <xs : enumeration value =" punctuation-person" />
1203
1210
<xs : enumeration value =" index" />
1204
- <xs : enumeration value =" numbers " />
1211
+ <xs : enumeration value =" currencySymbol " />
1205
1212
</xs : restriction >
1206
1213
</xs : simpleType >
1207
1214
</xs : attribute >
@@ -5122,6 +5129,7 @@ Note: DTD @-annotations are not currently converted to .xsd. For full CLDR file
5122
5129
<xs : element maxOccurs =" unbounded" minOccurs =" 0" ref =" minimumGroupingDigits" />
5123
5130
<xs : element maxOccurs =" unbounded" minOccurs =" 0" ref =" symbols" />
5124
5131
<xs : element maxOccurs =" unbounded" minOccurs =" 0" ref =" decimalFormats" />
5132
+ <xs : element maxOccurs =" unbounded" minOccurs =" 0" ref =" rationalFormats" />
5125
5133
<xs : element maxOccurs =" unbounded" minOccurs =" 0" ref =" scientificFormats" />
5126
5134
<xs : element maxOccurs =" unbounded" minOccurs =" 0" ref =" percentFormats" />
5127
5135
<xs : element maxOccurs =" unbounded" minOccurs =" 0" ref =" currencyFormats" />
@@ -5853,6 +5861,72 @@ Note: DTD @-annotations are not currently converted to .xsd. For full CLDR file
5853
5861
5854
5862
5855
5863
5864
+ <xs : element name =" rationalFormats" >
5865
+ <xs : complexType >
5866
+ <xs : choice >
5867
+ <xs : element ref =" alias" />
5868
+ <xs : sequence >
5869
+ <xs : element maxOccurs =" unbounded" minOccurs =" 0" ref =" rationalPattern" />
5870
+ <xs : element maxOccurs =" unbounded" minOccurs =" 0" ref =" integerAndRationalPattern" />
5871
+ <xs : element maxOccurs =" unbounded" minOccurs =" 0" ref =" rationalUsage" />
5872
+ <xs : element maxOccurs =" unbounded" minOccurs =" 0" ref =" special" />
5873
+ </xs : sequence >
5874
+ </xs : choice >
5875
+ <xs : attribute name =" numberSystem" use =" required" />
5876
+ </xs : complexType >
5877
+ </xs : element >
5878
+
5879
+ <xs : element name =" rationalPattern" >
5880
+ <xs : complexType mixed =" true" >
5881
+ <xs : attribute name =" alt" type =" xs:NMTOKENS" />
5882
+ <xs : attribute name =" draft" >
5883
+ <xs : simpleType >
5884
+ <xs : restriction base =" xs:token" >
5885
+ <xs : enumeration value =" approved" />
5886
+ <xs : enumeration value =" contributed" />
5887
+ <xs : enumeration value =" provisional" />
5888
+ <xs : enumeration value =" unconfirmed" />
5889
+ </xs : restriction >
5890
+ </xs : simpleType >
5891
+ </xs : attribute >
5892
+ </xs : complexType >
5893
+ </xs : element >
5894
+
5895
+
5896
+ <xs : element name =" integerAndRationalPattern" >
5897
+ <xs : complexType mixed =" true" >
5898
+ <xs : attribute name =" alt" type =" xs:NMTOKENS" />
5899
+ <xs : attribute name =" draft" >
5900
+ <xs : simpleType >
5901
+ <xs : restriction base =" xs:token" >
5902
+ <xs : enumeration value =" approved" />
5903
+ <xs : enumeration value =" contributed" />
5904
+ <xs : enumeration value =" provisional" />
5905
+ <xs : enumeration value =" unconfirmed" />
5906
+ </xs : restriction >
5907
+ </xs : simpleType >
5908
+ </xs : attribute >
5909
+ </xs : complexType >
5910
+ </xs : element >
5911
+
5912
+
5913
+ <xs : element name =" rationalUsage" >
5914
+ <xs : complexType mixed =" true" >
5915
+ <xs : attribute name =" alt" type =" xs:NMTOKENS" />
5916
+ <xs : attribute name =" draft" >
5917
+ <xs : simpleType >
5918
+ <xs : restriction base =" xs:token" >
5919
+ <xs : enumeration value =" approved" />
5920
+ <xs : enumeration value =" contributed" />
5921
+ <xs : enumeration value =" provisional" />
5922
+ <xs : enumeration value =" unconfirmed" />
5923
+ </xs : restriction >
5924
+ </xs : simpleType >
5925
+ </xs : attribute >
5926
+ </xs : complexType >
5927
+ </xs : element >
5928
+
5929
+
5856
5930
<xs : element name =" scientificFormats" >
5857
5931
<xs : complexType >
5858
5932
<xs : choice >
@@ -8072,6 +8146,7 @@ Note: DTD @-annotations are not currently converted to .xsd. For full CLDR file
8072
8146
<xs : choice >
8073
8147
<xs : element ref =" alias" />
8074
8148
<xs : sequence >
8149
+ <xs : element minOccurs =" 0" ref =" rbnfRules" />
8075
8150
<xs : element maxOccurs =" unbounded" minOccurs =" 0" ref =" ruleset" />
8076
8151
<xs : element maxOccurs =" unbounded" minOccurs =" 0" ref =" special" />
8077
8152
</xs : sequence >
@@ -8093,6 +8168,26 @@ Note: DTD @-annotations are not currently converted to .xsd. For full CLDR file
8093
8168
</xs : element >
8094
8169
8095
8170
8171
+ <xs : element name =" rbnfRules" >
8172
+ <xs : complexType mixed =" true" >
8173
+ <xs : attribute name =" alt" type =" xs:NMTOKENS" />
8174
+ <xs : attribute name =" draft" >
8175
+ <xs : simpleType >
8176
+ <xs : restriction base =" xs:token" >
8177
+ <xs : enumeration value =" approved" />
8178
+ <xs : enumeration value =" contributed" />
8179
+ <xs : enumeration value =" provisional" />
8180
+ <xs : enumeration value =" unconfirmed" />
8181
+ <xs : enumeration value =" true" />
8182
+ <xs : enumeration value =" false" />
8183
+ </xs : restriction >
8184
+ </xs : simpleType >
8185
+ </xs : attribute >
8186
+ </xs : complexType >
8187
+ </xs : element >
8188
+
8189
+
8190
+
8096
8191
<xs : element name =" ruleset" >
8097
8192
<xs : complexType >
8098
8193
<xs : choice >
0 commit comments