-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathESCOMXMLDT.xsd
More file actions
770 lines (759 loc) · 32.3 KB
/
Copy pathESCOMXMLDT.xsd
File metadata and controls
770 lines (759 loc) · 32.3 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
<?xml version="1.0" encoding="utf-8"?>
<xs:schema targetNamespace="http://www.cefic.org/ESCOMXML" xmlns="http://www.w3.org/2001/XMLSchema" xmlns:ESCOMXML="http://www.cefic.org/ESCOMXML" xmlns:xs="http://www.w3.org/2001/XMLSchema" version="2.1">
<xs:simpleType name="SubstanceMixtureIndicator">
<xs:annotation>
<xs:documentation>Specifies the product types.</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:string">
<xs:enumeration value="MIXTURE"/>
<xs:enumeration value="SUBSTANCE"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="UUID">
<xs:annotation>
<xs:documentation>Specifies an identification string in order to uniquely identify information. The length of the identification string is between 32 and 36 characters (32 alphanumeric characters and four hyphens in the form 8-4-4-4-12). The 32 alphanumeric characters based UUID specifies the internal presentation, the UUID with 36 alphanumeric characters is the external representation. Within ESComXML only the internal 32 alphanumeric characters long UUID is supported.
For example:
550e8400e29b41d4a716446655440000 (external representation with four hypens:
550e8400-e29b-41d4-a716-446655440000).
See also the Wikipedia page for more details:
http://en.wikipedia.org/wiki/Universally_unique_identifier</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:string">
<xs:minLength value="32"/>
<xs:maxLength value="32"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="VersionNumber">
<xs:annotation>
<xs:documentation>Specifies a version number as a digit-number with an optional point in between.</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:string">
<xs:pattern value="(\d+\.)?(\d+\.)?(\*|\d+)"/>
<xs:maxLength value="11"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="DUNSNumber">
<xs:annotation>
<xs:documentation>Specifies the Data Universal Numbering System (DUNS) number. It is a system developed and regulated by Dun & Bradstreet (D&B) that assigns a unique numeric identifier, referred to as a "DUNS number" to a single business entity.</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:string">
<xs:maxLength value="9"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="String255">
<xs:annotation>
<xs:documentation>Specifies the string with a maximum 255 characters.</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:string">
<xs:maxLength value="255"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="NumericValue">
<xs:annotation>
<xs:documentation>Specifies a numeric value that is patterned according to the IEEE single-precision 64-bit floating point type.</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:double"/>
</xs:simpleType>
<xs:complexType name="RiskManagementMeasureHH">
<xs:annotation>
<xs:documentation>A risk management measure for a use relevant to workers or consumers (human health).</xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element name="MeasurePhrase" type="ESCOMXML:Phrase" minOccurs="1" maxOccurs="unbounded">
<xs:annotation>
<xs:documentation>A phrase that describes the risk management measure.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="EffectivenessDermalInPercent" type="ESCOMXML:EffectivenessValueWithQualifier" minOccurs="0" maxOccurs="1">
<xs:annotation>
<xs:documentation>Specifies the degree in % to which the measure to prevent skin exposure is effective.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="EffectivenessInhalationInPercent" type="ESCOMXML:EffectivenessValueWithQualifier" minOccurs="0" maxOccurs="1">
<xs:annotation>
<xs:documentation>Specifies the degree in % to which the measure to prevent inhalation-related exposure is effective.</xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
</xs:complexType>
<xs:simpleType name="EmailAddress">
<xs:annotation>
<xs:documentation>Specifies a valid e-mail address.</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:string">
<xs:pattern value="([0-9a-zA-Z]([-.\w]*[0-9a-zA-Z])*@([0-9a-zA-Z][-\w]*[0-9a-zA-Z]\.)+[a-zA-Z]{2,9})"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="REACHRegNumber">
<xs:annotation>
<xs:documentation>Specifies the standard Registration, Evaluation, Authorisation and Restriction of Chemicals (REACH) number.</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:string">
<xs:pattern value="[0-9]{2}-[0-9]{10}-[0-9]{2}(-[0-9]{4})?"/>
</xs:restriction>
</xs:simpleType>
<xs:complexType name="NumericValueWithUnitAndQualifier">
<xs:annotation>
<xs:documentation>Specifies a numeric value with unit and qualifier. The numeric value is patterned according to the IEEE single-precision 64-bit floating point type.</xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element name="Qualifier" type="ESCOMXML:NumericQualifier" minOccurs="0" maxOccurs="1">
<xs:annotation>
<xs:documentation>Describes the qualifier of the value.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="Value" type="ESCOMXML:NumericValue" minOccurs="1" maxOccurs="1">
<xs:annotation>
<xs:documentation>Describes the value.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="Unit" type="ESCOMXML:Phrase" minOccurs="1" maxOccurs="1">
<xs:annotation>
<xs:documentation>Describes the unit.</xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
</xs:complexType>
<xs:complexType name="NumericValueWithQualifier">
<xs:annotation>
<xs:documentation>Specifies a numeric value with qualifier. The numeric value is patterned according to the IEEE single-precision 64-bit floating point type.</xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element name="Value" type="ESCOMXML:NumericValue" minOccurs="1" maxOccurs="1">
<xs:annotation>
<xs:documentation>Describes the value.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="Qualifier" type="ESCOMXML:NumericQualifier" minOccurs="0" maxOccurs="1">
<xs:annotation>
<xs:documentation>Describes the qualifier of the value.</xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
</xs:complexType>
<xs:simpleType name="LanguageCode">
<xs:annotation>
<xs:documentation>The language code of the country used to describe textual information.</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:language">
<xs:enumeration value="aa"/>
<xs:enumeration value="ab"/>
<xs:enumeration value="ae"/>
<xs:enumeration value="af"/>
<xs:enumeration value="ak"/>
<xs:enumeration value="am"/>
<xs:enumeration value="an"/>
<xs:enumeration value="ar"/>
<xs:enumeration value="as"/>
<xs:enumeration value="av"/>
<xs:enumeration value="ay"/>
<xs:enumeration value="az"/>
<xs:enumeration value="ba"/>
<xs:enumeration value="be"/>
<xs:enumeration value="bg"/>
<xs:enumeration value="bh"/>
<xs:enumeration value="bi"/>
<xs:enumeration value="bm"/>
<xs:enumeration value="bn"/>
<xs:enumeration value="bo"/>
<xs:enumeration value="br"/>
<xs:enumeration value="bs"/>
<xs:enumeration value="ca"/>
<xs:enumeration value="ce"/>
<xs:enumeration value="ch"/>
<xs:enumeration value="co"/>
<xs:enumeration value="cr"/>
<xs:enumeration value="cs"/>
<xs:enumeration value="cu"/>
<xs:enumeration value="cv"/>
<xs:enumeration value="cy"/>
<xs:enumeration value="da"/>
<xs:enumeration value="de"/>
<xs:enumeration value="dv"/>
<xs:enumeration value="dz"/>
<xs:enumeration value="ee"/>
<xs:enumeration value="el"/>
<xs:enumeration value="en"/>
<xs:enumeration value="eo"/>
<xs:enumeration value="es"/>
<xs:enumeration value="et"/>
<xs:enumeration value="eu"/>
<xs:enumeration value="fa"/>
<xs:enumeration value="ff"/>
<xs:enumeration value="fi"/>
<xs:enumeration value="fj"/>
<xs:enumeration value="fo"/>
<xs:enumeration value="fr"/>
<xs:enumeration value="fy"/>
<xs:enumeration value="ga"/>
<xs:enumeration value="gd"/>
<xs:enumeration value="gl"/>
<xs:enumeration value="gn"/>
<xs:enumeration value="gu"/>
<xs:enumeration value="gv"/>
<xs:enumeration value="ha"/>
<xs:enumeration value="he"/>
<xs:enumeration value="hi"/>
<xs:enumeration value="ho"/>
<xs:enumeration value="hr"/>
<xs:enumeration value="ht"/>
<xs:enumeration value="hu"/>
<xs:enumeration value="hy"/>
<xs:enumeration value="hz"/>
<xs:enumeration value="ia"/>
<xs:enumeration value="id"/>
<xs:enumeration value="ie"/>
<xs:enumeration value="ig"/>
<xs:enumeration value="ii"/>
<xs:enumeration value="ik"/>
<xs:enumeration value="io"/>
<xs:enumeration value="is"/>
<xs:enumeration value="it"/>
<xs:enumeration value="iu"/>
<xs:enumeration value="ja"/>
<xs:enumeration value="jv"/>
<xs:enumeration value="ka"/>
<xs:enumeration value="kg"/>
<xs:enumeration value="ki"/>
<xs:enumeration value="kj"/>
<xs:enumeration value="kk"/>
<xs:enumeration value="kl"/>
<xs:enumeration value="km"/>
<xs:enumeration value="kn"/>
<xs:enumeration value="ko"/>
<xs:enumeration value="kr"/>
<xs:enumeration value="ks"/>
<xs:enumeration value="ku"/>
<xs:enumeration value="kv"/>
<xs:enumeration value="kw"/>
<xs:enumeration value="ky"/>
<xs:enumeration value="la"/>
<xs:enumeration value="lb"/>
<xs:enumeration value="lg"/>
<xs:enumeration value="li"/>
<xs:enumeration value="ln"/>
<xs:enumeration value="lo"/>
<xs:enumeration value="lt"/>
<xs:enumeration value="lu"/>
<xs:enumeration value="lv"/>
<xs:enumeration value="mg"/>
<xs:enumeration value="mh"/>
<xs:enumeration value="mi"/>
<xs:enumeration value="mk"/>
<xs:enumeration value="ml"/>
<xs:enumeration value="mn"/>
<xs:enumeration value="mr"/>
<xs:enumeration value="ms"/>
<xs:enumeration value="mt"/>
<xs:enumeration value="my"/>
<xs:enumeration value="na"/>
<xs:enumeration value="nb"/>
<xs:enumeration value="nd"/>
<xs:enumeration value="ne"/>
<xs:enumeration value="ng"/>
<xs:enumeration value="nl"/>
<xs:enumeration value="nn"/>
<xs:enumeration value="no"/>
<xs:enumeration value="nr"/>
<xs:enumeration value="nv"/>
<xs:enumeration value="ny"/>
<xs:enumeration value="oc"/>
<xs:enumeration value="oj"/>
<xs:enumeration value="om"/>
<xs:enumeration value="or"/>
<xs:enumeration value="os"/>
<xs:enumeration value="pa"/>
<xs:enumeration value="pi"/>
<xs:enumeration value="pl"/>
<xs:enumeration value="ps"/>
<xs:enumeration value="pt"/>
<xs:enumeration value="qu"/>
<xs:enumeration value="rm"/>
<xs:enumeration value="rn"/>
<xs:enumeration value="ro"/>
<xs:enumeration value="ru"/>
<xs:enumeration value="rw"/>
<xs:enumeration value="sa"/>
<xs:enumeration value="sc"/>
<xs:enumeration value="sd"/>
<xs:enumeration value="se"/>
<xs:enumeration value="sg"/>
<xs:enumeration value="si"/>
<xs:enumeration value="sk"/>
<xs:enumeration value="sl"/>
<xs:enumeration value="sm"/>
<xs:enumeration value="sn"/>
<xs:enumeration value="so"/>
<xs:enumeration value="sq"/>
<xs:enumeration value="sr"/>
<xs:enumeration value="ss"/>
<xs:enumeration value="st"/>
<xs:enumeration value="su"/>
<xs:enumeration value="sv"/>
<xs:enumeration value="sw"/>
<xs:enumeration value="ta"/>
<xs:enumeration value="te"/>
<xs:enumeration value="tg"/>
<xs:enumeration value="th"/>
<xs:enumeration value="ti"/>
<xs:enumeration value="tk"/>
<xs:enumeration value="tl"/>
<xs:enumeration value="tn"/>
<xs:enumeration value="to"/>
<xs:enumeration value="tr"/>
<xs:enumeration value="ts"/>
<xs:enumeration value="tt"/>
<xs:enumeration value="tw"/>
<xs:enumeration value="ty"/>
<xs:enumeration value="ug"/>
<xs:enumeration value="uk"/>
<xs:enumeration value="ur"/>
<xs:enumeration value="uz"/>
<xs:enumeration value="ve"/>
<xs:enumeration value="vi"/>
<xs:enumeration value="vo"/>
<xs:enumeration value="wa"/>
<xs:enumeration value="wo"/>
<xs:enumeration value="xh"/>
<xs:enumeration value="yi"/>
<xs:enumeration value="yo"/>
<xs:enumeration value="za"/>
<xs:enumeration value="zh"/>
<xs:enumeration value="zu"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="OrderNumber">
<xs:annotation>
<xs:documentation>Specifies the order of an exposure scenario (or contributing scenario) within in the annex of the extended safety data sheet. It is represented as an unsigned integer value with a maximum of 5 digits in total.</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:int">
<xs:totalDigits value="5"/>
</xs:restriction>
</xs:simpleType>
<xs:complexType name="RiskManagementMeasureGeneric">
<xs:annotation>
<xs:documentation>Specifies a generic risk management measure.</xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element name="MeasurePhrase" type="ESCOMXML:Phrase" minOccurs="1" maxOccurs="1">
<xs:annotation>
<xs:documentation>A phrase that describes the operational condition.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="EffectivenessInPercent" type="ESCOMXML:EffectivenessValueWithQualifier" minOccurs="0" maxOccurs="1">
<xs:annotation>
<xs:documentation>Describes the effectiveness of sewage treatment conditions. Specifies the value in a percentage of a substance which is removed from waste water by the sewage treatment plant.</xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
</xs:complexType>
<xs:simpleType name="CASString">
<xs:annotation>
<xs:documentation>Specifies the Chemical Abstracts Service (CAS) identification string for a substance.</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:string">
<xs:pattern value="[0-9]{2,7}-[0-9]{2}-[0-9]{1}"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="ECNumber">
<xs:annotation>
<xs:documentation>Specifies the standard European Commision (EC) identification string for a substance.</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:string">
<xs:pattern value="[0-9]{3}-[0-9]{3}-[0-9]{1}"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="ESComXMLVersionNumber">
<xs:annotation>
<xs:documentation>Specifies the ESComXML version number for which the XML file is valid.</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:string">
<xs:enumeration value="2.1"/>
</xs:restriction>
</xs:simpleType>
<xs:complexType name="UseCondQuantitative">
<xs:annotation>
<xs:documentation>An operational condition of a use specified as a phrase with a value. The value is a numeric value with qualifier. The numeric value is patterned according to the IEEE single-precision 64-bit floating point type.
Note that this data element does not provide details about the unit of measure to which the numeric value belongs. The operational condition, which the data element uses, defines the unit of measure.</xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element name="ConditionPhrase" type="ESCOMXML:Phrase" minOccurs="0" maxOccurs="1">
<xs:annotation>
<xs:documentation>A phrase that describes the operational condition.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="Value" type="ESCOMXML:NumericValueWithQualifier" minOccurs="0" maxOccurs="1">
<xs:annotation>
<xs:documentation>A numerical value with unit and qualifier that quantifies (associates a value) the condition phrase.</xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
</xs:complexType>
<xs:complexType name="NumericValueWithUnit">
<xs:annotation>
<xs:documentation>Specifies a numeric value with unit.</xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element name="Value" type="ESCOMXML:NumericValue" minOccurs="1" maxOccurs="1">
<xs:annotation>
<xs:documentation>Describes either the efficiency or accuracy values of an attribute.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="Unit" type="ESCOMXML:Phrase" minOccurs="1" maxOccurs="1">
<xs:annotation>
<xs:documentation>Describes the efficiency unit.</xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
</xs:complexType>
<xs:simpleType name="String1000">
<xs:annotation>
<xs:documentation>Specifies the string with a maximum 1000 characters.</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:string">
<xs:maxLength value="1000"/>
</xs:restriction>
</xs:simpleType>
<xs:complexType name="Phrase">
<xs:annotation>
<xs:documentation>Describes a phrase represented by a phrase identifier.</xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element name="PhraseID" type="integer" minOccurs="1" maxOccurs="1">
<xs:annotation>
<xs:documentation>Describes the unique phrase identifier typically from the European Standard Phrase Catalogue (EuPhraC) and its ESCom subset.</xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
</xs:complexType>
<xs:complexType name="RiskManagementMeasureEnv">
<xs:annotation>
<xs:documentation>A risk management measure related to the environment.</xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element name="MeasurePhrase" type="ESCOMXML:Phrase" minOccurs="1" maxOccurs="unbounded">
<xs:annotation>
<xs:documentation>A phrase that describes the risk management measure.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="EffectivenessAirInPercent" type="ESCOMXML:EffectivenessValueWithQualifier" minOccurs="0" maxOccurs="1">
<xs:annotation>
<xs:documentation>Specifies the measure and the degree in % to which the measure to reduce the release to air is effective.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="EffectivenessSoilInPercent" type="ESCOMXML:EffectivenessValueWithQualifier" minOccurs="0" maxOccurs="1">
<xs:annotation>
<xs:documentation>Specifies the measure and the degree in % to which the measure to reduce the release to soil is effective.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="EffectivenessWaterInPercent" type="ESCOMXML:EffectivenessValueWithQualifier" minOccurs="0" maxOccurs="1">
<xs:annotation>
<xs:documentation>Specifies the measure and the degree in % to which the measure to reduce the release to water is effective.</xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
</xs:complexType>
<xs:simpleType name="dateTime">
<xs:annotation>
<xs:documentation>Specifies a timestamp</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:dateTime"/>
</xs:simpleType>
<xs:complexType name="UseCondMeasureEnv">
<xs:annotation>
<xs:documentation>A use condition with effectiveness (risk management measure) for a use relevant to the environment and waste.</xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element name="ESSectionSubHeader" type="ESCOMXML:ESSectionSubHeader" minOccurs="1" maxOccurs="1">
<xs:annotation>
<xs:documentation>An enumeration that defines the heading within section 2 of the exposure scenario for communication to which the condition or measure is assigned.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="Type" type="ESCOMXML:Phrase" minOccurs="0" maxOccurs="1">
<xs:annotation>
<xs:documentation>A phrase that describes the type of an operational condition or a risk management measure.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="ConditionMeasure" type="ESCOMXML:Phrase" minOccurs="1" maxOccurs="1">
<xs:annotation>
<xs:documentation>A phrase that describes the condition of use or the risk management measure.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="NumericValue" type="ESCOMXML:NumericValueWithUnitAndQualifier" minOccurs="0" maxOccurs="1">
<xs:annotation>
<xs:documentation>A numerical value with unit and qualifier that quantifies (associates a value) the condition phrase.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="EffectivenessAirInPercent" type="ESCOMXML:EffectivenessValueWithQualifier" minOccurs="0" maxOccurs="1">
<xs:annotation>
<xs:documentation>Describes the degree in % to which the measure to reduce the release to air is effective.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="EffectivenessSoilInPercent" type="ESCOMXML:EffectivenessValueWithQualifier" minOccurs="0" maxOccurs="1">
<xs:annotation>
<xs:documentation>Describes the degree in % to which the measure to reduce the release to soil is effective.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="EffectivenessWaterInPercent" type="ESCOMXML:EffectivenessValueWithQualifier" minOccurs="0" maxOccurs="1">
<xs:annotation>
<xs:documentation>Describes the degree in % to which the measure to reduce the release to water is effective.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="EffectivenessWasteInPercent" type="ESCOMXML:EffectivenessValueWithQualifier" minOccurs="0" maxOccurs="1">
<xs:annotation>
<xs:documentation>Describes the degree in % to which the measure to reduce the release to waste is effective.</xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
</xs:complexType>
<xs:simpleType name="CountryCode">
<xs:annotation>
<xs:documentation>Defines a country code (e.g. DE, BE).</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:string">
<xs:maxLength value="25"/>
</xs:restriction>
</xs:simpleType>
<xs:complexType name="EffectivenessValueWithQualifier">
<xs:annotation>
<xs:documentation>Specifies a numeric value with qualifier. The numeric value is patterned according to the IEEE single-precision 64-bit floating point type.</xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element name="Value" type="ESCOMXML:EffectivenessValue" minOccurs="1" maxOccurs="1">
<xs:annotation>
<xs:documentation>Describes the effectiveness value.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="Qualifier" type="ESCOMXML:NumericQualifier" minOccurs="0" maxOccurs="1">
<xs:annotation>
<xs:documentation>Describes the qualifier of the value.</xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
</xs:complexType>
<xs:simpleType name="EffectivenessValue">
<xs:annotation>
<xs:documentation>Specifies a decimal-based effectiveness value with a given range between 0.001 and 100. </xs:documentation>
</xs:annotation>
<xs:restriction base="xs:decimal">
<xs:fractionDigits value="3"/>
<xs:maxInclusive value="100"/>
<xs:minInclusive value="0"/>
<xs:totalDigits value="6"/>
</xs:restriction>
</xs:simpleType>
<xs:complexType name="UseCondMeasureHH">
<xs:annotation>
<xs:documentation>A use condition with effectiveness (risk management measure) for a use relevant to human health.</xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element name="ESSectionSubHeader" type="ESCOMXML:ESSectionSubHeader" minOccurs="1" maxOccurs="1">
<xs:annotation>
<xs:documentation>An enumeration that defines the heading within section 2 of the exposure scenario for communication to which the condition or measure is assigned.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="Type" type="ESCOMXML:Phrase" minOccurs="0" maxOccurs="1">
<xs:annotation>
<xs:documentation>A phrase that describes the type of an operational condition or a risk management measure.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="ConditionMeasure" type="ESCOMXML:Phrase" minOccurs="1" maxOccurs="1">
<xs:annotation>
<xs:documentation>A phrase that describes the condition of use or the risk management measure.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="NumericValue" type="ESCOMXML:NumericValueWithUnitAndQualifier" minOccurs="0" maxOccurs="1">
<xs:annotation>
<xs:documentation>A numerical value with unit and qualifier that quantifies (associates a value) the condition phrase.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="EffectivenessDermalInPercent" type="ESCOMXML:EffectivenessValueWithQualifier" minOccurs="0" maxOccurs="1">
<xs:annotation>
<xs:documentation>Describes the degree in % to which the measure against risk through skin exposure is effective.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="EffectivenessInhalationInPercent" type="ESCOMXML:EffectivenessValueWithQualifier" minOccurs="0" maxOccurs="1">
<xs:annotation>
<xs:documentation>Describes the degree in % to which the measure against risk through inhalation is effective.</xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
</xs:complexType>
<xs:complexType name="NumericIntervalWithUnitAndQualifier">
<xs:annotation>
<xs:documentation>Specifies a numeric interval with unit and qualifier. The numeric values (lower and upper limit value) are patterned according to the IEEE single-precision 64-bit floating point type.</xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element name="Lower" type="ESCOMXML:NumericValue" minOccurs="0" maxOccurs="1">
<xs:annotation>
<xs:documentation>Describes the lower value of the interval.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="LowerQualifier" type="ESCOMXML:NumericQualifier" minOccurs="0" maxOccurs="1">
<xs:annotation>
<xs:documentation>Describes the qualifier of the lower value of the interval.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="Unit" type="ESCOMXML:Phrase" minOccurs="1" maxOccurs="1">
<xs:annotation>
<xs:documentation>Describes the unit used in the interval.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="Upper" type="ESCOMXML:NumericValue" minOccurs="0" maxOccurs="1">
<xs:annotation>
<xs:documentation>Describes the upper value of the interval.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="UpperQualifier" type="ESCOMXML:NumericQualifier" minOccurs="0" maxOccurs="1">
<xs:annotation>
<xs:documentation>Describes the qualifier of the upper value of the interval.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="Average" type="ESCOMXML:NumericValue" minOccurs="0" maxOccurs="1">
<xs:annotation>
<xs:documentation>Specifies the average value for an interval.</xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
</xs:complexType>
<xs:complexType name="UseCondQuantitativeWithUnitAndQual">
<xs:annotation>
<xs:documentation>An operational condition of a use specified as a phrase with a value. The value is a numeric value with unit and qualifier. The numeric value is patterned according to the IEEE single-precision 64-bit floating point type.</xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element name="ConditionPhrase" type="ESCOMXML:Phrase" minOccurs="0" maxOccurs="1">
<xs:annotation>
<xs:documentation>A phrase that describes the operational condition.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="Value" type="ESCOMXML:NumericValueWithUnitAndQualifier" minOccurs="0" maxOccurs="1">
<xs:annotation>
<xs:documentation>A numerical value with unit and qualifier that quantifies (associates a value) the condition phrase.</xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
</xs:complexType>
<xs:complexType name="RiskManagementMeasureWaste">
<xs:annotation>
<xs:documentation>A risk management measure related to waste.</xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element name="MeasurePhrase" type="ESCOMXML:Phrase" minOccurs="1" maxOccurs="unbounded">
<xs:annotation>
<xs:documentation>A phrase that describes the risk management measure.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="EffectivenessWasteInPercent" type="ESCOMXML:EffectivenessValueWithQualifier" minOccurs="0" maxOccurs="1">
<xs:annotation>
<xs:documentation>Describes the method or measures to reduce the release of waste to the environment.</xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
</xs:complexType>
<xs:simpleType name="ESComType">
<xs:annotation>
<xs:documentation>Specifies the object type which the ESComXML file represents.</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:string">
<xs:enumeration value="PROD">
<xs:annotation>
<xs:documentation>Specifies the object type "Product" which the ESComXML file represents.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="SUB">
<xs:annotation>
<xs:documentation>Specifies the object type "Substance" which the ESComXML file represents.</xs:documentation>
</xs:annotation>
</xs:enumeration>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="NumericQualifier">
<xs:annotation>
<xs:documentation>Specifies permitted numeric operators that qualify a numeric value.</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:string">
<xs:enumeration value="EQ"/>
<xs:enumeration value="GE"/>
<xs:enumeration value="GT"/>
<xs:enumeration value="LE"/>
<xs:enumeration value="LT"/>
</xs:restriction>
</xs:simpleType>
<xs:complexType name="UseCondQuantitativeWithUnit">
<xs:annotation>
<xs:documentation>An operational condition of a use specified as a phrase with a value. The value is a numeric value with unit and qualifier. The numeric value is patterned according to the IEEE single-precision 64-bit floating point type.</xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element name="ConditionPhrase" type="ESCOMXML:Phrase" minOccurs="0" maxOccurs="1">
<xs:annotation>
<xs:documentation>A phrase that describes the operational condition.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="Value" type="ESCOMXML:NumericValueWithUnit" minOccurs="0" maxOccurs="1">
<xs:annotation>
<xs:documentation>A numerical value with unit and qualifier that quantifies (associates a value) the condition phrase.</xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
</xs:complexType>
<xs:simpleType name="ESSection2Head">
<xs:annotation>
<xs:documentation>Specifies the sub headers of section 2 for exposure scenarios:
AFD:
Amount used (or contained in articles), frequency and duration of use/exposure
AGPA:
Additional good practice advice
OOC:
Other conditions
PC:
Product (article) characteristics
PPE:
Conditions and measures related to personal protection, hygiene and health evaluation
STP:
Conditions and measures related to sewage treatment plant
TOM:
Technical and organizational conditions and measures
WASTE:
Conditions and measures related to treatment of waste (incl. article waste)</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:string">
<xs:enumeration value="AFD"/>
<xs:enumeration value="AGPA"/>
<xs:enumeration value="OOC"/>
<xs:enumeration value="PC"/>
<xs:enumeration value="PPE"/>
<xs:enumeration value="STP"/>
<xs:enumeration value="TOM"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="ESSectionSubHeader">
<xs:annotation>
<xs:documentation>Defines the abbreviations of headings of section 2 for the exposure scenario for communication.</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:string">
<xs:enumeration value="AFD"/>
<xs:enumeration value="AGPA"/>
<xs:enumeration value="OOC"/>
<xs:enumeration value="PC"/>
<xs:enumeration value="PPE"/>
<xs:enumeration value="STP"/>
<xs:enumeration value="TOM"/>
<xs:enumeration value="WASTE"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="URL">
<xs:annotation>
<xs:documentation>Specifies a URL.</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:anyURI"/>
</xs:simpleType>
<xs:simpleType name="UseDescriptorCode">
<xs:annotation>
<xs:documentation>String representing one code of a Sector of Use, Product Category or Article Category, including the letter SU, PC or AC.</xs:documentation>
</xs:annotation>
<xs:restriction base="string">
<xs:minLength value="3"/>
<xs:maxLength value="5"/>
</xs:restriction>
</xs:simpleType>
</xs:schema>