Extensible 3D (X3D) encodings
Part 1: Extensible Markup Language (XML) encoding
Annex B
(informative)
XML schema
B.1 Table of contents and introductionThis annex provides a detailed description of the grammar for each syntactic element in this part of ISO/IEC 19776. Table B.1 lists the topics in this clause:
|
B.1 Table of contents and introduction B.1.1 Table of contents B.1.2 Introduction |
B.2 x3d-3.0.xsd B.3 x3d-3.0-Web3dExtensionsPublic.xsd B.4 x3d-3.0-Web3dExtensionsPrivate.xsd |
An XML schema defines the syntax of an XML tagset using an XML-based grammar as specified in 2.[SCHEMA].
The X3D Schema has sufficient expressive power to:
The X3D DTD does not have sufficient expressive power to selectively validate content according to the defined profiles.
The base X3D schema file is depicted below:
<?xml version="1.0" encoding="UTF-8"?>
<xs:schema elementFormDefault="qualified" attributeFormDefault="unqualified" version="3.0.0" xmlns:xs="http://www.w3.org/2001/XMLSchema">
<!--======================================================================-->
<!-- Public and private schema extension mechanisms -->
<xs:include schemaLocation="x3d-3.0-Web3dExtensionsPublic.xsd"/>
<xs:include schemaLocation="x3d-3.0-Web3dExtensionsPrivate.xsd"/>
<!--======================================================================-->
<xs:annotation>
<xs:appinfo>XML Schema for the Extensible 3D (X3D) Graphics Specification tagset</xs:appinfo>
<xs:documentation><![CDATA[
=============================================================================
X3D Specification Schema: http://www.web3d.org/specifications/x3d-3.0.xsd
Schema extensions: http://www.web3d.org/specifications/x3d-3.0-Web3dExtensionsPublic.xsd
http://www.web3d.org/specifications/x3d-3.0-Web3dExtensionsPrivate.xsd
Web3D extensions update URL: http://www.web3d.org/x3d/content/x3d-3.0-Web3dExtensionsPublic.xsd
Revised: 16 September 2004
Design summary:
- Schemas define XML tagsets in depth using a native-XML format.
- Schemas are an alternative to Document Type Definitions (DTDs).
- This X3D Schema matches the functionality of the X3D DTD and
provides significant further capabilities, including strong type
checking of both node and attribute values.
- An XSLT stylesheet can be applied to this schema to autogenerate
source code for the Scene Authoring Interface (SAI), documentation
of node lists, etc.
Design patterns:
- X3D nodes implement X3D node types and are represented by XML elements.
- X3D non-node fields are represented by XML attributes using field types.
- X3D field types are represented by XML Schema (xsd) simpleTypes.
- XML Schema list types are used to augment XML Schema simple types, to
create arrays of X3D base types (integerList etc).
- X3D node types (X3DGroupingNode etc.) are represented by Schema complexTypes.
- X3D node types match the interface hierarchy, capture strong typing of node,
relationships, and collect common attributes shared by nodes. These
features provide functional consistency between scene graph content and the
Scene Authoring Interface (SAI) application programming interface (API).
- XML Schema xs:group element definitions provide child-node content models,
since complexTypes can't be used as references to unnamed element children.
=============================================================================
]]></xs:documentation>
</xs:annotation>
<!--======================================================================-->
<!--Several pattern possibilities for urls/URNs are conceivable, perhaps a type definition or regex pattern is preferable.-->
<xs:simpleType name="BoundingBoxSize">
<xs:annotation>
<xs:appinfo>X3DBoundedObject indicates that bounding box values can be provided (or computed) for this node and any children. Bounding box values approximate the volume of a containing box in the current coordinate system. Bounding box values can optionally be provided to (or calculated by) 3D browsers. Bounding box values are hints that can improve performance by allowing browsers to inexpensively cull geometry, thus avoiding the computational cost of trying to drawing shapes when they are outside of the current view. BoundingBoxSize dimensions are non-negative values. Default value (-1 -1 -1) indicates that no bounding box size has been computed.</xs:appinfo>
<xs:documentation source="http://www.web3d.org/x3d/specifications/ISO-IEC-19775-FDIS-X3dAbstractSpecification/Part01/components/group.html#Boundingboxes"/>
</xs:annotation>
<xs:restriction base="SFVec3f"/>
</xs:simpleType>
<!--======================================================================-->
<!-- Simple types are used as Field types for X3D attributes. -->
<!-- Special-case range restrictions on regular base types also provided. -->
<xs:simpleType name="SFBool">
<xs:annotation>
<xs:appinfo>
SFBool is a logical type with possible values (true|false) to match the XML boolean type.
Hint: X3D SFBool values are lower case (true|false) in order to maintain
compatibility with other XML documents.</xs:appinfo>
<xs:documentation source="http://www.web3d.org/x3d/specifications/ISO-IEC-19775-FDIS-X3dAbstractSpecification/Part01/fieldsDef.html#SFBool"/>
</xs:annotation>
<xs:restriction base="xs:boolean"/>
</xs:simpleType>
<xs:simpleType name="MFBool">
<xs:annotation>
<xs:appinfo>
MFBool is an array of Boolean values.
Type MFBool was previously undefined in the VRML 97 Specification, but nevertheless needed for event utilities and scripting.
Example use: MFBool is useful for defining a series of behavior states using a BooleanSequencer prototype.</xs:appinfo>
<xs:documentation source="http://www.web3d.org/x3d/specifications/ISO-IEC-19775-FDIS-X3dAbstractSpecification/Part01/fieldsDef.html#SFBool"/>
</xs:annotation>
<xs:list itemType="xs:boolean"/>
</xs:simpleType>
<xs:simpleType name="SFColor">
<xs:annotation>
<xs:appinfo/>
<xs:documentation source="http://www.web3d.org/x3d/specifications/ISO-IEC-19775-FDIS-X3dAbstractSpecification/Part01/fieldsDef.html#SFColor"/>
</xs:annotation>
<xs:restriction base="xs:string">
<xs:whiteSpace value="collapse"/>
<xs:pattern value="((((\.[0-9]+|0(\.[0-9]*)?)((E|e)(\+|\-)?[0-9]+)?)|(1(\.[0]*)?((E|e)\-[0-9]+)?)|([1-9](\.[0-9]*)((E|e)\-[0-9]+))) (((\.[0-9]+|0(\.[0-9]*)?)((E|e)(\+|\-)?[0-9]+)?)|(1(\.[0]*)?((E|e)\-[0-9]+)?)|([1-9](\.[0-9]*)((E|e)\-[0-9]+))) (((\.[0-9]+|0(\.[0-9]*)?)((E|e)(\+|\-)?[0-9]+)?)|(1(\.[0]*)?((E|e)\-[0-9]+)?)|([1-9](\.[0-9]*)((E|e)\-[0-9]+))))?"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="MFColor">
<xs:annotation>
<xs:appinfo>Array values are optionally separated by commas.</xs:appinfo>
<xs:documentation source="http://www.web3d.org/x3d/specifications/ISO-IEC-19775-FDIS-X3dAbstractSpecification/Part01/fieldsDef.html#SFColor"/>
</xs:annotation>
<xs:restriction base="xs:string">
<xs:whiteSpace value="collapse"/>
<xs:pattern value="((((\.[0-9]+|0(\.[0-9]*)?)((E|e)(\+|\-)?[0-9]+)?)|(1(\.[0]*)?((E|e)\-[0-9]+)?)|([1-9](\.[0-9]*)((E|e)\-[0-9]+))) (((\.[0-9]+|0(\.[0-9]*)?)((E|e)(\+|\-)?[0-9]+)?)|(1(\.[0]*)?((E|e)\-[0-9]+)?)|([1-9](\.[0-9]*)((E|e)\-[0-9]+))) (((\.[0-9]+|0(\.[0-9]*)?)((E|e)(\+|\-)?[0-9]+)?)|(1(\.[0]*)?((E|e)\-[0-9]+)?)|([1-9](\.[0-9]*)((E|e)\-[0-9]+)))( )?(,)?( )?)*"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="SFColorRGBA">
<xs:annotation>
<xs:appinfo/>
<xs:documentation source="http://www.web3d.org/x3d/specifications/ISO-IEC-19775-FDIS-X3dAbstractSpecification/Part01/fieldsDef.html#SFColorRGBA"/>
</xs:annotation>
<xs:restriction base="xs:string">
<xs:whiteSpace value="collapse"/>
<xs:pattern value="((((\.[0-9]+|0(\.[0-9]*)?)((E|e)(\+|\-)?[0-9]+)?)|(1(\.[0]*)?((E|e)\-[0-9]+)?)|([1-9](\.[0-9]*)((E|e)\-[0-9]+))) (((\.[0-9]+|0(\.[0-9]*)?)((E|e)(\+|\-)?[0-9]+)?)|(1(\.[0]*)?((E|e)\-[0-9]+)?)|([1-9](\.[0-9]*)((E|e)\-[0-9]+))) (((\.[0-9]+|0(\.[0-9]*)?)((E|e)(\+|\-)?[0-9]+)?)|(1(\.[0]*)?((E|e)\-[0-9]+)?)|([1-9](\.[0-9]*)((E|e)\-[0-9]+))) (((\.[0-9]+|0(\.[0-9]*)?)((E|e)(\+|\-)?[0-9]+)?)|(1(\.[0]*)?((E|e)\-[0-9]+)?)|([1-9](\.[0-9]*)((E|e)\-[0-9]+))))?"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="MFColorRGBA">
<xs:annotation>
<xs:appinfo/>
<xs:documentation source="http://www.web3d.org/x3d/specifications/ISO-IEC-19775-FDIS-X3dAbstractSpecification/Part01/fieldsDef.html#SFColorRGBA"/>
</xs:annotation>
<xs:restriction base="xs:string">
<xs:whiteSpace value="collapse"/>
<xs:pattern value="((((\.[0-9]+|0(\.[0-9]*)?)((E|e)(\+|\-)?[0-9]+)?)|(1(\.[0]*)?((E|e)\-[0-9]+)?)|([1-9](\.[0-9]*)((E|e)\-[0-9]+))) (((\.[0-9]+|0(\.[0-9]*)?)((E|e)(\+|\-)?[0-9]+)?)|(1(\.[0]*)?((E|e)\-[0-9]+)?)|([1-9](\.[0-9]*)((E|e)\-[0-9]+))) (((\.[0-9]+|0(\.[0-9]*)?)((E|e)(\+|\-)?[0-9]+)?)|(1(\.[0]*)?((E|e)\-[0-9]+)?)|([1-9](\.[0-9]*)((E|e)\-[0-9]+))) (((\.[0-9]+|0(\.[0-9]*)?)((E|e)(\+|\-)?[0-9]+)?)|(1(\.[0]*)?((E|e)\-[0-9]+)?)|([1-9](\.[0-9]*)((E|e)\-[0-9]+)))( )?(,)?( )?)*"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="SFDouble">
<xs:annotation>
<xs:appinfo>SFDouble is a double-precision floating-point type. Array values are optionally separated by commas.
See GeoVRML 1.0 Recommended Practice, Section 2.3, Limitations Of Single-Precision for rationale.</xs:appinfo>
<xs:documentation source="http://www.web3d.org/x3d/specifications/ISO-IEC-19775-FDIS-X3dAbstractSpecification/Part01/fieldsDef.html#SFDouble"/>
</xs:annotation>
<xs:restriction base="xs:double"/>
</xs:simpleType>
<xs:simpleType name="MFDouble">
<xs:annotation>
<xs:appinfo>MFDouble is an array of Double values, i.e. a double-precision floating-point array type.
See GeoVRML 1.0 Recommended Practice, Section 2.3, Limitations Of Single-Precision for rationale.
SFDouble/MFDouble are analagous to SFDouble/MFDouble. Array values are optionally separated by commas.</xs:appinfo>
<xs:documentation source="http://www.web3d.org/x3d/specifications/ISO-IEC-19775-FDIS-X3dAbstractSpecification/Part01/fieldsDef.html#SFDouble"/>
</xs:annotation>
<xs:restriction base="xs:string">
<xs:whiteSpace value="collapse"/>
<xs:pattern value="(((\+|\-)?(0|[1-9][0-9]*)?(\.[0-9]*)?((E|e)(\+|\-)?[0-9]+)?)?( )?(,)?( )?)*"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="SFFloat">
<xs:annotation>
<xs:appinfo>SFFloat is a single-precision floating-point type.</xs:appinfo>
<xs:documentation source="http://www.web3d.org/x3d/specifications/ISO-IEC-19775-FDIS-X3dAbstractSpecification/Part01/fieldsDef.html#SFFloat"/>
</xs:annotation>
<xs:restriction base="xs:float"/>
</xs:simpleType>
<!-- SFFloatNonNegative and SFFloatPositive no longer needed
<xs:simpleType name="SFFloatNonNegative">
<xs:annotation>
<xs:appinfo>SFFloat is a single-precision floating-point type.</xs:appinfo>
<xs:documentation source="http://www.web3d.org/x3d/specifications/ISO-IEC-19775-FDIS-X3dAbstractSpecification/Part01/fieldsDef.html#SFFloat"/>
</xs:annotation>
<xs:restriction base="xs:string">
<xs:whiteSpace value="collapse"/>
<xs:pattern value="((\+)?(0|[1-9][0-9]*)?(\.[0-9]*)?((E|e)(\+|\-)?[0-9]+)?)?"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="SFFloatPositive">
<xs:annotation>
<xs:appinfo>SFFloat is a single-precision floating-point type.</xs:appinfo>
<xs:documentation source="http://www.web3d.org/x3d/specifications/ISO-IEC-19775-FDIS-X3dAbstractSpecification/Part01/fieldsDef.html#SFFloat"/>
</xs:annotation>
<xs:restriction base="xs:string">
<xs:whiteSpace value="collapse"/>
<xs:pattern value="((\+)?(0\.(0)*[1-9][0-9]*|([1-9]([0-9]*)?)?(\.[0-9]*)?((E|e)(\+|\-)?[0-9]+)?))?"/>
</xs:restriction>
</xs:simpleType> -->
<xs:simpleType name="MFFloat">
<xs:annotation>
<xs:appinfo>MFFloat is an array of SFFloat values, i.e. a single-precision floating-point array type. Array values are optionally separated by commas.</xs:appinfo>
<xs:documentation source="http://www.web3d.org/x3d/specifications/ISO-IEC-19775-FDIS-X3dAbstractSpecification/Part01/fieldsDef.html#SFFloat"/>
</xs:annotation>
<xs:restriction base="xs:string">
<xs:whiteSpace value="collapse"/>
<xs:pattern value="(((\+|\-)?(0|[1-9][0-9]*)?(\.[0-9]*)?((E|e)(\+|\-)?[0-9]+)?)?( )?(,)?( )?)*"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="SFImage">
<xs:annotation>
<xs:appinfo>The SFImage field specifies a single uncompressed 2-dimensional pixel image. SFImage fields contain three integers representing the width, height and number of components in the image, followed by width×height hexadecimal or integer values representing the pixels in the image.</xs:appinfo>
<xs:documentation source="http://www.web3d.org/x3d/specifications/ISO-IEC-19775-FDIS-X3dAbstractSpecification/Part01/fieldsDef.html#SFImage"/>
</xs:annotation>
<xs:restriction base="xs:string">
<xs:minLength value="4"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="MFImage">
<xs:annotation>
<xs:appinfo>MFImage is an array of SFImage values.</xs:appinfo>
<xs:documentation source="http://www.web3d.org/x3d/specifications/ISO-IEC-19775-FDIS-X3dAbstractSpecification/Part01/fieldsDef.html#SFImage"/>
</xs:annotation>
<xs:restriction base="xs:string">
<xs:minLength value="4"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="SFInt32">
<xs:annotation>
<xs:appinfo>An SFInt32 field specifies one 32-bit signed integer.</xs:appinfo>
<xs:documentation source="http://www.web3d.org/x3d/specifications/ISO-IEC-19775-FDIS-X3dAbstractSpecification/Part01/fieldsDef.html#SFInt32"/>
</xs:annotation>
<xs:restriction base="xs:integer"/>
</xs:simpleType>
<xs:simpleType name="MFInt32">
<xs:annotation>
<xs:appinfo>An MFInt32 field defines an array of 32-bit signed integers. Array values are optionally separated by commas.</xs:appinfo>
<xs:documentation source="http://www.web3d.org/technicalinfo/specifications/vrml97/part1/fieldsRef.html#SFInt32"/>
</xs:annotation>
<xs:restriction base="xs:string">
<xs:whiteSpace value="collapse"/>
<xs:pattern value="((\+|\-)?(0|[1-9][0-9]*)?( )?(,)?( )?)*"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="SFRotation">
<xs:annotation>
<xs:appinfo>SFRotation is an axis-angle 4-tuple, indicating X-Y-Z direction plus angle orientation about that axis. The first three values specify a normalized rotation axis vector about which the rotation takes place. (Thus the first three values must be within the range [-1..+1] in order to represent a normalized unit vector. Problem: scientific notation allows leading digit.) The fourth value specifies the amount of right-handed rotation about that axis in radians.</xs:appinfo>
<xs:documentation source="http://www.web3d.org/x3d/specifications/ISO-IEC-19775-FDIS-X3dAbstractSpecification/Part01/fieldsDef.html#SFRotation"/>
</xs:annotation>
<xs:restriction base="xs:string">
<xs:whiteSpace value="collapse"/>
<xs:pattern value="((\+|\-)?(((\.[0-9]+|0(\.[0-9]*)?)((E|e)(\+|\-)?[0-9]+)?)|(1(\.[0]*)?((E|e)\-[0-9]+)?)|([1-9](\.[0-9]*)((E|e)\-[0-9]+))) (\+|\-)?(((\.[0-9]+|0(\.[0-9]*)?)((E|e)(\+|\-)?[0-9]+)?)|(1(\.[0]*)?((E|e)\-[0-9]+)?)|([1-9](\.[0-9]*)((E|e)\-[0-9]+))) (\+|\-)?(((\.[0-9]+|0(\.[0-9]*)?)((E|e)(\+|\-)?[0-9]+)?)|(1(\.[0]*)?((E|e)\-[0-9]+)?)|([1-9](\.[0-9]*)((E|e)\-[0-9]+))) (\+|\-)?(0|[1-9][0-9]*)?(\.[0-9]*)?((E|e)(\+|\-)?[0-9]+)?)?"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="MFRotation">
<xs:annotation>
<xs:appinfo>MFRotation is an array of SFRotation values. Array values are optionally separated by commas.</xs:appinfo>
<xs:documentation source="http://www.web3d.org/x3d/specifications/ISO-IEC-19775-FDIS-X3dAbstractSpecification/Part01/fieldsDef.html#SFRotation"/>
</xs:annotation>
<xs:restriction base="xs:string">
<xs:whiteSpace value="collapse"/>
<xs:pattern value="((\+|\-)?(((\.[0-9]+|0(\.[0-9]*)?)((E|e)(\+|\-)?[0-9]+)?)|(1(\.[0]*)?((E|e)\-[0-9]+)?)|([1-9](\.[0-9]*)((E|e)\-[0-9]+))) (\+|\-)?(((\.[0-9]+|0(\.[0-9]*)?)((E|e)(\+|\-)?[0-9]+)?)|(1(\.[0]*)?((E|e)\-[0-9]+)?)|([1-9](\.[0-9]*)((E|e)\-[0-9]+))) (\+|\-)?(((\.[0-9]+|0(\.[0-9]*)?)((E|e)(\+|\-)?[0-9]+)?)|(1(\.[0]*)?((E|e)\-[0-9]+)?)|([1-9](\.[0-9]*)((E|e)\-[0-9]+))) (\+|\-)?(0|[1-9][0-9]*)?(\.[0-9]*)?((E|e)(\+|\-)?[0-9]+)?( )?(,)?( )?)*"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="SFString">
<xs:annotation>
<xs:appinfo>SFString defines a single string encoded with the UTF-8 universal character set.</xs:appinfo>
<xs:documentation source="http://www.web3d.org/x3d/specifications/ISO-IEC-19775-FDIS-X3dAbstractSpecification/Part01/fieldsDef.html#SFString"/>
</xs:annotation>
<xs:restriction base="xs:string"/>
</xs:simpleType>
<xs:simpleType name="MFString">
<xs:annotation>
<xs:appinfo>MFString is an array of SFString values, each "quoted" and separated by whitespace. Array values are optionally separated by commas.</xs:appinfo>
<xs:documentation source="http://www.web3d.org/x3d/specifications/ISO-IEC-19775-FDIS-X3dAbstractSpecification/Part01/fieldsDef.html#SFString"/>
</xs:annotation>
<xs:list itemType="xs:string"/>
</xs:simpleType>
<xs:simpleType name="SFTime">
<xs:annotation>
<xs:appinfo>The SFTime field specifies a single time value. Time values are specified as a double-precision floating point number. Typically, SFTime fields represent the number of seconds since Jan 1, 1970, 00:00:00 GMT.</xs:appinfo>
<xs:documentation source="http://www.web3d.org/x3d/specifications/ISO-IEC-19775-FDIS-X3dAbstractSpecification/Part01/fieldsDef.html#SFTime"/>
</xs:annotation>
<xs:restriction base="xs:string">
<xs:whiteSpace value="collapse"/>
<xs:pattern value="((-1(.(0)*)?)|((\+)?(0|[1-9][0-9]*)?(\.[0-9]*)?((E|e)(\+|\-)?[0-9]+)?))?"/>
</xs:restriction>
<!-- base type xs:time not usable due to different nomenclatures for time values. -->
</xs:simpleType>
<xs:simpleType name="MFTime">
<xs:annotation>
<xs:appinfo>MFTime is an array of SFTime values. Array values are optionally separated by commas.</xs:appinfo>
<xs:documentation source="http://www.web3d.org/x3d/specifications/ISO-IEC-19775-FDIS-X3dAbstractSpecification/Part01/fieldsDef.html#SFTime"/>
</xs:annotation>
<xs:restriction base="xs:string">
<xs:whiteSpace value="collapse"/>
<xs:pattern value="((-1(.(0)*)?|(0|[1-9][0-9]*)?(\.[0-9]*)?((E|e)(\+|\-)?[0-9]+)?( )?(,)?( )?)*)?"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="SFVec2d">
<xs:annotation>
<xs:appinfo>SFVec2d is a 2-tuple pair of SFDouble values. Array values are optionally separated by commas.
Hint: SFVec2d can be used to specify a 2D double-precision coordinate.</xs:appinfo>
<xs:documentation source="http://www.web3d.org/x3d/specifications/ISO-IEC-19775-FDIS-X3dAbstractSpecification/Part01/fieldsDef.html#SFVec2d"/>
</xs:annotation>
<xs:restriction base="xs:string">
<xs:whiteSpace value="collapse"/>
<xs:pattern value="((\+|\-)?([0-9]+(\.[0-9]*)?|\.[0-9]+)((E|e)(\+|\-)?[0-9]+)? (\+|\-)?([0-9]+(\.[0-9]*)?|\.[0-9]+)((E|e)(\+|\-)?[0-9]+)?)?"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="MFVec2d">
<xs:annotation>
<xs:appinfo>MFVec2d is an array of SFVec2d values. Array values are optionally separated by commas.</xs:appinfo>
<xs:documentation source="http://www.web3d.org/x3d/specifications/ISO-IEC-19775-FDIS-X3dAbstractSpecification/Part01/fieldsDef.html#SFVec2d"/>
</xs:annotation>
<xs:restriction base="xs:string">
<xs:whiteSpace value="collapse"/>
<xs:pattern value="((\+|\-)?(0|[1-9][0-9]*)?(\.[0-9]*)?((E|e)(\+|\-)?[0-9]+)? (\+|\-)?(0|[1-9][0-9]*)?(\.[0-9]*)?((E|e)(\+|\-)?[0-9]+)?( )?(,)?( )?)*"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="SFVec2f">
<xs:annotation>
<xs:appinfo>SFVec2f is a 2-tuple pair of SFFloat values.
Hint: SFVec2f can be used to specify a 2D single-precision coordinate.</xs:appinfo>
<xs:documentation source="http://www.web3d.org/x3d/specifications/ISO-IEC-19775-FDIS-X3dAbstractSpecification/Part01/fieldsDef.html#SFVec2f"/>
</xs:annotation>
<xs:restriction base="xs:string">
<xs:whiteSpace value="collapse"/>
<xs:pattern value="((\+|\-)?(0|[1-9][0-9]*)?(\.[0-9]*)?((E|e)(\+|\-)?[0-9]+)? (\+|\-)?(0|[1-9][0-9]*)?(\.[0-9]*)?((E|e)(\+|\-)?[0-9]+)?)?"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="MFVec2f">
<xs:annotation>
<xs:appinfo>MFVec2f is an array of SFVec2f values. Array values are optionally separated by commas.</xs:appinfo>
<xs:documentation source="http://www.web3d.org/x3d/specifications/ISO-IEC-19775-FDIS-X3dAbstractSpecification/Part01/fieldsDef.html#SFVec2f"/>
</xs:annotation>
<xs:restriction base="xs:string">
<xs:whiteSpace value="collapse"/>
<xs:pattern value="((\+|\-)?(0|[1-9][0-9]*)?(\.[0-9]*)?((E|e)(\+|\-)?[0-9]+)? (\+|\-)?(0|[1-9][0-9]*)?(\.[0-9]*)?((E|e)(\+|\-)?[0-9]+)?( )?(,)?( )?)*"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="SFVec3d">
<xs:annotation>
<xs:appinfo>SFVec3d is a 3-tuple triplet of SFDouble values.
See GeoVRML 1.0 Recommended Practice, Section 2.3, Limitations Of Single-Precision.
Hint: SFVec3d can be used to specify a georeferenced 3D coordinate.</xs:appinfo>
<xs:documentation source="http://www.web3d.org/x3d/specifications/ISO-IEC-19775-FDIS-X3dAbstractSpecification/Part01/fieldsDef.html#SFVec3d"/>
</xs:annotation>
<xs:restriction base="xs:string">
<xs:whiteSpace value="collapse"/>
<xs:pattern value="((\+|\-)?(0|[1-9][0-9]*)?(\.[0-9]*)?((E|e)(\+|\-)?[0-9]+)? (\+|\-)?(0|[1-9][0-9]*)?(\.[0-9]*)?((E|e)(\+|\-)?[0-9]+)? (\+|\-)?(0|[1-9][0-9]*)?(\.[0-9]*)?((E|e)(\+|\-)?[0-9]+)?)?"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="MFVec3d">
<xs:annotation>
<xs:appinfo>MFVec3d is an array of SFVec3d values. Array values are optionally separated by commas.
See GeoVRML 1.0 Recommended Practice, Section 2.3, Limitations Of Single-Precision.
Hint: MFVec3d can be used to specify a list of georeferenced 3D coordinates.</xs:appinfo>
<xs:documentation source="http://www.web3d.org/x3d/specifications/ISO-IEC-19775-FDIS-X3dAbstractSpecification/Part01/fieldsDef.html#SFVec3d"/>
</xs:annotation>
<xs:restriction base="xs:string">
<xs:whiteSpace value="collapse"/>
<xs:pattern value="((\+|\-)?(0|[1-9][0-9]*)?(\.[0-9]*)?((E|e)(\+|\-)?[0-9]+)? (\+|\-)?(0|[1-9][0-9]*)?(\.[0-9]*)?((E|e)(\+|\-)?[0-9]+)? (\+|\-)?(0|[1-9][0-9]*)?(\.[0-9]*)?((E|e)(\+|\-)?[0-9]+)?( )?(,)?( )?)*"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="SFVec3f">
<xs:annotation>
<xs:appinfo>SFVec3f is a 3-tuple triplet of SFFloat values.
Hint: SFVec3f can be used to specify a 3D coordinate or a 3D scale value.</xs:appinfo>
<xs:documentation source="http://www.web3d.org/x3d/specifications/ISO-IEC-19775-FDIS-X3dAbstractSpecification/Part01/fieldsDef.html#SFVec3f"/>
</xs:annotation>
<xs:restriction base="xs:string">
<xs:whiteSpace value="collapse"/>
<xs:pattern value="((\+|\-)?(0|[1-9][0-9]*)?(\.[0-9]*)?((E|e)(\+|\-)?[0-9]+)? (\+|\-)?(0|[1-9][0-9]*)?(\.[0-9]*)?((E|e)(\+|\-)?[0-9]+)? (\+|\-)?(0|[1-9][0-9]*)?(\.[0-9]*)?((E|e)(\+|\-)?[0-9]+)?)?"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="MFVec3f">
<xs:annotation>
<xs:appinfo>MFVec3f is an array of SFVec3f values. Array values are optionally separated by commas.</xs:appinfo>
<xs:documentation source="http://www.web3d.org/x3d/specifications/ISO-IEC-19775-FDIS-X3dAbstractSpecification/Part01/fieldsDef.html#SFVec3f"/>
</xs:annotation>
<xs:restriction base="xs:string">
<xs:whiteSpace value="collapse"/>
<xs:pattern value="((\+|\-)?(0|[1-9][0-9]*)?(\.[0-9]*)?((E|e)(\+|\-)?[0-9]+)? (\+|\-)?(0|[1-9][0-9]*)?(\.[0-9]*)?((E|e)(\+|\-)?[0-9]+)? (\+|\-)?(0|[1-9][0-9]*)?(\.[0-9]*)?((E|e)(\+|\-)?[0-9]+)?( )?(,)?( )?)*"/>
</xs:restriction>
</xs:simpleType>
<!--======================================================================-->
<!--Enumerations-->
<!--Profiles correspond primarily to subsets of nodes. Some nodes in Interchange profile include fields that are ignored unless Immersive or Full profile is active.-->
<xs:simpleType name="accessTypeNames">
<xs:annotation>
<xs:appinfo> accessTypeNames are allowed enumeration values for accessType. Prior names in VRML 97 were eventIn, eventOut, field, exposedField respectively.</xs:appinfo>
<xs:documentation source="http://www.web3d.org/x3d/specifications/ISO-IEC-19775-FDIS-X3dAbstractSpecification/Part01/concepts.html#FieldSemantics"/>
</xs:annotation>
<xs:restriction base="xs:string">
<xs:enumeration value="initializeOnly"/>
<xs:enumeration value="inputOnly"/>
<xs:enumeration value="outputOnly"/>
<xs:enumeration value="inputOutput"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="ArcClose2dTypeValues">
<xs:annotation>
<xs:appinfo> ArcClose2dTypeValues are allowed enumeration values for ArcClose2D closureType.</xs:appinfo>
<xs:documentation source="http://www.web3d.org/x3d/specifications/ISO-IEC-19775-FDIS-X3dAbstractSpecification/Part01/components/geometry2D.html#ArcClose2D"/>
</xs:annotation>
<xs:restriction base="xs:token">
<xs:enumeration value="PIE"/>
<xs:enumeration value="CHORD"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="componentNames">
<xs:annotation>
<xs:appinfo> profileName enumeration constants are used to identify the profile for each scene-graph node, and also used by X3D tag to identify the profile of a contained Scene.</xs:appinfo>
<xs:documentation source="http://www.web3d.org/x3d/specifications/ISO-IEC-19775-FDIS-X3dAbstractSpecification/Part01/concepts.html#Profiles"/>
</xs:annotation>
<xs:restriction base="xs:string">
<xs:enumeration value="Core">
<xs:annotation>
<xs:appinfo>Core component is provided as the basis for custom componentization.</xs:appinfo>
<xs:documentation source="http://www.web3d.org/x3d/specifications/ISO-IEC-19775-FDIS-X3dAbstractSpecification/Part01/components/core.html"/>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="DIS">
<xs:annotation>
<xs:appinfo/>
<xs:documentation source="http://www.web3d.org/x3d/specifications/ISO-IEC-19775-FDIS-X3dAbstractSpecification/Part01/components/dis.html"/>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="EnvironmentalEffects">
<xs:annotation>
<xs:appinfo/>
<xs:documentation source="http://www.web3d.org/x3d/specifications/ISO-IEC-19775-FDIS-X3dAbstractSpecification/Part01/components/enveffects.html"/>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="EnvironmentalSensor">
<xs:annotation>
<xs:appinfo/>
<xs:documentation source="http://www.web3d.org/x3d/specifications/ISO-IEC-19775-FDIS-X3dAbstractSpecification/Part01/components/envsensor.html"/>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="EventUtilities">
<xs:annotation>
<xs:appinfo/>
<xs:documentation source="http://www.web3d.org/x3d/specifications/ISO-IEC-19775-FDIS-X3dAbstractSpecification/Part01/components/utils.html"/>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Geometry2D">
<xs:annotation>
<xs:appinfo/>
<xs:documentation source="http://www.web3d.org/x3d/specifications/ISO-IEC-19775-FDIS-X3dAbstractSpecification/Part01/components/geometry2D.html"/>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Geometry3D">
<xs:annotation>
<xs:appinfo/>
<xs:documentation source="http://www.web3d.org/x3d/specifications/ISO-IEC-19775-FDIS-X3dAbstractSpecification/Part01/components/geometry3D.html"/>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Geospatial">
<xs:annotation>
<xs:appinfo/>
<xs:documentation source="http://www.web3d.org/x3d/specifications/ISO-IEC-19775-FDIS-X3dAbstractSpecification/Part01/components/geodata.html"/>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Grouping">
<xs:annotation>
<xs:appinfo/>
<xs:documentation source="http://www.web3d.org/x3d/specifications/ISO-IEC-19775-FDIS-X3dAbstractSpecification/Part01/components/group.html"/>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="H-Anim">
<xs:annotation>
<xs:appinfo/>
<xs:documentation source="http://www.web3d.org/x3d/specifications/ISO-IEC-19775-FDIS-X3dAbstractSpecification/Part01/components/hanim.html"/>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Interpolation">
<xs:annotation>
<xs:appinfo/>
<xs:documentation source="http://www.web3d.org/x3d/specifications/ISO-IEC-19775-FDIS-X3dAbstractSpecification/Part01/components/interp.html"/>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="KeyDeviceSensor">
<xs:annotation>
<xs:appinfo/>
<xs:documentation source="http://www.web3d.org/x3d/specifications/ISO-IEC-19775-FDIS-X3dAbstractSpecification/Part01/components/keyboard.html"/>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Lighting">
<xs:annotation>
<xs:appinfo/>
<xs:documentation source="http://www.web3d.org/x3d/specifications/ISO-IEC-19775-FDIS-X3dAbstractSpecification/Part01/components/lighting.html"/>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Navigation">
<xs:annotation>
<xs:appinfo/>
<xs:documentation source="http://www.web3d.org/x3d/specifications/ISO-IEC-19775-FDIS-X3dAbstractSpecification/Part01/components/navigation.html"/>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Networking">
<xs:annotation>
<xs:appinfo/>
<xs:documentation source="http://www.web3d.org/x3d/specifications/ISO-IEC-19775-FDIS-X3dAbstractSpecification/Part01/components/networking.html"/>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="NURBS">
<xs:annotation>
<xs:appinfo/>
<xs:documentation source="http://www.web3d.org/x3d/specifications/ISO-IEC-19775-FDIS-X3dAbstractSpecification/Part01/components/nurbs.html"/>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="PointingDeviceSensor">
<xs:annotation>
<xs:appinfo/>
<xs:documentation source="http://www.web3d.org/x3d/specifications/ISO-IEC-19775-FDIS-X3dAbstractSpecification/Part01/components/pointingsensor.html"/>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Rendering">
<xs:annotation>
<xs:appinfo/>
<xs:documentation source="http://www.web3d.org/x3d/specifications/ISO-IEC-19775-FDIS-X3dAbstractSpecification/Part01/components/rendering.html"/>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Scripting">
<xs:annotation>
<xs:appinfo/>
<xs:documentation source="http://www.web3d.org/x3d/specifications/ISO-IEC-19775-FDIS-X3dAbstractSpecification/Part01/components/scripting.html"/>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Shape">
<xs:annotation>
<xs:appinfo/>
<xs:documentation source="http://www.web3d.org/x3d/specifications/ISO-IEC-19775-FDIS-X3dAbstractSpecification/Part01/components/shape.html"/>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Sound">
<xs:annotation>
<xs:appinfo/>
<xs:documentation source="http://www.web3d.org/x3d/specifications/ISO-IEC-19775-FDIS-X3dAbstractSpecification/Part01/components/sound.html"/>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Text">
<xs:annotation>
<xs:appinfo/>
<xs:documentation source="http://www.web3d.org/x3d/specifications/ISO-IEC-19775-FDIS-X3dAbstractSpecification/Part01/components/text.html"/>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Texturing">
<xs:annotation>
<xs:appinfo/>
<xs:documentation source="http://www.web3d.org/x3d/specifications/ISO-IEC-19775-FDIS-X3dAbstractSpecification/Part01/components/texturing.html"/>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Time">
<xs:annotation>
<xs:appinfo/>
<xs:documentation source="http://www.web3d.org/x3d/specifications/ISO-IEC-19775-FDIS-X3dAbstractSpecification/Part01/components/time.html"/>
</xs:annotation>
</xs:enumeration>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="fieldTypeName">
<xs:annotation>
<xs:appinfo> fieldTypeName contains the names of all X3DField types.</xs:appinfo>
<xs:documentation source="http://www.web3d.org/x3d/specifications/ISO-IEC-19775-FDIS-X3dAbstractSpecification/Part01/fieldsDef.html"/>
</xs:annotation>
<xs:restriction base="xs:string">
<xs:enumeration value="SFBool"/>
<xs:enumeration value="MFBool"/>
<xs:enumeration value="SFColor"/>
<xs:enumeration value="MFColor"/>
<xs:enumeration value="SFColorRGBA"/>
<xs:enumeration value="MFColorRGBA"/>
<xs:enumeration value="SFDouble"/>
<xs:enumeration value="MFDouble"/>
<xs:enumeration value="SFFloat"/>
<xs:enumeration value="MFFloat"/>
<xs:enumeration value="SFImage"/>
<xs:enumeration value="MFImage"/>
<xs:enumeration value="SFInt32"/>
<xs:enumeration value="SFNode"/>
<xs:enumeration value="MFNode"/>
<xs:enumeration value="MFInt32"/>
<xs:enumeration value="SFRotation"/>
<xs:enumeration value="MFRotation"/>
<xs:enumeration value="SFString"/>
<xs:enumeration value="MFString"/>
<xs:enumeration value="SFTime"/>
<xs:enumeration value="MFTime"/>
<xs:enumeration value="SFVec2d"/>
<xs:enumeration value="MFVec2d"/>
<xs:enumeration value="SFVec2f"/>
<xs:enumeration value="MFVec2f"/>
<xs:enumeration value="SFVec3d"/>
<xs:enumeration value="MFVec3d"/>
<xs:enumeration value="SFVec3f"/>
<xs:enumeration value="MFVec3f"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="fontStyleValues">
<xs:annotation>
<xs:appinfo>fogTypeValues are allowed enumeration values for Fog node fogType attribute.</xs:appinfo>
<xs:documentation source="http://www.web3d.org/x3d/specifications/ISO-IEC-19775-FDIS-X3dAbstractSpecification/Part01/components/text.html#Fontfamilyandstyle"/>
</xs:annotation>
<xs:restriction base="xs:token">
<xs:enumeration value="PLAIN"/>
<xs:enumeration value="BOLD"/>
<xs:enumeration value="ITALIC"/>
<xs:enumeration value="BOLDITALIC"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="fogTypeValues">
<xs:annotation>
<xs:appinfo>fogTypeValues are allowed enumeration values for Fog node fogType attribute.</xs:appinfo>
<xs:documentation source="http://www.web3d.org/x3d/specifications/ISO-IEC-19775-FDIS-X3dAbstractSpecification/Part01/components/enveffects.html#Fog"/>
</xs:annotation>
<xs:restriction base="xs:token">
<xs:enumeration value="LINEAR"/>
<xs:enumeration value="EXPONENTIAL"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="metaDirectionValues">
<xs:annotation>
<xs:appinfo> metaDirectionValues are allowed enumeration values for meta tag direction attribute.</xs:appinfo>
<xs:documentation/>
</xs:annotation>
<xs:restriction base="xs:string">
<xs:enumeration value="rtl">
<xs:annotation>
<xs:appinfo>right-to-left</xs:appinfo>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="ltr">
<xs:annotation>
<xs:appinfo>left-to-right</xs:appinfo>
</xs:annotation>
</xs:enumeration>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="networkModeValues">
<xs:annotation>
<xs:appinfo> networkModeValues are allowed enumeration values for DIS field networkMode.</xs:appinfo>
<xs:documentation source="http://www.web3d.org/x3d/specifications/ISO-IEC-19775-FDIS-X3dAbstractSpecification/Part01/components/dis.html#CommonDISfields"/>
</xs:annotation>
<xs:restriction base="xs:token">
<xs:enumeration value="standAlone"/>
<xs:enumeration value="networkReader"/>
<xs:enumeration value="networkWriter"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="profileNames">
<xs:annotation>
<xs:appinfo> profileName enumeration constants are used to identify the profile for each scene-graph node, and also used by X3D tag to identify the profile of a contained Scene.</xs:appinfo>
<xs:documentation source="http://www.web3d.org/x3d/specifications/ISO-IEC-19775-FDIS-X3dAbstractSpecification/Part01/concepts.html#Profiles"/>
</xs:annotation>
<xs:restriction base="xs:string">
<xs:enumeration value="Core">
<xs:annotation>
<xs:appinfo>Core Profile includes no nodes and is provided as the basis for custom componentization.</xs:appinfo>
<xs:documentation source="http://www.web3d.org/x3d/specifications/ISO-IEC-19775-FDIS-X3dAbstractSpecification/Part01/coreprofile.html"/>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Interchange">
<xs:annotation>
<xs:appinfo> Interchange Profile equals the minimum subset of nodes needed to author lightweight compelling content.</xs:appinfo>
<xs:documentation source="http://www.web3d.org/x3d/specifications/ISO-IEC-19775-FDIS-X3dAbstractSpecification/Part01/interchange.html"/>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Interactive">
<xs:annotation>
<xs:appinfo> Interactive Profile adds interaction nodes (Anchor, KeySensor) to the minimum subset of nodes needed to author lightweight compelling content.</xs:appinfo>
<xs:documentation source="http://www.web3d.org/x3d/specifications/ISO-IEC-19775-FDIS-X3dAbstractSpecification/Part01/interactive.html"/>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Immersive">
<xs:annotation>
<xs:appinfo> Immersive Profile equals all of the nodes in the VRML 97 Specification, plus various X3D node additions including KeySensor, StringSensor and Scene.</xs:appinfo>
<xs:documentation source="http://www.web3d.org/x3d/specifications/ISO-IEC-19775-FDIS-X3dAbstractSpecification/Part01/immersive.html"/>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="MPEG4Interactive"/>
<xs:enumeration value="Full">
<xs:annotation>
<xs:appinfo> The Full Profile corresponds to all Immersive X3D nodes plus all approved/implemented extensions. Full may get renamed Integrated.</xs:appinfo>
<xs:documentation source="http://www.web3d.org/x3d/specifications/ISO-IEC-19775-FDIS-X3dAbstractSpecification/Part01/fullProfile.html"/>
</xs:annotation>
</xs:enumeration>
</xs:restriction>
</xs:simpleType>
<!--table of field names with corresponding accessType constraints-->
<xs:simpleType name="initializeOnlyAccessTypes">
<xs:annotation>
<xs:appinfo> Table of fields having accessType initializeOnly.</xs:appinfo>
<xs:documentation source="http://www.web3d.org/x3d/specifications/ISO-IEC-19775-FDIS-X3dAbstractSpecification/Part01/concepts.html#FieldSemantics"/>
</xs:annotation>
<xs:restriction base="xs:string">
<xs:enumeration value="bboxCenter"/>
<xs:enumeration value="bboxSize"/>
<xs:enumeration value="beginCap"/>
<xs:enumeration value="bottom"/>
<xs:enumeration value="bottomRadius"/>
<xs:enumeration value="ccw"/>
<xs:enumeration value="child1Url"/>
<xs:enumeration value="child2Url"/>
<xs:enumeration value="child3Url"/>
<xs:enumeration value="child4Url"/>
<xs:enumeration value="closureType"/>
<xs:enumeration value="colorIndex"/>
<xs:enumeration value="colorPerVertex"/>
<xs:enumeration value="convex"/>
<xs:enumeration value="coordIndex"/>
<xs:enumeration value="creaseAngle"/>
<xs:enumeration value="crossSection"/>
<xs:enumeration value="directOutput"/>
<xs:enumeration value="endCap"/>
<xs:enumeration value="endAngle"/>
<xs:enumeration value="geoGridOrigin"/>
<xs:enumeration value="geoSystem"/>
<xs:enumeration value="height"/>
<xs:enumeration value="horizontal"/>
<xs:enumeration value="info"/>
<xs:enumeration value="innerRadius"/>
<xs:enumeration value="justify"/>
<xs:enumeration value="knot"/>
<xs:enumeration value="language"/>
<xs:enumeration value="leftToRight"/>
<xs:enumeration value="lineSegments"/>
<xs:enumeration value="mustEvaluate"/>
<xs:enumeration value="normalIndex"/>
<xs:enumeration value="normalPerVertex"/>
<xs:enumeration value="order"/>
<xs:enumeration value="outerRadius"/>
<xs:enumeration value="orientation"/>
<xs:enumeration value="points"/>
<xs:enumeration value="radius"/>
<xs:enumeration value="range"/>
<xs:enumeration value="repeatS"/>
<xs:enumeration value="repeatT"/>
<xs:enumeration value="rootUrl"/>
<xs:enumeration value="rotateYUp"/>
<xs:enumeration value="rtpHeaderExpected"/>
<xs:enumeration value="side"/>
<xs:enumeration value="size"/>
<xs:enumeration value="solid"/>
<xs:enumeration value="spacing"/>
<xs:enumeration value="spatialize"/>
<xs:enumeration value="spine"/>
<xs:enumeration value="startAngle"/>
<xs:enumeration value="style"/>
<xs:enumeration value="title"/>
<xs:enumeration value="top"/>
<xs:enumeration value="topToBottom"/>
<xs:enumeration value="xDimension"/>
<xs:enumeration value="xSpacing"/>
<xs:enumeration value="zDimension"/>
<xs:enumeration value="zSpacing"/>
<xs:enumeration value="uDimension"/>
<xs:enumeration value="vDimension"/>
<xs:enumeration value="wDimension"/>
<xs:enumeration value="uKnot"/>
<xs:enumeration value="vKnot"/>
<xs:enumeration value="wKnot"/>
<xs:enumeration value="uOrder"/>
<xs:enumeration value="vOrder"/>
<xs:enumeration value="wOrder"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="inputOnlyAccessTypes">
<xs:annotation>
<xs:appinfo> Table of fields having accessType inputOnly.</xs:appinfo>
<xs:documentation source="http://www.web3d.org/x3d/specifications/ISO-IEC-19775-FDIS-X3dAbstractSpecification/Part01/concepts.html#FieldSemantics"/>
</xs:annotation>
<xs:restriction base="xs:string">
<xs:enumeration value="set_articulationParameterValue0"/>
<xs:enumeration value="set_articulationParameterValue1"/>
<xs:enumeration value="set_articulationParameterValue2"/>
<xs:enumeration value="set_articulationParameterValue3"/>
<xs:enumeration value="set_articulationParameterValue4"/>
<xs:enumeration value="set_articulationParameterValue5"/>
<xs:enumeration value="set_articulationParameterValue6"/>
<xs:enumeration value="set_articulationParameterValue7"/>
<xs:enumeration value="set_boolean"/>
<xs:enumeration value="set_bind"/>
<xs:enumeration value="set_colorIndex"/>
<xs:enumeration value="set_coordIndex"/>
<xs:enumeration value="set_crossSection"/>
<xs:enumeration value="set_fraction"/>
<xs:enumeration value="set_height"/>
<xs:enumeration value="set_normalIndex"/>
<xs:enumeration value="set_orientation"/>
<xs:enumeration value="set_position"/>
<xs:enumeration value="set_scale"/>
<xs:enumeration value="set_spine"/>
<xs:enumeration value="set_texCoordIndex"/>
<xs:enumeration value="set_triggerTime"/>
<xs:enumeration value="set_yScale"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="outputOnlyAccessTypes">
<xs:annotation>
<xs:appinfo> Table of fields having accessType outputOnly.</xs:appinfo>
<xs:documentation source="http://www.web3d.org/x3d/specifications/ISO-IEC-19775-FDIS-X3dAbstractSpecification/Part01/concepts.html#FieldSemantics"/>
</xs:annotation>
<xs:restriction base="xs:string">
<xs:enumeration value="actionKeyPress"/>
<xs:enumeration value="actionKeyRelease"/>
<xs:enumeration value="altKey"/>
<xs:enumeration value="articulationParameterValue0_changed"/>
<xs:enumeration value="articulationParameterValue1_changed"/>
<xs:enumeration value="articulationParameterValue2_changed"/>
<xs:enumeration value="articulationParameterValue3_changed"/>
<xs:enumeration value="articulationParameterValue4_changed"/>
<xs:enumeration value="articulationParameterValue5_changed"/>
<xs:enumeration value="articulationParameterValue6_changed"/>
<xs:enumeration value="articulationParameterValue7_changed"/>
<xs:enumeration value="bindTime"/>
<xs:enumeration value="centerOfRotation_changed"/>
<xs:enumeration value="collideTime"/>
<xs:enumeration value="controlKey"/>
<xs:enumeration value="cycleTime"/>
<xs:enumeration value="detonateTime"/>
<xs:enumeration value="duration_changed"/>
<xs:enumeration value="elapsedTime"/>
<xs:enumeration value="enteredText"/>
<xs:enumeration value="enterTime"/>
<xs:enumeration value="exitTime"/>
<xs:enumeration value="finalText"/>
<xs:enumeration value="firedTime"/>
<xs:enumeration value="fraction_changed"/>
<xs:enumeration value="geovalue_changed"/>
<xs:enumeration value="hitGeoCoord_changed"/>
<xs:enumeration value="hitNormal_changed"/>
<xs:enumeration value="hitPoint_changed"/>
<xs:enumeration value="hitTexCoord_changed"/>
<xs:enumeration value="inputFalse"/>
<xs:enumeration value="inputNegate"/>
<xs:enumeration value="inputTrue"/>
<xs:enumeration value="isActive"/>
<xs:enumeration value="isBound"/>
<xs:enumeration value="isCollided"/>
<xs:enumeration value="isDetonated"/>
<xs:enumeration value="isLoaded"/>
<xs:enumeration value="isOver"/>
<xs:enumeration value="isPaused"/>
<xs:enumeration value="isNetworkReader"/>
<xs:enumeration value="isNetworkWriter"/>
<xs:enumeration value="isRtpHeaderHeard"/>
<xs:enumeration value="isStandAlone"/>
<xs:enumeration value="keyPress"/>
<xs:enumeration value="keyRelease"/>
<xs:enumeration value="loadTime"/>
<xs:enumeration value="next"/>
<xs:enumeration value="normal_changed"/>
<xs:enumeration value="orientation_changed"/>
<xs:enumeration value="position_changed"/>
<xs:enumeration value="previous"/>
<xs:enumeration value="progress"/>
<xs:enumeration value="rotation_changed"/>
<xs:enumeration value="shiftKey"/>
<xs:enumeration value="time"/>
<xs:enumeration value="timestamp"/>
<xs:enumeration value="touchTime"/>
<xs:enumeration value="trackPoint_changed"/>
<xs:enumeration value="translation_changed"/>
<xs:enumeration value="triggerTime"/>
<xs:enumeration value="triggerTrue"/>
<xs:enumeration value="triggerValue"/>
<xs:enumeration value="value_changed"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="inputOutputAccessTypes">
<xs:annotation>
<xs:appinfo> Table of fields having accessType inputOutput.</xs:appinfo>
<xs:documentation source="http://www.web3d.org/x3d/specifications/ISO-IEC-19775-FDIS-X3dAbstractSpecification/Part01/concepts.html#FieldSemantics"/>
</xs:annotation>
<xs:restriction base="xs:string">
<xs:enumeration value="address"/>
<xs:enumeration value="alpha"/>
<xs:enumeration value="ambientIntensity"/>
<xs:enumeration value="antennaLocation"/>
<xs:enumeration value="applicationID"/>
<xs:enumeration value="relativeAntennaLocation"/>
<xs:enumeration value="antennaPatternType"/>
<xs:enumeration value="antennaPatternLength"/>
<xs:enumeration value="articulationParameterArray"/>
<xs:enumeration value="articulationParameterChangeIndicatorArray"/>
<xs:enumeration value="articulationParameterCount"/>
<xs:enumeration value="articulationParameterDesignatorArray"/>
<xs:enumeration value="articulationParameterIdPartAttachedArray"/>
<xs:enumeration value="articulationParameterTypeArray"/>
<xs:enumeration value="attenuation"/>
<xs:enumeration value="autoOffset"/>
<xs:enumeration value="avatarSize"/>
<xs:enumeration value="axisOfRotation"/>
<xs:enumeration value="backUrl"/>
<xs:enumeration value="bottomUrl"/>
<xs:enumeration value="beamWidth"/>
<xs:enumeration value="bottomUrl"/>
<xs:enumeration value="center"/>
<xs:enumeration value="centerOfMass"/>
<xs:enumeration value="centerOfRotation"/>
<xs:enumeration value="color"/>
<xs:enumeration value="controlPoint"/>
<xs:enumeration value="coord"/>
<xs:enumeration value="cryptoSystem"/>
<xs:enumeration value="cryptoKeyID"/>
<xs:enumeration value="cutOffAngle"/>
<xs:enumeration value="cycleInterval"/>
<xs:enumeration value="data"/>
<xs:enumeration value="dataLength"/>
<xs:enumeration value="deadReckoning"/>
<xs:enumeration value="deletionAllowed"/>
<xs:enumeration value="description"/>
<xs:enumeration value="detonationLocation"/>
<xs:enumeration value="detonationRelativeLocation"/>
<xs:enumeration value="detonationResult"/>
<xs:enumeration value="dimension"/>
<xs:enumeration value="diffuseColor"/>
<xs:enumeration value="direction"/>
<xs:enumeration value="diskAngle"/>
<xs:enumeration value="displacers"/>
<xs:enumeration value="displacements"/>
<xs:enumeration value="emissiveColor"/>
<xs:enumeration value="enabled"/>
<xs:enumeration value="encodingScheme"/>
<xs:enumeration value="entityID"/>
<xs:enumeration value="entityKind"/>
<xs:enumeration value="entityDomain"/>
<xs:enumeration value="entityCountry"/>
<xs:enumeration value="entityCategory"/>
<xs:enumeration value="entitySubCategory"/>
<xs:enumeration value="entitySpecific"/>
<xs:enumeration value="entityExtra"/>
<xs:enumeration value="eventApplicationID"/>
<xs:enumeration value="eventEntityID"/>
<xs:enumeration value="eventSiteID"/>
<xs:enumeration value="eventNumber"/>
<xs:enumeration value="family"/>
<xs:enumeration value="fanCount"/>
<xs:enumeration value="fieldOfView"/>
<xs:enumeration value="fillStyle"/>
<xs:enumeration value="fired1"/>
<xs:enumeration value="fired2"/>
<xs:enumeration value="fireMissionIndex"/>
<xs:enumeration value="firingRange"/>
<xs:enumeration value="firingRate"/>
<xs:enumeration value="fogType"/>
<xs:enumeration value="forceID"/>
<xs:enumeration value="frequency"/>
<xs:enumeration value="frontUrl"/>
<xs:enumeration value="function"/>
<xs:enumeration value="fuse"/>
<xs:enumeration value="geoCoords"/>
<xs:enumeration value="groundColor"/>
<xs:enumeration value="groundAngle"/>
<xs:enumeration value="hatchColor"/>
<xs:enumeration value="hatchStyle"/>
<xs:enumeration value="headlight"/>
<xs:enumeration value="image"/>
<xs:enumeration value="info"/>
<xs:enumeration value="inputSource"/>
<xs:enumeration value="intensity"/>
<xs:enumeration value="isFilled"/>
<xs:enumeration value="key"/>
<xs:enumeration value="jump"/>
<xs:enumeration value="keyValue"/>
<xs:enumeration value="keyWeight"/>
<xs:enumeration value="leftUrl"/>
<xs:enumeration value="length"/>
<xs:enumeration value="lengthOfModulationParameters"/>
<xs:enumeration value="limitOrientation"/>
<xs:enumeration value="llimit"/>
<xs:enumeration value="linearAcceleration"/>
<xs:enumeration value="linearVelocity"/>
<xs:enumeration value="lineStyle"/>
<xs:enumeration value="lineWidthScaleFactor"/>
<xs:enumeration value="load"/>
<xs:enumeration value="location"/>
<xs:enumeration value="loop"/>
<xs:enumeration value="marking"/>
<xs:enumeration value="mass"/>
<xs:enumeration value="maxAngle"/>
<xs:enumeration value="maxBack"/>
<xs:enumeration value="maxExtent"/>
<xs:enumeration value="maxFront"/>
<xs:enumeration value="maxPosition"/>
<xs:enumeration value="minAngle"/>
<xs:enumeration value="minBack"/>
<xs:enumeration value="minFront"/>
<xs:enumeration value="minPosition"/>
<xs:enumeration value="mode"/>
<xs:enumeration value="modulationTypeSpreadSpectrum"/>
<xs:enumeration value="modulationTypeMajor"/>
<xs:enumeration value="modulationTypeDetail"/>
<xs:enumeration value="modulationTypeSystem"/>
<xs:enumeration value="momentsOfInertia"/>
<xs:enumeration value="multicastRelayHost"/>
<xs:enumeration value="multicastRelayPort"/>
<xs:enumeration value="munitionEndPoint"/>
<xs:enumeration value="munitionStartPoint"/>
<xs:enumeration value="munitionApplicationID"/>
<xs:enumeration value="munitionEntityID"/>
<xs:enumeration value="munitionSiteID"/>
<xs:enumeration value="munitionQuantity"/>
<xs:enumeration value="name"/>
<xs:enumeration value="navType"/>
<xs:enumeration value="networkMode"/>
<xs:enumeration value="normal"/>
<xs:enumeration value="offset"/>
<xs:enumeration value="on"/>
<xs:enumeration value="pauseTime"/>
<xs:enumeration value="parameter"/>
<xs:enumeration value="pitch"/>
<xs:enumeration value="point"/>
<xs:enumeration value="port"/>
<xs:enumeration value="position"/>
<xs:enumeration value="power"/>
<xs:enumeration value="priority"/>
<xs:enumeration value="radioID"/>
<xs:enumeration value="radioEntityTypeKind"/>
<xs:enumeration value="radioEntityTypeDomain"/>
<xs:enumeration value="radioEntityTypeCountry"/>
<xs:enumeration value="radioEntityTypeCategory"/>
<xs:enumeration value="radioEntityTypeNomenclature"/>
<xs:enumeration value="radioEntityTypeNomenclatureVersion"/>
<xs:enumeration value="readInterval"/>
<xs:enumeration value="receivedPower"/>
<xs:enumeration value="receiverState"/>
<xs:enumeration value="resumeTime"/>
<xs:enumeration value="rightUrl"/>
<xs:enumeration value="rotation"/>
<xs:enumeration value="sampleRate"/>
<xs:enumeration value="samples"/>
<xs:enumeration value="scale"/>
<xs:enumeration value="scaleOrientation"/>
<xs:enumeration value="shininess"/>
<xs:enumeration value="siteID"/>
<xs:enumeration value="skinCoordIndex"/>
<xs:enumeration value="skinCoordWeight"/>
<xs:enumeration value="skyColor"/>
<xs:enumeration value="skyAngle"/>
<xs:enumeration value="source"/>
<xs:enumeration value="specularColor"/>
<xs:enumeration value="speed"/>
<xs:enumeration value="startTime"/>
<xs:enumeration value="stiffness"/>
<xs:enumeration value="stopTime"/>
<xs:enumeration value="string"/>
<xs:enumeration value="stripCount"/>
<xs:enumeration value="summary"/>
<xs:enumeration value="tdlType"/>
<xs:enumeration value="tessellation"/>
<xs:enumeration value="tessellationScale"/>
<xs:enumeration value="texCoord"/>
<xs:enumeration value="timeOut"/>
<xs:enumeration value="toggle"/>
<xs:enumeration value="topUrl"/>
<xs:enumeration value="translation"/>
<xs:enumeration value="transmitFrequencyBandwidth"/>
<xs:enumeration value="transmitState"/>
<xs:enumeration value="transmitterApplicationID"/>
<xs:enumeration value="transmitterEntityID"/>
<xs:enumeration value="transmitterRadioID"/>
<xs:enumeration value="transmitterSiteID"/>
<xs:enumeration value="transparent"/>
<xs:enumeration value="transparency"/>
<xs:enumeration value="type"/>
<xs:enumeration value="ulimit"/>
<xs:enumeration value="url"/>
<xs:enumeration value="uTessellation"/>
<xs:enumeration value="version"/>
<xs:enumeration value="vector"/>
<xs:enumeration value="vertices"/>
<xs:enumeration value="visibilityLimit"/>
<xs:enumeration value="visibilityRange"/>
<xs:enumeration value="vTessellation"/>
<xs:enumeration value="warhead"/>
<xs:enumeration value="weight"/>
<xs:enumeration value="whichChoice"/>
<xs:enumeration value="whichGeometry"/>
<xs:enumeration value="writeInterval"/>
</xs:restriction>
</xs:simpleType>
<!-- special case accessType tests, excerpted from BuildSpecificationInterfacesFromSchema.xslt
<xsl:when test="($nodeName='GeoCoordinate') and ($attributeName='point') or
($nodeName='Extrusion') and ($attributeName='scale')">
<xsl:text>[init]</xsl:text>
</xsl:when>
<xsl:when test="(($nodeName='HAnimDisplacer') and ($attributeName='coordIndex')) or
(($nodeName='GeoOrigin') and ($attributeName='geoSystem')) or
(($nodeName='NurbsPositionInterpolator') and ($attributeName='order')) or
(($nodeName='Viewpoint') and ($attributeName='orientation')) or
( contains($nodeName,'Light') and ($attributeName='radius')) or
(($nodeName='ProximitySensor' or $nodeName='VisibilitySensor') and ($attributeName='size'))">
<xsl:text>[in, out]</xsl:text>
</xsl:when>
-->
<!--Wrapper tags: these already appear to be handled implicitly by element names and ContainedNodeLabel in content model.
enumeration vrmlNodeFieldNames is perhaps useful as a convenience enumeration showing what element tags are ignorable.
Probably won't be needed, commented out:
<xs:simpleType name="vrmlNodeFieldNames">
<xs:annotation>
<xs:appinfo></xs:appinfo>
<xs:documentation source="http://www.web3d.org/x3d/content/ComposingSceneGraphAlternatives.html"/>
</xs:annotation>
<xs:restriction base="xs:string">
<xs:enumeration value="appearance"/>
<xs:enumeration value="children"/>
<xs:enumeration value="choice"/>
<xs:enumeration value="color"/>
<xs:enumeration value="coord"/>
<xs:enumeration value="fontStyle"/>
<xs:enumeration value="geometry"/>
<xs:enumeration value="level"/>
<xs:enumeration value="material"/>
<xs:enumeration value="normal"/>
<xs:enumeration value="proxy"/>
<xs:enumeration value="source"/>
<xs:enumeration value="texCoord"/>
<xs:enumeration value="texture"/>
<xs:enumeration value="textureTransform"/>
</xs:restriction>
</xs:simpleType>
-->
<!--======================================================================-->
<!--Attribute groups-->
<!--DEF and USE are node-naming attributes common to all instantiable nodes. This attributeGroup is defined for all top-level node types in the node interface hierarchy.-->
<xs:attributeGroup name="DEF_USE">
<xs:annotation>
<xs:documentation source="http://www.web3d.org/spec_editors/abstract/Part01/concepts.html#DEFL_USESemantics"/>
</xs:annotation>
<xs:attribute name="DEF" type="xs:ID">
<xs:annotation>
<xs:appinfo/>
<xs:documentation source="http://www.web3d.org/spec_editors/abstract/Part01/concepts.html#DEFL_USESemantics"/>
</xs:annotation>
</xs:attribute>
<xs:attribute name="USE" type="xs:IDREF">
<xs:annotation>
<xs:appinfo/>
<xs:documentation source="http://www.web3d.org/spec_editors/abstract/Part01/concepts.html#DEFL_USESemantics"/>
</xs:annotation>
</xs:attribute>
</xs:attributeGroup>
<xs:attributeGroup name="globalAttributes">
<!-- Tool bug: attribute name="class" has to be commented for xjc (jaxb) to build API classes -->
<xs:attribute name="class" type="xs:NMTOKEN">
<xs:annotation>
<xs:appinfo/>
<xs:documentation/>
</xs:annotation>
</xs:attribute>
<!-- containerField not included here in globalAttributes since default values are different for various node types -->
</xs:attributeGroup>
<!--======================================================================-->
<!--Complex types-->
<!--Should all abstract node types be made final? This issue pertains to run-time extensibility modifications to the SAI API...-->
<xs:complexType name="X3DAppearanceNode" abstract="false" mixed="false">
<xs:annotation>
<xs:documentation source="http://www.web3d.org/x3d/specifications/ISO-IEC-19775-FDIS-X3dAbstractSpecification/Part01/components/shape.html#X3DAppearanceNode"/>
</xs:annotation>
<xs:complexContent mixed="false">
<xs:extension base="X3DNode">
<xs:group ref="AppearanceChildContentModel"/>
<xs:attribute name="containerField" type="xs:NMTOKEN" default="appearance"/>
</xs:extension>
<!-- <xs:group ref="AppearanceChildContentModelLoose"/> -->
<!-- <xs:sequence>
</xs:sequence> -->
<!-- minOccurs="1" maxOccurs="1" -->
</xs:complexContent>
</xs:complexType>
<xs:complexType name="X3DAppearanceChildNode" abstract="true" mixed="false">
<xs:annotation>
<xs:appinfo> Nodes of this type can be used as child nodes for Appearance.</xs:appinfo>
<xs:documentation source="http://www.web3d.org/x3d/specifications/ISO-IEC-19775-FDIS-X3dAbstractSpecification/Part01/components/shape.html#X3DAppearanceChildNode"/>
</xs:annotation>
<xs:complexContent mixed="false">
<xs:extension base="X3DNode"/>
</xs:complexContent>
</xs:complexType>
<xs:complexType name="X3DArrayField" abstract="true" mixed="false">
<xs:annotation>
<xs:appinfo>X3DArrayField is equivalent to MF (Multiple Field) simple non-Node types in the VRML 97 Specification.</xs:appinfo>
<xs:documentation source="http://www.web3d.org/technicalinfo/specifications/vrml97/part1/fieldsRef.html#5.1.2"/>
</xs:annotation>
<xs:complexContent mixed="false">
<xs:extension base="X3DField"/>
</xs:complexContent>
</xs:complexType>
<xs:complexType name="X3DBackgroundNode" abstract="true" mixed="false">
<xs:annotation>
<xs:appinfo/>
<xs:documentation source="http://www.web3d.org/x3d/specifications/ISO-IEC-19775-FDIS-X3dAbstractSpecification/Part01/components/enveffects.html#X3DBackgroundNode"/>
</xs:annotation>
<xs:complexContent mixed="false">
<xs:extension base="X3DBindableNode">
<xs:attribute name="groundAngle" type="MFFloat"/>
<xs:attribute name="groundColor" type="MFColor"/>
<xs:attribute name="skyAngle" type="MFFloat"/>
<xs:attribute name="skyColor" type="MFColor" default="0 0 0"/>
</xs:extension>
</xs:complexContent>
</xs:complexType>
<xs:complexType name="X3DBindableNode" abstract="true" mixed="false">
<xs:annotation>
<xs:appinfo> Bindable nodes implement the binding stack, so that only one of each node type is active at a given time.</xs:appinfo>
<xs:documentation source="http://www.web3d.org/x3d/specifications/ISO-IEC-19775-FDIS-X3dAbstractSpecification/Part01/components/core.html#X3DBindableNode"/>
</xs:annotation>
<xs:complexContent mixed="false">
<xs:extension base="X3DChildNode">
<xs:attribute name="set_bind" type="SFBool"/>
<xs:attribute name="bindTime" type="SFTime"/>
<xs:attribute name="isBound" type="SFBool"/>
</xs:extension>
</xs:complexContent>
</xs:complexType>
<xs:complexType name="X3DBoundedObject" abstract="true" mixed="false">
<xs:annotation>
<xs:appinfo> X3DBoundedObject indicates that bounding box values can
be provided (or computed) for this node and any children.
Bounding box values approximate the volume of a containing box
in the current coordinate system. Bounding box values can
optionally be provided to (or calculated by) 3D browsers.
Bounding box values are hints that can improve performance by
allowing browsers to inexpensively cull geometry, thus avoiding
the computational cost of trying to drawing shapes when they are
outside of the current view.</xs:appinfo>
<xs:documentation source="http://www.web3d.org/x3d/specifications/ISO-IEC-19775-FDIS-X3dAbstractSpecification/Part01/components/group.html#X3DBoundedObject"/>
</xs:annotation>
<xs:attribute name="bboxCenter" type="SFVec3f" default="0 0 0"/>
<xs:attribute name="bboxSize" type="BoundingBoxSize" default="-1 -1 -1"/>
</xs:complexType>
<xs:complexType name="X3DChildNode" abstract="true" mixed="false">
<xs:annotation>
<xs:appinfo> A node that implements X3DChildNode is one of the legal children for a X3DGroupingNode parent.</xs:appinfo>
<xs:documentation source="http://www.web3d.org/x3d/specifications/ISO-IEC-19775-FDIS-X3dAbstractSpecification/Part01/components/core.html#X3DChildNode"/>
</xs:annotation>
<xs:complexContent mixed="false">
<xs:extension base="X3DNode">
<xs:attribute name="containerField" type="xs:NMTOKEN" default="children"/>
</xs:extension>
</xs:complexContent>
</xs:complexType>
<xs:complexType name="X3DColorNode" abstract="true" mixed="false">
<xs:annotation>
<xs:appinfo/>
<xs:documentation source="http://www.web3d.org/x3d/specifications/ISO-IEC-19775-FDIS-X3dAbstractSpecification/Part01/components/rendering.html#X3DColorNode"/>
</xs:annotation>
<xs:complexContent mixed="false">
<xs:extension base="X3DGeometricPropertyNode">
<xs:attribute name="containerField" type="xs:NMTOKEN" default="color"/>
</xs:extension>
</xs:complexContent>
</xs:complexType>
<xs:complexType name="X3DComposedGeometryNode" abstract="true" mixed="false">
<xs:annotation>
<xs:appinfo> Composed geometry nodes produce renderable geometry, can contain Color Coordinate Normal TextureCoordinate, and are contained by a Shape node.</xs:appinfo>
<xs:documentation source="http://www.web3d.org/x3d/specifications/ISO-IEC-19775-FDIS-X3dAbstractSpecification/Part01/components/rendering.html#X3DComposedGeometryNode"/>
</xs:annotation>
<xs:complexContent mixed="false">
<xs:extension base="X3DGeometryNode">
<xs:group ref="ColorCoordinateNormalTexCoordContentModel" minOccurs="0"/>
<xs:attribute name="ccw" type="SFBool" default="true"/>
<xs:attribute name="colorPerVertex" type="SFBool" default="true"/>
<xs:attribute name="normalPerVertex" type="SFBool" default="true"/>
<xs:attribute name="solid" type="SFBool" default="true"/>
</xs:extension>
</xs:complexContent>
</xs:complexType>
<xs:complexType name="X3DCoordinateNode" abstract="true" mixed="false">
<xs:annotation>
<xs:appinfo/>
<xs:documentation source="http://www.web3d.org/x3d/specifications/ISO-IEC-19775-FDIS-X3dAbstractSpecification/Part01/components/rendering.html#X3DCoordinateNode"/>
</xs:annotation>
<xs:complexContent mixed="false">
<xs:extension base="X3DGeometricPropertyNode">
<xs:attribute name="containerField" type="xs:NMTOKEN" default="coord"/>
</xs:extension>
</xs:complexContent>
</xs:complexType>
<xs:complexType name="X3DDragSensorNode" abstract="true" mixed="false">
<xs:annotation>
<xs:appinfo/>
<xs:documentation source="http://www.web3d.org/x3d/specifications/ISO-IEC-19775-FDIS-X3dAbstractSpecification/Part01/components/pointingsensor.html#X3DDragSensorNode"/>
</xs:annotation>
<xs:complexContent mixed="false">
<xs:extension base="X3DPointingDeviceSensorNode">
<xs:attribute name="autoOffset" type="SFBool" default="true"/>
<xs:attribute name="trackPoint_changed" type="SFVec3f"/>
</xs:extension>
</xs:complexContent>
</xs:complexType>
<xs:complexType name="X3DEnvironmentalSensorNode" abstract="true" mixed="false">
<xs:annotation>
<xs:appinfo/>
<xs:documentation source="http://www.web3d.org/x3d/specifications/ISO-IEC-19775-FDIS-X3dAbstractSpecification/Part01/components/envsensor.html#X3DEnvironmentalSensorNode"/>
</xs:annotation>
<xs:complexContent mixed="false">
<xs:extension base="X3DSensorNode">
<xs:attribute name="center" type="SFVec3f" default="0 0 0"/>
<xs:attribute name="size" type="SFVec3f" default="0 0 0"/>
<xs:attribute name="enterTime" type="SFTime"/>
<xs:attribute name="exitTime" type="SFTime"/>
</xs:extension>
</xs:complexContent>
</xs:complexType>
<xs:complexType name="X3DField" abstract="true" mixed="false">
<xs:annotation>
<xs:appinfo>X3DField is equivalent to SF (Single Field) simple non-Node types in the VRML 97 Specification.</xs:appinfo>
<xs:documentation source="http://www.web3d.org/technicalinfo/specifications/vrml97/part1/fieldsRef.html#5.1.2"/>
</xs:annotation>
</xs:complexType>
<xs:complexType name="X3DFontStyleNode" abstract="true" mixed="false">
<xs:annotation>
<xs:appinfo/>
<xs:documentation source="http://www.web3d.org/x3d/specifications/ISO-IEC-19775-FDIS-X3dAbstractSpecification/Part01/components/text.html#X3DFontStyleNode"/>
</xs:annotation>
<xs:complexContent mixed="false">
<xs:extension base="X3DNode">
<xs:attribute name="containerField" type="xs:NMTOKEN" default="fontStyle"/>
</xs:extension>
</xs:complexContent>
</xs:complexType>
<xs:complexType name="X3DGeometryNode" abstract="true" mixed="false">
<xs:annotation>
<xs:appinfo> Geometry nodes produce renderable geometry and are contained by a Shape node.</xs:appinfo>
<xs:documentation source="http://www.web3d.org/x3d/specifications/ISO-IEC-19775-FDIS-X3dAbstractSpecification/Part01/components/rendering.html#X3DGeometryNode"/>
</xs:annotation>
<xs:complexContent mixed="false">
<xs:extension base="X3DNode">
<xs:attribute name="containerField" type="xs:NMTOKEN" default="geometry"/>
</xs:extension>
</xs:complexContent>
</xs:complexType>
<xs:complexType name="X3DGeometricPropertyNode" abstract="true" mixed="false">
<xs:complexContent mixed="false">
<xs:extension base="X3DNode"/>
</xs:complexContent>
</xs:complexType>
<xs:complexType name="X3DGroupingNode" abstract="true" mixed="false">
<xs:annotation>
<xs:appinfo> Grouping nodes can contain other nodes as children, thus making up the backbone of a scene graph.</xs:appinfo>
<xs:documentation source="http://www.web3d.org/technicalinfo/specifications/vrml97/part1/concepts.html#4.6.5"/>
</xs:annotation>
<xs:complexContent mixed="false">
<xs:extension base="X3DChildNode">
<xs:group ref="ChildContentModel" minOccurs="0" maxOccurs="unbounded"/>
<xs:attribute name="otherInterfaces" type="xs:string" fixed="X3DBoundedObject"/>
<xs:attribute name="bboxCenter" type="SFVec3f" default="0 0 0"/>
<xs:attribute name="bboxSize" type="BoundingBoxSize" default="-1 -1 -1"/>
</xs:extension>
</xs:complexContent>
</xs:complexType>
<xs:complexType name="X3DHumanoidNode" abstract="true" mixed="false">
<xs:annotation>
<xs:appinfo> X3DHumanoidNode enables extensibility for the Humanoid node.</xs:appinfo>
<xs:documentation source="http://www.web3d.org/x3d/specifications/ISO-IEC-19775-FDIS-X3dAbstractSpecification/Part01/components/hanim.html#HAnimHumanoid"/>
</xs:annotation>
<xs:complexContent mixed="false">
<xs:extension base="X3DChildNode"/>
</xs:complexContent>
</xs:complexType>
<xs:complexType name="X3DInfoNode" abstract="true" mixed="false">
<xs:annotation>
<xs:appinfo/>
<xs:documentation source="http://www.web3d.org/x3d/specifications/ISO-IEC-19775-FDIS-X3dAbstractSpecification/Part01/components/group.html#X3DInfoNode"/>
</xs:annotation>
<xs:complexContent mixed="false">
<xs:extension base="X3DChildNode"/>
</xs:complexContent>
</xs:complexType>
<xs:complexType name="X3DInterpolatorNode" abstract="true" mixed="false">
<xs:annotation>
<xs:appinfo> Interpolator nodes are designed for linear keyframed animation.
Interpolators are driven by an input key ranging [0..1] and produce corresponding piecewise-linear output functions.</xs:appinfo>
<xs:documentation source="http://www.web3d.org/x3d/specifications/ISO-IEC-19775-FDIS-X3dAbstractSpecification/Part01/components/interp.html#X3DInterpolatorNode"/>
</xs:annotation>
<xs:complexContent mixed="false">
<xs:extension base="X3DChildNode">
<xs:attribute name="set_fraction" type="SFFloat"/>
<xs:attribute name="key" type="MFFloat"/>
</xs:extension>
</xs:complexContent>
</xs:complexType>
<xs:complexType name="X3DKeyDeviceSensorNode" abstract="true" mixed="false">
<xs:annotation>
<xs:appinfo/>
<xs:documentation source="http://www.web3d.org/x3d/specifications/ISO-IEC-19775-FDIS-X3dAbstractSpecification/Part01/components/keyboard.html#X3DKeyDeviceSensorNode"/>
</xs:annotation>
<xs:complexContent mixed="false">
<xs:extension base="X3DSensorNode"/>
</xs:complexContent>
</xs:complexType>
<xs:complexType name="X3DLightNode" abstract="true" mixed="false">
<xs:annotation>
<xs:appinfo> Light nodes provide illumination for rendering geometry in the scene.</xs:appinfo>
<xs:documentation source="http://www.web3d.org/x3d/specifications/ISO-IEC-19775-FDIS-X3dAbstractSpecification/Part01/components/lighting.html#X3DLightNode"/>
</xs:annotation>
<xs:complexContent mixed="false">
<xs:extension base="X3DChildNode">
<xs:attribute name="ambientIntensity" default="0">
<xs:simpleType>
<xs:restriction base="SFFloat">
<xs:minInclusive value="0"/>
<xs:maxInclusive value="1"/>
</xs:restriction>
</xs:simpleType>
</xs:attribute>
<xs:attribute name="color" type="SFColor" default="1 1 1"/>
<xs:attribute name="intensity" default="1">
<xs:simpleType>
<xs:restriction base="SFFloat">
<xs:minInclusive value="0"/>
<xs:maxInclusive value="1"/>
</xs:restriction>
</xs:simpleType>
</xs:attribute>
<xs:attribute name="on" type="SFBool" default="true"/>
</xs:extension>
</xs:complexContent>
</xs:complexType>
<xs:complexType name="X3DMaterialNode" abstract="true" mixed="false">
<xs:annotation>
<xs:appinfo/>
<xs:documentation source="http://www.web3d.org/x3d/specifications/ISO-IEC-19775-FDIS-X3dAbstractSpecification/Part01/components/shape.html#X3DMaterialNode"/>
</xs:annotation>
<xs:complexContent mixed="false">
<xs:extension base="X3DAppearanceChildNode">
<xs:attribute name="containerField" type="xs:NMTOKEN" default="material"/>
</xs:extension>
</xs:complexContent>
</xs:complexType>
<xs:complexType name="X3DMetadataObject">
<xs:annotation>
<xs:documentation source="http://www.web3d.org/x3d/specifications/ISO-IEC-19775-FDIS-X3dAbstractSpecification/Part01/components/core.html#X3DMetadataObject"/>
<xs:appinfo/>
</xs:annotation>
<xs:complexContent>
<xs:extension base="X3DNode">
<xs:attribute name="name" type="SFString"/>
<xs:attribute name="reference" type="SFString"/>
<xs:attribute name="containerField" type="xs:NMTOKEN" default="metadata">
<xs:annotation>
<xs:appinfo>containerField='value' for contained payload metadata inside MetadataSet element.</xs:appinfo>
</xs:annotation>
</xs:attribute>
</xs:extension>
</xs:complexContent>
</xs:complexType>
<xs:complexType name="X3DNetworkSensorNode" abstract="true" mixed="false">
<xs:annotation>
<xs:appinfo/>
<xs:documentation source="http://www.web3d.org/x3d/specifications/ISO-IEC-19775-FDIS-X3dAbstractSpecification/Part01/components/networking.html#X3DNetworkSensorNode"/>
</xs:annotation>
<xs:complexContent mixed="false">
<xs:extension base="X3DSensorNode">
<xs:choice minOccurs="0" maxOccurs="unbounded">
<xs:element ref="Anchor"/>
<xs:element ref="AudioClip"/>
<xs:element ref="ImageTexture"/>
<xs:element ref="Inline"/>
<xs:element ref="MovieTexture"/>
<xs:element ref="Script"/>
<xs:element ref="ProtoInstance"/>
</xs:choice>
</xs:extension>
</xs:complexContent>
</xs:complexType>
<xs:complexType name="X3DNode" abstract="true" mixed="false">
<xs:annotation>
<xs:appinfo>All instantiable nodes implement X3DNode, which corresponds to SFNode in the VRML 97 specification.</xs:appinfo>
<xs:documentation source="http://www.web3d.org/x3d/specifications/ISO-IEC-19775-FDIS-X3dAbstractSpecification/Part01/components/core.html#X3DNode"/>
</xs:annotation>
<xs:sequence>
<xs:element ref="IS" minOccurs="0"/>
<xs:choice minOccurs="0">
<xs:element ref="MetadataDouble"/>
<xs:element ref="MetadataFloat"/>
<xs:element ref="MetadataInteger"/>
<xs:element ref="MetadataSet"/>
<xs:element ref="MetadataString"/>
</xs:choice>
</xs:sequence>
<xs:attributeGroup ref="DEF_USE"/>
<xs:attributeGroup ref="globalAttributes"/>
<!-- complexContent, extension/restriction not used since X3DNode is a top-level node type -->
</xs:complexType>
<xs:complexType name="X3DNormalNode" abstract="true" mixed="false">
<xs:annotation>
<xs:appinfo/>
<xs:documentation source="http://www.web3d.org/x3d/specifications/ISO-IEC-19775-FDIS-X3dAbstractSpecification/Part01/components/rendering.html#X3DNormalNode"/>
</xs:annotation>
<xs:complexContent mixed="false">
<xs:extension base="X3DGeometricPropertyNode">
<xs:attribute name="containerField" type="xs:NMTOKEN" default="normal"/>
</xs:extension>
</xs:complexContent>
</xs:complexType>
<xs:complexType name="X3DNurbsControlCurveNode" abstract="true" mixed="false">
<xs:annotation>
<xs:appinfo/>
<xs:documentation source="http://www.web3d.org/x3d/specifications/ISO-IEC-19775-FDIS-X3dAbstractSpecification/Part01/components/nurbs.html#X3DParametricGeometryNode"/>
</xs:annotation>
<xs:complexContent mixed="false">
<xs:extension base="X3DGeometryNode"/>
</xs:complexContent>
</xs:complexType>
<xs:complexType name="X3DParametricGeometryNode" abstract="true" mixed="false">
<xs:annotation>
<xs:appinfo/>
<xs:documentation source="http://www.web3d.org/x3d/specifications/ISO-IEC-19775-FDIS-X3dAbstractSpecification/Part01/components/nurbs.html#X3DParametricGeometryNode"/>
</xs:annotation>
<xs:complexContent mixed="false">
<xs:extension base="X3DGeometryNode"/>
</xs:complexContent>
</xs:complexType>
<xs:complexType name="X3DNurbsSurfaceGeometryNode" abstract="true" mixed="false">
<xs:annotation>
<xs:appinfo/>
<xs:documentation source="http://www.web3d.org/x3d/specifications/ISO-IEC-19775-FDIS-X3dAbstractSpecification/Part01/components/nurbs.html#X3DNurbsSurfaceGeometryNode"/>
</xs:annotation>
<xs:complexContent mixed="false">
<xs:extension base="X3DParametricGeometryNode">
<xs:attribute name="uDimension" type="SFInt32" default="0"/>
<xs:attribute name="vDimension" type="SFInt32" default="0"/>
<xs:attribute name="uKnot" type="MFDouble"/>
<xs:attribute name="vKnot" type="MFDouble"/>
<xs:attribute name="uOrder" type="SFInt32" default="3"/>
<xs:attribute name="vOrder" type="SFInt32" default="3"/>
<xs:attribute name="uTessellation" type="SFInt32" default="0"/>
<xs:attribute name="vTessellation" type="SFInt32" default="0"/>
<xs:attribute name="weight" type="MFDouble"/>
<xs:attribute name="solid" type="SFBool" default="true"/>
</xs:extension>
</xs:complexContent>
</xs:complexType>
<xs:complexType name="X3DPointingDeviceSensorNode" abstract="true" mixed="false">
<xs:annotation>
<xs:appinfo/>
<xs:documentation source="http://www.web3d.org/x3d/specifications/ISO-IEC-19775-FDIS-X3dAbstractSpecification/Part01/components/pointingsensor.html#X3DPointingDeviceSensorNode"/>
</xs:annotation>
<xs:complexContent mixed="false">
<xs:extension base="X3DSensorNode">
<xs:attribute name="description" type="SFString"/>
<xs:attribute name="isOver" type="SFBool"/>
</xs:extension>
</xs:complexContent>
</xs:complexType>
<xs:complexType name="X3DPrototypeInstanceNode" abstract="true" mixed="false">
<xs:annotation>
<xs:appinfo/>
<xs:documentation source="http://www.web3d.org/x3d/specifications/ISO-IEC-19775-FDIS-X3dAbstractSpecification/Part01/components/core.html#X3DPrototypeInstance"/>
</xs:annotation>
<xs:complexContent mixed="false">
<xs:extension base="X3DNode"/>
</xs:complexContent>
</xs:complexType>
<xs:complexType name="X3DScriptNode" abstract="true" mixed="true">
<xs:annotation>
<xs:appinfo/>
<xs:documentation source="http://www.web3d.org/x3d/specifications/ISO-IEC-19775-FDIS-X3dAbstractSpecification/Part01/components/scripting.html#X3DScriptNode"/>
</xs:annotation>
<xs:sequence>
<xs:choice minOccurs="0">
<xs:element ref="MetadataDouble"/>
<xs:element ref="MetadataFloat"/>
<xs:element ref="MetadataInteger"/>
<xs:element ref="MetadataSet"/>
<xs:element ref="MetadataString"/>
</xs:choice>
<xs:sequence>
<xs:sequence minOccurs="0" maxOccurs="unbounded">
<xs:element ref="field"/>
</xs:sequence>
<xs:sequence minOccurs="0">
<xs:element ref="IS"/>
</xs:sequence>
</xs:sequence>
</xs:sequence>
<xs:attributeGroup ref="DEF_USE"/>
<xs:attributeGroup ref="globalAttributes"/>
</xs:complexType>
<xs:complexType name="X3DSensorNode" abstract="true" mixed="false">
<xs:annotation>
<xs:appinfo/>
<xs:documentation source="http://www.web3d.org/x3d/specifications/ISO-IEC-19775-FDIS-X3dAbstractSpecification/Part01/components/core.html#X3DSensorNode"/>
</xs:annotation>
<xs:complexContent mixed="false">
<xs:extension base="X3DChildNode">
<xs:attribute name="enabled" type="SFBool" default="true"/>
<xs:attribute name="isActive" type="SFBool"/>
</xs:extension>
</xs:complexContent>
</xs:complexType>
<xs:complexType name="X3DSequencerNode" abstract="true" mixed="false">
<xs:annotation>
<xs:appinfo/>
<xs:documentation source="http://www.web3d.org/x3d/specifications/ISO-IEC-19775-FDIS-X3dAbstractSpecification/Part01/components/utils.html#X3DSequencerNode"/>
</xs:annotation>
<xs:complexContent mixed="false">
<xs:extension base="X3DChildNode">
<xs:attribute name="set_fraction" type="SFFloat"/>
<xs:attribute name="key" type="MFFloat"/>
<xs:attribute name="previous" type="SFBool"/>
<xs:attribute name="next" type="SFBool"/>
</xs:extension>
</xs:complexContent>
</xs:complexType>
<xs:complexType name="X3DShapeNode" abstract="true" mixed="false">
<xs:annotation>
<xs:appinfo/>
<xs:documentation source="http://www.web3d.org/x3d/specifications/ISO-IEC-19775-FDIS-X3dAbstractSpecification/Part01/components/shape.html#X3DShapeNode"/>
</xs:annotation>
<xs:complexContent mixed="false">
<xs:extension base="X3DChildNode">
<xs:group ref="ShapeChildContentModel" minOccurs="0"/>
<xs:attribute name="otherInterfaces" type="xs:string" fixed="X3DBoundedObject"/>
</xs:extension>
</xs:complexContent>
</xs:complexType>
<xs:complexType name="X3DSoundNode" abstract="true" mixed="false">
<xs:annotation>
<xs:appinfo/>
<xs:documentation source="http://www.web3d.org/x3d/specifications/ISO-IEC-19775-FDIS-X3dAbstractSpecification/Part01/components/sound.html#X3DSoundNode"/>
</xs:annotation>
<xs:complexContent mixed="false">
<xs:extension base="X3DChildNode">
<xs:group ref="SoundChildContentModel" minOccurs="0"/>
</xs:extension>
</xs:complexContent>
</xs:complexType>
<xs:complexType name="X3DSoundSourceNode" abstract="true" mixed="false">
<xs:annotation>
<xs:appinfo>Nodes implementing X3DSoundSourceNode are allowed children of Sound node</xs:appinfo>
<xs:documentation source="http://www.web3d.org/x3d/specifications/ISO-IEC-19775-FDIS-X3dAbstractSpecification/Part01/components/sound.html#X3DSoundSourceNode"/>
</xs:annotation>
<xs:complexContent mixed="false">
<xs:extension base="X3DTimeDependentNode">
<xs:attribute name="pitch" type="SFFloat" default="1.0"/>
<xs:attribute name="url" type="MFString"/>
<xs:attribute name="duration_changed" type="SFFloat"/>
</xs:extension>
</xs:complexContent>
</xs:complexType>
<xs:complexType name="X3DTextureNode" abstract="true" mixed="false">
<xs:annotation>
<xs:appinfo/>
<xs:documentation source="http://www.web3d.org/x3d/specifications/ISO-IEC-19775-FDIS-X3dAbstractSpecification/Part01/components/texturing.html#X3DTextureNode"/>
</xs:annotation>
<xs:complexContent mixed="false">
<xs:extension base="X3DAppearanceChildNode">
<xs:attribute name="containerField" type="xs:NMTOKEN" default="texture"/>
</xs:extension>
</xs:complexContent>
</xs:complexType>
<xs:complexType name="X3DTexture2DNode" abstract="true" mixed="false">
<xs:annotation>
<xs:appinfo/>
<xs:documentation source="http://www.web3d.org/x3d/specifications/ISO-IEC-19775-FDIS-X3dAbstractSpecification/Part01/components/texturing.html#X3DTexture2DNode"/>
</xs:annotation>
<xs:complexContent mixed="false">
<xs:extension base="X3DTextureNode">
<xs:attribute name="repeatS" type="SFBool" default="true"/>
<xs:attribute name="repeatT" type="SFBool" default="true"/>
</xs:extension>
</xs:complexContent>
</xs:complexType>
<xs:complexType name="X3DTextureCoordinateNode" abstract="true" mixed="false">
<xs:annotation>
<xs:appinfo/>
<xs:documentation source="http://www.web3d.org/x3d/specifications/ISO-IEC-19775-FDIS-X3dAbstractSpecification/Part01/components/texturing.html#X3DTextureCoordinateNode"/>
</xs:annotation>
<xs:complexContent mixed="false">
<xs:extension base="X3DGeometricPropertyNode">
<xs:attribute name="containerField" type="xs:NMTOKEN" default="texCoord"/>
</xs:extension>
</xs:complexContent>
</xs:complexType>
<xs:complexType name="X3DTextureTransformNode" abstract="true" mixed="false">
<xs:annotation>
<xs:appinfo/>
<xs:documentation source="http://www.web3d.org/x3d/specifications/ISO-IEC-19775-FDIS-X3dAbstractSpecification/Part01/components/texturing.html#X3DTextureTransformNode"/>
</xs:annotation>
<xs:complexContent mixed="false">
<xs:extension base="X3DAppearanceChildNode">
<xs:attribute name="containerField" type="xs:NMTOKEN" default="textureTransform"/>
</xs:extension>
</xs:complexContent>
</xs:complexType>
<xs:complexType name="X3DTextureTransform2DNode" abstract="true" mixed="false">
<xs:annotation>
<xs:appinfo/>
<xs:documentation source="http://www.web3d.org/x3d/specifications/ISO-IEC-19775-FDIS-X3dAbstractSpecification/Part01/components/texturing.html#X3DTextureTransform2DNode"/>
</xs:annotation>
<xs:complexContent mixed="false">
<xs:extension base="X3DTextureTransformNode">
<xs:attribute name="center" type="SFVec2f" default="0 0"/>
<xs:attribute name="rotation" type="SFFloat" default="0"/>
<xs:attribute name="scale" type="SFVec2f" default="1 1"/>
<xs:attribute name="translation" type="SFVec2f" default="0 0"/>
</xs:extension>
</xs:complexContent>
</xs:complexType>
<xs:complexType name="X3DTimeDependentNode" abstract="true" mixed="false">
<xs:annotation>
<xs:appinfo/>
<xs:documentation source="http://www.web3d.org/x3d/specifications/ISO-IEC-19775-FDIS-X3dAbstractSpecification/Part01/components/time.html#X3DTimeDependentNode"/>
</xs:annotation>
<xs:complexContent mixed="false">
<xs:extension base="X3DChildNode">
<xs:attribute name="elapsedTime" type="SFTime"/>
<xs:attribute name="isActive" type="SFBool"/>
<xs:attribute name="isPaused" type="SFBool"/>
<xs:attribute name="loop" type="SFBool" default="false"/>
<xs:attribute name="pauseTime" type="SFTime" default="0"/>
<xs:attribute name="resumeTime" type="SFTime" default="0"/>
<xs:attribute name="startTime" type="SFTime" default="0"/>
<xs:attribute name="stopTime" type="SFTime" default="0"/>
</xs:extension>
</xs:complexContent>
</xs:complexType>
<xs:complexType name="X3DTouchSensorNode" abstract="true" mixed="false">
<xs:annotation>
<xs:appinfo/>
<xs:documentation source="http://www.web3d.org/x3d/specifications/ISO-IEC-19775-FDIS-X3dAbstractSpecification/Part01/components/pointingsensor.html#X3DTouchSensorNode"/>
</xs:annotation>
<xs:complexContent mixed="false">
<xs:extension base="X3DPointingDeviceSensorNode">
<xs:attribute name="touchTime" type="SFTime"/>
</xs:extension>
</xs:complexContent>
</xs:complexType>
<xs:complexType name="X3DTriggerNode" abstract="true" mixed="false">
<xs:annotation>
<xs:appinfo/>
<xs:documentation source="http://www.web3d.org/x3d/specifications/ISO-IEC-19775-FDIS-X3dAbstractSpecification/Part01/components/utils.html#X3DTriggerNode"/>
</xs:annotation>
<xs:complexContent mixed="false">
<xs:extension base="X3DChildNode"/>
</xs:complexContent>
</xs:complexType>
<xs:complexType name="X3DUrlObject" abstract="true" mixed="false">
<xs:annotation>
<xs:appinfo> X3DUrlObject indicates that a node has content loaded from a URL and can be tracked via a LoadSensor.
</xs:appinfo>
<xs:documentation source="http://www.web3d.org/x3d/specifications/ISO-IEC-19775-FDIS-X3dAbstractSpecification/Part01/components/networking.html#X3DUrlObject"/>
</xs:annotation>
<xs:attribute name="url" type="MFString"/>
</xs:complexType>
<!-- still needed? -->
<xs:complexType name="ContainedNodeLabel" abstract="true" mixed="false">
<xs:annotation>
<xs:appinfo>ContainedNodeLabel tags help distinguish between the different uses of node siblings that might otherwise share the same node type.
These tags are labels in the scene graph, not instantiable nodes.
Because these tags do not need to be instantiated as scene graph nodes, they do not have DEF or USE values like X3DNodes.
ContainedNodeLabel tags are sometimes referred to as "wrapper tags." Note that ContainedNodeLabel tags are not needed when node siblings have different types. Thus "wrapper tags" are not needed for most child nodes in the VRML 97 node set.</xs:appinfo>
<xs:documentation/>
</xs:annotation>
<xs:complexContent mixed="false">
<xs:extension base="X3DNode">
<xs:attribute name="otherInterfaces" type="xs:string" fixed="org.w3c.dom.Element"/>
</xs:extension>
</xs:complexContent>
</xs:complexType>
<!-- doesn't Event need to be in abstract spec?
<xs:complexType name="Event" abstract="true" mixed="false">
<xs:annotation>
<xs:appinfo>An Event consists of a timeStampX3d and a field value. An event is a message sent from one node to another, connecting fields as defined by a ROUTE. Events signal external stimuli, changes to field values, and interactions between nodes. Note existence of related and equivalent org.w3c.dom.events.Event.timeStamp.</xs:appinfo>
<xs:documentation source="http://www.web3d.org/x3d/specifications/ISO-IEC-19775-FDIS-X3dAbstractSpecification/Part01/concepts.html#Eventmodel"/>
</xs:annotation>
</xs:complexType>
-->
<xs:complexType name="X3DPrototype&q