Documentation Center

External Translation Job list XML Structure

The XML structure containing the data of the external translation jobs

XML structure

<?xml version="1.0" encoding="utf-8" ?>
<xs:schema id="ISHTranslationJobExternalTranslationJobs" elementFormDefault="qualified" xmlns:xs="http://www.w3.org/2001/XMLSchema">
  <xs:simpleType name="CardId">
    <!-- The unique identifier of the card -->
    <xs:restriction base="xs:long">
      <xs:minInclusive value="0"/>
      <xs:maxInclusive value="9999999999"/>
    </xs:restriction>
  </xs:simpleType>
  <xs:simpleType name="MandatoryText">
    <xs:restriction base="xs:string">
      <xs:minLength value="1"/>
    </xs:restriction>
  </xs:simpleType>
  <xs:simpleType name="LogicalId">
    <!-- The element name of the logical level of the object -->
    <xs:restriction base="ElementName"/>
  </xs:simpleType>
  <xs:simpleType name="ElementName">
    <!-- The element name of an object (Field, Lov, Card,...) -->
    <xs:restriction base="MandatoryText">
      <xs:maxLength value="255" />
    </xs:restriction>
  </xs:simpleType>
  <xs:element name ="externaltranslationjobs">
    <xs:complexType>
      <xs:sequence minOccurs="0" maxOccurs="unbounded">
        <xs:element ref="externaltranslationjob"/>
      </xs:sequence>
      <xs:attribute name="ref" use="optional" type="LogicalId"/>
    </xs:complexType>
  </xs:element>
  <xs:element name="externaltranslationjob">
    <xs:complexType>
      <!--EXTERNALJOBID-->
      <xs:attribute name="ishexternaljobref" use="optional" type="CardId"/>
      <!--EXTERNALJOBREF-->
      <xs:attribute name="externaljobref" use="required" type="xs:string"/>
    </xs:complexType>
  </xs:element>
</xs:schema>
      

Example

<?xml version="1.0" encoding="utf-8"?>
<externaltranslationjobs ref="GUID-94E2DE94-38B7-4D1A-90A7-96537B2CD64E">
  <externaltranslationjob ishexternaljobref="1234" externaljobref="5647" />
  <externaltranslationjob ishexternaljobref="4567" externaljobref="2314" />
  <externaltranslationjob ishexternaljobref="7890" externaljobref="2456" />
</externaltranslationjobs>