Schema of RQM Execution Result
Following shows the schema of Execution Result:
https://HostName:Port/qm/service/com.ibm.rqm.integration.service.IIntegrationService/schema/executionresult.xsd
Execution Result can have custom attributes that will be different in each project. How to get the schema for execution result for a particular project.
https://HostName:Port/qm/service/com.ibm.rqm.integration.service.IIntegrationService/schema/executionresult.xsd
Execution Result can have custom attributes that will be different in each project. How to get the schema for execution result for a particular project.
One answer
The link in your post gave the specification of the namespace, and you cannot change it. Instead, you should look at https://HostName:Port/qm/service/com.ibm.rqm.integration.service.IIntegrationService/schema/qm.xsd instead. In the output, look for the top element with name "executionresult", in other words,
<xs:element name="executionresult">Within this element, you will find an element references "customAttributes".
<xs:element maxOccurs="1" minOccurs="0" ref="customAttributes">And the element "customAttributes" is defined in the section starting with this line
<xs:annotation>
<xs:documentation xmlns:xml="http://www.w3.org/XML/1998/namespace" xml:lang="en">User defined custom attribute name/value data on this artifact.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="customAttributes">