Skip to content

Commit

Permalink
Make topic file references optional in viewpoint
Browse files Browse the repository at this point in the history
  • Loading branch information
GeorgDangl committed Oct 23, 2023
1 parent 4ae179f commit 85a68f7
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 @@ -8,7 +8,7 @@
<xs:complexType>
<xs:sequence>
<!-- The TopicFileIds element lists the model files this viewpoint is supposed to load.-->
<xs:element name="TopicFileIds" type="TopicFileIds"/>
<xs:element name="TopicFileIds" type="TopicFileIds" minOccurs="0"/>
<!--
Although plural, 'Components' is not a collection
-->
Expand Down Expand Up @@ -111,7 +111,7 @@
<xs:complexType name="TopicFileIds">
<xs:sequence>
<!-- A viewpoint needs to list it's referenced files, so at least one file must be present. -->
<xs:element name="TopicFileId" type="TopicFileId" maxOccurs="unbounded"/>
<xs:element name="TopicFileId" type="TopicFileId" minOccurs="0" maxOccurs="unbounded"/>
</xs:sequence>
</xs:complexType>
<xs:complexType name="TopicFileId">
Expand Down

0 comments on commit 85a68f7

Please sign in to comment.