-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathDictionary_diggs.xsd
More file actions
1068 lines (1066 loc) · 54.1 KB
/
Dictionary_diggs.xsd
File metadata and controls
1068 lines (1066 loc) · 54.1 KB
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"?>
<schema xmlns="http://www.w3.org/2001/XMLSchema" xmlns:diggs="http://diggsml.org/schemas/3"
xmlns:gml="http://www.opengis.net/gml/3.2"
xmlns:vc="http://www.w3.org/2007/XMLSchema-versioning" vc:maxVersion="1.1" vc:minVersion="1.0"
elementFormDefault="qualified" targetNamespace="http://diggsml.org/schemas/3" version="3.0.0">
<import namespace="http://www.opengis.net/gml/3.2" schemaLocation="gml3.2Profile_diggs.xsd"/>
<element name="Definition" substitutionGroup="gml:Definition" abstract="false"
type="diggs:DefinitionType">
<annotation>
<documentation>The definition property.</documentation>
</annotation>
</element>
<complexType name="DefinitionBaseType">
<annotation>
<documentation>Restricted type based on DefinitionType. Constrains DefinitionType with 4 element(s) for structured definition base type data.</documentation>
</annotation>
<complexContent>
<restriction base="gml:DefinitionType">
<sequence>
<element minOccurs="1" ref="gml:description"/>
<element ref="gml:identifier"/>
<element maxOccurs="unbounded" minOccurs="1" ref="gml:name"/>
<element minOccurs="0" ref="gml:remarks"/>
</sequence>
<attribute ref="gml:id" use="required"/>
</restriction>
</complexContent>
</complexType>
<complexType name="DefinitionType">
<annotation>
<documentation>Extended type based on DefinitionBaseType. Adds elements for definition type definition.</documentation>
</annotation>
<complexContent>
<extension base="diggs:DefinitionBaseType">
<sequence>
<element minOccurs="0" name="dataType" type="diggs:DataTypeEnumType">
<annotation>
<documentation>The data type of the property, eg. integer, string, etc.
From an enumerated list</documentation>
</annotation>
</element>
<element minOccurs="0" name="quantityClass"
type="diggs:UnifiedQuantityClassEnumType">
<annotation>
<documentation>The type or classification of the unit of measure for
properties that have numeric values. From an enumerated
list.</documentation>
</annotation>
</element>
<element minOccurs="0" name="authority" type="string">
<annotation>
<documentation>Name of the organization or authority that controls the
term</documentation>
</annotation>
</element>
<element minOccurs="0" name="reference" type="anyURI">
<annotation>
<documentation>A reference for the code definition. as in an online registry</documentation>
</annotation>
</element>
<element maxOccurs="1" minOccurs="0" name="occurrences"
type="diggs:OccurrenceArrayPropertyType">
<annotation>
<documentation>A property containing one or more Occurrence objects, which hold XPATH locations for the element that may contain the identifier value and any element (and optionally an element value) that must be present for the identifier value to be valid.</documentation>
</annotation>
</element>
</sequence>
</extension>
</complexContent>
</complexType>
<element name="Occurrence" type="diggs:OccurrenceType">
<annotation>
<documentation>The occurrence property.</documentation>
</annotation>
</element>
<complexType name="OccurrenceArrayPropertyType">
<annotation>
<documentation>Property type for occurrence array references. Used to wrap occurrence array objects or references in properties.</documentation>
</annotation>
<sequence maxOccurs="unbounded" minOccurs="1">
<element ref="diggs:Occurrence"/>
</sequence>
</complexType>
<complexType name="OccurrenceType">
<annotation>
<documentation>Type defining occurrence type structure and content.</documentation>
</annotation>
<sequence>
<element name="sourceElementXpath" type="string">
<annotation>
<documentation>An XPATH string identifying the element within an instance where the identifier is an allowable value.</documentation>
</annotation>
</element>
<element minOccurs="0" name="conditionalElementXpath" type="string">
<annotation>
<documentation>An XPATH identifying an element(and potential element value) that must be present for the identifier to be validly used.
</documentation>
</annotation>
</element>
</sequence>
</complexType>
<simpleType name="QuantityClassEmlEnumType">
<annotation>
<documentation>Enumeration of Energistics quantity classes from the Unit of Measure Dictionary. Each quantity class represents a physical dimension or dimensionless ratio that can be measured. The quantity class defines what is being measured (e.g., length, pressure, volume per time), while units within that class define how it is measured (e.g., metres, feet, inches for length). This enumeration provides a comprehensive list of all standard quantity classes defined in the Energistics Unit Dictionary, including fundamental SI quantities, derived quantities, dimensionless ratios, and specialized petroleum/geotechnical quantities.</documentation>
</annotation>
<restriction base="string">
<enumeration value="volume flow rate per volume flow rate">
<annotation>
<documentation>volume flow rate per volume flow rate (base unit: (m3/s)/(m3/s))</documentation>
</annotation>
</enumeration>
<enumeration value="dimensionless">
<annotation>
<documentation>dimensionless (base unit: Euc)</documentation>
</annotation>
</enumeration>
<enumeration value="force per force">
<annotation>
<documentation>force per force (base unit: N/N)</documentation>
</annotation>
</enumeration>
<enumeration value="power per power">
<annotation>
<documentation>power per power (base unit: W/W)</documentation>
</annotation>
</enumeration>
<enumeration value="digital storage">
<annotation>
<documentation>digital storage (base unit: bit)</documentation>
</annotation>
</enumeration>
<enumeration value="mass per mass">
<annotation>
<documentation>mass per mass (base unit: kg/kg)</documentation>
</annotation>
</enumeration>
<enumeration value="length per length">
<annotation>
<documentation>length per length (base unit: m/m)</documentation>
</annotation>
</enumeration>
<enumeration value="area per area">
<annotation>
<documentation>area per area (base unit: m2/m2)</documentation>
</annotation>
</enumeration>
<enumeration value="volume per volume">
<annotation>
<documentation>volume per volume (base unit: m3/m3)</documentation>
</annotation>
</enumeration>
<enumeration value="amount of substance per amount of substance">
<annotation>
<documentation>amount of substance per amount of substance (base unit: mol/mol)</documentation>
</annotation>
</enumeration>
<enumeration value="time per time">
<annotation>
<documentation>time per time (base unit: s/s)</documentation>
</annotation>
</enumeration>
<enumeration value="linear thermal expansion">
<annotation>
<documentation>linear thermal expansion (base unit: m/(m.deltaK))</documentation>
</annotation>
</enumeration>
<enumeration value="volumetric thermal expansion">
<annotation>
<documentation>volumetric thermal expansion (base unit: m3/(m3.deltaK))</documentation>
</annotation>
</enumeration>
<enumeration value="reciprocal length">
<annotation>
<documentation>reciprocal length (base unit: 1/m)</documentation>
</annotation>
</enumeration>
<enumeration value="area per volume">
<annotation>
<documentation>area per volume (base unit: m2/m3)</documentation>
</annotation>
</enumeration>
<enumeration value="reciprocal area">
<annotation>
<documentation>reciprocal area (base unit: 1/m2)</documentation>
</annotation>
</enumeration>
<enumeration value="length per volume">
<annotation>
<documentation>length per volume (base unit: m/m3)</documentation>
</annotation>
</enumeration>
<enumeration value="reciprocal volume">
<annotation>
<documentation>reciprocal volume (base unit: 1/m3)</documentation>
</annotation>
</enumeration>
<enumeration value="reciprocal mass">
<annotation>
<documentation>reciprocal mass (base unit: 1/kg)</documentation>
</annotation>
</enumeration>
<enumeration value="reciprocal (mass time)">
<annotation>
<documentation>reciprocal (mass time) (base unit: Bq/kg)</documentation>
</annotation>
</enumeration>
<enumeration value="reciprocal time">
<annotation>
<documentation>reciprocal time (base unit: 1/s)</documentation>
</annotation>
</enumeration>
<enumeration value="signaling event per time">
<annotation>
<documentation>signaling event per time (base unit: Bd)</documentation>
</annotation>
</enumeration>
<enumeration value="activity [of radioactivity]">
<annotation>
<documentation>activity [of radioactivity] (base unit: Bq)</documentation>
</annotation>
</enumeration>
<enumeration value="frequency">
<annotation>
<documentation>frequency (base unit: Hz)</documentation>
</annotation>
</enumeration>
<enumeration value="data transfer speed">
<annotation>
<documentation>data transfer speed (base unit: bit/s)</documentation>
</annotation>
</enumeration>
<enumeration value="(volume per time) per volume">
<annotation>
<documentation>(volume per time) per volume (base unit: m3/(s.m3))</documentation>
</annotation>
</enumeration>
<enumeration value="plane angle">
<annotation>
<documentation>plane angle (base unit: rad)</documentation>
</annotation>
</enumeration>
<enumeration value="angle per length">
<annotation>
<documentation>angle per length (base unit: rad/m)</documentation>
</annotation>
</enumeration>
<enumeration value="angle per volume">
<annotation>
<documentation>angle per volume (base unit: rad/m3)</documentation>
</annotation>
</enumeration>
<enumeration value="angular velocity">
<annotation>
<documentation>angular velocity (base unit: rad/s)</documentation>
</annotation>
</enumeration>
<enumeration value="angular acceleration">
<annotation>
<documentation>angular acceleration (base unit: rad/s2)</documentation>
</annotation>
</enumeration>
<enumeration value="temperature interval">
<annotation>
<documentation>temperature interval (base unit: deltaK)</documentation>
</annotation>
</enumeration>
<enumeration value="temperature interval per length">
<annotation>
<documentation>temperature interval per length (base unit: deltaK/m)</documentation>
</annotation>
</enumeration>
<enumeration value="temperature interval per time">
<annotation>
<documentation>temperature interval per time (base unit: deltaK/s)</documentation>
</annotation>
</enumeration>
<enumeration value="temperature interval per pressure">
<annotation>
<documentation>temperature interval per pressure (base unit: deltaK/Pa)</documentation>
</annotation>
</enumeration>
<enumeration value="thermal resistance">
<annotation>
<documentation>thermal resistance (base unit: deltaK/W)</documentation>
</annotation>
</enumeration>
<enumeration value="thermal insulance">
<annotation>
<documentation>thermal insulance (base unit: deltaK.m2/W)</documentation>
</annotation>
</enumeration>
<enumeration value="electric current">
<annotation>
<documentation>electric current (base unit: A)</documentation>
</annotation>
</enumeration>
<enumeration value="magnetic field strength">
<annotation>
<documentation>magnetic field strength (base unit: A/m)</documentation>
</annotation>
</enumeration>
<enumeration value="electric current density">
<annotation>
<documentation>electric current density (base unit: A/m2)</documentation>
</annotation>
</enumeration>
<enumeration value="reluctance">
<annotation>
<documentation>reluctance (base unit: 1/H)</documentation>
</annotation>
</enumeration>
<enumeration value="electric conductance">
<annotation>
<documentation>electric conductance (base unit: S)</documentation>
</annotation>
</enumeration>
<enumeration value="electric conductivity">
<annotation>
<documentation>electric conductivity (base unit: S/m)</documentation>
</annotation>
</enumeration>
<enumeration value="capacitance">
<annotation>
<documentation>capacitance (base unit: F)</documentation>
</annotation>
</enumeration>
<enumeration value="permittivity">
<annotation>
<documentation>permittivity (base unit: F/m)</documentation>
</annotation>
</enumeration>
<enumeration value="electromagnetic moment">
<annotation>
<documentation>electromagnetic moment (base unit: A.m2)</documentation>
</annotation>
</enumeration>
<enumeration value="dipole moment">
<annotation>
<documentation>dipole moment (base unit: C.m)</documentation>
</annotation>
</enumeration>
<enumeration value="electric charge">
<annotation>
<documentation>electric charge (base unit: C)</documentation>
</annotation>
</enumeration>
<enumeration value="electric charge per area">
<annotation>
<documentation>electric charge per area (base unit: C/m2)</documentation>
</annotation>
</enumeration>
<enumeration value="electric charge per volume">
<annotation>
<documentation>electric charge per volume (base unit: C/m3)</documentation>
</annotation>
</enumeration>
<enumeration value="electric charge per mass">
<annotation>
<documentation>electric charge per mass (base unit: C/kg)</documentation>
</annotation>
</enumeration>
<enumeration value="reciprocal electric potential difference">
<annotation>
<documentation>reciprocal electric potential difference (base unit: 1/V)</documentation>
</annotation>
</enumeration>
<enumeration value="luminous intensity">
<annotation>
<documentation>luminous intensity (base unit: cd)</documentation>
</annotation>
</enumeration>
<enumeration value="luminance">
<annotation>
<documentation>luminance (base unit: cd/m2)</documentation>
</annotation>
</enumeration>
<enumeration value="luminous flux">
<annotation>
<documentation>luminous flux (base unit: lm)</documentation>
</annotation>
</enumeration>
<enumeration value="illuminance">
<annotation>
<documentation>illuminance (base unit: lx)</documentation>
</annotation>
</enumeration>
<enumeration value="quantity of light">
<annotation>
<documentation>quantity of light (base unit: lm.s)</documentation>
</annotation>
</enumeration>
<enumeration value="light exposure">
<annotation>
<documentation>light exposure (base unit: lx.s)</documentation>
</annotation>
</enumeration>
<enumeration value="luminous efficacy">
<annotation>
<documentation>luminous efficacy (base unit: lm/W)</documentation>
</annotation>
</enumeration>
<enumeration value="thermodynamic temperature">
<annotation>
<documentation>thermodynamic temperature (base unit: K)</documentation>
</annotation>
</enumeration>
<enumeration value="length">
<annotation>
<documentation>length (base unit: m)</documentation>
</annotation>
</enumeration>
<enumeration value="volume per area">
<annotation>
<documentation>volume per area (base unit: m3/m2)</documentation>
</annotation>
</enumeration>
<enumeration value="length per temperature">
<annotation>
<documentation>length per temperature (base unit: m/deltaK)</documentation>
</annotation>
</enumeration>
<enumeration value="length per mass">
<annotation>
<documentation>length per mass (base unit: m/kg)</documentation>
</annotation>
</enumeration>
<enumeration value="length per time">
<annotation>
<documentation>length per time (base unit: m/s)</documentation>
</annotation>
</enumeration>
<enumeration value="(volume per time) per area">
<annotation>
<documentation>(volume per time) per area (base unit: m3/(s.m2))</documentation>
</annotation>
</enumeration>
<enumeration value="linear acceleration">
<annotation>
<documentation>linear acceleration (base unit: m/s2)</documentation>
</annotation>
</enumeration>
<enumeration value="permeability rock">
<annotation>
<documentation>permeability rock (base unit: TD[API])</documentation>
</annotation>
</enumeration>
<enumeration value="area">
<annotation>
<documentation>area (base unit: m2)</documentation>
</annotation>
</enumeration>
<enumeration value="volume per length">
<annotation>
<documentation>volume per length (base unit: m3/m)</documentation>
</annotation>
</enumeration>
<enumeration value="specific heat capacity">
<annotation>
<documentation>specific heat capacity (base unit: J/(kg.deltaK))</documentation>
</annotation>
</enumeration>
<enumeration value="area per mass">
<annotation>
<documentation>area per mass (base unit: m2/kg)</documentation>
</annotation>
</enumeration>
<enumeration value="area per amount of substance">
<annotation>
<documentation>area per amount of substance (base unit: m2/mol)</documentation>
</annotation>
</enumeration>
<enumeration value="kinematic viscosity">
<annotation>
<documentation>kinematic viscosity (base unit: Pa.s.m3/kg)</documentation>
</annotation>
</enumeration>
<enumeration value="thermal diffusivity">
<annotation>
<documentation>thermal diffusivity (base unit: W.m2.deltaK/(J.deltaK))</documentation>
</annotation>
</enumeration>
<enumeration value="area per time">
<annotation>
<documentation>area per time (base unit: m2/s)</documentation>
</annotation>
</enumeration>
<enumeration value="(volume per time) per length">
<annotation>
<documentation>(volume per time) per length (base unit: m3/(s.m))</documentation>
</annotation>
</enumeration>
<enumeration value="diffusion coefficient">
<annotation>
<documentation>diffusion coefficient (base unit: mol.m2/(mol.s))</documentation>
</annotation>
</enumeration>
<enumeration value="absorbed dose">
<annotation>
<documentation>absorbed dose (base unit: Gy)</documentation>
</annotation>
</enumeration>
<enumeration value="energy per mass">
<annotation>
<documentation>energy per mass (base unit: J/kg)</documentation>
</annotation>
</enumeration>
<enumeration value="dose equivalent">
<annotation>
<documentation>dose equivalent (base unit: Sv)</documentation>
</annotation>
</enumeration>
<enumeration value="(energy per mass) per time">
<annotation>
<documentation>(energy per mass) per time (base unit: Sv/s)</documentation>
</annotation>
</enumeration>
<enumeration value="moment of inertia">
<annotation>
<documentation>moment of inertia (base unit: kg.m2)</documentation>
</annotation>
</enumeration>
<enumeration value="molar heat capacity">
<annotation>
<documentation>molar heat capacity (base unit: J/(mol.deltaK))</documentation>
</annotation>
</enumeration>
<enumeration value="heat capacity">
<annotation>
<documentation>heat capacity (base unit: J/deltaK)</documentation>
</annotation>
</enumeration>
<enumeration value="thermal conductance">
<annotation>
<documentation>thermal conductance (base unit: W/deltaK)</documentation>
</annotation>
</enumeration>
<enumeration value="inductance">
<annotation>
<documentation>inductance (base unit: H)</documentation>
</annotation>
</enumeration>
<enumeration value="electric resistance">
<annotation>
<documentation>electric resistance (base unit: ohm)</documentation>
</annotation>
</enumeration>
<enumeration value="magnetic flux">
<annotation>
<documentation>magnetic flux (base unit: Wb)</documentation>
</annotation>
</enumeration>
<enumeration value="electric potential difference">
<annotation>
<documentation>electric potential difference (base unit: V)</documentation>
</annotation>
</enumeration>
<enumeration value="molar energy">
<annotation>
<documentation>molar energy (base unit: J/mol)</documentation>
</annotation>
</enumeration>
<enumeration value="radiant intensity">
<annotation>
<documentation>radiant intensity (base unit: W/sr)</documentation>
</annotation>
</enumeration>
<enumeration value="energy">
<annotation>
<documentation>energy (base unit: J)</documentation>
</annotation>
</enumeration>
<enumeration value="moment of force">
<annotation>
<documentation>moment of force (base unit: N.m)</documentation>
</annotation>
</enumeration>
<enumeration value="heat flow rate">
<annotation>
<documentation>heat flow rate (base unit: J/s)</documentation>
</annotation>
</enumeration>
<enumeration value="power">
<annotation>
<documentation>power (base unit: W)</documentation>
</annotation>
</enumeration>
<enumeration value="length per pressure">
<annotation>
<documentation>length per pressure (base unit: m/Pa)</documentation>
</annotation>
</enumeration>
<enumeration value="permeability length">
<annotation>
<documentation>permeability length (base unit: TD[API].m)</documentation>
</annotation>
</enumeration>
<enumeration value="volume">
<annotation>
<documentation>volume (base unit: m3)</documentation>
</annotation>
</enumeration>
<enumeration value="volume per rotation">
<annotation>
<documentation>volume per rotation (base unit: m3/rad)</documentation>
</annotation>
</enumeration>
<enumeration value="volume per mass">
<annotation>
<documentation>volume per mass (base unit: m3/kg)</documentation>
</annotation>
</enumeration>
<enumeration value="molar volume">
<annotation>
<documentation>molar volume (base unit: m3/mol)</documentation>
</annotation>
</enumeration>
<enumeration value="volume per time">
<annotation>
<documentation>volume per time (base unit: m3/s)</documentation>
</annotation>
</enumeration>
<enumeration value="(volume per time) per time">
<annotation>
<documentation>(volume per time) per time (base unit: m3/s2)</documentation>
</annotation>
</enumeration>
<enumeration value="electrical resistivity">
<annotation>
<documentation>electrical resistivity (base unit: ohm.m)</documentation>
</annotation>
</enumeration>
<enumeration value="magnetic dipole moment">
<annotation>
<documentation>magnetic dipole moment (base unit: Wb.m)</documentation>
</annotation>
</enumeration>
<enumeration value="force area">
<annotation>
<documentation>force area (base unit: N.m2)</documentation>
</annotation>
</enumeration>
<enumeration value="mobility">
<annotation>
<documentation>mobility (base unit: TD[API]/(Pa.s))</documentation>
</annotation>
</enumeration>
<enumeration value="(volume per time) per (pressure length)">
<annotation>
<documentation>(volume per time) per (pressure length) (base unit: m2/(Pa.s))</documentation>
</annotation>
</enumeration>
<enumeration value="second moment of area">
<annotation>
<documentation>second moment of area (base unit: m4)</documentation>
</annotation>
</enumeration>
<enumeration value="(volume per time) length">
<annotation>
<documentation>(volume per time) length (base unit: m4/s)</documentation>
</annotation>
</enumeration>
<enumeration value="(volume per time) per pressure">
<annotation>
<documentation>(volume per time) per pressure (base unit: m3/(Pa.s))</documentation>
</annotation>
</enumeration>
<enumeration value="volume per pressure">
<annotation>
<documentation>volume per pressure (base unit: m3/Pa)</documentation>
</annotation>
</enumeration>
<enumeration value="mass length">
<annotation>
<documentation>mass length (base unit: kg.m)</documentation>
</annotation>
</enumeration>
<enumeration value="energy length per time area temperature">
<annotation>
<documentation>energy length per time area temperature (base unit: J.m/(s.m2.deltaK))</documentation>
</annotation>
</enumeration>
<enumeration value="thermal conductivity">
<annotation>
<documentation>thermal conductivity (base unit: W/(m.deltaK))</documentation>
</annotation>
</enumeration>
<enumeration value="magnetic permeability">
<annotation>
<documentation>magnetic permeability (base unit: H/m)</documentation>
</annotation>
</enumeration>
<enumeration value="electric resistance per length">
<annotation>
<documentation>electric resistance per length (base unit: ohm/m)</documentation>
</annotation>
</enumeration>
<enumeration value="magnetic vector potential">
<annotation>
<documentation>magnetic vector potential (base unit: Wb/m)</documentation>
</annotation>
</enumeration>
<enumeration value="electric field strength">
<annotation>
<documentation>electric field strength (base unit: V/m)</documentation>
</annotation>
</enumeration>
<enumeration value="momentum">
<annotation>
<documentation>momentum (base unit: kg.m/s)</documentation>
</annotation>
</enumeration>
<enumeration value="energy length per area">
<annotation>
<documentation>energy length per area (base unit: J.m/m2)</documentation>
</annotation>
</enumeration>
<enumeration value="energy per length">
<annotation>
<documentation>energy per length (base unit: J/m)</documentation>
</annotation>
</enumeration>
<enumeration value="force">
<annotation>
<documentation>force (base unit: N)</documentation>
</annotation>
</enumeration>
<enumeration value="force length per length">
<annotation>
<documentation>force length per length (base unit: N.m/m)</documentation>
</annotation>
</enumeration>
<enumeration value="reciprocal pressure">
<annotation>
<documentation>reciprocal pressure (base unit: 1/Pa)</documentation>
</annotation>
</enumeration>
<enumeration value="isothermal compressibility">
<annotation>
<documentation>isothermal compressibility (base unit: m3/J)</documentation>
</annotation>
</enumeration>
<enumeration value="mass">
<annotation>
<documentation>mass (base unit: kg)</documentation>
</annotation>
</enumeration>
<enumeration value="volumetric heat transfer coefficient">
<annotation>
<documentation>volumetric heat transfer coefficient (base unit: W/(m3.deltaK))</documentation>
</annotation>
</enumeration>
<enumeration value="heat transfer coefficient">
<annotation>
<documentation>heat transfer coefficient (base unit: W/(m2.deltaK))</documentation>
</annotation>
</enumeration>
<enumeration value="magnetic flux density per length">
<annotation>
<documentation>magnetic flux density per length (base unit: T/m)</documentation>
</annotation>
</enumeration>
<enumeration value="magnetic flux density">
<annotation>
<documentation>magnetic flux density (base unit: T)</documentation>
</annotation>
</enumeration>
<enumeration value="mass per length">
<annotation>
<documentation>mass per length (base unit: kg/m)</documentation>
</annotation>
</enumeration>
<enumeration value="mass per area">
<annotation>
<documentation>mass per area (base unit: kg/m2)</documentation>
</annotation>
</enumeration>
<enumeration value="(mass per time) per area">
<annotation>
<documentation>(mass per time) per area (base unit: kg/(m2.s))</documentation>
</annotation>
</enumeration>
<enumeration value="force per volume">
<annotation>
<documentation>force per volume (base unit: N/m3)</documentation>
</annotation>
</enumeration>
<enumeration value="mass per volume">
<annotation>
<documentation>mass per volume (base unit: kg/m3)</documentation>
</annotation>
</enumeration>
<enumeration value="(mass per volume) per length">
<annotation>
<documentation>(mass per volume) per length (base unit: kg/m4)</documentation>
</annotation>
</enumeration>
<enumeration value="pressure time per volume">
<annotation>
<documentation>pressure time per volume (base unit: Pa.s/m3)</documentation>
</annotation>
</enumeration>
<enumeration value="pressure per volume">
<annotation>
<documentation>pressure per volume (base unit: Pa/m3)</documentation>
</annotation>
</enumeration>
<enumeration value="dynamic viscosity">
<annotation>
<documentation>dynamic viscosity (base unit: Pa.s)</documentation>
</annotation>
</enumeration>
<enumeration value="(mass per time) per length">
<annotation>
<documentation>(mass per time) per length (base unit: kg/(m.s))</documentation>
</annotation>
</enumeration>
<enumeration value="energy per volume">
<annotation>
<documentation>energy per volume (base unit: J/m3)</documentation>
</annotation>
</enumeration>
<enumeration value="pressure">
<annotation>
<documentation>pressure (base unit: Pa)</documentation>
</annotation>
</enumeration>
<enumeration value="pressure per time">
<annotation>
<documentation>pressure per time (base unit: Pa/s)</documentation>
</annotation>
</enumeration>
<enumeration value="pressure squared per (force time per area)">
<annotation>
<documentation>pressure squared per (force time per area) (base unit: Pa2/(Pa.s))</documentation>
</annotation>
</enumeration>
<enumeration value="power per volume">
<annotation>
<documentation>power per volume (base unit: W/m3)</documentation>
</annotation>
</enumeration>
<enumeration value="molecular weight">
<annotation>
<documentation>molecular weight (base unit: kg/mol)</documentation>
</annotation>
</enumeration>
<enumeration value="radiance">
<annotation>
<documentation>radiance (base unit: W/(m2.sr))</documentation>
</annotation>
</enumeration>
<enumeration value="mass per time">
<annotation>
<documentation>mass per time (base unit: kg/s)</documentation>
</annotation>
</enumeration>
<enumeration value="energy per area">
<annotation>
<documentation>energy per area (base unit: J/m2)</documentation>
</annotation>
</enumeration>
<enumeration value="force per length">
<annotation>
<documentation>force per length (base unit: N/m)</documentation>
</annotation>
</enumeration>
<enumeration value="power per area">
<annotation>
<documentation>power per area (base unit: W/m2)</documentation>
</annotation>
</enumeration>
<enumeration value="pressure squared">
<annotation>
<documentation>pressure squared (base unit: Pa2)</documentation>
</annotation>
</enumeration>
<enumeration value="amount of substance">
<annotation>
<documentation>amount of substance (base unit: mol)</documentation>
</annotation>
</enumeration>
<enumeration value="amount of substance per area">
<annotation>
<documentation>amount of substance per area (base unit: mol/m2)</documentation>
</annotation>
</enumeration>
<enumeration value="(amount of substance per time) per area">
<annotation>
<documentation>(amount of substance per time) per area (base unit: mol/(s.m2))</documentation>
</annotation>
</enumeration>
<enumeration value="amount of substance per volume">
<annotation>
<documentation>amount of substance per volume (base unit: mol/m3)</documentation>
</annotation>
</enumeration>
<enumeration value="amount of substance per time">
<annotation>
<documentation>amount of substance per time (base unit: mol/s)</documentation>
</annotation>
</enumeration>
<enumeration value="solid angle">
<annotation>
<documentation>solid angle (base unit: sr)</documentation>
</annotation>
</enumeration>
<enumeration value="time">
<annotation>
<documentation>time (base unit: s)</documentation>
</annotation>
</enumeration>
<enumeration value="time per length">
<annotation>
<documentation>time per length (base unit: s/m)</documentation>
</annotation>
</enumeration>
<enumeration value="time per volume">
<annotation>
<documentation>time per volume (base unit: s/m3)</documentation>
</annotation>
</enumeration>
<enumeration value="time per mass">
<annotation>
<documentation>time per mass (base unit: s/kg)</documentation>
</annotation>
</enumeration>
<enumeration value="mass per energy">
<annotation>
<documentation>mass per energy (base unit: kg/J)</documentation>
</annotation>
</enumeration>
<enumeration value="reciprocal force">
<annotation>
<documentation>reciprocal force (base unit: 1/N)</documentation>
</annotation>
</enumeration>
<enumeration value="logarithmic power ratio">
<annotation>
<documentation>logarithmic power ratio (base unit: B)</documentation>
</annotation>
</enumeration>
<enumeration value="normalized power">
<annotation>
<documentation>normalized power (base unit: B.W)</documentation>
</annotation>
</enumeration>
<enumeration value="attenuation per frequency interval">
<annotation>
<documentation>attenuation per frequency interval (base unit: B/O)</documentation>
</annotation>
</enumeration>
<enumeration value="logarithmic power ratio per length">
<annotation>
<documentation>logarithmic power ratio per length (base unit: B/m)</documentation>
</annotation>
</enumeration>
<enumeration value="frequency interval">
<annotation>
<documentation>frequency interval (base unit: O)</documentation>
</annotation>
</enumeration>
<enumeration value="potential difference per power drop">
<annotation>
<documentation>potential difference per power drop (base unit: V/B)</documentation>
</annotation>
</enumeration>
<enumeration value="API gravity">
<annotation>
<documentation>API gravity (base unit: dAPI)</documentation>
</annotation>
</enumeration>
<enumeration value="API gamma ray">
<annotation>
<documentation>API gamma ray (base unit: gAPI)</documentation>
</annotation>
</enumeration>
<enumeration value="API neutron">
<annotation>
<documentation>API neutron (base unit: nAPI)</documentation>
</annotation>
</enumeration>
</restriction>
</simpleType>
<simpleType name="QuantityClassDiggsEnumType">
<annotation>
<documentation>Enumeration of DIGGS-specific quantity classes that extend the Energistics Unit of Measure Dictionary. These quantity classes represent physical dimensions or dimensionless ratios specific to geotechnical, geoenvironmental, and related engineering applications that are not included in the standard Energistics dictionary. Each quantity class defines what is being measured (the physical dimension), while units within that class define how it is measured. These extensions are necessary to support specialized measurements in soil mechanics, rock mechanics, groundwater analysis, geophysical testing, and materials characterization common in geotechnical practice.</documentation>
</annotation>
<restriction base="string">
<enumeration value="amount of substance per mass">
<annotation>
<documentation>amount of substance per mass: Molar quantity per unit mass. Used in chemistry, geochemistry, and materials characterization for expressing composition on a molar basis relative to mass. Reciprocal of molecular weight. Important in soil chemistry, contamination studies, and chemical analysis of geomaterials. Base unit equivalent: mol/kg.</documentation>
</annotation>
</enumeration>
<enumeration value="force or mass per volume">
<annotation>
<documentation>force or mass per volume: Unified quantity class combining force per volume (unit weight) and mass per volume (density). In geotechnical engineering, "density" is often reported as either true mass density or unit weight (force per volume), and this quantity class allows either representation. Important because geotechnical practice uses both conventions depending on regional standards and calculation requirements. Base unit equivalent: N/m³ for unit weight or kg/m³ for mass density.</documentation>
</annotation>
</enumeration>