Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add 'namespace' attribute to disambiguate the DRGElement references #628

Merged
merged 1 commit into from
Nov 16, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions TestCases/testCases.xsd
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@
<xs:complexContent>
<xs:extension base="valueType">
<xs:attribute name="name" use="required"/>
<xs:attribute name="namespace" type="xs:string" use="optional"/>
</xs:extension>
</xs:complexContent>
</xs:complexType>
Expand All @@ -40,6 +41,7 @@
</xs:sequence>
<xs:attribute name="errorResult" type="xs:boolean" default="false"/>
<xs:attribute name="name" use="required"/>
<xs:attribute name="namespace" type="xs:string" use="optional"/>
<xs:attribute name="type" type="xs:string"/>
<xs:attribute name="cast" type="xs:string"/>
</xs:complexType>
Expand All @@ -56,10 +58,12 @@
<xs:attribute name="type" type="testCaseType" default="decision"/>
<xs:attribute name="invocableName" type="xs:string"/> <!-- if type==decisionService, this attribute will point at which DS to invoke. -->
<xs:attribute name="name" type="xs:string"/>
<xs:attribute name="namespace" type="xs:string" use="optional"/>
<xs:anyAttribute namespace="##other" processContents="lax"/>
</xs:complexType>
</xs:element>
</xs:sequence>
<xs:attribute name="namespace" type="xs:string" use="optional"/>
</xs:complexType>
</xs:element>
<xs:complexType name="valueType">
Expand Down
Loading