-2

Please make me understand where to find the schema.xsd file which is mentioned in the code.

<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" 


xmlns:vmf="http://www.altova.com/MapForce/UDF/vmf" 


xmlns:xs="http://www.w3.org/2001/XMLSchema" 


exclude-result-prefixes="vmf xs">


<xsl:output method="xml" encoding="UTF-8" indent="yes"/>



<xsl:template match="/">


<DATA>


<xsl:attribute name="xsi:noNamespaceSchemaLocation" 

namespace="http://www.w3.org/2001/XMLSchema-instance">

schema.xsd


</xsl:attribute>


<ITEMS>


</ITEMS>


</xsl:Stylesheet>
Bill the Lizard
  • 398,270
  • 210
  • 566
  • 880
Mura
  • 32
  • 6
  • You don't need to access that file; most of the time, the url isn't valid, or publicly accessible; maybe this is a [XY problem](https://meta.stackexchange.com/questions/66377/what-is-the-xy-problem). What are you trying to accomplish? – Rubens Farias Aug 13 '18 at 13:11
  • Thanks @RubensFarias Just thought of looking into the xsd file for the schema definitions. if it is a physical file plz suggest where it is – Mura Aug 13 '18 at 13:20

1 Answers1

1

You can find the XML Schema for Schemas here.

However, you probably do not need it unless you're trying to validate an XSD (as opposed to validating an XML document instance with against an XSD).

See also:

kjhughes
  • 106,133
  • 27
  • 181
  • 240