Skip to content

Commit

Permalink
Make topic files required
Browse files Browse the repository at this point in the history
  • Loading branch information
GeorgDangl committed Oct 9, 2023
1 parent 7a521a9 commit 8dae655
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Schemas/visinfo.xsd
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<!-- If one or more TopicFile elements are present, then this means that the
viewpoint is only supposed to load the given file references. Otherwise, the files
to be loaded in the viewpoint are the same as the Files list in the parent topic.-->
<xs:element name="TopicFiles" type="TopicFiles" minOccurs="0"/>
<xs:element name="TopicFiles" type="TopicFiles"/>
<!--
Although plural, 'Components' is not a collection
-->
Expand Down Expand Up @@ -111,7 +111,7 @@
</xs:restriction>
</xs:simpleType>
<xs:complexType name="TopicFiles">
<xs:element name="TopicFileId" type="TopicFileId" maxOccurs="unbounded"/>
<xs:element name="TopicFileId" type="TopicFileId" minOccurs="0" maxOccurs="unbounded"/>
</xs:complexType>
<xs:complexType name="TopicFileId">
<xs:attribute name="Id" type="NonEmptyOrBlankString" use="required"/>
Expand Down

0 comments on commit 8dae655

Please sign in to comment.