<?xml version="1.0" encoding="UTF-8" standalone="no"?> | |
<xs:schema xmlns="xsdxml" xmlns:xs="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified" targetNamespace="xsdxml"> | |
<xs:element name="note"> | |
<xs:complexType mixed="true"> | |
<xs:sequence> | |
<xs:element name="to" type="xs:string"/> | |
<xs:element name="from" type="xs:string"/> | |
<xs:element name="heading" type="xs:string"/> | |
<xs:element name="body" type="xs:string"/> | |
</xs:sequence> | |
</xs:complexType> | |
</xs:element> | |
</xs:schema> |