The EBUCore schema ( http://en.wikipedia.org/wiki/Metadata_standards ) has an attribute named "version" defined as
<attribute name="version" default="1.5"> <annotation> <documentation> The version of the schema for eg OAI management.</documentation> </annotation> </attribute>
As you can see, there is no specific type for it, and I wonder what the default type for it is anyType , anySimpleType , string , float , double , ...
The W3C specification ( http://www.w3.org/TR/2001/REC-xmlschema-1-20010502/#section-Built-in-Simple-Type-Definition ) is a bit difficult to overcome:
. A simple definition of the type of ur-type is considered unconditional lexical space and value space, consisting of combining the values of the space of all built-in primitive data types and the set of all lists of all members of the value spaces of all built-in primitive data types.
So, can someone tell me what type to map this attribute ??
source share