What is the difference between XML and XSD?

后端 未结 7 982
南笙
南笙 2020-11-27 11:31

What is the difference between Extensible Markup Language (XML) and XML Schema (XSD)?

7条回答
  •  情书的邮戳
    2020-11-27 12:03

    Basically an XSD file defines how the XML file is going to look like. It's a Schema file which defines the structure of the XML file. So it specifies what the possible fields are and what size they are going to be.

    An XML file is an instance of XSD as it uses the rules defined in the XSD.

提交回复
热议问题