Publish Report Data Objects
The Publish Report Data Objects XML is used for retrieving metadata for a publish report.
XML structure
<xs:schema id="ISHPublishReportDataObjects" elementFormDefault="qualified" xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:element name="ishpublishreportdataobjects">
<xs:complexType>
<xs:sequence minOccurs="0" maxOccurs="unbounded">
<xs:element ref="ishpublishreportdataobject"/>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="ishpublishreportdataobject">
<xs:complexType>
<xs:attribute name="ishlngref" use="required">
<!-- Unique identifier of the language level of the object -->
<xs:simpleType>
<xs:restriction base="xs:long">
<xs:minInclusive value="0"/>
<xs:maxInclusive value="9999999999"/>
</xs:restriction>
</xs:simpleType>
</xs:attribute>
<xs:attribute name="ishpublishreportref" use="required">
<!-- The element name of the ED -->
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="255"/>
</xs:restriction>
</xs:simpleType>
</xs:attribute>
<xs:attribute name="edt" use="required">
<!-- The element name of the EDT -->
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="255"/>
</xs:restriction>
</xs:simpleType>
</xs:attribute>
<xs:attribute name="size" use="required" type ="xs:long"/>
<xs:attribute name="mimetype" use="required" type ="xs:string"/>
<xs:attribute name="fileextension" use="required" type ="xs:string"/>
</xs:complexType>
</xs:element>
</xs:schema>
Example
<ishpublishreportdataobjects>
<ishpublishreportdataobject ishlngref='12'
ishpublishreportref='GUID-547761B4-1817-491E-9760-E05849522E63' edt='EDTXML' size='980809'
mimetype='text/xml' fileextension='xml' />
</ishpublishreportdataobjects>