Skip to content
Snippets Groups Projects
Commit 10b9533d authored by Simon Spinner's avatar Simon Spinner
Browse files

Extend subsystem schema to support specification of filters.

parent 37961ff2
No related branches found
No related tags found
No related merge requests found
......@@ -9,5 +9,20 @@
<xs:element name="subsystem" type="subsystemType"/>
<xs:complexType name="subsystemType">
<xs:sequence>
<xs:element name="filters" type="filtersListType" minOccurs="0"/>
</xs:sequence>
</xs:complexType>
<xs:complexType name="filtersListType">
<xs:sequence>
<xs:element name="exclude" type="excludeType" maxOccurs="unbounded"/>
</xs:sequence>
</xs:complexType>
<xs:complexType name="excludeType">
<xs:attribute name="component" type="xs:string" use="required" />
<xs:attribute name="interface" type="xs:string" />
<xs:attribute name="operation" type="xs:string" />
</xs:complexType>
</xs:schema>
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment