Documentation Center

Publish Log Objects

The Publish Log Objects XML is used for retrieving metadata of one or more Publish Log Objects.

XML structure

<xs:schema id="ISHPublishLogObjects" elementFormDefault="qualified" xmlns:xs="http://www.w3.org/2001/XMLSchema">
  <!-- ISHPublishLogObjects describes the list of the publish log objects of the event -->
  <xs:element name="ishpublishlogobjects">
    <xs:complexType>
      <xs:sequence minOccurs="0" maxOccurs="unbounded">
      <xs:element ref="ishpublishlogobject"/>
      </xs:sequence>
    </xs:complexType>
  </xs:element>
  <xs:element name="ishpublishlogobject">
    <xs:complexType>
      <!-- Unique identifier of the event with highest detail Id -->
      <xs:attribute name="ishpublishlogref" use="required">
        <xs:simpleType>
          <xs:restriction base="xs:long">
            <xs:minInclusive value="0"/>
            <xs:maxInclusive value="9999999999"/>
          </xs:restriction>
        </xs:simpleType>
      </xs:attribute>	  
      <!-- Unique identifier of the language level of the object -->
      <xs:attribute name="ishlngref" use="optional"/>
        <xs:simpleType>
          <xs:restriction base="xs:long">
            <xs:minInclusive value="0"/>
            <xs:maxInclusive value="9999999999"/>
          </xs:restriction>
        </xs:simpleType>
      </xs:attribute>	  
      <xs:attribute name="size" use="required" type ="xs:long"/>
      <xs:attribute name="fileextension" use="required" type ="xs:string"/>
    </xs:complexType>
  </xs:element>
</xs:schema>

Example


<ishpublishlogobjects>
  <ishpublishlogobject ishpublishlogref='123' ishlngref='12' size='45560' fileextension='txt' />
</ishpublishlogobjects>