[
Lists Home |
Date Index |
Thread Index
]
At 12:20 PM 5/13/2002 -0400, Elliotte Rusty Harold wrote:
>At 6:45 AM -0700 5/13/02, Jonathan Robie wrote:
>>At 02:00 PM 5/12/2002 -0400, Mike Champion wrote:
>>>Nevertheless, if WG's don't define what the minimum interoperability
>>>profile for a spec is, someone else will step in to do it for
>>>them.
>>
>>For XQuery, some people have suggested the following conformance levels:
>>
>>1. Some implementations use only built-in types, and can not import a schema.
>>2. Some implementations may not be able to do static type checking.
>
>What do you mean by "built-in types"?
I mean the built-in types of XML Schema, Part 2:
http://www.w3.org/TR/xmlschema-2/
>What typing information would be used for parsed input documents?
If they use no XML Schema types, you have elements, attributes, text,
comments, PIs, just as in XML 1.0. If type information is provided, it is
used.
Example 1:
<!-- This is a node in an input document - the node contains text -->
<foo>1</foo>
Example 2:
<!-- This is a node in an input document - the node contains an integer-->
<foo xsi:type="integer">1</foo>
Jonathan
|