It has two files one xslt and I need one xsd. is it possible to convert / convert xslt to xsd?
It has two files one xslt and I need one xsd. is it possible to convert / convert xslt to xsd?
It does not make sense to do this because they have different purposes:
XSLT is used to "parse" a XML
transforming into another XML
(or another format as HTML
)
Read more here: link
XSD is a schema used to validate the structure of XML
, such as present nodes, data type, etc.
Read more here: link
So it does not make sense to convert one to another because they are different in structure and have different purposes.