Advertisement
Guest User

test-schema.xsd

a guest
Dec 13th, 2012
260
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 0.75 KB | None | 0 0
  1. <xs:schema attributeFormDefault="unqualified"
  2.     elementFormDefault="qualified"
  3.     targetNamespace="http://myschema.example.com/"
  4.     xmlns:xs="http://www.w3.org/2001/XMLSchema"
  5.     xmlns:myschema="http://myschema.example.com/"
  6.     xmlns:xhtml="http://www.w3.org/1999/xhtml">
  7.     <xs:import
  8.         schemaLocation="http://www.w3.org/2002/08/xhtml/xhtml1-transitional.xsd"
  9.         namespace="http://www.w3.org/1999/xhtml">
  10.     </xs:import>
  11.     <xs:element name="Root">
  12.         <xs:complexType>
  13.             <xs:sequence>
  14.                 <xs:element name="MyHTMLElement">
  15.                     <xs:complexType>
  16.                         <xs:complexContent>
  17.                             <xs:extension base="xhtml:Flow"></xs:extension>
  18.                         </xs:complexContent>
  19.                     </xs:complexType>
  20.                 </xs:element>
  21.             </xs:sequence>
  22.         </xs:complexType>
  23.     </xs:element>
  24. </xs:schema>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement