graphml.xsd 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <xs:schema xmlns="http://graphml.graphdrawing.org/xmlns" xmlns:xs="http://www.w3.org/2001/XMLSchema" targetNamespace="http://graphml.graphdrawing.org/xmlns" elementFormDefault="qualified" attributeFormDefault="unqualified">
  3. <xs:annotation>
  4. <xs:documentation source="http://graphml.graphdrawing.org/" xml:lang="en">
  5. This document defines the GraphML language including GraphML attributes and GraphML parseinfo.
  6. </xs:documentation>
  7. </xs:annotation>
  8. <xs:redefine schemaLocation="http://graphml.graphdrawing.org/xmlns/1.1/graphml-structure.xsd">
  9. <!-- redefinition as in graphml-attributes.xsd -->
  10. <xs:attributeGroup name="key.extra.attrib">
  11. <xs:attributeGroup ref="key.extra.attrib"/>
  12. <xs:attributeGroup ref="key.attributes.attrib"/>
  13. </xs:attributeGroup>
  14. <!-- redefinition as in graphml-parseinfo.xsd -->
  15. <xs:attributeGroup name="graph.extra.attrib">
  16. <xs:attributeGroup ref="graph.extra.attrib"/>
  17. <xs:attributeGroup ref="graph.parseinfo.attrib"/>
  18. </xs:attributeGroup>
  19. <xs:attributeGroup name="node.extra.attrib">
  20. <xs:attributeGroup ref="node.extra.attrib"/>
  21. <xs:attributeGroup ref="node.parseinfo.attrib"/>
  22. </xs:attributeGroup>
  23. </xs:redefine>
  24. <!-- types as in graphml-attributes.xsd -->
  25. <xs:simpleType name="key.name.type" final="#all">
  26. <xs:annotation>
  27. <xs:documentation source="http://graphml.graphdrawing.org/(Dokumentation der Attributes Erweiterung; entsprechende Stelle.html)" xml:lang="en">
  28. Simple type for the attr.name attribute of key. key.name.type is final, that is, it may not be extended or restricted. key.name.type is a restriction of xs:NMTOKEN Allowed values: (no restriction)
  29. </xs:documentation>
  30. </xs:annotation>
  31. <xs:restriction base="xs:NMTOKEN"/>
  32. </xs:simpleType>
  33. <xs:simpleType name="key.type.type" final="#all">
  34. <xs:annotation>
  35. <xs:documentation source="http://graphml.graphdrawing.org/(Dokumentation der Attributes Erweiterung; entsprechende Stelle.html)" xml:lang="en">
  36. Simple type for the attr.type attribute of key. key.type.type is final, that is, it may not be extended or restricted. key.type.type is a restriction of xs:NMTOKEN Allowed values: boolean, int, long, float, double, string.
  37. </xs:documentation>
  38. </xs:annotation>
  39. <xs:restriction base="xs:NMTOKEN">
  40. <xs:enumeration value="boolean"/>
  41. <xs:enumeration value="int"/>
  42. <xs:enumeration value="long"/>
  43. <xs:enumeration value="float"/>
  44. <xs:enumeration value="double"/>
  45. <xs:enumeration value="string"/>
  46. </xs:restriction>
  47. </xs:simpleType>
  48. <xs:attributeGroup name="key.attributes.attrib">
  49. <xs:annotation>
  50. <xs:documentation source="http://graphml.graphdrawing.org/" xml:lang="en">
  51. Definition of the attribute group key.attributes.attrib. This group consists of the two optional attributes - attr.name (gives the name for the data function) - attr.type ((declares the range of values for the data function)
  52. </xs:documentation>
  53. </xs:annotation>
  54. <xs:attribute name="attr.name" type="key.name.type" use="optional"/>
  55. <xs:attribute name="attr.type" type="key.type.type" use="optional"/>
  56. </xs:attributeGroup>
  57. <!-- types as in graphml-parseinfo.xsd -->
  58. <xs:annotation>
  59. <xs:documentation source="http://graphml.graphdrawing.org/" xml:lang="en">
  60. Simple type definitions for the new graph attributes.
  61. </xs:documentation>
  62. </xs:annotation>
  63. <xs:simpleType name="graph.order.type" final="#all">
  64. <xs:annotation>
  65. <xs:documentation source="http://graphml.graphdrawing.org/" xml:lang="en">
  66. Simple type for the parse.order attribute of graph. graph.order.type is final, that is, it may not be extended or restricted. graph.order.type is a restriction of xs:NMTOKEN Allowed values: free, nodesfirst, adjacencylist.
  67. </xs:documentation>
  68. </xs:annotation>
  69. <xs:restriction base="xs:NMTOKEN">
  70. <xs:enumeration value="free"/>
  71. <xs:enumeration value="nodesfirst"/>
  72. <xs:enumeration value="adjacencylist"/>
  73. </xs:restriction>
  74. </xs:simpleType>
  75. <xs:simpleType name="graph.nodes.type" final="#all">
  76. <xs:annotation>
  77. <xs:documentation source="http://graphml.graphdrawing.org/" xml:lang="en">
  78. Simple type for the parse.nodes attribute of graph. graph.nodes.type is final, that is, it may not be extended or restricted. graph.nodes.type is a restriction of xs:nonNegativeInteger Allowed values: (no restriction).
  79. </xs:documentation>
  80. </xs:annotation>
  81. <xs:restriction base="xs:nonNegativeInteger"/>
  82. </xs:simpleType>
  83. <xs:simpleType name="graph.edges.type" final="#all">
  84. <xs:annotation>
  85. <xs:documentation source="http://graphml.graphdrawing.org/" xml:lang="en">
  86. Simple type for the parse.edges attribute of graph. graph.edges.type is final, that is, it may not be extended or restricted. graph.edges.type is a restriction of xs:nonNegativeInteger Allowed values: (no restriction).
  87. </xs:documentation>
  88. </xs:annotation>
  89. <xs:restriction base="xs:nonNegativeInteger"/>
  90. </xs:simpleType>
  91. <xs:simpleType name="graph.maxindegree.type" final="#all">
  92. <xs:annotation>
  93. <xs:documentation source="http://graphml.graphdrawing.org/" xml:lang="en">
  94. Simple type for the parse.maxindegree attribute of graph. graph.maxindegree.type is final, that is, it may not be extended or restricted. graph.maxindegree.type is a restriction of xs:nonNegativeInteger Allowed values: (no restriction).
  95. </xs:documentation>
  96. </xs:annotation>
  97. <xs:restriction base="xs:nonNegativeInteger"/>
  98. </xs:simpleType>
  99. <xs:simpleType name="graph.maxoutdegree.type" final="#all">
  100. <xs:annotation>
  101. <xs:documentation source="http://graphml.graphdrawing.org/" xml:lang="en">
  102. Simple type for the parse.maxoutdegree attribute of graph. graph.maxoutdegree.type is final, that is, it may not be extended or restricted. graph.maxoutdegree.type is a restriction of xs:nonNegativeInteger Allowed values: (no restriction).
  103. </xs:documentation>
  104. </xs:annotation>
  105. <xs:restriction base="xs:nonNegativeInteger"/>
  106. </xs:simpleType>
  107. <xs:simpleType name="graph.nodeids.type" final="#all">
  108. <xs:annotation>
  109. <xs:documentation source="http://graphml.graphdrawing.org/" xml:lang="en">
  110. Simple type for the parse.nodeids attribute of graph. graph.nodeids.type is final, that is, it may not be extended or restricted. graph.nodeids.type is a restriction of xs:string Allowed values: (no restriction).
  111. </xs:documentation>
  112. </xs:annotation>
  113. <xs:restriction base="xs:NMTOKEN">
  114. <xs:enumeration value="canonical"/>
  115. <xs:enumeration value="free"/>
  116. </xs:restriction>
  117. </xs:simpleType>
  118. <xs:simpleType name="graph.edgeids.type" final="#all">
  119. <xs:annotation>
  120. <xs:documentation source="http://graphml.graphdrawing.org/" xml:lang="en">
  121. Simple type for the parse.edgeids attribute of graph. graph.edgeids.type is final, that is, it may not be extended or restricted. graph.edgeids.type is a restriction of xs:string Allowed values: (no restriction).
  122. </xs:documentation>
  123. </xs:annotation>
  124. <xs:restriction base="xs:NMTOKEN">
  125. <xs:enumeration value="canonical"/>
  126. <xs:enumeration value="free"/>
  127. </xs:restriction>
  128. </xs:simpleType>
  129. <xs:attributeGroup name="graph.parseinfo.attrib">
  130. <xs:annotation>
  131. <xs:documentation source="http://graphml.graphdrawing.org/" xml:lang="en">
  132. Definition of the attribute group graph.parseinfo.attrib. This group consists of the seven attributes - parse.nodeids (fixed to 'canonical' meaning that the id attribute of node follows the pattern 'n[number]), - parse.edgeids (fixed to 'canonical' meaning that the id attribute of edge follows the pattern 'e[number]), - parse.order (required; one of the values 'nodesfirst', 'adjacencylist' or 'free'), - parse.nodes (required; number of nodes in this graph), - parse.edges (required; number of edges in this graph), - parse.maxindegree (optional; maximal indegree of a node in this graph), - parse.maxoutdegree (optional; maximal outdegree of a node in this graph)
  133. </xs:documentation>
  134. </xs:annotation>
  135. <xs:attribute name="parse.nodeids" type="graph.nodeids.type"/>
  136. <xs:attribute name="parse.edgeids" type="graph.edgeids.type"/>
  137. <xs:attribute name="parse.order" type="graph.order.type"/>
  138. <xs:attribute name="parse.nodes" type="graph.nodes.type"/>
  139. <xs:attribute name="parse.edges" type="graph.edges.type"/>
  140. <xs:attribute name="parse.maxindegree" type="graph.maxindegree.type" use="optional"/>
  141. <xs:attribute name="parse.maxoutdegree" type="graph.maxoutdegree.type" use="optional"/>
  142. </xs:attributeGroup>
  143. <xs:annotation>
  144. <xs:documentation source="http://graphml.graphdrawing.org/" xml:lang="en">
  145. Simple type definitions for the new node attributes.
  146. </xs:documentation>
  147. </xs:annotation>
  148. <xs:simpleType name="node.indegree.type" final="#all">
  149. <xs:annotation>
  150. <xs:documentation source="http://graphml.graphdrawing.org/" xml:lang="en">
  151. Simple type for the parse.indegree attribute of node. node.indegree.type is final, that is, it may not be extended or restricted. node.indegree.type is a restriction of xs:nonNegativeInteger Allowed values: (no restriction).
  152. </xs:documentation>
  153. </xs:annotation>
  154. <xs:restriction base="xs:nonNegativeInteger"/>
  155. </xs:simpleType>
  156. <xs:simpleType name="node.outdegree.type" final="#all">
  157. <xs:annotation>
  158. <xs:documentation source="http://graphml.graphdrawing.org/" xml:lang="en">
  159. Simple type for the parse.outdegree attribute of node. node.outdegree.type is final, that is, it may not be extended or restricted. node.outdegree.type is a restriction of xs:nonNegativeInteger Allowed values: (no restriction).
  160. </xs:documentation>
  161. </xs:annotation>
  162. <xs:restriction base="xs:nonNegativeInteger"/>
  163. </xs:simpleType>
  164. <xs:attributeGroup name="node.parseinfo.attrib">
  165. <xs:annotation>
  166. <xs:documentation source="http://graphml.graphdrawing.org/" xml:lang="en">
  167. Definition of the attribute group node.parseinfo.attrib. This group consists of two attributes - parse.indegree (optional; indegree of this node), - parse.outdegree (optional; outdegree of this node).
  168. </xs:documentation>
  169. </xs:annotation>
  170. <xs:attribute name="parse.indegree" type="node.indegree.type" use="optional"/>
  171. <xs:attribute name="parse.outdegree" type="node.outdegree.type" use="optional"/>
  172. </xs:attributeGroup>
  173. </xs:schema>
  174. <!--<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"
  175. elementFormDefault="qualified" targetNamespace="http://www.yworks.com/xml/graphml"
  176. xmlns="http://graphml.graphdrawing.org/xmlns" xmlns:y="http://www.yworks.com/xml/graphml"
  177. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  178. <xs:import namespace="http://graphml.graphdrawing.org/xmlns" schemaLocation="xmlns.xsd"/>
  179. <xs:import namespace="http://www.w3.org/2001/XMLSchema-instance" schemaLocation="xsi.xsd"/>
  180. <xs:element name="GenericEdge">
  181. <xs:complexType>
  182. <xs:sequence>
  183. <xs:element ref="y:Path"/>
  184. <xs:element ref="y:LineStyle"/>
  185. <xs:element ref="y:Arrows"/>
  186. </xs:sequence>
  187. <xs:attribute name="configuration" use="required" type="xs:NCName"/>
  188. </xs:complexType>
  189. </xs:element>
  190. <xs:element name="GenericNode">
  191. <xs:complexType>
  192. <xs:sequence>
  193. <xs:element ref="y:Geometry"/>
  194. <xs:element ref="y:Fill"/>
  195. <xs:element ref="y:BorderStyle"/>
  196. <xs:element ref="y:NodeLabel"/>
  197. </xs:sequence>
  198. <xs:attribute name="configuration" use="required" type="xs:NCName"/>
  199. </xs:complexType>
  200. </xs:element>
  201. <xs:element name="PolyLineEdge">
  202. <xs:complexType>
  203. <xs:sequence>
  204. <xs:element ref="y:Path"/>
  205. <xs:element ref="y:LineStyle"/>
  206. <xs:element ref="y:Arrows"/>
  207. <xs:element ref="y:BendStyle"/>
  208. </xs:sequence>
  209. </xs:complexType>
  210. </xs:element>
  211. <xs:element name="BendStyle">
  212. <xs:complexType>
  213. <xs:attribute name="smoothed" use="required" type="xs:boolean"/>
  214. </xs:complexType>
  215. </xs:element>
  216. <xs:element name="ProxyAutoBoundsNode">
  217. <xs:complexType>
  218. <xs:sequence>
  219. <xs:element ref="y:Realizers"/>
  220. </xs:sequence>
  221. </xs:complexType>
  222. </xs:element>
  223. <xs:element name="Realizers">
  224. <xs:complexType>
  225. <xs:choice>
  226. <xs:element maxOccurs="unbounded" ref="y:GroupNode"/>
  227. <xs:element maxOccurs="unbounded" ref="y:GenericGroupNode"/>
  228. </xs:choice>
  229. <xs:attribute name="active" use="required" type="xs:integer"/>
  230. </xs:complexType>
  231. </xs:element>
  232. <xs:element name="GroupNode">
  233. <xs:complexType>
  234. <xs:sequence>
  235. <xs:element ref="y:Geometry"/>
  236. <xs:element ref="y:Fill"/>
  237. <xs:element ref="y:BorderStyle"/>
  238. <xs:element ref="y:NodeLabel"/>
  239. <xs:element ref="y:Shape"/>
  240. <xs:element ref="y:State"/>
  241. <xs:element ref="y:Insets"/>
  242. <xs:element ref="y:BorderInsets"/>
  243. </xs:sequence>
  244. </xs:complexType>
  245. </xs:element>
  246. <xs:element name="Shape">
  247. <xs:complexType>
  248. <xs:attribute name="type" use="required" type="xs:NCName"/>
  249. </xs:complexType>
  250. </xs:element>
  251. <xs:element name="GenericGroupNode">
  252. <xs:complexType>
  253. <xs:sequence>
  254. <xs:element ref="y:Geometry"/>
  255. <xs:element ref="y:Fill"/>
  256. <xs:element ref="y:BorderStyle"/>
  257. <xs:element ref="y:NodeLabel"/>
  258. <xs:element ref="y:State"/>
  259. <xs:element ref="y:Insets"/>
  260. <xs:element ref="y:BorderInsets"/>
  261. </xs:sequence>
  262. <xs:attribute name="configuration" use="required" type="xs:NCName"/>
  263. </xs:complexType>
  264. </xs:element>
  265. <xs:element name="Resources">
  266. <xs:complexType/>
  267. </xs:element>
  268. <xs:element name="Geometry">
  269. <xs:complexType>
  270. <xs:attribute name="height" use="required" type="xs:decimal"/>
  271. <xs:attribute name="width" use="required" type="xs:decimal"/>
  272. <xs:attribute name="x" use="required" type="xs:decimal"/>
  273. <xs:attribute name="y" use="required" type="xs:decimal"/>
  274. </xs:complexType>
  275. </xs:element>
  276. <xs:element name="Fill">
  277. <xs:complexType>
  278. <xs:attribute name="color" use="required"/>
  279. <xs:attribute name="color2"/>
  280. <xs:attribute name="transparent" use="required" type="xs:boolean"/>
  281. </xs:complexType>
  282. </xs:element>
  283. <xs:element name="BorderStyle">
  284. <xs:complexType>
  285. <xs:attribute name="color"/>
  286. <xs:attribute name="hasColor" type="xs:boolean"/>
  287. <xs:attribute name="type" use="required" type="xs:NCName"/>
  288. <xs:attribute name="width" use="required" type="xs:decimal"/>
  289. </xs:complexType>
  290. </xs:element>
  291. <xs:element name="NodeLabel">
  292. <xs:complexType mixed="true">
  293. <xs:choice minOccurs="0" maxOccurs="unbounded">
  294. <xs:element ref="y:LabelModel"/>
  295. <xs:element ref="y:ModelParameter"/>
  296. </xs:choice>
  297. <xs:attribute name="alignment" use="required" type="xs:NCName"/>
  298. <xs:attribute name="autoSizePolicy" use="required" type="xs:NCName"/>
  299. <xs:attribute name="backgroundColor"/>
  300. <xs:attribute name="borderDistance" type="xs:decimal"/>
  301. <xs:attribute name="fontFamily" use="required" type="xs:NCName"/>
  302. <xs:attribute name="fontSize" use="required" type="xs:integer"/>
  303. <xs:attribute name="fontStyle" use="required" type="xs:NCName"/>
  304. <xs:attribute name="hasBackgroundColor" type="xs:boolean"/>
  305. <xs:attribute name="hasLineColor" use="required" type="xs:boolean"/>
  306. <xs:attribute name="height" use="required" type="xs:decimal"/>
  307. <xs:attribute name="horizontalTextPosition" use="required" type="xs:NCName"/>
  308. <xs:attribute name="iconTextGap" use="required" type="xs:integer"/>
  309. <xs:attribute name="modelName" use="required" type="xs:NCName"/>
  310. <xs:attribute name="modelPosition" type="xs:NCName"/>
  311. <xs:attribute name="textColor" use="required"/>
  312. <xs:attribute name="verticalTextPosition" use="required" type="xs:NCName"/>
  313. <xs:attribute name="visible" use="required" type="xs:boolean"/>
  314. <xs:attribute name="width" use="required" type="xs:decimal"/>
  315. <xs:attribute name="x" use="required" type="xs:decimal"/>
  316. <xs:attribute name="y" use="required" type="xs:decimal"/>
  317. </xs:complexType>
  318. </xs:element>
  319. <xs:element name="LabelModel">
  320. <xs:complexType>
  321. <xs:sequence>
  322. <xs:element ref="y:SmartNodeLabelModel"/>
  323. </xs:sequence>
  324. </xs:complexType>
  325. </xs:element>
  326. <xs:element name="SmartNodeLabelModel">
  327. <xs:complexType>
  328. <xs:attribute name="distance" use="required" type="xs:decimal"/>
  329. </xs:complexType>
  330. </xs:element>
  331. <xs:element name="ModelParameter">
  332. <xs:complexType>
  333. <xs:sequence>
  334. <xs:element ref="y:SmartNodeLabelModelParameter"/>
  335. </xs:sequence>
  336. </xs:complexType>
  337. </xs:element>
  338. <xs:element name="SmartNodeLabelModelParameter">
  339. <xs:complexType>
  340. <xs:attribute name="labelRatioX" use="required" type="xs:decimal"/>
  341. <xs:attribute name="labelRatioY" use="required" type="xs:decimal"/>
  342. <xs:attribute name="nodeRatioX" use="required" type="xs:decimal"/>
  343. <xs:attribute name="nodeRatioY" use="required" type="xs:decimal"/>
  344. <xs:attribute name="offsetX" use="required" type="xs:decimal"/>
  345. <xs:attribute name="offsetY" use="required" type="xs:decimal"/>
  346. <xs:attribute name="upX" use="required" type="xs:decimal"/>
  347. <xs:attribute name="upY" use="required" type="xs:decimal"/>
  348. </xs:complexType>
  349. </xs:element>
  350. <xs:element name="State">
  351. <xs:complexType>
  352. <xs:attribute name="autoResize" type="xs:boolean"/>
  353. <xs:attribute name="closed" use="required" type="xs:boolean"/>
  354. <xs:attribute name="closedHeight" use="required" type="xs:decimal"/>
  355. <xs:attribute name="closedWidth" use="required" type="xs:decimal"/>
  356. <xs:attribute name="innerGraphDisplayEnabled" type="xs:boolean"/>
  357. </xs:complexType>
  358. </xs:element>
  359. <xs:element name="Insets">
  360. <xs:complexType>
  361. <xs:attribute name="bottom" use="required" type="xs:integer"/>
  362. <xs:attribute name="bottomF" use="required" type="xs:decimal"/>
  363. <xs:attribute name="left" use="required" type="xs:integer"/>
  364. <xs:attribute name="leftF" use="required" type="xs:decimal"/>
  365. <xs:attribute name="right" use="required" type="xs:integer"/>
  366. <xs:attribute name="rightF" use="required" type="xs:decimal"/>
  367. <xs:attribute name="top" use="required" type="xs:integer"/>
  368. <xs:attribute name="topF" use="required" type="xs:decimal"/>
  369. </xs:complexType>
  370. </xs:element>
  371. <xs:element name="BorderInsets">
  372. <xs:complexType>
  373. <xs:attribute name="bottom" use="required" type="xs:integer"/>
  374. <xs:attribute name="bottomF" use="required" type="xs:double"/>
  375. <xs:attribute name="left" use="required" type="xs:integer"/>
  376. <xs:attribute name="leftF" use="required" type="xs:decimal"/>
  377. <xs:attribute name="right" use="required" type="xs:integer"/>
  378. <xs:attribute name="rightF" use="required" type="xs:decimal"/>
  379. <xs:attribute name="top" use="required" type="xs:integer"/>
  380. <xs:attribute name="topF" use="required" type="xs:double"/>
  381. </xs:complexType>
  382. </xs:element>
  383. <xs:element name="Path">
  384. <xs:complexType>
  385. <xs:sequence>
  386. <xs:element minOccurs="0" maxOccurs="unbounded" ref="y:Point"/>
  387. </xs:sequence>
  388. <xs:attribute name="sx" use="required" type="xs:decimal"/>
  389. <xs:attribute name="sy" use="required" type="xs:decimal"/>
  390. <xs:attribute name="tx" use="required" type="xs:decimal"/>
  391. <xs:attribute name="ty" use="required" type="xs:decimal"/>
  392. </xs:complexType>
  393. </xs:element>
  394. <xs:element name="Point">
  395. <xs:complexType>
  396. <xs:attribute name="x" use="required" type="xs:decimal"/>
  397. <xs:attribute name="y" use="required" type="xs:decimal"/>
  398. </xs:complexType>
  399. </xs:element>
  400. <xs:element name="LineStyle">
  401. <xs:complexType>
  402. <xs:attribute name="color" use="required"/>
  403. <xs:attribute name="type" use="required" type="xs:NCName"/>
  404. <xs:attribute name="width" use="required" type="xs:decimal"/>
  405. </xs:complexType>
  406. </xs:element>
  407. <xs:element name="Arrows">
  408. <xs:complexType>
  409. <xs:attribute name="source" use="required" type="xs:NCName"/>
  410. <xs:attribute name="target" use="required" type="xs:NCName"/>
  411. </xs:complexType>
  412. </xs:element>
  413. </xs:schema>-->