How to convert XSLT to an XSD?

1

It has two files one xslt and I need one xsd. is it possible to convert / convert xslt to xsd?

    
asked by anonymous 20.04.2018 / 19:43

1 answer

3

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.

    
20.04.2018 / 19:55