-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathMTConnectStreams_1.8.xsd
11692 lines (11689 loc) · 402 KB
/
MTConnectStreams_1.8.xsd
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'?>
<!--
Copyright (c) 2008-2019, AMT – The Association For Manufacturing Technology (“AMT”)
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
* Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in the
documentation and/or other materials provided with the distribution.
* Neither the name of the AMT nor the
names of its contributors may be used to endorse or promote products
derived from this software without specific prior written permission.
DISCLAIMER OF WARRANTY. ALL MTCONNECT MATERIALS AND SPECIFICATIONS PROVIDED
BY AMT, MTCONNECT OR ANY PARTICIPANT TO YOU OR ANY PARTY ARE PROVIDED "AS IS"
AND WITHOUT ANY WARRANTY OF ANY KIND. AMT, MTCONNECT, AND EACH OF THEIR
RESPECTIVE MEMBERS, OFFICERS, DIRECTORS, AFFILIATES, SPONSORS, AND AGENTS
(COLLECTIVELY, THE "AMT PARTIES") AND PARTICIPANTS MAKE NO REPRESENTATION OR
WARRANTY OF ANY KIND WHATSOEVER RELATING TO THESE MATERIALS, INCLUDING, WITHOUT
LIMITATION, ANY EXPRESS OR IMPLIED WARRANTY OF NONINFRINGEMENT,
MERCHANTABILITY, OR FITNESS FOR A PARTICULAR PURPOSE.
LIMITATION OF LIABILITY. IN NO EVENT SHALL AMT, MTCONNECT, ANY OTHER AMT
PARTY, OR ANY PARTICIPANT BE LIABLE FOR THE COST OF PROCURING SUBSTITUTE GOODS
OR SERVICES, LOST PROFITS, LOSS OF USE, LOSS OF DATA OR ANY INCIDENTAL,
CONSEQUENTIAL, INDIRECT, SPECIAL OR PUNITIVE DAMAGES OR OTHER DIRECT DAMAGES,
WHETHER UNDER CONTRACT, TORT, WARRANTY OR OTHERWISE, ARISING IN ANY WAY OUT OF
THIS AGREEMENT, USE OR INABILITY TO USE MTCONNECT MATERIALS, WHETHER OR NOT
SUCH PARTY HAD ADVANCE NOTICE OF THE POSSIBILITY OF SUCH DAMAGES.
-->
<xs:schema xmlns:xs='http://www.w3.org/2001/XMLSchema' xmlns='urn:mtconnect.org:MTConnectStreams:1.8' xmlns:mt='urn:mtconnect.org:MTConnectStreams:1.8' targetNamespace='urn:mtconnect.org:MTConnectStreams:1.8' elementFormDefault='qualified' attributeFormDefault='unqualified' xmlns:vc='http://www.w3.org/2007/XMLSchema-versioning' vc:minVersion='1.1'>
<xs:element name='MTConnectStreams' type='MTConnectStreamsType'>
<xs:annotation>
<xs:documentation>
The root node for MTConnect
</xs:documentation>
</xs:annotation>
</xs:element>
<xs:simpleType name='SenderType'>
<xs:annotation>
<xs:documentation>
The sender of the message
</xs:documentation>
</xs:annotation>
<xs:restriction base='xs:string'/>
</xs:simpleType>
<xs:simpleType name='CreationTimeType'>
<xs:annotation>
<xs:documentation>
The date and time the document was created
</xs:documentation>
</xs:annotation>
<xs:restriction base='xs:dateTime'/>
</xs:simpleType>
<xs:simpleType name='SequenceType'>
<xs:annotation>
<xs:documentation>
A sequence number
</xs:documentation>
</xs:annotation>
<xs:restriction base='xs:integer'>
<xs:minInclusive value='1'/>
<xs:maxExclusive value='18446744073709551615'/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name='TestIndicatorType'>
<xs:annotation>
<xs:documentation>
A debugging flag for testing.
</xs:documentation>
</xs:annotation>
<xs:restriction base='xs:boolean'/>
</xs:simpleType>
<xs:simpleType name='InstanceIdType'>
<xs:annotation>
<xs:documentation>
The instance number of the agent, used for fault tolerance
</xs:documentation>
</xs:annotation>
<xs:restriction base='xs:integer'>
<xs:minInclusive value='1'/>
<xs:maxExclusive value='18446744073709551615'/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name='BufferSizeType'>
<xs:annotation>
<xs:documentation>
The size of the agents buffer
</xs:documentation>
</xs:annotation>
<xs:restriction base='xs:integer'>
<xs:minInclusive value='1'/>
<xs:maxExclusive value='4294967295'/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name='TimestampType'>
<xs:annotation>
<xs:documentation>
The time the sample was reported
</xs:documentation>
</xs:annotation>
<xs:restriction base='xs:dateTime'/>
</xs:simpleType>
<xs:simpleType name='OccurrenceTimeType'>
<xs:annotation>
<xs:documentation>
The time a sample occurred
</xs:documentation>
</xs:annotation>
<xs:restriction base='xs:dateTime'/>
</xs:simpleType>
<xs:simpleType name='VersionType'>
<xs:annotation>
<xs:documentation>
A version number
</xs:documentation>
</xs:annotation>
<xs:restriction base='xs:NMTOKEN'/>
</xs:simpleType>
<xs:simpleType name='NameType'>
<xs:annotation>
<xs:documentation>
A short name for any element
</xs:documentation>
</xs:annotation>
<xs:restriction base='xs:string'/>
</xs:simpleType>
<xs:simpleType name='UuidType'>
<xs:annotation>
<xs:documentation>
A universally unique id that uniquely identifies the element for
it's entire life
</xs:documentation>
</xs:annotation>
<xs:restriction base='xs:string'/>
</xs:simpleType>
<xs:simpleType name='SerialNumberAttrType'>
<xs:annotation>
<xs:documentation>
A serial number for a piece of equipment
</xs:documentation>
</xs:annotation>
<xs:restriction base='xs:string'/>
</xs:simpleType>
<xs:simpleType name='ItemSourceType'>
<xs:annotation>
<xs:documentation>
The measurement source
</xs:documentation>
</xs:annotation>
<xs:restriction base='xs:string'/>
</xs:simpleType>
<xs:simpleType name='RateType'>
<xs:annotation>
<xs:documentation>
A sample rate in milliseconds per sample
</xs:documentation>
</xs:annotation>
<xs:restriction base='xs:float'/>
</xs:simpleType>
<xs:simpleType name='ComponentIdType'>
<xs:annotation>
<xs:documentation>
The id of the component (maps to the id from probe)
</xs:documentation>
</xs:annotation>
<xs:restriction base='xs:ID'/>
</xs:simpleType>
<xs:simpleType name='IDType'>
<xs:annotation>
<xs:documentation>
An identifier
</xs:documentation>
</xs:annotation>
<xs:restriction base='xs:ID'/>
</xs:simpleType>
<xs:simpleType name='SignificantDigitsValueType'>
<xs:annotation>
<xs:documentation>
The number significant digits
</xs:documentation>
</xs:annotation>
<xs:restriction base='xs:integer'/>
</xs:simpleType>
<xs:simpleType name='CompositionIdType'>
<xs:annotation>
<xs:documentation>
The item's reference to the Device model composition
</xs:documentation>
</xs:annotation>
<xs:restriction base='xs:IDREF'/>
</xs:simpleType>
<xs:simpleType name='DurationTimeType'>
<xs:annotation>
<xs:documentation>
A length of time in seconds
</xs:documentation>
</xs:annotation>
<xs:restriction base='xs:float'/>
</xs:simpleType>
<xs:simpleType name='RemovedType'>
<xs:annotation>
<xs:documentation>
A flag indicating the item has been removed
</xs:documentation>
</xs:annotation>
<xs:restriction base='xs:boolean'/>
</xs:simpleType>
<xs:simpleType name='KeyType'>
<xs:annotation>
<xs:documentation>
The key for adata set
</xs:documentation>
</xs:annotation>
<xs:restriction base='xs:NMTOKEN'/>
</xs:simpleType>
<xs:simpleType name='DeviceModelChangeTimeType'>
<xs:annotation>
<xs:documentation>
A timestamp in 8601 format of the last update of the Device information
for any device
</xs:documentation>
</xs:annotation>
<xs:restriction base='xs:dateTime'/>
</xs:simpleType>
<xs:simpleType name='AssetIdType'>
<xs:annotation>
<xs:documentation>
The unique id of the asset
</xs:documentation>
</xs:annotation>
<xs:restriction base='xs:string'/>
</xs:simpleType>
<xs:simpleType name='AssetAttrTypeType'>
<xs:annotation>
<xs:documentation>
An asset type
</xs:documentation>
</xs:annotation>
<xs:restriction base='xs:string'/>
</xs:simpleType>
<xs:simpleType name='AssetBufferSizeType'>
<xs:annotation>
<xs:documentation>
The maximum number of assets
</xs:documentation>
</xs:annotation>
<xs:restriction base='xs:integer'>
<xs:minInclusive value='1'/>
<xs:maxExclusive value='4294967295'/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name='AssetCountAttrType'>
<xs:annotation>
<xs:documentation>
The number of assets
</xs:documentation>
</xs:annotation>
<xs:restriction base='xs:integer'>
<xs:minInclusive value='0'/>
<xs:maxExclusive value='4294967295'/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name='FloatListValueType'>
<xs:annotation>
<xs:documentation>
Common floating point sample value
</xs:documentation>
</xs:annotation>
<xs:list>
<xs:simpleType>
<xs:restriction base='xs:float'/>
</xs:simpleType>
</xs:list>
</xs:simpleType>
<xs:simpleType name='ThreeSpaceValueType'>
<xs:annotation>
<xs:documentation>
A three dimensional value 'X Y Z' or 'A B C'
</xs:documentation>
</xs:annotation>
<xs:restriction base='FloatListValueType'>
<xs:maxLength value='3'/>
<xs:minLength value='3'/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name='DescriptionTextType'>
<xs:annotation>
<xs:documentation>
A description
</xs:documentation>
</xs:annotation>
<xs:restriction base='xs:string'/>
</xs:simpleType>
<xs:simpleType name='DataItemEnumExtType'>
<xs:annotation>
<xs:documentation>
Extended tyoe for The types of measurements available
</xs:documentation>
</xs:annotation>
<xs:restriction base='xs:string'>
<xs:pattern value='[a-ln-z][a-z]*:[A-Z_0-9]+'/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name='DataItemEnumEnum'>
<xs:annotation>
<xs:documentation>
The types of measurements available
</xs:documentation>
</xs:annotation>
<xs:restriction base='xs:string'>
<xs:enumeration value='ACCELERATION'>
<xs:annotation>
<xs:documentation>
Positive rate of change of velocity.
</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value='ACCUMULATED_TIME'>
<xs:annotation>
<xs:documentation>
The measurement of accumulated time for an activity or event.
</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value='AMPERAGE'>
<xs:annotation>
<xs:documentation>
**DEPRECATED** in *Version 1.6*. Replaced by `AMPERAGE_AC` and
`AMPERAGE_DC`. The measurement of electrical current.
</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value='ANGLE'>
<xs:annotation>
<xs:documentation>
The measurement of angular position.
</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value='ANGULAR_ACCELERATION'>
<xs:annotation>
<xs:documentation>
Positive rate of change of angular velocity.
</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value='ANGULAR_VELOCITY'>
<xs:annotation>
<xs:documentation>
The measurement of the rate of change of angular position.
</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value='AXIS_FEEDRATE'>
<xs:annotation>
<xs:documentation>
The measurement of the feedrate of a linear axis.
</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value='CAPACITY_FLUID'>
<xs:annotation>
<xs:documentation>
The fluid capacity of an object or container.
</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value='CAPACITY_SPATIAL'>
<xs:annotation>
<xs:documentation>
The geometric capacity of an object or container.
</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value='CLOCK_TIME'>
<xs:annotation>
<xs:documentation>
The value provided by a timing device at a specific point in time.
</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value='CONCENTRATION'>
<xs:annotation>
<xs:documentation>
The measurement of the percentage of one component within a mixture
of components
</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value='CONDUCTIVITY'>
<xs:annotation>
<xs:documentation>
The measurement of the ability of a material to conduct electricity.
</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value='CUTTING_SPEED'>
<xs:annotation>
<xs:documentation>
The speed difference (relative velocity) between the cutting
mechanism and the surface of the workpiece it is operating on.
</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value='DENSITY'>
<xs:annotation>
<xs:documentation>
The volumetric mass of a material per unit volume of that material.
</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value='DEPOSITION_ACCELERATION_VOLUMETRIC'>
<xs:annotation>
<xs:documentation>
The rate of change in spatial volume of material deposited in an
additive manufacturing process.
</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value='DEPOSITION_DENSITY'>
<xs:annotation>
<xs:documentation>
The density of the material deposited in an additive manufacturing
process per unit of volume.
</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value='DEPOSITION_MASS'>
<xs:annotation>
<xs:documentation>
The mass of the material deposited in an additive manufacturing
process.
</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value='DEPOSITION_RATE_VOLUMETRIC'>
<xs:annotation>
<xs:documentation>
The rate at which a spatial volume of material is deposited in an
additive manufacturing process.
</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value='DEPOSITION_VOLUME'>
<xs:annotation>
<xs:documentation>
The spatial volume of material to be deposited in an additive
manufacturing process.
</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value='DISPLACEMENT'>
<xs:annotation>
<xs:documentation>
The measurement of the change in position of an object.
</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value='ELECTRICAL_ENERGY'>
<xs:annotation>
<xs:documentation>
The value of the {{block(Wattage)}} used or generated by a component
over an interval of time.
</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value='EQUIPMENT_TIMER'>
<xs:annotation>
<xs:documentation>
The measurement of the amount of time a piece of equipment or a
sub-part of a piece of equipment has performed specific activities.
</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value='FILL_LEVEL'>
<xs:annotation>
<xs:documentation>
The measurement of the amount of a substance remaining compared to
the planned maximum amount of that substance.
</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value='FLOW'>
<xs:annotation>
<xs:documentation>
The measurement of the rate of flow of a fluid.
</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value='FREQUENCY'>
<xs:annotation>
<xs:documentation>
The measurement of the number of occurrences of a repeating event
per unit time.
</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value='GLOBAL_POSITION'>
<xs:annotation>
<xs:documentation>
**DEPRECATED** in Version 1.1
</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value='LENGTH'>
<xs:annotation>
<xs:documentation>
The measurement of the length of an object.
</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value='LEVEL'>
<xs:annotation>
<xs:documentation>
**DEPRECATED** in *Version 1.2*. See `FILL_LEVEL`. Represents the
level of a resource.
</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value='LINEAR_FORCE'>
<xs:annotation>
<xs:documentation>
A {{term(Force)}} applied to a mass in one direction only.
</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value='LOAD'>
<xs:annotation>
<xs:documentation>
The measurement of the actual versus the standard rating of a piece
of equipment.
</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value='MASS'>
<xs:annotation>
<xs:documentation>
The measurement of the mass of an object(s) or an amount of
material.
</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value='PATH_FEEDRATE'>
<xs:annotation>
<xs:documentation>
The measurement of the feedrate for the axes, or a single axis,
associated with a {{block(Path)}} component-a vector.
</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value='PATH_FEEDRATE_PER_REVOLUTION'>
<xs:annotation>
<xs:documentation>
The feedrate for the axes, or a single axis.
</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value='PATH_POSITION'>
<xs:annotation>
<xs:documentation>
A measured or calculated position of a control point associated with
a {{block(Controller)}} element, or {{block(Path)}} element if
provided, of a piece of equipment.
</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value='PH'>
<xs:annotation>
<xs:documentation>
A measure of the acidity or alkalinity of a solution.
</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value='POSITION'>
<xs:annotation>
<xs:documentation>
A measured or calculated position of a {{block(Component)}} element
as reported by a piece of equipment.
</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value='POWER_FACTOR'>
<xs:annotation>
<xs:documentation>
The measurement of the ratio of real power flowing to a load to the
apparent power in that AC circuit.
</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value='PRESSURE'>
<xs:annotation>
<xs:documentation>
The force per unit area measured relative to atmospheric pressure.
Commonly referred to as gauge pressure.
</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value='PROCESS_TIMER'>
<xs:annotation>
<xs:documentation>
The measurement of the amount of time a piece of equipment has
performed different types of activities associated with the process
being performed at that piece of equipment.
</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value='RESISTANCE'>
<xs:annotation>
<xs:documentation>
The measurement of the degree to which a substance opposes the
passage of an electric current.
</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value='ROTARY_VELOCITY'>
<xs:annotation>
<xs:documentation>
The measurement of the rotational speed of a rotary axis.
</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value='SOUND_LEVEL'>
<xs:annotation>
<xs:documentation>
The measurement of a sound level or sound pressure level relative to
atmospheric pressure.
</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value='SPINDLE_SPEED'>
<xs:annotation>
<xs:documentation>
**DEPRECATED** in *Version 1.2*. Replaced by `ROTARY_VELOCITY`. The
rotational speed of the rotary axis.
</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value='STRAIN'>
<xs:annotation>
<xs:documentation>
The measurement of the amount of deformation per unit length of an
object when a load is applied.
</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value='TEMPERATURE'>
<xs:annotation>
<xs:documentation>
The measurement of temperature.
</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value='TENSION'>
<xs:annotation>
<xs:documentation>
The measurement of a force that stretches or elongates an object.
</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value='TILT'>
<xs:annotation>
<xs:documentation>
The measurement of angular displacement.
</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value='TORQUE'>
<xs:annotation>
<xs:documentation>
The measurement of the turning force exerted on an object or by an
object.
</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value='VELOCITY'>
<xs:annotation>
<xs:documentation>
The measurement of the rate of change of position of a
{{block(Component)}}.
</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value='VISCOSITY'>
<xs:annotation>
<xs:documentation>
The measurement of a fluids resistance to flow.
</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value='VOLTAGE'>
<xs:annotation>
<xs:documentation>
**DEPRECATED** in *Version 1.6*. Replaced by `VOLTAGE_AC` and
`VOLTAGE_DC`. The measurement of electrical potential between two
points.
</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value='VOLT_AMPERE'>
<xs:annotation>
<xs:documentation>
The measurement of the apparent power in an electrical circuit,
equal to the product of root-mean-square (RMS) voltage and RMS
current (commonly referred to as VA).
</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value='VOLT_AMPERE_REACTIVE'>
<xs:annotation>
<xs:documentation>
The measurement of reactive power in an AC electrical circuit
(commonly referred to as VAR).
</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value='VOLUME_FLUID'>
<xs:annotation>
<xs:documentation>
The fluid volume of an object or container.
</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value='VOLUME_SPATIAL'>
<xs:annotation>
<xs:documentation>
The geometric volume of an object or container.
</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value='WATTAGE'>
<xs:annotation>
<xs:documentation>
The measurement of power flowing through or dissipated by an
electrical circuit or piece of equipment.
</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value='AMPERAGE_AC'>
<xs:annotation>
<xs:documentation>
The measurement of an electrical current that reverses direction at
regular short intervals.
</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value='AMPERAGE_DC'>
<xs:annotation>
<xs:documentation>
The measurement of an electric current flowing in one direction
only.
</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value='VOLTAGE_AC'>
<xs:annotation>
<xs:documentation>
The measurement of the electrical potential between two points in an
electrical circuit in which the current periodically reverses
direction.
</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value='VOLTAGE_DC'>
<xs:annotation>
<xs:documentation>
The measurement of the electrical potential between two points in an
electrical circuit in which the current is unidirectional.
</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value='X_DIMENSION'>
<xs:annotation>
<xs:documentation>
Measured dimension of an entity relative to the X direction of the
referenced coordinate system.
</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value='Y_DIMENSION'>
<xs:annotation>
<xs:documentation>
Measured dimension of an entity relative to the Y direction of the
referenced coordinate system.
</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value='Z_DIMENSION'>
<xs:annotation>
<xs:documentation>
Measured dimension of an entity relative to the Z direction of the
referenced coordinate system.
</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value='DIAMETER'>
<xs:annotation>
<xs:documentation>
The measured dimension of a diameter.
</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value='ORIENTATION'>
<xs:annotation>
<xs:documentation>
A measured or calculated orientation of a plane or vector relative
to a cartesian coordinate system.
</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value='HUMIDITY_RELATIVE'>
<xs:annotation>
<xs:documentation>
The amount of water vapor present expressed as a percent to reach
saturation at the same temperature.
</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value='HUMIDITY_ABSOLUTE'>
<xs:annotation>
<xs:documentation>
The amount of water vapor expressed in grams per cubic meter.
</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value='HUMIDITY_SPECIFIC'>
<xs:annotation>
<xs:documentation>
The ratio of the water vapor present over the total weight of the
water vapor and air present expressed as a percent.
</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value='OBSERVATION_UPDATE_RATE'>
<xs:annotation>
<xs:documentation>
The average rate of change of values for data items in the MTConnect
streams. The average is computed over a rolling window defined by
the implementation.
</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value='ASSET_UPDATE_RATE'>
<xs:annotation>
<xs:documentation>
The average rate of change of values for assets in the MTConnect
streams. The average is computed over a rolling window defined by
the implementation.
</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value='PRESSURIZATION_RATE'>
<xs:annotation>
<xs:documentation>
The change of pressure per unit time.
</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value='DECELERATION'>
<xs:annotation>
<xs:documentation>
Negative rate of change of velocity.
</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value='ANGULAR_DECELERATION'>
<xs:annotation>
<xs:documentation>
Negative rate of change of angular velocity.
</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value='PRESSURE_ABSOLUTE'>
<xs:annotation>
<xs:documentation>
The force per unit area measured relative to a vacuum.
</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value='ACTIVE_AXES'>
<xs:annotation>
<xs:documentation>
The set of axes currently associated with a {{block(Path)}} or
{{block(Controller)}} {{term(Structural Element)}}.
</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value='ACTUATOR_STATE'>
<xs:annotation>
<xs:documentation>
Represents the operational state of an apparatus for moving or
controlling a mechanism or system.
</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value='ALARM'>
<xs:annotation>
<xs:documentation>
**DEPRECATED:** Replaced with {{block(CONDITION)}} category data
items in Version 1.1.0.
</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value='ASSET_CHANGED'>
<xs:annotation>
<xs:documentation>
The {{block(assetId)}} of the asset that has been added or changed.
</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value='ASSET_REMOVED'>
<xs:annotation>
<xs:documentation>
The {{block(assetId)}} of the asset that has been removed.
</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value='AVAILABILITY'>
<xs:annotation>
<xs:documentation>
Represents the {{term(Agent)}}'s ability to communicate with
the data source.
</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value='AXIS_COUPLING'>
<xs:annotation>
<xs:documentation>
Describes the way the axes will be associated to each other. This is
used in conjunction with {{block(COUPLED_AXES)}} to indicate the way
they are interacting.
</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value='AXIS_FEEDRATE_OVERRIDE'>
<xs:annotation>
<xs:documentation>
The value of a signal or calculation issued to adjust the feedrate
of an individual linear type axis.
</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value='AXIS_INTERLOCK'>
<xs:annotation>
<xs:documentation>
An indicator of the state of the axis lockout function when power
has been removed and the axis is allowed to move freely.
</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value='AXIS_STATE'>
<xs:annotation>
<xs:documentation>
An indicator of the controlled state of a {{block(Linear)}} or
{{block(Rotary)}} component representing an axis.
</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value='BLOCK'>
<xs:annotation>
<xs:documentation>
The line of code or command being executed by a
{{block(Controller)}} {{term(Structural Element)}}.
</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value='BLOCK_COUNT'>
<xs:annotation>
<xs:documentation>
The total count of the number of blocks of program code that have
been executed since execution started.
</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value='CHUCK_INTERLOCK'>
<xs:annotation>
<xs:documentation>
An indication of the operational condition of the interlock function
for an electronically controller chuck.
</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value='CHUCK_STATE'>
<xs:annotation>
<xs:documentation>
An indication of the operating state of a mechanism that holds a
part or stock material during a manufacturing process. It may also
represent a mechanism that holds any other mechanism in place within
a piece of equipment.
</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value='CLOSE_CHUCK'>
<xs:annotation>
<xs:documentation>
Service to close a chuck.
</xs:documentation>