graphml.xsd 23 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <xs:schema xmlns="http://graphml.graphdrawing.org/xmlns"
  3. xmlns:xs="http://www.w3.org/2001/XMLSchema"
  4. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  5. xmlns:p5_tr_map="http://biuro.biall-net.pl/xmlschema_procesy5/default_db_xml_cache/procesy5_translate_map.xsd"
  6. xmlns:vc="http://www.w3.org/2007/XMLSchema-versioning"
  7. xmlns:system_cache__resources_tree_generate_xsl_required_occurs_raport="http://biuro.biall-net.pl/xmlschema_procesy5/system_cache/resources_tree_generate_xsl_require_occurs_raport"
  8. xmlns:system_cache__appinfo="http://biuro.biall-net.pl/xmlschema_procesy5/default_db_xml_cache/appinfo.xsd"
  9. xmlns:p5opr="http://biuro.biall-net.pl/xmlschema_procesy5/system_cache/object_parent_relations/object_parent_relations.xsd"
  10. xmlns:p5_simpleSchema_map="http://biuro.biall-net.pl/xmlschema_procesy5/default_db_xml_cache/p5_simpleSchema_map.xsd"
  11. targetNamespace="http://graphml.graphdrawing.org/xmlns"
  12. elementFormDefault="qualified"
  13. attributeFormDefault="unqualified">
  14. <xs:annotation>
  15. <xs:documentation source="http://graphml.graphdrawing.org/" xml:lang="en">
  16. This document defines the GraphML language including GraphML attributes and GraphML parseinfo.
  17. </xs:documentation>
  18. </xs:annotation>
  19. <xs:redefine schemaLocation="http://graphml.graphdrawing.org/xmlns/1.1/graphml-structure.xsd"><!-- redefinition as in graphml-attributes.xsd -->
  20. <xs:attributeGroup name="key.extra.attrib">
  21. <xs:attributeGroup ref="key.extra.attrib"/>
  22. <xs:attributeGroup ref="key.attributes.attrib"/>
  23. </xs:attributeGroup>
  24. <!-- redefinition as in graphml-parseinfo.xsd -->
  25. <xs:attributeGroup name="graph.extra.attrib">
  26. <xs:attributeGroup ref="graph.extra.attrib"/>
  27. <xs:attributeGroup ref="graph.parseinfo.attrib"/>
  28. </xs:attributeGroup>
  29. <xs:attributeGroup name="node.extra.attrib">
  30. <xs:attributeGroup ref="node.extra.attrib"/>
  31. <xs:attributeGroup ref="node.parseinfo.attrib"/>
  32. </xs:attributeGroup>
  33. </xs:redefine>
  34. <!-- types as in graphml-attributes.xsd -->
  35. <xs:simpleType name="key.name.type"
  36. final="#all"
  37. id="d15e957___d15e95800-1_key.name.t">
  38. <xs:annotation>
  39. <xs:documentation source="http://graphml.graphdrawing.org/(Dokumentation der Attributes Erweiterung; entsprechende Stelle.html)"
  40. xml:lang="en">
  41. 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)
  42. </xs:documentation>
  43. </xs:annotation>
  44. <xs:restriction base="xs:NMTOKEN"/>
  45. </xs:simpleType>
  46. <xs:simpleType name="key.type.type"
  47. final="#all"
  48. id="d15e957___d15e95805-1_key.type.t">
  49. <xs:annotation>
  50. <xs:documentation source="http://graphml.graphdrawing.org/(Dokumentation der Attributes Erweiterung; entsprechende Stelle.html)"
  51. xml:lang="en">
  52. 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.
  53. </xs:documentation>
  54. </xs:annotation>
  55. <xs:restriction base="xs:NMTOKEN">
  56. <xs:enumeration value="boolean"/>
  57. <xs:enumeration value="int"/>
  58. <xs:enumeration value="long"/>
  59. <xs:enumeration value="float"/>
  60. <xs:enumeration value="double"/>
  61. <xs:enumeration value="string"/>
  62. </xs:restriction>
  63. </xs:simpleType>
  64. <xs:attributeGroup name="key.attributes.attrib">
  65. <xs:annotation>
  66. <xs:documentation source="http://graphml.graphdrawing.org/" xml:lang="en">
  67. 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)
  68. </xs:documentation>
  69. </xs:annotation>
  70. <xs:attribute name="attr.name"
  71. type="key.name.type"
  72. use="optional"
  73. id="d15e957___d15e95820-1_attr.name"/>
  74. <xs:attribute name="attr.type"
  75. type="key.type.type"
  76. use="optional"
  77. id="d15e957___d15e95821-1_attr.type"/>
  78. </xs:attributeGroup>
  79. <!-- types as in graphml-parseinfo.xsd -->
  80. <xs:annotation>
  81. <xs:documentation source="http://graphml.graphdrawing.org/" xml:lang="en">
  82. Simple type definitions for the new graph attributes.
  83. </xs:documentation>
  84. </xs:annotation>
  85. <xs:simpleType name="graph.order.type"
  86. final="#all"
  87. id="d15e957___d15e95826-1_graph.orde">
  88. <xs:annotation>
  89. <xs:documentation source="http://graphml.graphdrawing.org/" xml:lang="en">
  90. 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.
  91. </xs:documentation>
  92. </xs:annotation>
  93. <xs:restriction base="xs:NMTOKEN">
  94. <xs:enumeration value="free"/>
  95. <xs:enumeration value="nodesfirst"/>
  96. <xs:enumeration value="adjacencylist"/>
  97. </xs:restriction>
  98. </xs:simpleType>
  99. <xs:simpleType name="graph.nodes.type"
  100. final="#all"
  101. id="d15e957___d15e95834-1_graph.node">
  102. <xs:annotation>
  103. <xs:documentation source="http://graphml.graphdrawing.org/" xml:lang="en">
  104. 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).
  105. </xs:documentation>
  106. </xs:annotation>
  107. <xs:restriction base="xs:nonNegativeInteger"/>
  108. </xs:simpleType>
  109. <xs:simpleType name="graph.edges.type"
  110. final="#all"
  111. id="d15e957___d15e95839-1_graph.edge">
  112. <xs:annotation>
  113. <xs:documentation source="http://graphml.graphdrawing.org/" xml:lang="en">
  114. 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).
  115. </xs:documentation>
  116. </xs:annotation>
  117. <xs:restriction base="xs:nonNegativeInteger"/>
  118. </xs:simpleType>
  119. <xs:simpleType name="graph.maxindegree.type"
  120. final="#all"
  121. id="d15e957___d15e95845-1_graph.maxi">
  122. <xs:annotation>
  123. <xs:documentation source="http://graphml.graphdrawing.org/" xml:lang="en">
  124. 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).
  125. </xs:documentation>
  126. </xs:annotation>
  127. <xs:restriction base="xs:nonNegativeInteger"/>
  128. </xs:simpleType>
  129. <xs:simpleType name="graph.maxoutdegree.type"
  130. final="#all"
  131. id="d15e957___d15e95850-1_graph.maxo">
  132. <xs:annotation>
  133. <xs:documentation source="http://graphml.graphdrawing.org/" xml:lang="en">
  134. 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).
  135. </xs:documentation>
  136. </xs:annotation>
  137. <xs:restriction base="xs:nonNegativeInteger"/>
  138. </xs:simpleType>
  139. <xs:simpleType name="graph.nodeids.type"
  140. final="#all"
  141. id="d15e957___d15e95855-1_graph.node">
  142. <xs:annotation>
  143. <xs:documentation source="http://graphml.graphdrawing.org/" xml:lang="en">
  144. 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).
  145. </xs:documentation>
  146. </xs:annotation>
  147. <xs:restriction base="xs:NMTOKEN">
  148. <xs:enumeration value="canonical"/>
  149. <xs:enumeration value="free"/>
  150. </xs:restriction>
  151. </xs:simpleType>
  152. <xs:simpleType name="graph.edgeids.type"
  153. final="#all"
  154. id="d15e957___d15e95862-1_graph.edge">
  155. <xs:annotation>
  156. <xs:documentation source="http://graphml.graphdrawing.org/" xml:lang="en">
  157. 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).
  158. </xs:documentation>
  159. </xs:annotation>
  160. <xs:restriction base="xs:NMTOKEN">
  161. <xs:enumeration value="canonical"/>
  162. <xs:enumeration value="free"/>
  163. </xs:restriction>
  164. </xs:simpleType>
  165. <xs:attributeGroup name="graph.parseinfo.attrib">
  166. <xs:annotation>
  167. <xs:documentation source="http://graphml.graphdrawing.org/" xml:lang="en">
  168. 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)
  169. </xs:documentation>
  170. </xs:annotation>
  171. <xs:attribute name="parse.nodeids"
  172. type="graph.nodeids.type"
  173. id="d15e957___d15e95873-1_parse.node"/>
  174. <xs:attribute name="parse.edgeids"
  175. type="graph.edgeids.type"
  176. id="d15e957___d15e95874-1_parse.edge"/>
  177. <xs:attribute name="parse.order"
  178. type="graph.order.type"
  179. id="d15e957___d15e95875-1_parse.orde"/>
  180. <xs:attribute name="parse.nodes"
  181. type="graph.nodes.type"
  182. id="d15e957___d15e95876-1_parse.node"/>
  183. <xs:attribute name="parse.edges"
  184. type="graph.edges.type"
  185. id="d15e957___d15e95877-1_parse.edge"/>
  186. <xs:attribute name="parse.maxindegree"
  187. type="graph.maxindegree.type"
  188. use="optional"
  189. id="d15e957___d15e95878-1_parse.maxi"/>
  190. <xs:attribute name="parse.maxoutdegree"
  191. type="graph.maxoutdegree.type"
  192. use="optional"
  193. id="d15e957___d15e95879-1_parse.maxo"/>
  194. </xs:attributeGroup>
  195. <xs:annotation>
  196. <xs:documentation source="http://graphml.graphdrawing.org/" xml:lang="en">
  197. Simple type definitions for the new node attributes.
  198. </xs:documentation>
  199. </xs:annotation>
  200. <xs:simpleType name="node.indegree.type"
  201. final="#all"
  202. id="d15e957___d15e95883-1_node.indeg">
  203. <xs:annotation>
  204. <xs:documentation source="http://graphml.graphdrawing.org/" xml:lang="en">
  205. 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).
  206. </xs:documentation>
  207. </xs:annotation>
  208. <xs:restriction base="xs:nonNegativeInteger"/>
  209. </xs:simpleType>
  210. <xs:simpleType name="node.outdegree.type"
  211. final="#all"
  212. id="d15e957___d15e95888-1_node.outde">
  213. <xs:annotation>
  214. <xs:documentation source="http://graphml.graphdrawing.org/" xml:lang="en">
  215. 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).
  216. </xs:documentation>
  217. </xs:annotation>
  218. <xs:restriction base="xs:nonNegativeInteger"/>
  219. </xs:simpleType>
  220. <xs:attributeGroup name="node.parseinfo.attrib">
  221. <xs:annotation>
  222. <xs:documentation source="http://graphml.graphdrawing.org/" xml:lang="en">
  223. 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).
  224. </xs:documentation>
  225. </xs:annotation>
  226. <xs:attribute name="parse.indegree"
  227. type="node.indegree.type"
  228. use="optional"
  229. id="d15e957___d15e95897-1_parse.inde"/>
  230. <xs:attribute name="parse.outdegree"
  231. type="node.outdegree.type"
  232. use="optional"
  233. id="d15e957___d15e95898-1_parse.outd"/>
  234. </xs:attributeGroup>
  235. </xs:schema>
  236. <!--<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"
  237. elementFormDefault="qualified" targetNamespace="http://www.yworks.com/xml/graphml"
  238. xmlns="http://graphml.graphdrawing.org/xmlns" xmlns:y="http://www.yworks.com/xml/graphml"
  239. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  240. <xs:import namespace="http://graphml.graphdrawing.org/xmlns" schemaLocation="xmlns.xsd"/>
  241. <xs:import namespace="http://www.w3.org/2001/XMLSchema-instance" schemaLocation="xsi.xsd"/>
  242. <xs:element name="GenericEdge">
  243. <xs:complexType>
  244. <xs:sequence>
  245. <xs:element ref="y:Path"/>
  246. <xs:element ref="y:LineStyle"/>
  247. <xs:element ref="y:Arrows"/>
  248. </xs:sequence>
  249. <xs:attribute name="configuration" use="required" type="xs:NCName"/>
  250. </xs:complexType>
  251. </xs:element>
  252. <xs:element name="GenericNode">
  253. <xs:complexType>
  254. <xs:sequence>
  255. <xs:element ref="y:Geometry"/>
  256. <xs:element ref="y:Fill"/>
  257. <xs:element ref="y:BorderStyle"/>
  258. <xs:element ref="y:NodeLabel"/>
  259. </xs:sequence>
  260. <xs:attribute name="configuration" use="required" type="xs:NCName"/>
  261. </xs:complexType>
  262. </xs:element>
  263. <xs:element name="PolyLineEdge">
  264. <xs:complexType>
  265. <xs:sequence>
  266. <xs:element ref="y:Path"/>
  267. <xs:element ref="y:LineStyle"/>
  268. <xs:element ref="y:Arrows"/>
  269. <xs:element ref="y:BendStyle"/>
  270. </xs:sequence>
  271. </xs:complexType>
  272. </xs:element>
  273. <xs:element name="BendStyle">
  274. <xs:complexType>
  275. <xs:attribute name="smoothed" use="required" type="xs:boolean"/>
  276. </xs:complexType>
  277. </xs:element>
  278. <xs:element name="ProxyAutoBoundsNode">
  279. <xs:complexType>
  280. <xs:sequence>
  281. <xs:element ref="y:Realizers"/>
  282. </xs:sequence>
  283. </xs:complexType>
  284. </xs:element>
  285. <xs:element name="Realizers">
  286. <xs:complexType>
  287. <xs:choice>
  288. <xs:element maxOccurs="unbounded" ref="y:GroupNode"/>
  289. <xs:element maxOccurs="unbounded" ref="y:GenericGroupNode"/>
  290. </xs:choice>
  291. <xs:attribute name="active" use="required" type="xs:integer"/>
  292. </xs:complexType>
  293. </xs:element>
  294. <xs:element name="GroupNode">
  295. <xs:complexType>
  296. <xs:sequence>
  297. <xs:element ref="y:Geometry"/>
  298. <xs:element ref="y:Fill"/>
  299. <xs:element ref="y:BorderStyle"/>
  300. <xs:element ref="y:NodeLabel"/>
  301. <xs:element ref="y:Shape"/>
  302. <xs:element ref="y:State"/>
  303. <xs:element ref="y:Insets"/>
  304. <xs:element ref="y:BorderInsets"/>
  305. </xs:sequence>
  306. </xs:complexType>
  307. </xs:element>
  308. <xs:element name="Shape">
  309. <xs:complexType>
  310. <xs:attribute name="type" use="required" type="xs:NCName"/>
  311. </xs:complexType>
  312. </xs:element>
  313. <xs:element name="GenericGroupNode">
  314. <xs:complexType>
  315. <xs:sequence>
  316. <xs:element ref="y:Geometry"/>
  317. <xs:element ref="y:Fill"/>
  318. <xs:element ref="y:BorderStyle"/>
  319. <xs:element ref="y:NodeLabel"/>
  320. <xs:element ref="y:State"/>
  321. <xs:element ref="y:Insets"/>
  322. <xs:element ref="y:BorderInsets"/>
  323. </xs:sequence>
  324. <xs:attribute name="configuration" use="required" type="xs:NCName"/>
  325. </xs:complexType>
  326. </xs:element>
  327. <xs:element name="Resources">
  328. <xs:complexType/>
  329. </xs:element>
  330. <xs:element name="Geometry">
  331. <xs:complexType>
  332. <xs:attribute name="height" use="required" type="xs:decimal"/>
  333. <xs:attribute name="width" use="required" type="xs:decimal"/>
  334. <xs:attribute name="x" use="required" type="xs:decimal"/>
  335. <xs:attribute name="y" use="required" type="xs:decimal"/>
  336. </xs:complexType>
  337. </xs:element>
  338. <xs:element name="Fill">
  339. <xs:complexType>
  340. <xs:attribute name="color" use="required"/>
  341. <xs:attribute name="color2"/>
  342. <xs:attribute name="transparent" use="required" type="xs:boolean"/>
  343. </xs:complexType>
  344. </xs:element>
  345. <xs:element name="BorderStyle">
  346. <xs:complexType>
  347. <xs:attribute name="color"/>
  348. <xs:attribute name="hasColor" type="xs:boolean"/>
  349. <xs:attribute name="type" use="required" type="xs:NCName"/>
  350. <xs:attribute name="width" use="required" type="xs:decimal"/>
  351. </xs:complexType>
  352. </xs:element>
  353. <xs:element name="NodeLabel">
  354. <xs:complexType mixed="true">
  355. <xs:choice minOccurs="0" maxOccurs="unbounded">
  356. <xs:element ref="y:LabelModel"/>
  357. <xs:element ref="y:ModelParameter"/>
  358. </xs:choice>
  359. <xs:attribute name="alignment" use="required" type="xs:NCName"/>
  360. <xs:attribute name="autoSizePolicy" use="required" type="xs:NCName"/>
  361. <xs:attribute name="backgroundColor"/>
  362. <xs:attribute name="borderDistance" type="xs:decimal"/>
  363. <xs:attribute name="fontFamily" use="required" type="xs:NCName"/>
  364. <xs:attribute name="fontSize" use="required" type="xs:integer"/>
  365. <xs:attribute name="fontStyle" use="required" type="xs:NCName"/>
  366. <xs:attribute name="hasBackgroundColor" type="xs:boolean"/>
  367. <xs:attribute name="hasLineColor" use="required" type="xs:boolean"/>
  368. <xs:attribute name="height" use="required" type="xs:decimal"/>
  369. <xs:attribute name="horizontalTextPosition" use="required" type="xs:NCName"/>
  370. <xs:attribute name="iconTextGap" use="required" type="xs:integer"/>
  371. <xs:attribute name="modelName" use="required" type="xs:NCName"/>
  372. <xs:attribute name="modelPosition" type="xs:NCName"/>
  373. <xs:attribute name="textColor" use="required"/>
  374. <xs:attribute name="verticalTextPosition" use="required" type="xs:NCName"/>
  375. <xs:attribute name="visible" use="required" type="xs:boolean"/>
  376. <xs:attribute name="width" use="required" type="xs:decimal"/>
  377. <xs:attribute name="x" use="required" type="xs:decimal"/>
  378. <xs:attribute name="y" use="required" type="xs:decimal"/>
  379. </xs:complexType>
  380. </xs:element>
  381. <xs:element name="LabelModel">
  382. <xs:complexType>
  383. <xs:sequence>
  384. <xs:element ref="y:SmartNodeLabelModel"/>
  385. </xs:sequence>
  386. </xs:complexType>
  387. </xs:element>
  388. <xs:element name="SmartNodeLabelModel">
  389. <xs:complexType>
  390. <xs:attribute name="distance" use="required" type="xs:decimal"/>
  391. </xs:complexType>
  392. </xs:element>
  393. <xs:element name="ModelParameter">
  394. <xs:complexType>
  395. <xs:sequence>
  396. <xs:element ref="y:SmartNodeLabelModelParameter"/>
  397. </xs:sequence>
  398. </xs:complexType>
  399. </xs:element>
  400. <xs:element name="SmartNodeLabelModelParameter">
  401. <xs:complexType>
  402. <xs:attribute name="labelRatioX" use="required" type="xs:decimal"/>
  403. <xs:attribute name="labelRatioY" use="required" type="xs:decimal"/>
  404. <xs:attribute name="nodeRatioX" use="required" type="xs:decimal"/>
  405. <xs:attribute name="nodeRatioY" use="required" type="xs:decimal"/>
  406. <xs:attribute name="offsetX" use="required" type="xs:decimal"/>
  407. <xs:attribute name="offsetY" use="required" type="xs:decimal"/>
  408. <xs:attribute name="upX" use="required" type="xs:decimal"/>
  409. <xs:attribute name="upY" use="required" type="xs:decimal"/>
  410. </xs:complexType>
  411. </xs:element>
  412. <xs:element name="State">
  413. <xs:complexType>
  414. <xs:attribute name="autoResize" type="xs:boolean"/>
  415. <xs:attribute name="closed" use="required" type="xs:boolean"/>
  416. <xs:attribute name="closedHeight" use="required" type="xs:decimal"/>
  417. <xs:attribute name="closedWidth" use="required" type="xs:decimal"/>
  418. <xs:attribute name="innerGraphDisplayEnabled" type="xs:boolean"/>
  419. </xs:complexType>
  420. </xs:element>
  421. <xs:element name="Insets">
  422. <xs:complexType>
  423. <xs:attribute name="bottom" use="required" type="xs:integer"/>
  424. <xs:attribute name="bottomF" use="required" type="xs:decimal"/>
  425. <xs:attribute name="left" use="required" type="xs:integer"/>
  426. <xs:attribute name="leftF" use="required" type="xs:decimal"/>
  427. <xs:attribute name="right" use="required" type="xs:integer"/>
  428. <xs:attribute name="rightF" use="required" type="xs:decimal"/>
  429. <xs:attribute name="top" use="required" type="xs:integer"/>
  430. <xs:attribute name="topF" use="required" type="xs:decimal"/>
  431. </xs:complexType>
  432. </xs:element>
  433. <xs:element name="BorderInsets">
  434. <xs:complexType>
  435. <xs:attribute name="bottom" use="required" type="xs:integer"/>
  436. <xs:attribute name="bottomF" use="required" type="xs:double"/>
  437. <xs:attribute name="left" use="required" type="xs:integer"/>
  438. <xs:attribute name="leftF" use="required" type="xs:decimal"/>
  439. <xs:attribute name="right" use="required" type="xs:integer"/>
  440. <xs:attribute name="rightF" use="required" type="xs:decimal"/>
  441. <xs:attribute name="top" use="required" type="xs:integer"/>
  442. <xs:attribute name="topF" use="required" type="xs:double"/>
  443. </xs:complexType>
  444. </xs:element>
  445. <xs:element name="Path">
  446. <xs:complexType>
  447. <xs:sequence>
  448. <xs:element minOccurs="0" maxOccurs="unbounded" ref="y:Point"/>
  449. </xs:sequence>
  450. <xs:attribute name="sx" use="required" type="xs:decimal"/>
  451. <xs:attribute name="sy" use="required" type="xs:decimal"/>
  452. <xs:attribute name="tx" use="required" type="xs:decimal"/>
  453. <xs:attribute name="ty" use="required" type="xs:decimal"/>
  454. </xs:complexType>
  455. </xs:element>
  456. <xs:element name="Point">
  457. <xs:complexType>
  458. <xs:attribute name="x" use="required" type="xs:decimal"/>
  459. <xs:attribute name="y" use="required" type="xs:decimal"/>
  460. </xs:complexType>
  461. </xs:element>
  462. <xs:element name="LineStyle">
  463. <xs:complexType>
  464. <xs:attribute name="color" use="required"/>
  465. <xs:attribute name="type" use="required" type="xs:NCName"/>
  466. <xs:attribute name="width" use="required" type="xs:decimal"/>
  467. </xs:complexType>
  468. </xs:element>
  469. <xs:element name="Arrows">
  470. <xs:complexType>
  471. <xs:attribute name="source" use="required" type="xs:NCName"/>
  472. <xs:attribute name="target" use="required" type="xs:NCName"/>
  473. </xs:complexType>
  474. </xs:element>
  475. </xs:schema>-->