Skip to content

Commit

Permalink
stricter XSD
Browse files Browse the repository at this point in the history
  • Loading branch information
yegor256 committed Nov 25, 2024
1 parent 7b05356 commit 181a8e1
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion eo-parser/src/main/resources/XMIR.xsd
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,13 @@ SOFTWARE.
</xs:simpleType>
</xs:element>
<xs:element name="tail" type="xs:string"/>
<xs:element name="part" type="xs:string" minOccurs="0" maxOccurs="unbounded"/>
<xs:element name="part" minOccurs="0" maxOccurs="unbounded">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:minLength value="1"/>
</xs:restriction>
</xs:simpleType>
</xs:element>
</xs:sequence>
<xs:attribute name="line" type="whole"/>
</xs:complexType>
Expand Down

0 comments on commit 181a8e1

Please sign in to comment.