It's all about the answers!

Ask a question

Schema of RQM Execution Result


Chidambaram L (23414178) | asked Jul 04 '14, 8:50 a.m.
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.

One answer



permanent link
Donald Nong (14.5k414) | answered Jul 07 '14, 12:20 a.m.
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">
                            <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>
And the element "customAttributes" is defined in the section starting with this line
    <xs:element name="customAttributes">

Your answer


Register or to post your answer.


Dashboards and work items are no longer publicly available, so some links may be invalid. We now provide similar information through other means. Learn more here.