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="company" targetNamespace="company" elementFormDefault="qualified" attributeFormDefault="unqualified"> <xs:element name="Employee" type="EmployeeType"/> <xs:element name="Input"> <xs:complexType> <xs:sequence> <xs:element ref="Company" maxOccurs="unbounded"/> </xs:sequence> </xs:complexType> </xs:element> <xs:element name="Company"> <xs:complexType> <xs:sequence> <xs:element name="Name" type="xs:string"/> <xs:element ref="Department" maxOccurs="unbounded"/> </xs:sequence> </xs:complexType> </xs:element> <xs:element name="Department"> <xs:complexType> <xs:sequence> <xs:element name="Name" type="xs:string"/> <xs:element ref="Employee" maxOccurs="unbounded"/> </xs:sequence> </xs:complexType> </xs:element> <xs:complexType name="EmployeeType"> <xs:sequence> <xs:element name="FirstName" type="xs:string" minOccurs="0"/> <xs:element name="LastName" type="xs:string" minOccurs="0"/> <xs:element name="Role" type="xs:string" minOccurs="0"/> <xs:element name="StartDate" type="xs:date" minOccurs="0"/> </xs:sequence> <xs:attribute name="id" type="xs:string"/> </xs:complexType> </xs:schema>