Hi,
I am a new comer to XSLT. I have a XML schema which look like this

<?xml version="1.0" encoding="utf-8"?>
<xs:schema targetNamespace="www.myCompany.com/XMLSchema" xmlns:f="www.mycompany.com/XMLSchema" xmlns:xs="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified" attributeFormDefault="unqualified">
<xs:element name="xRecord">
<xs:complexType mixed="true">
<xs:sequence>
<xs:element name="CommentText" type="xs:string" minOccurs="0"/>
<xs:element name="OrganizationID" type="xs:string" minOccurs="0"/>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="xFunctionRecord">
<xs:complexType>
<xs:sequence>
<xs:element name="functionCommentText" type="xs:string" minOccurs="0"/>
<xs:element name="OrganizationID" type="xs:string" minOccurs="0"/>
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:schema>

I need create a XSLT again this schema. Can anyone show me how to do that?

Thank you very much.