Documentation Center

Translation Job workflow list outgoing XML Structure

The outgoing XML structure containing the data of the translation job workflows

XML structure

<?xml version="1.0" encoding="utf-8" ?>
<xs:schema id="ISHTranslationJobWorkflows_Out" 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 ="translationjobworkflows">
    <xs:complexType>
      <xs:sequence minOccurs="0" maxOccurs="unbounded">
        <xs:element ref="translationjobworkflow"/>
      </xs:sequence>
      <xs:attribute name="ref" use="required" type="LogicalId"/>
    </xs:complexType>
  </xs:element>
  <xs:element name="translationjobworkflow">
    <xs:complexType>
      <xs:simpleContent>
        <xs:extension base="xs:string">
          <!--WORKFLOWID-->
          <xs:attribute name="ishworkflowref" use="required" type="CardId"/>
          <!--LNG-->
          <xs:attribute name="language" use="required" type="xs:string"/>
        </xs:extension>
      </xs:simpleContent>
    </xs:complexType>
  </xs:element>
</xs:schema>
      

Example

<?xml version="1.0" encoding="utf-16"?>
<translationjobworkflows ref="GUID-E0F6A873-A1F7-4DDD-92CF-952FA2114F9A">
  <translationjobworkflow ishworkflowref="1223" language="ru">Simple Workflow</translationjobworkflow>
  <translationjobworkflow ishworkflowref="2234" language="fr">Simple Workflow</translationjobworkflow>
  <translationjobworkflow ishworkflowref="4556" language="nl">Simple Workflow</translationjobworkflow>
  <translationjobworkflow ishworkflowref="7890" language="pt">Review Workflow</translationjobworkflow>
</translationjobworkflows>