B2B Data Transformation
- B2B Data Transformation 10.4.0
- All Products
<?xml version="1.0" encoding="UTF-8"?> <!-- edited with XMLSpy v2012 sp1 (x64) (http://www.altova.com) by Informatica Corporation (Informatica Corporation) --> <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns="organization" targetNamespace="organization" elementFormDefault="qualified" attributeFormDefault="unqualified"> <xs:element name="Worker" type="WorkerType"/> <xs:element name="Output"> <xs:complexType> <xs:sequence> <xs:element ref="Organization" maxOccurs="unbounded"/> </xs:sequence> </xs:complexType> </xs:element> <xs:element name="Organization"> <xs:complexType> <xs:sequence> <xs:choice maxOccurs="unbounded"> <xs:element name="Worker" type="WorkerType"/> <xs:element name="Manager" type="WorkerType"/> </xs:choice> <xs:element name="Department" type="xs:string" maxOccurs="unbounded"/> </xs:sequence> <xs:attribute name="noOfEmployees" type="xs:int"/> </xs:complexType> </xs:element> <xs:complexType name="WorkerType"> <xs:sequence> <xs:element name="FirstName" type="xs:string" minOccurs="0"/> <xs:element name="LastName" type="xs:string" minOccurs="0"/> <xs:element name="FullName" type="xs:string" minOccurs="0"/> <xs:element name="Id" type="xs:string"/> <xs:element name="YearsOfService" type="xs:int" minOccurs="0"/> </xs:sequence> </xs:complexType> </xs:schema>