Schema Howto
## XML Schema
Below is an example of an XML Schema file named "note.xsd" that defines the elements of the above XML document ("note.xml"):
```xml
This schema defines that the `note` element contains four child elements: `to`, `from`, `heading`, and `body`. Each of these elements is defined as having the data type `xs:string`.
YouTip