mlhim-specs-dev team mailing list archive
-
mlhim-specs-dev team
-
Mailing list archive
-
Message #00098
[Branch ~mlhim-specs-dev/mlhim-specs/main] Rev 94: Started structures.xsd
------------------------------------------------------------
revno: 94
committer: Timothy W. Cook <timothywayne.cook@xxxxxxxxx>
branch nick: mlhim-specs
timestamp: Sat 2011-04-16 14:52:18 -0500
message:
Started structures.xsd
modified:
specs/2.0.x/mlhim/schemas/structures.xsd
--
lp:mlhim-specs
https://code.launchpad.net/~mlhim-specs-dev/mlhim-specs/main
Your team MLHIM Specifications Developers is subscribed to branch lp:mlhim-specs.
To unsubscribe from this branch go to https://code.launchpad.net/~mlhim-specs-dev/mlhim-specs/main/+edit-subscription
=== modified file 'specs/2.0.x/mlhim/schemas/structures.xsd'
--- specs/2.0.x/mlhim/schemas/structures.xsd 2011-04-16 19:42:33 +0000
+++ specs/2.0.x/mlhim/schemas/structures.xsd 2011-04-16 19:52:18 +0000
@@ -5,6 +5,27 @@
<xs:include schemaLocation="datatypes.xsd"></xs:include>
<xs:include schemaLocation="content.xsd"></xs:include>
<xs:include schemaLocation="common.xsd"></xs:include>
-
+
+ <xs:complexType name="DataStructure" base="mlhim2:Locatable" abstract="true"></xs:complexType>
+
+ <xs:complexType name="ItemStructure" base="mlhim2:DataStructure" abstract="true"></xs:complexType>
+
+ <xs:complexType name="Event" base="mlhim2:Locatable" abstract="true">
+ <xs:sequence>
+ <xs:element name="time" maxOccurs="1" minOccurs="1" type="mlhim2:DvDateTime"></xs:element>
+ <xs:element name="data" maxOccurs="1" minOccurs="1" type="mlhim2:Any"></xs:element>
+ <xs:element name="time" maxOccurs="1" minOccurs="1" type="mlhim2:ItemStructure"></xs:element>
+ </xs:sequence>
+ </xs:complexType>
+
+ <xs:complexType name="PointEvent" base="mlhim2:Event" abstract="false"></xs:complexType>
+
+ <xs:complexType name="IntervalEvent" base="mlhim2:Event" abstract="false">
+ <xs:sequence>
+ <xs:element name="width" maxOccurs="1" minOccurs="1" type="mlhim2:DvInterval"></xs:element>
+ <xs:element name="math_function" maxOccurs="1" minOccurs="1" type="mlhim2:DvCodedText"></xs:element>
+ <xs:element name="sample_count" maxOccurs="1" minOccurs="1" type="xs:integer"></xs:element>
+ </xs:sequence>
+ </xs:complexType>
</xs:schema>