-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcollada_schema_1_4
11046 lines (11043 loc) · 405 KB
/
collada_schema_1_4
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0" encoding="utf-8"?>
<xs:schema xmlns="http://www.collada.org/2005/11/COLLADASchema" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" targetNamespace="http://www.collada.org/2005/11/COLLADASchema" elementFormDefault="qualified" version="1.4.1" xml:lang="EN" xsi:schemaLocation="http://www.w3.org/2001/XMLSchema http://www.w3.org/2001/XMLSchema.xsd">
<!-- BEGIN COLLADA Format Schema -->
<xs:annotation>
<xs:documentation>
COLLADA Schema
Version 1.4.1 (June 23, 2006)
Copyright (C) 2005, 2006 The Khronos Group Inc., Sony Computer Entertainment Inc.
All Rights Reserved.
Khronos is a trademark of The Khronos Group Inc.
COLLADA is a trademark of Sony Computer Entertainment Inc. used by permission by Khronos.
Note that this software document is distributed on an "AS IS" basis, with ALL EXPRESS AND
IMPLIED WARRANTIES AND CONDITIONS DISCLAIMED, INCLUDING, WITHOUT LIMITATION, ANY IMPLIED
WARRANTIES AND CONDITIONS OF MERCHANTABILITY, SATISFACTORY QUALITY, FITNESS FOR A PARTICULAR
PURPOSE, AND NON-INFRINGEMENT.
</xs:documentation>
</xs:annotation>
<!-- import needed for xml:base attribute-->
<xs:import namespace="http://www.w3.org/XML/1998/namespace" schemaLocation="http://www.w3.org/2001/03/xml.xsd"/>
<!-- Root Element -->
<xs:element name="COLLADA">
<xs:annotation>
<xs:appinfo>enable-xmlns</xs:appinfo>
<xs:documentation>
The COLLADA element declares the root of the document that comprises some of the content
in the COLLADA schema.
</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:sequence>
<xs:element ref="asset">
<xs:annotation>
<xs:documentation>
The COLLADA element must contain an asset element.
</xs:documentation>
</xs:annotation>
</xs:element>
<xs:choice minOccurs="0" maxOccurs="unbounded">
<xs:element ref="library_animations">
<xs:annotation>
<xs:documentation>
The COLLADA element may contain any number of library_animations elements.
</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element ref="library_animation_clips">
<xs:annotation>
<xs:documentation>
The COLLADA element may contain any number of library_animation_clips elements.
</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element ref="library_cameras">
<xs:annotation>
<xs:documentation>
The COLLADA element may contain any number of library_cameras elements.
</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element ref="library_controllers">
<xs:annotation>
<xs:documentation>
The COLLADA element may contain any number of library_controllerss elements.
</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element ref="library_geometries">
<xs:annotation>
<xs:documentation>
The COLLADA element may contain any number of library_geometriess elements.
</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element ref="library_effects">
<xs:annotation>
<xs:documentation>
The COLLADA element may contain any number of library_effects elements.
</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element ref="library_force_fields">
<xs:annotation>
<xs:documentation>
The COLLADA element may contain any number of library_force_fields elements.
</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element ref="library_images">
<xs:annotation>
<xs:documentation>
The COLLADA element may contain any number of library_images elements.
</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element ref="library_lights">
<xs:annotation>
<xs:documentation>
The COLLADA element may contain any number of library_lights elements.
</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element ref="library_materials">
<xs:annotation>
<xs:documentation>
The COLLADA element may contain any number of library_materials elements.
</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element ref="library_nodes">
<xs:annotation>
<xs:documentation>
The COLLADA element may contain any number of library_nodes elements.
</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element ref="library_physics_materials">
<xs:annotation>
<xs:documentation>
The COLLADA element may contain any number of library_materials elements.
</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element ref="library_physics_models">
<xs:annotation>
<xs:documentation>
The COLLADA element may contain any number of library_physics_models elements.
</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element ref="library_physics_scenes">
<xs:annotation>
<xs:documentation>
The COLLADA element may contain any number of library_physics_scenes elements.
</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element ref="library_visual_scenes">
<xs:annotation>
<xs:documentation>
The COLLADA element may contain any number of library_visual_scenes elements.
</xs:documentation>
</xs:annotation>
</xs:element>
</xs:choice>
<xs:element name="scene" minOccurs="0">
<xs:annotation>
<xs:documentation>
The scene embodies the entire set of information that can be visualized from the
contents of a COLLADA resource. The scene element declares the base of the scene
hierarchy or scene graph. The scene contains elements that comprise much of the
visual and transformational information content as created by the authoring tools.
</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:sequence>
<xs:element name="instance_physics_scene" type="InstanceWithExtra" minOccurs="0" maxOccurs="unbounded">
<xs:annotation>
<xs:documentation>
The instance_physics_scene element declares the instantiation of a COLLADA physics_scene resource.
The instance_physics_scene element may appear any number of times.
</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="instance_visual_scene" type="InstanceWithExtra" minOccurs="0">
<xs:annotation>
<xs:documentation>
The instance_visual_scene element declares the instantiation of a COLLADA visual_scene resource.
The instance_visual_scene element may only appear once.
</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element ref="extra" minOccurs="0" maxOccurs="unbounded">
<xs:annotation>
<xs:documentation>
The extra element may appear any number of times.
</xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element ref="extra" minOccurs="0" maxOccurs="unbounded">
<xs:annotation>
<xs:documentation>
The extra element may appear any number of times.
</xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
<xs:attribute name="version" type="VersionType" use="required">
<xs:annotation>
<xs:documentation>
The version attribute is the COLLADA schema revision with which the instance document
conforms. Required Attribute.
</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute ref="xml:base">
<xs:annotation>
<xs:documentation>
The xml:base attribute allows you to define the base URI for this COLLADA document. See
http://www.w3.org/TR/xmlbase/ for more information.
</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:complexType>
</xs:element>
<!-- Simple Types -->
<!-- Primitive Types -->
<xs:simpleType name="bool">
<xs:restriction base="xs:boolean"/>
</xs:simpleType>
<xs:simpleType name="dateTime">
<xs:restriction base="xs:dateTime"/>
</xs:simpleType>
<xs:simpleType name="float">
<xs:restriction base="xs:double"/>
</xs:simpleType>
<xs:simpleType name="int">
<xs:restriction base="xs:long"/>
</xs:simpleType>
<xs:simpleType name="Name">
<xs:restriction base="xs:Name"/>
</xs:simpleType>
<xs:simpleType name="string">
<xs:restriction base="xs:string"/>
</xs:simpleType>
<xs:simpleType name="token">
<xs:restriction base="xs:token"/>
</xs:simpleType>
<xs:simpleType name="uint">
<xs:restriction base="xs:unsignedLong"/>
</xs:simpleType>
<!-- Container Types -->
<xs:simpleType name="ListOfBools">
<xs:list itemType="bool"/>
</xs:simpleType>
<xs:simpleType name="ListOfFloats">
<xs:list itemType="float"/>
</xs:simpleType>
<xs:simpleType name="ListOfHexBinary">
<xs:list itemType="xs:hexBinary"/>
</xs:simpleType>
<xs:simpleType name="ListOfInts">
<xs:list itemType="int"/>
</xs:simpleType>
<xs:simpleType name="ListOfNames">
<xs:list itemType="Name"/>
</xs:simpleType>
<xs:simpleType name="ListOfTokens">
<xs:list itemType="token"/>
</xs:simpleType>
<xs:simpleType name="ListOfUInts">
<xs:list itemType="uint"/>
</xs:simpleType>
<!-- Aggregate Types -->
<xs:simpleType name="bool2">
<xs:restriction base="ListOfBools">
<xs:minLength value="2"/>
<xs:maxLength value="2"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="bool3">
<xs:restriction base="ListOfBools">
<xs:minLength value="3"/>
<xs:maxLength value="3"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="bool4">
<xs:restriction base="ListOfBools">
<xs:minLength value="4"/>
<xs:maxLength value="4"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="float2">
<xs:restriction base="ListOfFloats">
<xs:minLength value="2"/>
<xs:maxLength value="2"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="float3">
<xs:restriction base="ListOfFloats">
<xs:minLength value="3"/>
<xs:maxLength value="3"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="float4">
<xs:restriction base="ListOfFloats">
<xs:minLength value="4"/>
<xs:maxLength value="4"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="float7">
<xs:restriction base="ListOfFloats">
<xs:minLength value="7"/>
<xs:maxLength value="7"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="float2x2">
<xs:restriction base="ListOfFloats">
<xs:minLength value="4"/>
<xs:maxLength value="4"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="float3x3">
<xs:restriction base="ListOfFloats">
<xs:minLength value="9"/>
<xs:maxLength value="9"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="float4x4">
<xs:restriction base="ListOfFloats">
<xs:minLength value="16"/>
<xs:maxLength value="16"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="float2x3">
<xs:restriction base="ListOfFloats">
<xs:minLength value="6"/>
<xs:maxLength value="6"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="float2x4">
<xs:restriction base="ListOfFloats">
<xs:minLength value="8"/>
<xs:maxLength value="8"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="float3x2">
<xs:restriction base="ListOfFloats">
<xs:minLength value="6"/>
<xs:maxLength value="6"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="float3x4">
<xs:restriction base="ListOfFloats">
<xs:minLength value="12"/>
<xs:maxLength value="12"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="float4x2">
<xs:restriction base="ListOfFloats">
<xs:minLength value="8"/>
<xs:maxLength value="8"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="float4x3">
<xs:restriction base="ListOfFloats">
<xs:minLength value="12"/>
<xs:maxLength value="12"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="int2">
<xs:restriction base="ListOfInts">
<xs:minLength value="2"/>
<xs:maxLength value="2"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="int3">
<xs:restriction base="ListOfInts">
<xs:minLength value="3"/>
<xs:maxLength value="3"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="int4">
<xs:restriction base="ListOfInts">
<xs:minLength value="4"/>
<xs:maxLength value="4"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="int2x2">
<xs:restriction base="ListOfInts">
<xs:minLength value="4"/>
<xs:maxLength value="4"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="int3x3">
<xs:restriction base="ListOfInts">
<xs:minLength value="9"/>
<xs:maxLength value="9"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="int4x4">
<xs:restriction base="ListOfInts">
<xs:minLength value="16"/>
<xs:maxLength value="16"/>
</xs:restriction>
</xs:simpleType>
<!-- Basic Enumerations -->
<xs:simpleType name="MorphMethodType">
<xs:annotation>
<xs:documentation>
An enumuerated type specifying the acceptable morph methods.
</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:string">
<xs:enumeration value="NORMALIZED"/>
<xs:enumeration value="RELATIVE"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="NodeType">
<xs:annotation>
<xs:documentation>
An enumerated type specifying the acceptable node types.
</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:string">
<xs:enumeration value="JOINT"/>
<xs:enumeration value="NODE"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="URIFragmentType">
<xs:annotation>
<xs:documentation>
This type is used for URI reference which can only reference a resource declared within it's same document.
</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:string">
<xs:pattern value="(#(.*))"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="UpAxisType">
<xs:annotation>
<xs:documentation>
An enumerated type specifying the acceptable up-axis values.
</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:string">
<xs:enumeration value="X_UP"/>
<xs:enumeration value="Y_UP"/>
<xs:enumeration value="Z_UP"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="VersionType">
<xs:annotation>
<xs:documentation>
An enumerated type specifying the acceptable document versions.
</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:string">
<xs:enumeration value="1.4.0"/>
<xs:enumeration value="1.4.1"/>
</xs:restriction>
</xs:simpleType>
<!-- Complex Types -->
<xs:complexType name="InputGlobal">
<xs:annotation>
<xs:documentation>
The InputGlobal type is used to represent inputs that can reference external resources.
</xs:documentation>
</xs:annotation>
<xs:attribute name="semantic" type="xs:NMTOKEN" use="required">
<xs:annotation>
<xs:documentation>
The semantic attribute is the user-defined meaning of the input connection. Required attribute.
</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="source" type="xs:anyURI" use="required">
<xs:annotation>
<xs:documentation>
The source attribute indicates the location of the data source. Required attribute.
</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:complexType>
<xs:complexType name="InputLocal">
<xs:annotation>
<xs:documentation>
The InputLocal type is used to represent inputs that can only reference resources declared in the same document.
</xs:documentation>
</xs:annotation>
<xs:attribute name="semantic" type="xs:NMTOKEN" use="required">
<xs:annotation>
<xs:documentation>
The semantic attribute is the user-defined meaning of the input connection. Required attribute.
</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="source" type="URIFragmentType" use="required">
<xs:annotation>
<xs:documentation>
The source attribute indicates the location of the data source. Required attribute.
</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:complexType>
<xs:complexType name="InputLocalOffset">
<xs:annotation>
<xs:documentation>
The InputLocalOffset type is used to represent indexed inputs that can only reference resources declared in the same document.
</xs:documentation>
</xs:annotation>
<xs:attribute name="offset" type="uint" use="required">
<xs:annotation>
<xs:documentation>
The offset attribute represents the offset into the list of indices. If two input elements share
the same offset, they will be indexed the same. This works as a simple form of compression for the
list of indices as well as defining the order the inputs should be used in. Required attribute.
</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="semantic" type="xs:NMTOKEN" use="required">
<xs:annotation>
<xs:documentation>
The semantic attribute is the user-defined meaning of the input connection. Required attribute.
</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="source" type="URIFragmentType" use="required">
<xs:annotation>
<xs:documentation>
The source attribute indicates the location of the data source. Required attribute.
</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="set" type="uint">
<xs:annotation>
<xs:documentation>
The set attribute indicates which inputs should be grouped together as a single set. This is helpful
when multiple inputs share the same semantics.
</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:complexType>
<xs:complexType name="InstanceWithExtra">
<xs:annotation>
<xs:documentation>
The InstanceWithExtra type is used for all generic instance elements. A generic instance element
is one which does not have any specific child elements declared.
</xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element ref="extra" minOccurs="0" maxOccurs="unbounded">
<xs:annotation>
<xs:documentation>
The extra element may occur any number of times.
</xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
<xs:attribute name="url" type="xs:anyURI" use="required">
<xs:annotation>
<xs:documentation>
The url attribute refers to resource to instantiate. This may refer to a local resource using a
relative URL fragment identifier that begins with the “#” character. The url attribute may refer
to an external resource using an absolute or relative URL.
</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="sid" type="xs:NCName">
<xs:annotation>
<xs:documentation>
The sid attribute is a text string value containing the sub-identifier of this element. This
value must be unique within the scope of the parent element. Optional attribute.
</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="name" type="xs:NCName">
<xs:annotation>
<xs:documentation>
The name attribute is the text string name of this element. Optional attribute.
</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:complexType>
<xs:complexType name="TargetableFloat">
<xs:annotation>
<xs:documentation>
The TargetableFloat type is used to represent elements which contain a single float value which can
be targeted for animation.
</xs:documentation>
</xs:annotation>
<xs:simpleContent>
<xs:extension base="float">
<xs:attribute name="sid" type="xs:NCName">
<xs:annotation>
<xs:documentation>
The sid attribute is a text string value containing the sub-identifier of this element. This
value must be unique within the scope of the parent element. Optional attribute.
</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:extension>
</xs:simpleContent>
</xs:complexType>
<xs:complexType name="TargetableFloat3">
<xs:annotation>
<xs:documentation>
The TargetableFloat3 type is used to represent elements which contain a float3 value which can
be targeted for animation.
</xs:documentation>
</xs:annotation>
<xs:simpleContent>
<xs:extension base="float3">
<xs:attribute name="sid" type="xs:NCName">
<xs:annotation>
<xs:documentation>
The sid attribute is a text string value containing the sub-identifier of this element.
This value must be unique within the scope of the parent element. Optional attribute.
</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:extension>
</xs:simpleContent>
</xs:complexType>
<!--Typed Array Elements-->
<xs:element name="IDREF_array">
<xs:annotation>
<xs:documentation>
The IDREF_array element declares the storage for a homogenous array of ID reference values.
</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:simpleContent>
<xs:extension base="xs:IDREFS">
<xs:attribute name="id" type="xs:ID">
<xs:annotation>
<xs:documentation>
The id attribute is a text string containing the unique identifier of this element. This value
must be unique within the instance document. Optional attribute.
</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="name" type="xs:NCName">
<xs:annotation>
<xs:documentation>
The name attribute is the text string name of this element. Optional attribute.
</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="count" type="uint" use="required">
<xs:annotation>
<xs:documentation>
The count attribute indicates the number of values in the array. Required attribute.
</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:extension>
</xs:simpleContent>
</xs:complexType>
</xs:element>
<xs:element name="Name_array">
<xs:annotation>
<xs:documentation>
The Name_array element declares the storage for a homogenous array of Name string values.
</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:simpleContent>
<xs:extension base="ListOfNames">
<xs:attribute name="id" type="xs:ID">
<xs:annotation>
<xs:documentation>
The id attribute is a text string containing the unique identifier of this element.
This value must be unique within the instance document. Optional attribute.
</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="name" type="xs:NCName">
<xs:annotation>
<xs:documentation>
The name attribute is the text string name of this element. Optional attribute.
</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="count" type="uint" use="required">
<xs:annotation>
<xs:documentation>
The count attribute indicates the number of values in the array. Required attribute.
</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:extension>
</xs:simpleContent>
</xs:complexType>
</xs:element>
<xs:element name="bool_array">
<xs:annotation>
<xs:documentation>
The bool_array element declares the storage for a homogenous array of boolean values.
</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:simpleContent>
<xs:extension base="ListOfBools">
<xs:attribute name="id" type="xs:ID">
<xs:annotation>
<xs:documentation>
The id attribute is a text string containing the unique identifier of this element.
This value must be unique within the instance document. Optional attribute.
</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="name" type="xs:NCName">
<xs:annotation>
<xs:documentation>
The name attribute is the text string name of this element. Optional attribute.
</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="count" type="uint" use="required">
<xs:annotation>
<xs:documentation>
The count attribute indicates the number of values in the array. Required attribute.
</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:extension>
</xs:simpleContent>
</xs:complexType>
</xs:element>
<xs:element name="float_array">
<xs:annotation>
<xs:documentation>
The float_array element declares the storage for a homogenous array of floating point values.
</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:simpleContent>
<xs:extension base="ListOfFloats">
<xs:attribute name="id" type="xs:ID">
<xs:annotation>
<xs:documentation>
The id attribute is a text string containing the unique identifier of this element. This value
must be unique within the instance document. Optional attribute.
</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="name" type="xs:NCName">
<xs:annotation>
<xs:documentation>
The name attribute is the text string name of this element. Optional attribute.
</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="count" type="uint" use="required">
<xs:annotation>
<xs:documentation>
The count attribute indicates the number of values in the array. Required attribute.
</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="digits" type="xs:short" default="6">
<xs:annotation>
<xs:documentation>
The digits attribute indicates the number of significant decimal digits of the float values that
can be contained in the array. The default value is 6. Optional attribute.
</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="magnitude" type="xs:short" default="38">
<xs:annotation>
<xs:documentation>
The magnitude attribute indicates the largest exponent of the float values that can be contained
in the array. The default value is 38. Optional attribute.
</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:extension>
</xs:simpleContent>
</xs:complexType>
</xs:element>
<xs:element name="int_array">
<xs:annotation>
<xs:documentation>
The int_array element declares the storage for a homogenous array of integer values.
</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:simpleContent>
<xs:extension base="ListOfInts">
<xs:attribute name="id" type="xs:ID">
<xs:annotation>
<xs:documentation>
The id attribute is a text string containing the unique identifier of this element.
This value must be unique within the instance document. Optional attribute.
</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="name" type="xs:NCName">
<xs:annotation>
<xs:documentation>
The name attribute is the text string name of this element. Optional attribute.
</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="count" type="uint" use="required">
<xs:annotation>
<xs:documentation>
The count attribute indicates the number of values in the array. Required attribute.
</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="minInclusive" type="xs:integer" default="-2147483648">
<xs:annotation>
<xs:documentation>
The minInclusive attribute indicates the smallest integer value that can be contained in
the array. The default value is –2147483648. Optional attribute.
</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="maxInclusive" type="xs:integer" default="2147483647">
<xs:annotation>
<xs:documentation>
The maxInclusive attribute indicates the largest integer value that can be contained in
the array. The default value is 2147483647. Optional attribute.
</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:extension>
</xs:simpleContent>
</xs:complexType>
</xs:element>
<!-- Dataflow Elements -->
<xs:element name="accessor">
<xs:annotation>
<xs:documentation>
The accessor element declares an access pattern to one of the array elements: float_array,
int_array, Name_array, bool_array, and IDREF_array. The accessor element describes access
to arrays that are organized in either an interleaved or non-interleaved manner, depending
on the offset and stride attributes.
</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:sequence>
<xs:element ref="param" minOccurs="0" maxOccurs="unbounded">
<xs:annotation>
<xs:documentation>
The accessor element may have any number of param elements.
</xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
<xs:attribute name="count" type="uint" use="required">
<xs:annotation>
<xs:documentation>
The count attribute indicates the number of times the array is accessed. Required attribute.
</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="offset" type="uint" default="0">
<xs:annotation>
<xs:documentation>
The offset attribute indicates the index of the first value to be read from the array.
The default value is 0. Optional attribute.
</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="source" type="xs:anyURI">
<xs:annotation>
<xs:documentation>
The source attribute indicates the location of the array to access using a URL expression. Required attribute.
</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="stride" type="uint" default="1">
<xs:annotation>
<xs:documentation>
The stride attribute indicates number of values to be considered a unit during each access to
the array. The default value is 1, indicating that a single value is accessed. Optional attribute.
</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:complexType>
</xs:element>
<xs:element name="param">
<xs:annotation>
<xs:documentation>
The param element declares parametric information regarding its parent element.
</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:simpleContent>
<xs:extension base="xs:string">
<xs:attribute name="name" type="xs:NCName">
<xs:annotation>
<xs:documentation>
The name attribute is the text string name of this element. Optional attribute.
</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="sid" type="xs:NCName">
<xs:annotation>
<xs:documentation>
The sid attribute is a text string value containing the sub-identifier of this element.
This value must be unique within the scope of the parent element. Optional attribute.
</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="semantic" type="xs:NMTOKEN">
<xs:annotation>
<xs:documentation>
The semantic attribute is the user-defined meaning of the parameter. Optional attribute.
</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="type" type="xs:NMTOKEN" use="required">
<xs:annotation>
<xs:documentation>
The type attribute indicates the type of the value data. This text string must be understood
by the application. Required attribute.
</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:extension>
</xs:simpleContent>
</xs:complexType>
</xs:element>
<xs:element name="source">
<xs:annotation>
<xs:documentation>
The source element declares a data repository that provides values according to the semantics of an
input element that refers to it.
</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:sequence>
<xs:element ref="asset" minOccurs="0">
<xs:annotation>
<xs:documentation>
The source element may contain an asset element.
</xs:documentation>
</xs:annotation>
</xs:element>
<xs:choice minOccurs="0">
<xs:element ref="IDREF_array">
<xs:annotation>
<xs:documentation>
The source element may contain an IDREF_array.
</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element ref="Name_array">
<xs:annotation>
<xs:documentation>
The source element may contain a Name_array.
</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element ref="bool_array">
<xs:annotation>
<xs:documentation>
The source element may contain a bool_array.
</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element ref="float_array">
<xs:annotation>
<xs:documentation>
The source element may contain a float_array.
</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element ref="int_array">
<xs:annotation>
<xs:documentation>
The source element may contain an int_array.
</xs:documentation>
</xs:annotation>
</xs:element>
</xs:choice>
<xs:element name="technique_common" minOccurs="0">
<xs:annotation>
<xs:documentation>
The technique common specifies the common method for accessing this source element's data.
</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:sequence>
<xs:element ref="accessor">
<xs:annotation>
<xs:documentation>
The source's technique_common must have one and only one accessor.
</xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element ref="technique" minOccurs="0" maxOccurs="unbounded">
<xs:annotation>
<xs:documentation>
This element may contain any number of non-common profile techniques.
</xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
<xs:attribute name="id" type="xs:ID" use="required">
<xs:annotation>
<xs:documentation>
The id attribute is a text string containing the unique identifier of this element.
This value must be unique within the instance document. Required attribute.
</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="name" type="xs:NCName">