From: <jac...@us...> - 2013-02-24 23:05:48
|
Revision: 3029 http://openlcb.svn.sourceforge.net/openlcb/?rev=3029&view=rev Author: jacobsen Date: 2013-02-24 23:05:41 +0000 (Sun, 24 Feb 2013) Log Message: ----------- more documentation Modified Paths: -------------- trunk/prototypes/xml/schema/cdi.xsd Modified: trunk/prototypes/xml/schema/cdi.xsd =================================================================== --- trunk/prototypes/xml/schema/cdi.xsd 2013-02-24 17:58:38 UTC (rev 3028) +++ trunk/prototypes/xml/schema/cdi.xsd 2013-02-24 23:05:41 UTC (rev 3029) @@ -117,7 +117,7 @@ <xs:attribute name="size" type="xs:int" default="1"> <xs:annotation> <xs:documentation> - Storage size of this variable in bytes. + Storage size of this variable in bits. </xs:documentation> </xs:annotation> </xs:attribute> @@ -228,11 +228,43 @@ Allows any sequence of the contained element types </xs:documentation> </xs:annotation> - <xs:element name="group" type="groupType" minOccurs="0" maxOccurs="1"/> - <xs:element name="bit" type="bitType" minOccurs="0" maxOccurs="1"/> - <xs:element name="string" type="stringType" minOccurs="0" maxOccurs="1"/> - <xs:element name="int" type="intType" minOccurs="0" maxOccurs="1"/> - <xs:element name="eventid" type="eventidType" minOccurs="0" maxOccurs="1"/> + <xs:element name="group" type="groupType" minOccurs="0" maxOccurs="1"> + <xs:annotation> + <xs:documentation> + Allows grouping and replication of multiple locations. + </xs:documentation> + </xs:annotation> + </xs:element> + <xs:element name="bit" type="bitType" minOccurs="0" maxOccurs="1"> + <xs:annotation> + <xs:documentation> + Describes a bit field in the data. + The field can be considered either a number, or a set of specific coded values via a map. + </xs:documentation> + </xs:annotation> + </xs:element> + <xs:element name="string" type="stringType" minOccurs="0" maxOccurs="1"> + <xs:annotation> + <xs:documentation> + Describes a human-readable UTF-8 string in the data. + </xs:documentation> + </xs:annotation> + </xs:element> + <xs:element name="int" type="intType" minOccurs="0" maxOccurs="1"> + <xs:annotation> + <xs:documentation> + Describes an integer value in the data. + The field can be considered either a number, or a set of specific coded values via a map. + </xs:documentation> + </xs:annotation> + </xs:element> + <xs:element name="eventid" type="eventidType" minOccurs="0" maxOccurs="1"> + <xs:annotation> + <xs:documentation> + Describes an 8-byte Event ID in the data. + </xs:documentation> + </xs:annotation> + </xs:element> </xs:choice> </xs:sequence> <xs:attribute name="space" type="xs:int" use="required"> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |