ISSUE-66

Enumeration based on SimpleType

State:
CLOSED
Product:
Advanced
Raised by:
George Cowe
Opened on:
2006-07-21
Description:
While working on the stringEnumeration pattern recognition xpaths I came up with
this issue which shows an enumeration restriction based on a simpleType which
itself is based on a restricted string

	<xsd:simpleType name="CurrencyCode">
		<xsd:restriction base="ex:TypeCode">
			<xsd:enumeration value="ATS"/>
			<xsd:enumeration value="AUD"/>
			<xsd:enumeration value="GBP"/>
		</xsd:restriction>
	</xsd:simpleType>
	<xsd:simpleType name="TypeCode">
		<xsd:restriction base="xsd:string">
			<xsd:minLength value="1"/>
			<xsd:maxLength value="50"/>
		</xsd:restriction>
	</xsd:simpleType>

is this another basic pattern to be considered?
    
Related emails:
  1. ISSUE-66: Enumeration based on SimpleType (from dean+cgi@w3.org on 2006-07-21)
  2. Agenda: XML Schema Patterns for Databinding Telcon 25 July 2006 (from paul.downey@bt.com on 2006-07-23)
  3. Minutes: XML Schema Patterns for Databinding Telcon 25 July 2006 (from paul.downey@bt.com on 2006-07-25)
  4. Agenda: XML Schema Patterns for Databinding Telcon 8 August 2006 (from paul.downey@bt.com on 2006-08-07)
  5. Agenda: XML Schema Patterns for Databinding Telcon 22 August 2006 (from paul.downey@bt.com on 2006-08-21)
  6. Agenda: XML Schema Patterns for Databinding Telcon 5 September 2006 (from paul.downey@bt.com on 2006-09-03)
  7. Minutes: XML Schema Patterns for Databinding F2F 5th-6th October 2006 (from paul.downey@bt.com on 2006-10-07)

Related notes:

2006-10-05: closed as Advanced