XSD to XML Converter

 

XML



Options for XSD from XML
Scope :
XML SCHEMA



Options for XML from XSD
Root Element :

Choice :




Features:

  • XML Validator: It checks XML conforms to the definition described by a XML Schema
  • XML to XSD: It generates an XSD from an XML file.
  • XSD to XML: It generates a sample XML from an XML schema.

Fill in the editors below and it will automatically check if your XML conforms to XSD.

If you want use the XML to XSD converter or the XSD to XML converter, please fill in only the desired editor and click the appropriate conversion button.

You can see the user guide to help you to use this online XSD tool.It is a beta version. Do not hesitate to report a bug or give feedback.

User guide

  • Validate XML from XSD:

    It is very simple to validate your xml with an XSD validation Online:

    Step 1: You must fill "XML" editor. You can Drag and drop a XML file, click on "Browse a XML file"or directly type in the editor.

    Step 2: It is analogous to step 1 (except that it concerns the "XML Schema" editor).

    Step 3: As soon as the editors are filled, the tool checks if the XML conforms to the XSD.If errors are detected then they are displayed below the editors, else a success message is displayed.

    XSD user guide

  • Generate XML from XSD online:

    Step 1: You must fill "XML Schema" editor. You can Drag and drop a XML file, click on "Browse XML schema file"or directly type in the editor.

    Step 2: You can choose options: Click "Options for XML from XSD" to display the options.
    Root Element: If your XSD document contains more than one element, you can choose which one you want to generate an XML example.
    Choice: For choice complexType, you can specify whether you want to generate only the first element or all elements (in this case, your XML will not conform to your XSD).

    Step 3: Click on "XSD to XML".


  • Generate XSD from XML:

    Step 1: You must fill "XML" editor. You can Drag and drop a XML file, click on "Browse XML file"or directly type in the editor.

    Step 2: You can choose options: Click "Options for XSD from XML" to display the options.
    Scope: If you select "global", the components (elements and types) will be added to the global scope, they will be schema children.Otherwise, the components will be nested within another component.

    Step 3: Click on "XML to XSD".


All treatments are done locally directly in the browser, your documents are not sent to our server.

This tool uses xml.js library.It is an Emscripten port of libxml2's xmllint command.


XML to XSD Converter

This tool allows to convert XML data to XSD. You can generate a schema that can be used to validate future XML documents.

It is likely that you have to manually modify the generated schema.This saves time and allows you to have a good basis.

XSD to XML Online

This utility also allows you to generate XML examples from XSD.An XML example often makes it easier to understand the XML schema, because it is rarely very readable.

It can be useful to generate test data.This tool is not suitable for generating massive dataset data.To generate large datasets, visit our XML file generator.

Online XML schema validator

This XML XSD validator allows validate your XML document to your XSD.

If your document is not valid, the errors will be displayed,you will be able to make the necessary corrections.


What is XML Schema?

The XML Schema definition language (XSD) allows to define the structure and data types for XML documents.It contains a set of rules to which an XML document must conform in order to be valid. It is the current standard schema language, it is a recommendation of the World Wide Web Consortium (W3C).It is an alternative to Document type definition (DTD).

XSD defines:

  • The elements that can appear in a document
  • The attributes that can appear in a element
  • The child elements
  • The order of child elements
  • The data types for elements and attributes
  • The fixed values for elements and attributes

XML Schema can be used by developers to check XML document (to ensure the validity and consistency of XML data), for example to verify a SOAP response.If the XML document does not conform to the XML schema, the SOAP response is wrong.

XML Schema can be complicated to understand and use for a novice (especially for a non-developer),the spec is very long. The XML schema generator from xml can help to create a Schema XML.

XML Schema uses XML syntax, a XSD is a XML document! This avoids having to use another format.XSD Example

<?xml version="1.0"?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:element name="book">
  <xs:complexType>
    <xs:sequence>
      <xs:element name="author" type="xs:string"/>
      <xs:element name="title" type="xs:string"/>
      <xs:element name="price" type="xs:float"/>
    </xs:sequence>
  </xs:complexType>
</xs:element>
</xs:schema>
XML Example conforms to the XML Schema
<book>
	<author>Isaac Asimov</author>
	<title>I, Robot</title>
	<price>10</price>
</book>

XSD supports several primitive data types: boolean, string, decimal, float, double, date, dateTime, base64Binary, ... Then, it is possible to create complex types.


You can report a bug or give feedback by adding a comment (below) or by clicking "Contact me" link (at the top right hand corner of the page).

Comments