Next in thread → Next in month →

RE: [xml-dev] A Doubt on defineing a simpleType in xml-schema file.

From
Priscilla Walmsley <>
To
"'Mariappan, MaharajanX'" <>,
Date
2001-12-04T14:29:33Z
ID
<00d401c17cd0$19856960$a22a6420@xmls>
Thread
RE: [xml-dev] A Doubt on defineing a simpleType in xml-schema file.
Hi Maharajan,

You should use a union type.  For example:

<xsd:simpleType name="myType">
	<xsd:union memberTypes="xsd:boolean xsd:string xsd:hexBinary"/>
</xsd:simpleType>

Hope that helps,
Priscilla
-----------------------------------------------------------
Priscilla Walmsley                   
Vitria Technology                     http://www.vitria.com
Author, Definitive XML Schema    (Prentice Hall, Dec. 2001)
-----------------------------------------------------------

> -----Original Message-----
> From: Mariappan, MaharajanX [mailto:]
> Sent: Monday, December 03, 2001 11:39 PM
> To: ''
> Subject: [xml-dev] A Doubt on defineing a simpleType in 
> xml-schema file.
> 
> 
> Hi Folks,
> 
> I've a question on defineing a simpleType for an attribute element in
> xml-schema.
> 
> Value of that type may be xsd:boolean or xsd:string or xsd:hexBinary
> 
> How can I define it?
> 
> As per my knowledge we can derive a simpleType from one of 
> the predefined
> types[44].
> 
> <xsd:simpleType name="myType">
> 	<xsd:choice>
> 		<xsd:restriction base="xsd:boolean"></xsd:restriction>
> 		<xsd:restriction base="xsd:string"> <xsd:length 
> value="0"/>
> </xsd:restriction>
> 		<xsd:restriction base="xsd:string"></xsd:restriction>
> 		<xsd:restriction base="xsd:hexBinary"></xsd:restriction>
> 	</xsd:choice>
> </xsd:simpleType>
> 
> I want to define like above......but choice element cann't be within
> simpleType.
> 
> ...........
> <xsd:attribute name="myAttribute" type="myType"/>
> .......
> 
> Is there any way for above problem or I have to define only 
> as "xsd:string"
> which is superset type of remaining?
> 
> TIA,
> Maharajan.
> 
>  
> 
> 
> 
> -----------------------------------------------------------------
> The xml-dev list is sponsored by XML.org <http://www.xml.org>, an
> initiative of OASIS <http://www.oasis-open.org>
> 
> The list archives are at http://lists.xml.org/archives/xml-dev/
> 
> To subscribe or unsubscribe from this list use the subscription
> manager: <http://lists.xml.org/ob/adm.pl>
> 
>
Next in thread → Next in month →