- From: Rick Aridi <jirata@attbi.com>
- Date: Wed, 9 Oct 2002 13:08:04 -0400 (EDT)
- To: <xmlschema-dev@w3.org>
- Cc: <taridi@cmguc.com>
- Message-ID: <4DFD1EC3A4D2D5118D2C00508B8B461EA45B33@US-GLA-MAIL01>
I have a need to be able to select one or value from one drop-down list:
Extract from sample schema definition:
<xs:element name="ComnAttr">
<xs:complexType>
<xs:sequence>
<xs:element name="CnfgGrp" type="GrpList"
default="General"/>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:simpleType name="GrpList">
<xs:restriction base="xs:string">
<xs:enumeration value="LDAP"/>
<xs:enumeration value="IMAP"/>
<xs:enumeration value="iPlanet"/>
<xs:enumeration value="Mirapoint"/>
<xs:enumeration value="Notification"/>
<xs:enumeration value="General"/>
<xs:enumeration value="Logging"/>
<xs:enumeration value=""/>
</xs:restriction>
</xs:simpleType>
Desired XML CnfgGrp possible value selection:.
<CnfgGrp>LDAP IMAP iPlanet</CnfgGrp>
Is there a way to define this in the schema definition?
Thanks,
Rick Aridi
Received on Wednesday, 9 October 2002 13:37:36 UTC