mirror of
https://github.com/sartography/spiff-arena.git
synced 2025-02-25 07:35:43 +00:00
d27519a36 Merge pull request #259 from sartography/bugfix/spiff-postscript-execution 21aa8a12c update execution order for postscripts d83fd3d81 Merge pull request #256 from sartography/feature/xml-validation 8303aaab5 uping the sleep time in a test slightly to see if we can get this test to pass consistently in CI. 1d251d55d determine whether to validate by passing in a validator instead of a parameter 2d3daad2d add spiff schema f8c65dc60 Minor changes to BPMN diagrams to assure all tests are run against valid BPMN Diagrams. Changes required: 9e06b25bf add DMN validation 1b7cbeba0 set parser to validate by default 53fdbba52 add schemas & validation option a212d9c5d general cleanup git-subtree-dir: SpiffWorkflow git-subtree-split: d27519a3631b9772094e5f24dba2f478b0c47135
29 lines
1.2 KiB
XML
29 lines
1.2 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:dc="http://www.omg.org/spec/DD/20100524/DC" targetNamespace="http://www.omg.org/spec/DD/20100524/DC" elementFormDefault="qualified" attributeFormDefault="unqualified">
|
|
|
|
<xsd:element name="Font" type="dc:Font"/>
|
|
<xsd:element name="Point" type="dc:Point"/>
|
|
<xsd:element name="Bounds" type="dc:Bounds"/>
|
|
|
|
<xsd:complexType name="Font">
|
|
<xsd:attribute name="name" type="xsd:string"/>
|
|
<xsd:attribute name="size" type="xsd:double"/>
|
|
<xsd:attribute name="isBold" type="xsd:boolean"/>
|
|
<xsd:attribute name="isItalic" type="xsd:boolean"/>
|
|
<xsd:attribute name="isUnderline" type="xsd:boolean"/>
|
|
<xsd:attribute name="isStrikeThrough" type="xsd:boolean"/>
|
|
</xsd:complexType>
|
|
|
|
<xsd:complexType name="Point">
|
|
<xsd:attribute name="x" type="xsd:double" use="required"/>
|
|
<xsd:attribute name="y" type="xsd:double" use="required"/>
|
|
</xsd:complexType>
|
|
|
|
<xsd:complexType name="Bounds">
|
|
<xsd:attribute name="x" type="xsd:double" use="required"/>
|
|
<xsd:attribute name="y" type="xsd:double" use="required"/>
|
|
<xsd:attribute name="width" type="xsd:double" use="required"/>
|
|
<xsd:attribute name="height" type="xsd:double" use="required"/>
|
|
</xsd:complexType>
|
|
|
|
</xsd:schema> |