<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: How to create an XSD schema file having namespace as XS? in Talend Studio</title>
    <link>https://community.qlik.com/t5/Talend-Studio/How-to-create-an-XSD-schema-file-having-namespace-as-XS/m-p/2370322#M133375</link>
    <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Can anyone help me in this issue as this the major thing in my project.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Mon, 17 Jun 2019 13:01:06 GMT</pubDate>
    <dc:creator>Aish123</dc:creator>
    <dc:date>2019-06-17T13:01:06Z</dc:date>
    <item>
      <title>How to create an XSD schema file having namespace as XS?</title>
      <link>https://community.qlik.com/t5/Talend-Studio/How-to-create-an-XSD-schema-file-having-namespace-as-XS/m-p/2370321#M133374</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt; 
&lt;P&gt;I have an XML Input file through which i want to create an XSD schema file.&lt;/P&gt; 
&lt;P&gt;I have taken an input as XML and output as XML using tadvancedOutputFile as the component.&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;The XSD generated is as follows:&lt;/P&gt; 
&lt;P&gt;&amp;lt;?xml version="1.0" encoding="UTF-8"?&amp;gt;&lt;/P&gt; 
&lt;P&gt;&amp;lt;xsd:schema xmlns:xsd="&lt;A href="http://www.w3.org/2001/XMLSchema" target="_blank" rel="noopener nofollow noopener noreferrer"&gt;http://www.w3.org/2001/XMLSchema&lt;/A&gt;"&amp;gt;&lt;BR /&gt;&amp;lt;xsd:element name="root" nillable="true"&amp;gt;&lt;BR /&gt;&amp;lt;xsd:complexType&amp;gt;&lt;BR /&gt;&amp;lt;xsd:sequence&amp;gt;&lt;BR /&gt;&amp;lt;xsd:element name="fedex" nillable="true" minOccurs="0" maxOccurs="unbounded"&amp;gt;&lt;BR /&gt;&amp;lt;xsd:complexType&amp;gt;&lt;BR /&gt;&amp;lt;xsd:sequence&amp;gt;&lt;BR /&gt;&amp;lt;xsd:element name="Employee_Id" nillable="true" minOccurs="0" maxOccurs="unbounded"/&amp;gt;&lt;BR /&gt;&amp;lt;xsd:element name="Employee_Firstname" nillable="true" minOccurs="0" maxOccurs="unbounded"/&amp;gt;&lt;BR /&gt;&amp;lt;xsd:element name="Employee_Lastname" nillable="true" minOccurs="0" maxOccurs="unbounded"/&amp;gt;&lt;BR /&gt;&amp;lt;xsd:element name="DOB" nillable="true" minOccurs="0" maxOccurs="unbounded"/&amp;gt;&lt;BR /&gt;&amp;lt;xsd:element name="MobileNumber" nillable="true" minOccurs="0" maxOccurs="unbounded"/&amp;gt;&lt;BR /&gt;&amp;lt;xsd:element name="Card_number" nillable="true" minOccurs="0" maxOccurs="unbounded"/&amp;gt;&lt;BR /&gt;&amp;lt;xsd:element name="PAN" nillable="true" minOccurs="0" maxOccurs="unbounded"/&amp;gt;&lt;BR /&gt;&amp;lt;xsd:element name="CVV" nillable="true" minOccurs="0" maxOccurs="unbounded"/&amp;gt;&lt;BR /&gt;&amp;lt;xsd:element name="Expiry_date" nillable="true" minOccurs="0" maxOccurs="unbounded"/&amp;gt;&lt;BR /&gt;&amp;lt;xsd:element name="SSN" nillable="true" minOccurs="0" maxOccurs="unbounded"/&amp;gt;&lt;BR /&gt;&amp;lt;xsd:element name="HealthCareID" nillable="true" minOccurs="0" maxOccurs="unbounded"/&amp;gt;&lt;BR /&gt;&amp;lt;xsd:element name="Attachments" nillable="true" minOccurs="0" maxOccurs="unbounded"&amp;gt;&lt;BR /&gt;&amp;lt;xsd:complexType&amp;gt;&lt;BR /&gt;&amp;lt;xsd:sequence&amp;gt;&lt;BR /&gt;&amp;lt;xsd:element name="AttachmentID" nillable="true" minOccurs="0" maxOccurs="unbounded"/&amp;gt;&lt;BR /&gt;&amp;lt;xsd:element name="AttachmentName" nillable="true" minOccurs="0" maxOccurs="unbounded"/&amp;gt;&lt;BR /&gt;&amp;lt;/xsd:sequence&amp;gt;&lt;BR /&gt;&amp;lt;/xsd:complexType&amp;gt;&lt;BR /&gt;&amp;lt;/xsd:element&amp;gt;&lt;BR /&gt;&amp;lt;/xsd:sequence&amp;gt;&lt;BR /&gt;&amp;lt;/xsd:complexType&amp;gt;&lt;BR /&gt;&amp;lt;/xsd:element&amp;gt;&lt;BR /&gt;&amp;lt;/xsd:sequence&amp;gt;&lt;BR /&gt;&amp;lt;/xsd:complexType&amp;gt;&lt;BR /&gt;&amp;lt;/xsd:element&amp;gt;&lt;BR /&gt;&amp;lt;/xsd:schema&amp;gt;&lt;/P&gt; 
&lt;P&gt;But i require the XSD to be in the following format that is the namespace should be "XS" and not "XSD":&lt;/P&gt; 
&lt;P&gt;&amp;lt;xs:schema elementFormDefault="qualified"&lt;BR /&gt;targetNamespace="urn:acme-corp:xsd:FEDEX.1.0"&lt;BR /&gt;xmlns="urn:acme-corp:xsd:FEDEX.1.0" xmlns:xs="&lt;A href="http://www.w3.org/2001/XMLSchema" target="_blank" rel="noopener nofollow noopener noreferrer"&gt;http://www.w3.org/2001/XMLSchema&lt;/A&gt;"&amp;gt;&lt;BR /&gt;&amp;lt;xs:element name="root"&amp;gt;&lt;BR /&gt;&amp;lt;xs:complexType&amp;gt;&lt;BR /&gt;&amp;lt;xs:sequence maxOccurs="unbounded"&amp;gt;&lt;BR /&gt;&amp;lt;xs:element name="fedex"&amp;gt;&lt;BR /&gt;&amp;lt;xs:complexType&amp;gt;&lt;BR /&gt;&amp;lt;xs:sequence&amp;gt;&lt;BR /&gt;&amp;lt;xs:element name="Employee_Id" /&amp;gt;&lt;BR /&gt;&amp;lt;xs:element name="Employee_Firstname" /&amp;gt;&lt;BR /&gt;&amp;lt;xs:element name="Employee_Lastname" /&amp;gt;&lt;BR /&gt;&amp;lt;xs:element name="DOB" /&amp;gt;&lt;BR /&gt;&amp;lt;xs:element name="MobileNumber" /&amp;gt;&lt;BR /&gt;&amp;lt;xs:element name="Card_number" /&amp;gt;&lt;BR /&gt;&amp;lt;xs:element name="PAN" /&amp;gt;&lt;BR /&gt;&amp;lt;xs:element name="CVV" /&amp;gt;&lt;BR /&gt;&amp;lt;xs:element name="Expiry_date" /&amp;gt;&lt;BR /&gt;&amp;lt;xs:element name="SSN" /&amp;gt;&lt;BR /&gt;&amp;lt;xs:element name="HealthCareID" /&amp;gt;&lt;BR /&gt;&amp;lt;xs:element name="Attachments" maxOccurs="unbounded" minOccurs="0"&amp;gt;&lt;BR /&gt;&amp;lt;xs:complexType&amp;gt;&lt;BR /&gt;&amp;lt;xs:sequence&amp;gt;&lt;BR /&gt;&amp;lt;xs:element name="AttachmentID" /&amp;gt;&lt;BR /&gt;&amp;lt;xs:element name="AttachmentName" /&amp;gt;&lt;BR /&gt;&amp;lt;/xs:sequence&amp;gt;&lt;BR /&gt;&amp;lt;/xs:complexType&amp;gt;&lt;BR /&gt;&amp;lt;/xs:element&amp;gt;&lt;BR /&gt;&amp;lt;/xs:sequence&amp;gt;&lt;BR /&gt;&amp;lt;/xs:complexType&amp;gt;&lt;BR /&gt;&amp;lt;/xs:element&amp;gt;&lt;BR /&gt;&amp;lt;/xs:sequence&amp;gt;&lt;BR /&gt;&amp;lt;/xs:complexType&amp;gt;&lt;BR /&gt;&amp;lt;/xs:element&amp;gt;&lt;BR /&gt;&amp;lt;/xs:schema&amp;gt;&lt;/P&gt; 
&lt;P&gt;How will i be able to achieve this using Talend?&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 14 Jun 2019 09:25:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/How-to-create-an-XSD-schema-file-having-namespace-as-XS/m-p/2370321#M133374</guid>
      <dc:creator>Aish123</dc:creator>
      <dc:date>2019-06-14T09:25:06Z</dc:date>
    </item>
    <item>
      <title>Re: How to create an XSD schema file having namespace as XS?</title>
      <link>https://community.qlik.com/t5/Talend-Studio/How-to-create-an-XSD-schema-file-having-namespace-as-XS/m-p/2370322#M133375</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Can anyone help me in this issue as this the major thing in my project.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 17 Jun 2019 13:01:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/How-to-create-an-XSD-schema-file-having-namespace-as-XS/m-p/2370322#M133375</guid>
      <dc:creator>Aish123</dc:creator>
      <dc:date>2019-06-17T13:01:06Z</dc:date>
    </item>
  </channel>
</rss>

