<xs:attribute ref="name" />
<xs:attribute ref="position" />
<xs:attribute ref="dimension" />
+ <xs:attribute ref="visible" use="optional"/>
</xs:attributeGroup>
<xs:attributeGroup name="source_parameterAttrGroup">
<xs:attributeGroup name="connectionAttrGroup">
<xs:attribute ref="from" />
<xs:attribute ref="to" />
+ <xs:attribute ref="visible" use="optional" />
</xs:attributeGroup>
+ <xs:attributeGroup name="modifierAttrGroup">
+ <xs:attribute ref="id" />
+ <xs:attribute ref="type" />
+ <xs:attribute ref="params" />
+ </xs:attributeGroup>
+
<!-- déclaration des attributs -->
</xs:simpleType>
</xs:attribute>
+ <xs:attribute name="visible">
+ <xs:simpleType>
+ <xs:restriction base="xs:string">
+ <xs:enumeration value="true"/>
+ <xs:enumeration value="false"/>
+ </xs:restriction>
+ </xs:simpleType>
+ </xs:attribute>
+
<xs:attribute name="inside_group">
<xs:simpleType>
<xs:restriction base="xs:nonNegativeInteger">
<xs:attribute name="ref_md5" type="xs:string"/>
<xs:attribute name="context" type="xs:string"/>
<xs:attribute name="type" type="xs:string"/>
+ <xs:attribute name="params" type="xs:string"/>
+ <xs:attribute name="project_path" type="xs:string"/>
<!-- déclaration des groupes d'éléments -->
<xs:group name="rootElmtGroup">
<xs:sequence>
<xs:element ref="scenes"/>
- <xs:element ref="connections"/>
+ <xs:element ref="connections"/>
+ <xs:element ref="modifiers"/>
</xs:sequence>
</xs:group>
<xs:group ref="sceneElmtGroup"/>
<xs:attribute ref="id"/>
<xs:attribute ref="upper_scene"/>
+ <xs:attribute name="clklist" type="xs:string" use="optional" />
</xs:complexType>
</xs:element>
</xs:complexType>
</xs:element>
+ <xs:element name="modifiers">
+ <xs:complexType>
+ <xs:sequence>
+ <xs:element ref="modifier" minOccurs="0" maxOccurs="unbounded"/>
+ </xs:sequence>
+ </xs:complexType>
+ </xs:element>
+
+ <xs:element name="modifier">
+ <xs:complexType>
+ <xs:attributeGroup ref="modifierAttrGroup"/>
+ </xs:complexType>
+ </xs:element>
+
<!-- racine du document -->
<xs:element name="blast_project">
<xs:complexType>
<xs:group ref="rootElmtGroup"/>
+ <xs:attribute ref="project_path" />
</xs:complexType>
</xs:element>