Skip to content

Commit

Permalink
Fix XML schema by wrapping element in a sequence tag
Browse files Browse the repository at this point in the history
  • Loading branch information
GeorgDangl committed Oct 9, 2023
1 parent 51d6680 commit ea54ff2
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion Schemas/visinfo.xsd
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,9 @@
</xs:restriction>
</xs:simpleType>
<xs:complexType name="TopicFiles">
<xs:element name="TopicFileId" type="TopicFileId" minOccurs="0" maxOccurs="unbounded"/>
<xs:sequence>
<xs:element name="TopicFileId" type="TopicFileId" minOccurs="0" maxOccurs="unbounded"/>
</xs:sequence>
</xs:complexType>
<xs:complexType name="TopicFileId">
<xs:attribute name="Id" type="NonEmptyOrBlankString" use="required"/>
Expand Down

0 comments on commit ea54ff2

Please sign in to comment.