-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathESCOMXML.xsd
More file actions
1129 lines (1028 loc) · 61.6 KB
/
Copy pathESCOMXML.xsd
File metadata and controls
1129 lines (1028 loc) · 61.6 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"?>
<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:annotation>
<xs:documentation>ESComXML Schema details</xs:documentation>
</xs:annotation>
<xs:include schemaLocation="ESCOMXMLDT.xsd"/>
<xs:complexType name="ReleaseEstimationEnvironment">
<xs:annotation>
<xs:documentation>Section that provides the initial release of a substance to the environment from a process or during an activity together with the method that has been used to derive this information.</xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element name="ReleaseRoute" type="ESCOMXML:Phrase" minOccurs="1" maxOccurs="1">
<xs:annotation>
<xs:documentation>Release route to which the release rate reported refers.
Expected value: Phrase</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="ReleaseRate" type="ESCOMXML:NumericValueWithUnit" minOccurs="1" maxOccurs="1">
<xs:annotation>
<xs:documentation>Release rate value for the release route specified.
Expected value: Numeric value</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="ReleaseEstimationMethod" type="ESCOMXML:Phrase" minOccurs="0" maxOccurs="1">
<xs:annotation>
<xs:documentation>Describes the method used to determine the initial release of a substance to the environment from a process or during an activity.
Expected value: Phrase</xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
</xs:complexType>
<xs:complexType name="OtherConditionsWorker">
<xs:annotation>
<xs:documentation>Section that describes other conditions affecting the worker's exposure. </xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element name="OutdoorIndoorActivity" type="ESCOMXML:Phrase" minOccurs="0" maxOccurs="1">
<xs:annotation>
<xs:documentation>Specifies whether the process or the activity takes place indoor or outdoor.
Expected value: Phrase</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="ProfessionalIndustrialIndicator" type="ESCOMXML:Phrase" minOccurs="0" maxOccurs="1">
<xs:annotation>
<xs:documentation>Specifies whether the assessment has been done assuming professional or industrial settings.
Expected value: Phrase</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="RoomSize" type="ESCOMXML:UseCondQuantitativeWithUnitAndQual" minOccurs="0" maxOccurs="1">
<xs:annotation>
<xs:documentation>Specifies the size of the room in which a process or an activity takes place.
Expected value: Phrase or numeric value or both</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="TemperatureInCelsius" type="ESCOMXML:UseCondQuantitative" minOccurs="0" maxOccurs="1">
<xs:annotation>
<xs:documentation>Specifies the temperature in °C at which a process or an activity takes place.
Expected value: Phrase or numeric value or both</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="VentilationRate" type="ESCOMXML:UseCondQuantitativeWithUnitAndQual" minOccurs="0" maxOccurs="1">
<xs:annotation>
<xs:documentation>Specifies the ventilation rate of the room in which a process or an activity takes place.
Expected value: Phrase or numeric value or both</xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
</xs:complexType>
<xs:complexType name="ExposureScenario">
<xs:annotation>
<xs:documentation>Section that describes the conditions and sectors for the safe use of a substance together with risk and waste management measures within contributing scenarios for the worker or consumer and environment. Product characteristics describe the use of a substance by the type of end-use in which the substance is known to be used. Guidance to downstream users helps to evaluate whether conditions set within a contributing scenario are met.</xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element name="IdentificationString" type="ESCOMXML:UUID" minOccurs="1" maxOccurs="1">
<xs:annotation>
<xs:documentation>Specifies the global unique identifier that is generated by the system when generating an exposure scenario.
Expected value: UUID</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="VersionDate" type="dateTime" minOccurs="1" maxOccurs="1">
<xs:annotation>
<xs:documentation>Describes the version date of an exposure scenario in XML date format; the version date and the IdentificationString indicate changes or updates to an exposure scenario.
Its lexical space is the ISO 8601 extended format:
[CCYY-MM-DD[Z|(+|-)hh:mm] with an optional time zone. Time zones that are not specified are considered undetermined.
Expected value: Date time</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="ExposureScenarioName" type="ESCOMXML:Phrase" minOccurs="1" maxOccurs="unbounded">
<xs:annotation>
<xs:documentation>Title of the exposure scenario.
Expected value: Phrase</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element maxOccurs="unbounded" minOccurs="0" name="Scope" type="ESCOMXML:Phrase"/>
<xs:element name="LifeCycleStage" type="ESCOMXML:Phrase" minOccurs="0" maxOccurs="1">
<xs:annotation>
<xs:documentation>Stage of the life cycle of the substance (or product) to which information communicated in the ES refer.
Expected value: Phrase</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="MainUserGroup" type="ESCOMXML:Phrase" minOccurs="0" maxOccurs="1">
<xs:annotation>
<xs:documentation>Specifies the main user groups in the life cycle of a substance (or product) as key descriptor (SU 3, 21, 22).
Expected value: Phrase</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="ExposureScenarioOrder" type="ESCOMXML:OrderNumber" minOccurs="1" maxOccurs="1">
<xs:annotation>
<xs:documentation>Specifies the order of an exposure scenario within the annex of the extended safety data sheet.
Expected value: Order number</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="SectorOfUse" type="ESCOMXML:Phrase" minOccurs="0" maxOccurs="unbounded">
<xs:annotation>
<xs:documentation>Describes the sectors of use (SU) that apply to an exposure scenario with the aim to give information on the scope, e.g. in which markets the product is used or in which the activity takes place. The list of SUs is available in the Use Descriptor System defined in chapter R.12 of the ECHA Guidance on Information Requirements and Chemical Safety Assessment.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="MarketInformationProductCategory" type="ESCOMXML:Phrase" minOccurs="0" maxOccurs="unbounded">
<xs:annotation>
<xs:documentation>Describes the product categories (PC) that apply to an exposure scenario to give information on the scope, e.g. in which product(s) the substance is used. The list of PCs is available in the Use Descriptor System defined in chapter R.12 of the ECHA Guidance on Information Requirements and Chemical Safety Assessment.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="MarketInformationArticleCategory" type="ESCOMXML:Phrase" minOccurs="0" maxOccurs="unbounded">
<xs:annotation>
<xs:documentation>Describes the article categories (AC) that apply to an exposure scenario to give information on the scope, e.g. in which articles(s) the substance is used or ends up in. The list of ACs is available in the Use Descriptor System defined in chapter R.12 of the ECHA Guidance on Information Requirements and Chemical Safety Assessment.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element minOccurs="0" name="UseMapUseCode" type="ESCOMXML:String255">
<xs:annotation>
<xs:documentation>see https://echa.europa.eu/documents/10162/15669641/use_maps_guidance_en.pdf/dade8654-e7e7-4e50-9721-1ddfe003179e , page 7. The code required here is to specify the unique identifier for each use in the use map, not a code for the whole use map. For example, a use in AISE’s use map has the identifier AISE_IS_001_v1, which follows the rules contained in the guidance mentioned.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="GuidanceToDU" type="ESCOMXML:GuidanceToDU" minOccurs="0" maxOccurs="1"/>
<xs:element name="WorkerUse" type="ESCOMXML:WorkerUse" minOccurs="0" maxOccurs="1"/>
<xs:element name="ConsumerUse" type="ESCOMXML:ConsumerUse" minOccurs="0" maxOccurs="1"/>
<xs:element name="ScalingToolDetails" type="ESCOMXML:ScalingToolDetails" minOccurs="0" maxOccurs="unbounded"/>
<xs:element name="ExposureScenarioStructuredShortTitle" type="ESCOMXML:ExposureScenarioStructuredShortTitle" minOccurs="0" maxOccurs="1"/>
</xs:sequence>
</xs:complexType>
<xs:complexType name="ContributingScenarioEnvironmentForWorkerUse">
<xs:annotation>
<xs:documentation>Section that describes the contributing scenario that controls exposure to the environment for workers within a compartment, for example air, freshwater, freshwater sediment, or, soil.</xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element name="IdentificationString" type="ESCOMXML:UUID" minOccurs="1" maxOccurs="1">
<xs:annotation>
<xs:documentation>Describes the global unique identifier that is generated by the system which identifies the contributing scenario for the environment.
Expected value: UUID</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element minOccurs="0" name="Sperc" type="ESCOMXML:Phrase">
<xs:annotation>
<xs:documentation>SpERC = Specific Environmental Release Category. The phrase text is expected to hold the wording, the phrase OriginalCode is expected to hold the SpERC code.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="ContributingScenarioName" type="ESCOMXML:Phrase" minOccurs="1" maxOccurs="unbounded">
<xs:annotation>
<xs:documentation>Name that describes the contributing scenario for the environment for workers' use.
Expected value: Phrase</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="ContributingScenarioOrder" type="ESCOMXML:OrderNumber" minOccurs="1" maxOccurs="1">
<xs:annotation>
<xs:documentation>Specifies the order of a contributing scenario within the annex of the extended safety data sheet.
Expected value: Order number</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="EnvironmentalReleaseCategory" type="ESCOMXML:Phrase" minOccurs="1" maxOccurs="unbounded">
<xs:annotation>
<xs:documentation>Describes the environmental release categories that are covered by the assessment described in the specific contributing scenario. This description is made via the Use Descriptor System defined in chapter R.12 of the ECHA guidance on information requirements.
Expected value: Phrase</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="ProductArticleCharacteristics" type="ESCOMXML:ProductArticleCharacteristics" minOccurs="0" maxOccurs="1"/>
<xs:element name="AmountsOfUse" type="ESCOMXML:AmountsOfUse" minOccurs="0" maxOccurs="1"/>
<xs:element name="AdditionalGoodPracticeAdvice" type="ESCOMXML:AdditionalGoodPracticeAdvice" minOccurs="0" maxOccurs="1"/>
<xs:element name="ExposureEstimationAdditionalDetails" type="ESCOMXML:ExposureEstimationAdditionalDetails" minOccurs="0" maxOccurs="1"/>
<xs:element name="WasteRelatedMeasures" type="ESCOMXML:WasteRelatedMeasures" minOccurs="0" maxOccurs="1"/>
<xs:element name="MsafeEnvironment" type="ESCOMXML:MsafeEnvironment" minOccurs="0" maxOccurs="1"/>
<xs:element name="FrequencyDurationEnvironment" type="ESCOMXML:FrequencyDurationEnvironment" minOccurs="0" maxOccurs="1"/>
<xs:element name="OtherConditionsEnvironment" type="ESCOMXML:OtherConditionsEnvironment" minOccurs="0" maxOccurs="1"/>
<xs:element name="AdditionalConditionsMeasuresEnvironment" type="ESCOMXML:AdditionalConditionsMeasuresEnvironment" minOccurs="0" maxOccurs="1"/>
<xs:element name="ReleaseEstimationEnvironment" type="ESCOMXML:ReleaseEstimationEnvironment" minOccurs="0" maxOccurs="unbounded"/>
<xs:element name="ExposureEstimationEnvironment" type="ESCOMXML:ExposureEstimationEnvironment" minOccurs="0" maxOccurs="unbounded"/>
<xs:element name="ReleaseDischargePrevention" type="ESCOMXML:ReleaseDischargePrevention" minOccurs="0" maxOccurs="1"/>
<xs:element name="STPConditions" type="ESCOMXML:STPConditions" minOccurs="0" maxOccurs="unbounded"/>
</xs:sequence>
</xs:complexType>
<xs:complexType name="MsafeEnvironment">
<xs:annotation>
<xs:documentation>Section that describes the maximum amount of a substance or product which can be used safely under the conditions.</xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element name="Msafe" type="ESCOMXML:NumericValueWithUnit" minOccurs="1" maxOccurs="1">
<xs:annotation>
<xs:documentation>Describes the maximum amount of a substance (or product) that can be used safely under the conditions communicated in the ES. It can be expressed by using different units of measure, such as kg/day, tonnes/year.
Expected value: Numeric value</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="CriticalCompartmentForMsafe" type="ESCOMXML:Phrase" minOccurs="0" maxOccurs="1">
<xs:annotation>
<xs:documentation>Specifies the compartment that has triggered the Msafe.
Expected value: Phrase</xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
</xs:complexType>
<xs:complexType name="GuidanceToDU">
<xs:annotation>
<xs:documentation>Section that provides information to help the downstream user to evaluate whether conditions set within the contributing scenario are met.</xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element name="GuidanceText" type="ESCOMXML:Phrase" minOccurs="0" maxOccurs="unbounded">
<xs:annotation>
<xs:documentation>Provides information that helps downstream users to evaluate whether they are working within the boundaries set by the exposure scenario.
Expected value: Phrase</xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
</xs:complexType>
<xs:complexType name="ProductArticleCharacteristics">
<xs:annotation>
<xs:documentation>Section that describes for which characteristics a contributing scenario is relevant.</xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element name="PhysicalForm" type="ESCOMXML:Phrase" minOccurs="0" maxOccurs="unbounded">
<xs:annotation>
<xs:documentation>Describes the physical form of the product (or article) assessed in the contributing scenario (CS); whether it is gaseous, liquid or solid.
Expected value: Phrase</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="VaporPressure" type="ESCOMXML:UseCondQuantitativeWithUnitAndQual" minOccurs="0" maxOccurs="1">
<xs:annotation>
<xs:documentation>Specifies the value of the substance vapor pressure.
Expected value: Phrase or numeric value or both</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="PreparationConcentrationUpperLimit" type="ESCOMXML:UseCondQuantitativeWithUnit" minOccurs="0" maxOccurs="1">
<xs:annotation>
<xs:documentation>Specifies the maximum concentration of a substance in a product which is covered by the assessment.
Expected value: Phrase or numeric value or both</xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
</xs:complexType>
<xs:complexType name="AmountsOfUse">
<xs:annotation>
<xs:documentation>Section that describes the amount(s) of a substance used during a process or task; this information is not always required for the assessment of a worker's exposure.</xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element name="UseAmount" type="ESCOMXML:UseCondQuantitativeWithUnitAndQual" minOccurs="1" maxOccurs="unbounded">
<xs:annotation>
<xs:documentation>Describes the amount(s) of a substance used during a process or task. Specifies the period for the input amount used during a process or an activity.
Expected value: Phrase or numeric value or both</xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
</xs:complexType>
<xs:complexType name="ContributingScenarioConsumer">
<xs:annotation>
<xs:documentation>Section that describes the contributing scenario that controls exposure to the consumer.</xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element name="IdentificationString" type="ESCOMXML:UUID" minOccurs="1" maxOccurs="1">
<xs:annotation>
<xs:documentation>Describes the global unique identifier that is generated by the system and that identifies the contributing scenario for the consumer.
Expected value: UUID</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element minOccurs="0" name="Sced" type="ESCOMXML:Phrase">
<xs:annotation>
<xs:documentation>SCED = Specific Consumer Exposure Description. The phrase text is expected to hold the wording, the phrase OriginalCode is expected to hold the SCED code.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="ContributingScenarioName" type="ESCOMXML:Phrase" minOccurs="1" maxOccurs="unbounded">
<xs:annotation>
<xs:documentation>Name that describes the contributing scenario for consumers.
Expected value: Phrase</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="ContributingScenarioOrder" type="ESCOMXML:OrderNumber" minOccurs="1" maxOccurs="1">
<xs:annotation>
<xs:documentation>Specifies the order of a contributing scenario within the annex of the extended safety data sheet.
Expected value: Order number </xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="ArticleCategory" type="ESCOMXML:Phrase" minOccurs="0" maxOccurs="unbounded">
<xs:annotation>
<xs:documentation>Describes the article categories (AC) that are covered by the assessment described in the specific contributing scenario. The list of ACs is available in the Use Descriptor System defined in chapter R.12 of the ECHA Guidance on Information Requirements and Chemical Safety Assessment.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="ArticleSubCategory" type="ESCOMXML:Phrase" minOccurs="0" maxOccurs="unbounded">
<xs:annotation>
<xs:documentation>Describes the article sub-categories that are covered by the assessment described in the specific contributing scenario, where additional details with respect to what is included in the field for ACs are needed.
Expected value: Phrase</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="ProductCategory" type="ESCOMXML:Phrase" minOccurs="0" maxOccurs="unbounded">
<xs:annotation>
<xs:documentation>Describes the product categories (PC) that are covered by the assessment described in the specific contributing scenario. The list of PCs is available in the Use Descriptor System defined in chapter R.12 of the ECHA Guidance on Information Requirements and Chemical Safety Assessment.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="ProductSubCategory" type="ESCOMXML:Phrase" minOccurs="0" maxOccurs="unbounded">
<xs:annotation>
<xs:documentation>Describes the product sub-categories that are covered by the assessment described in the specific contributing scenario, where additional details with respect to what is included in the field for PCs are needed.
Expected value: Phrase</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="ConsumerProtection" type="ESCOMXML:ConsumerProtection" minOccurs="0" maxOccurs="1"/>
<xs:element name="AmountsOfUse" type="ESCOMXML:AmountsOfUse" minOccurs="0" maxOccurs="1"/>
<xs:element name="ProductArticleCharacteristics" type="ESCOMXML:ProductArticleCharacteristics" minOccurs="0" maxOccurs="1"/>
<xs:element name="FrequencyDurationHH" type="ESCOMXML:FrequencyDurationHH" minOccurs="0" maxOccurs="unbounded"/>
<xs:element name="OtherConditionsConsumer" type="ESCOMXML:OtherConditionsConsumer" minOccurs="0" maxOccurs="1"/>
<xs:element name="ExposureEstimationHH" type="ESCOMXML:ExposureEstimationHH" minOccurs="0" maxOccurs="unbounded"/>
<xs:element name="HumanFactors" type="ESCOMXML:HumanFactors" minOccurs="0" maxOccurs="1"/>
<xs:element name="AdditionalConditionsMeasuresHH" type="ESCOMXML:AdditionalConditionsMeasuresHH" minOccurs="0" maxOccurs="1"/>
<xs:element name="ExposureEstimationAdditionalDetails" type="ESCOMXML:ExposureEstimationAdditionalDetails" minOccurs="0" maxOccurs="1"/>
</xs:sequence>
</xs:complexType>
<xs:complexType name="ESCOMXML_TOP">
<xs:annotation>
<xs:documentation>ESCOMXML_TOP is the root XML element of each ESComXML file. This root section specifies meta information for an ESComXML file.</xs:documentation>
</xs:annotation>
<xs:sequence minOccurs="1" maxOccurs="1">
<xs:element name="ESComXMLVersionNo" type="ESCOMXML:ESComXMLVersionNumber" minOccurs="1" maxOccurs="1">
<xs:annotation>
<xs:documentation>Specifies the version of the ESComXML Schema that was used to create the file. The value of this attribute should reflect the version of the ESComXML definition used to generate the XML file.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="ESComPhraseCatalogVersion" type="ESCOMXML:VersionNumber" minOccurs="1" maxOccurs="1">
<xs:annotation>
<xs:documentation>Version of the phrase catalog on which the information is based.
Expected value: Version number</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="Type" type="ESCOMXML:ESComType" minOccurs="1" maxOccurs="1">
<xs:annotation>
<xs:documentation>Identifies the object as a product or a substance.
Expected value: ESCom type</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="eSDS_Details" type="ESCOMXML:eSDS_Details" minOccurs="1" maxOccurs="1"/>
<xs:element name="Supplier" type="ESCOMXML:Supplier" minOccurs="0" maxOccurs="1"/>
<xs:element name="Substance" type="ESCOMXML:Substance" minOccurs="0" maxOccurs="1"/>
</xs:sequence>
</xs:complexType>
<xs:complexType name="Product">
<xs:annotation>
<xs:documentation>Section that describes the product (substance or mixture) for which the exposure scenario(s) is / are relevant.
If this is an example of a mixture or a compound, the SubstanceMixtureIndicator is set accordingly, and additional substances representing its corresponding composition are provided together with their exposure scenarios.</xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element name="MaterialName" type="ESCOMXML:String1000" minOccurs="1" maxOccurs="1">
<xs:annotation>
<xs:documentation>Provides the product, substance or mixture name; this can also be a trade name.
Expected value: String</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="SubstanceMixtureIndicator" type="ESCOMXML:SubstanceMixtureIndicator" minOccurs="1" maxOccurs="1">
<xs:annotation>
<xs:documentation>Identifies the product type as either a substance or mixture. This attribute is only relevant in case the XML document contains exposure scenarios for a product. This attribute is expected to be initial in case exposure scenarios for a pure substance are communicated.
Expected value: Substance mixture indicator</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="eSDSVersionNo" type="ESCOMXML:VersionNumber" minOccurs="1" maxOccurs="1">
<xs:annotation>
<xs:documentation>Provides the version number of the extended safety data sheet for which the ESComXML file is created.
Expected value: Version number</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="MaterialID" type="ESCOMXML:String255" minOccurs="0" maxOccurs="1">
<xs:annotation>
<xs:documentation>Provides the identifier of the material the object represents.
Expected value: String</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="Substance" type="ESCOMXML:Substance" minOccurs="0" maxOccurs="unbounded"/>
<xs:element name="ExposureScenario" type="ESCOMXML:ExposureScenario" minOccurs="0" maxOccurs="unbounded"/>
</xs:sequence>
</xs:complexType>
<xs:complexType name="ConsumerProtection">
<xs:annotation>
<xs:documentation>Section that describes the risk management measures for consumer consideration.</xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element name="ConsumerProtection" type="ESCOMXML:Phrase" minOccurs="1" maxOccurs="unbounded">
<xs:annotation>
<xs:documentation>Indicates safety advice to be conveyed to consumers in order to reduce exposure. This may include instructions for use.
Expected value: Phrase</xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
</xs:complexType>
<xs:complexType name="ReleaseDischargePrevention">
<xs:annotation>
<xs:documentation>Section that describes the method or measures to reduce or restrict the emission to the environment of a substance used in a process or an activity. </xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element name="Measure" type="ESCOMXML:RiskManagementMeasureEnv" minOccurs="1" maxOccurs="unbounded">
<xs:annotation>
<xs:documentation>Specifies different measures that aim to prevent losses from processes and/or clean up the streams (water or air) leaving the processes on site. The measures could be compartment-specific and could be associated with the specific effectiveness for air, soil or water. The effectiveness describes the degree in % to which the measure to reduce the release is effective.
Expected value: Phrase (+ effectiveness)</xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
</xs:complexType>
<xs:complexType name="AdditionalGoodPracticeAdvice">
<xs:annotation>
<xs:documentation>Section that describes further operational conditions and risk management measures for the exposure of a substance to environment, worker or consumer.</xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element name="AdditionalGoodPracticeAdvice" type="ESCOMXML:Phrase" minOccurs="1" maxOccurs="unbounded">
<xs:annotation>
<xs:documentation>Describes good practice information that the supplier chooses to include in addition to the obligatory measures, as advice to the downstream user.
Expected value: Phrase or numeric value or both</xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
</xs:complexType>
<xs:complexType name="TechnicalOrganizationalMeasuresWorkers">
<xs:annotation>
<xs:documentation>Section that describes the risk management measures for the worker relating to technical and organizational considerations.</xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element name="Measure" type="ESCOMXML:RiskManagementMeasureHH" minOccurs="1" maxOccurs="unbounded">
<xs:annotation>
<xs:documentation>The equipment-related implemented to prevent the exposure of workers are indicated here. Organizational measures are also included in this field. The measures could be route-specific and could be associated with the specific effectiveness for dermal or inhalation. The effectiveness describes the degree in % to which the measure to reduce the exposure is effective.
Expected value: Phrase (+ effectiveness)</xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
</xs:complexType>
<xs:complexType name="Substance">
<xs:annotation>
<xs:documentation>Section that describes the registered substances which are components of the product, and which are relevant for assessing the exposure scenario. Each substance specifies its concentration in the corresponding product or pure substance.
In REACH, these are chemical elements and their compounds, either in their natural state, or obtained by a manufacturing process.</xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element name="Name" type="ESCOMXML:String1000" minOccurs="1" maxOccurs="1">
<xs:annotation>
<xs:documentation>Provides the substance name typically the chemical name of a substance.
Expected value: String</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="REACHRegistrationNumber" type="ESCOMXML:REACHRegNumber" minOccurs="0" maxOccurs="unbounded">
<xs:annotation>
<xs:documentation>Provides the standard Registration, Evaluation, Authorization and Restriction of Chemicals (REACH) substance number which depends on the legal entity. Multiple REACH registration numbers can be provided.
Expected value: REACH registration number</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="Concentration" type="ESCOMXML:NumericIntervalWithUnitAndQualifier" minOccurs="0" maxOccurs="1">
<xs:annotation>
<xs:documentation>Provides the concentration of the substance in the product that is classified in the object section.
Expected value: Numeric value</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="ECNumber" type="ESCOMXML:ECNumber" minOccurs="0" maxOccurs="1">
<xs:annotation>
<xs:documentation>Provides the European Commission Number (EC) for Chemicals which identifies a substance.
Expected value: EC number</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="CASNumber" type="ESCOMXML:CASString" minOccurs="0" maxOccurs="1">
<xs:annotation>
<xs:documentation>Provides the Chemical Abstracts Service (CAS) number which identifies a substance.
Expected value: CAS string</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="LeadPrioritySubstance" type="ESCOMXML:LeadPrioritySubstance" minOccurs="0" maxOccurs="unbounded"/>
<xs:element name="ExposureScenario" type="ESCOMXML:ExposureScenario" minOccurs="0" maxOccurs="unbounded"/>
</xs:sequence>
</xs:complexType>
<xs:complexType name="LeadPrioritySubstance">
<xs:annotation>
<xs:documentation>Section that provides lead and priority substance details.</xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element name="Type" type="ESCOMXML:Phrase" minOccurs="1" maxOccurs="1">
<xs:annotation>
<xs:documentation>Specifies whether a component in a mixture is a priority or a lead substance.
Expected value: Phrase</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="Hazard" type="ESCOMXML:Phrase" minOccurs="0" maxOccurs="unbounded">
<xs:annotation>
<xs:documentation>Provides the exposure pathway in case of a lead substance or the type of a priority substance.
Expected value: Phrase</xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
</xs:complexType>
<xs:complexType name="FrequencyDurationHH">
<xs:annotation>
<xs:documentation>Section that describes the duration and the frequency of a process, or an activity during which a substance is released to the worker or consumer.</xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element name="Duration" type="ESCOMXML:UseCondQuantitativeWithUnitAndQual" minOccurs="0" maxOccurs="1">
<xs:annotation>
<xs:documentation>Describes the duration of the activity/exposure.
Expected value: Phrase or numeric value or both</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="Frequency" type="ESCOMXML:UseCondQuantitativeWithUnitAndQual" minOccurs="0" maxOccurs="1">
<xs:annotation>
<xs:documentation>Describes the frequency of the activity/exposure.
Expected value: Phrase or numeric value or both</xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
</xs:complexType>
<xs:complexType name="OtherConditionsEnvironment">
<xs:annotation>
<xs:documentation>Section that describes environmental factors and other conditions affecting environmental release within an exposure scenario.</xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element name="DilutionFactorCoastal" type="ESCOMXML:NumericValue" minOccurs="0" maxOccurs="1">
<xs:annotation>
<xs:documentation>Specifies the factor by which the effluent from a sewage treatment plant is diluted by sea water.
Expected value: Numeric value</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="DilutionFactorRiver" type="ESCOMXML:NumericValue" minOccurs="0" maxOccurs="1">
<xs:annotation>
<xs:documentation>Specifies the factor by which the effluent from a sewage treatment plant is diluted by river water.
Expected value: Numeric value</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="FlowRateRcvSurfWater" type="ESCOMXML:NumericValueWithUnit" minOccurs="0" maxOccurs="1">
<xs:annotation>
<xs:documentation>Specifies the water flow rate (receiving surface water) in m³/d into which the effluent is discharged; the default value is 18,000 m³/d.
Expected value: Numeric value</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="OutdoorIndoorActivity" type="ESCOMXML:Phrase" minOccurs="0" maxOccurs="1">
<xs:annotation>
<xs:documentation>Specifies whether the process or the activity takes place indoor or outdoor.
Expected value: Phrase</xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
</xs:complexType>
<xs:complexType name="PersonalProtectionEquipmentAndMeasuresWorkers">
<xs:annotation>
<xs:documentation>Section that describes the risk management measures for the worker relating to personal protection considerations.</xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element name="Measure" type="ESCOMXML:RiskManagementMeasureHH" minOccurs="1" maxOccurs="unbounded">
<xs:annotation>
<xs:documentation>Indicates elements related to personal protective equipment (PPE) for workers. The measures could be route-specific and could be associated with the specific effectiveness for dermal or inhalation. The effectiveness describes the degree in % to which the measure to reduce the exposure is effective.
Expected value: Phrase (+ effectiveness)</xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
</xs:complexType>
<xs:complexType name="HumanFactors">
<xs:annotation>
<xs:documentation>Section that describes details on human factors contributing to exposure.</xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element name="BodyPartsExposed" type="ESCOMXML:Phrase" minOccurs="1" maxOccurs="unbounded">
<xs:annotation>
<xs:documentation>Body parts that have been considered in the assessment.
Expected value: Phrase</xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
</xs:complexType>
<xs:complexType name="STPConditions">
<xs:annotation>
<xs:documentation>Section that describes the conditions pertaining to a sewage treatment plant.</xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element name="STPType" type="ESCOMXML:RiskManagementMeasureGeneric" minOccurs="1" maxOccurs="1">
<xs:annotation>
<xs:documentation>Specifies the type of sewage treatment plant that is used to treat the waste water from the activities covered by the exposure scenario before their release to the environment. The value of effectiveness specifies the value in a percentage of a substance which is removed from waste water by the sewage treatment plant.
Expected value: Phrase (+ effectiveness)</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="STPTypeAdditionalInformation" type="ESCOMXML:Phrase" minOccurs="0" maxOccurs="unbounded">
<xs:annotation>
<xs:documentation>Specifies additional technical details on the type of treatment applied in the plant.
Expected value: Phrase</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="SludgeTreatment" type="ESCOMXML:Phrase" minOccurs="0" maxOccurs="unbounded">
<xs:annotation>
<xs:documentation>Specifies the way in which the sludge coming from the sewage treatment is processed or cannot be used.
Expected value: Phrase</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="STPEffluentInM3perDay" type="ESCOMXML:NumericValue" minOccurs="0" maxOccurs="1">
<xs:annotation>
<xs:documentation>Specifies the flow rate of the sewage treatment plant in m³/d. The default value used for a standard town is 2000 m³/d.
Expected value: Numeric value</xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
</xs:complexType>
<xs:complexType name="ContributingScenarioWorker">
<xs:annotation>
<xs:documentation>Section that describes the contributing scenario that controls exposure to the worker. </xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element name="IdentificationString" type="ESCOMXML:UUID" minOccurs="1" maxOccurs="1">
<xs:annotation>
<xs:documentation>Describes the global unique identifier that is generated by the system and that identifies the contributing scenario for the worker.
Expected value: UUID</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element minOccurs="0" name="Swed" type="ESCOMXML:Phrase">
<xs:annotation>
<xs:documentation>SWED = Specific Worker Exposure Description. The phrase text is expected to hold the wording, the phrase OriginalCode is expected to hold the SWED code.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="ContributingScenarioName" type="ESCOMXML:Phrase" minOccurs="1" maxOccurs="unbounded">
<xs:annotation>
<xs:documentation>Name that describes the contributing scenario for workers.
Expected value: Phrase</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="ContributingScenarioOrder" type="ESCOMXML:OrderNumber" minOccurs="1" maxOccurs="1">
<xs:annotation>
<xs:documentation>Specifies the order of a contributing scenario within the annex of the extended safety data sheet.
Expected value: Order number</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="ProcessCategory" type="ESCOMXML:Phrase" minOccurs="1" maxOccurs="unbounded">
<xs:annotation>
<xs:documentation>Describes the process categories that are covered by the assessment described in the specific contributing scenario. This description is made via the Use Descriptor System defined in chapter R.12 of the ECHA guidance on information requirements.
Expected value: Phrase</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="AdditionalGoodPracticeAdvice" type="ESCOMXML:AdditionalGoodPracticeAdvice" minOccurs="0" maxOccurs="1"/>
<xs:element name="TechnicalOrganizationalMeasuresWorkers" type="ESCOMXML:TechnicalOrganizationalMeasuresWorkers" minOccurs="0" maxOccurs="1"/>
<xs:element name="ProductArticleCharacteristics" type="ESCOMXML:ProductArticleCharacteristics" minOccurs="0" maxOccurs="1"/>
<xs:element name="AmountsOfUse" type="ESCOMXML:AmountsOfUse" minOccurs="0" maxOccurs="1"/>
<xs:element name="FrequencyDurationHH" type="ESCOMXML:FrequencyDurationHH" minOccurs="0" maxOccurs="unbounded"/>
<xs:element name="OtherConditionsWorker" type="ESCOMXML:OtherConditionsWorker" minOccurs="0" maxOccurs="1"/>
<xs:element name="ExposureEstimationHH" type="ESCOMXML:ExposureEstimationHH" minOccurs="0" maxOccurs="unbounded"/>
<xs:element name="PersonalProtectionEquipmentAndMeasuresWorkers" type="ESCOMXML:PersonalProtectionEquipmentAndMeasuresWorkers" minOccurs="0" maxOccurs="1"/>
<xs:element name="HumanFactors" type="ESCOMXML:HumanFactors" minOccurs="0" maxOccurs="1"/>
<xs:element name="AdditionalConditionsMeasuresHH" type="ESCOMXML:AdditionalConditionsMeasuresHH" minOccurs="0" maxOccurs="1"/>
<xs:element name="ExposureEstimationAdditionalDetails" type="ESCOMXML:ExposureEstimationAdditionalDetails" minOccurs="0" maxOccurs="1"/>
</xs:sequence>
</xs:complexType>
<xs:complexType name="Supplier">
<xs:annotation>
<xs:documentation>Section that provides all relevant details of the supplier of an ESComXML file. This information is not relevant in the case of own registrations.</xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element name="SupplierName" type="ESCOMXML:String255" minOccurs="1" maxOccurs="1">
<xs:annotation>
<xs:documentation>Specifies the name of the supplier who provided the ESComXML file.
Expected value: String</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="SupplierContactEmailAddress" type="ESCOMXML:EmailAddress" minOccurs="0" maxOccurs="1">
<xs:annotation>
<xs:documentation>Specifies the e-mail address in case the supplier of the ESComXML file needs to be contacted.
Expected value: E-mail address</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="DUNSCode" type="ESCOMXML:DUNSNumber" minOccurs="0" maxOccurs="1">
<xs:annotation>
<xs:documentation>Specifies the Data Universal Numbering System (DUNS) number of the supplier of the ESComXML file.
Expected value: DUNS number</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="Product" type="ESCOMXML:Product" minOccurs="1" maxOccurs="1"/>
</xs:sequence>
</xs:complexType>
<xs:complexType name="ExposureEstimationHH">
<xs:annotation>
<xs:documentation>Section that describes the target route for a given human health exposure.</xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element name="ExposureRoute" type="ESCOMXML:Phrase" minOccurs="1" maxOccurs="1">
<xs:annotation>
<xs:documentation>Specifies the exposure route for which the exposure level has been measured or calculated.
Expected value: Phrase</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="HealthEffect" type="ESCOMXML:Phrase" minOccurs="1" maxOccurs="1">
<xs:annotation>
<xs:documentation>Specifies the effect on the considered route caused by the exposure to the substance (or product).
Expected value: Phrase</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="ShortLongTermIndicator" type="ESCOMXML:Phrase" minOccurs="1" maxOccurs="1">
<xs:annotation>
<xs:documentation>Specifies the kind of exposure, for example short term or long term exposure.
Expected value: Phrase</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="ExposureLevel" type="ESCOMXML:NumericValueWithUnitAndQualifier" minOccurs="0" maxOccurs="1">
<xs:annotation>
<xs:documentation>Specifies the exposure level value measured or calculated for the human route associated to it.
Expected value: Numeric value</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="CalculationMethod" type="ESCOMXML:Phrase" minOccurs="0" maxOccurs="1">
<xs:annotation>
<xs:documentation>Specifies how the exposure level is calculated for the human exposure route associated to it.
Expected value: Phrase</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="RCR" type="ESCOMXML:NumericValueWithQualifier" minOccurs="0" maxOccurs="1">
<xs:annotation>
<xs:documentation>Specifies the risk characterization ratio (RCR) of the value of the exposure level. It is obtained for every route by comparing the exposure level to the derived no-effect level (DNEL).
Expected value: Numeric value</xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
</xs:complexType>
<xs:complexType name="eSDS_Details">
<xs:annotation>
<xs:documentation>Section that provides all extended safety data sheet based attributes.</xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element name="GenerationDate" type="dateTime" minOccurs="1" maxOccurs="1">
<xs:annotation>
<xs:documentation>Provides the generation date of the ESComXML file.
Its lexical space is the ISO 8601 extended format:
[CCYY-MM-DD[Z|(+|-)hh:mm] with an optional time zone. Time zones that are not specified are considered undetermined.
Expected value: Date time</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="LanguageCode" type="ESCOMXML:LanguageCode" minOccurs="1" maxOccurs="1">
<xs:annotation>
<xs:documentation>Provides the ISO language code representing the language used for the determination of language-dependent values.
Expected value: Language code</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="CountryCode" type="ESCOMXML:CountryCode" minOccurs="0" maxOccurs="1">
<xs:annotation>
<xs:documentation>Provides the country code to which the corresponding extended safety data sheet is shipped.
Its lexical space is the ISO 8601 extended format:
[CCYY-MM-DD[Z|(+|-)hh:mm] with an optional time zone. Time zones that are not specified are considered undetermined.
Expected value: Country code</xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
</xs:complexType>
<xs:complexType name="WasteRelatedMeasures">
<xs:annotation>
<xs:documentation>Section that specifies the handling of waste and the degree to which a substance is released to the environment from a process or an activity, or after its use phase.</xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element name="WasteTreatment" type="ESCOMXML:RiskManagementMeasureWaste" minOccurs="1" maxOccurs="unbounded">
<xs:annotation>
<xs:documentation>Indicates how waste produced during a process or an activity should be treated, including, for instance, prescribed disposal methods or advised against treatment methods.
Value expected: Phrase (+ effectiveness)</xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
</xs:complexType>
<xs:complexType name="OtherConditionsConsumer">
<xs:annotation>
<xs:documentation>Section that describes other conditions affecting the consumer's exposure. </xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element name="OutdoorIndoorActivity" type="ESCOMXML:Phrase" minOccurs="0" maxOccurs="1">
<xs:annotation>
<xs:documentation>Specifies whether the activity takes place indoor or outdoor.
Expected value: Phrase</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="RoomSize" type="ESCOMXML:UseCondQuantitativeWithUnitAndQual" minOccurs="0" maxOccurs="1">
<xs:annotation>
<xs:documentation>Specifies the size of the room in which an activity takes place.
Expected value: Phrase or numeric value or both</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="TemperatureInCelsius" type="ESCOMXML:UseCondQuantitative" minOccurs="0" maxOccurs="1">
<xs:annotation>
<xs:documentation>Specifies the temperature in °C at which an activity takes place.
Expected value: Phrase or numeric value or both</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="VentilationCondition" type="ESCOMXML:UseCondQuantitativeWithUnitAndQual" minOccurs="0" maxOccurs="1">
<xs:annotation>
<xs:documentation>Specifies the ventilation conditions of the room in which an activity takes place.
Expected value: Phrase or numeric value or both</xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
</xs:complexType>
<xs:complexType name="ExposureEstimationEnvironment">
<xs:annotation>
<xs:documentation>Section that describes an estimated exposure level for a given environmental compartment.</xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element name="Compartment" type="ESCOMXML:Phrase" minOccurs="1" maxOccurs="1">
<xs:annotation>
<xs:documentation>Specifies the compartment, for example air, freshwater, freshwater sediment, or soil to which the exposure level reported refers to.
Expected value: Phrase</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="ExposureLevel" type="ESCOMXML:NumericValueWithUnitAndQualifier" minOccurs="0" maxOccurs="1">
<xs:annotation>
<xs:documentation>Specifies the exposure level value measured or calculated for the environmental compartment associated to it.
Expected value: Numeric value</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="CalculationMethod" type="ESCOMXML:Phrase" minOccurs="0" maxOccurs="1">
<xs:annotation>
<xs:documentation>Describes the method used to determine the exposure level value.
Expected value: Phrase</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="RCR" type="ESCOMXML:NumericValueWithQualifier" minOccurs="0" maxOccurs="1">
<xs:annotation>
<xs:documentation>Specifies the risk characterization ratio (RCR) for the value of the exposure level. It is obtained for every compartment by comparing the exposure level to the predicted no-effect concentration (PNEC).
Expected value: Numeric value</xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
</xs:complexType>
<xs:complexType name="ExposureEstimationAdditionalDetails">
<xs:annotation>
<xs:documentation>Section that provides the downstream user with additional information in Section 3 beyond the numerical estimates and releases .</xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element name="AdditionalDetails" type="ESCOMXML:Phrase" minOccurs="0" maxOccurs="unbounded">
<xs:annotation>
<xs:documentation>Includes additional information for the downstream users beyond the numerical estimates and releases, e.g. related to the scope and details of the exposure assessment.
Expected value: Phrase</xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
</xs:complexType>
<xs:complexType name="AdditionalConditionsMeasuresEnvironment">
<xs:annotation>
<xs:documentation>Section that describes environmental factors affecting environmental release within an exposure scenario.</xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element name="ConditionMeasure" type="ESCOMXML:UseCondMeasureEnv" minOccurs="1" maxOccurs="unbounded">
<xs:annotation>
<xs:documentation>Specifies additional waste related measures for a use relevant to environment.</xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
</xs:complexType>
<xs:complexType name="FrequencyDurationEnvironment">
<xs:annotation>
<xs:documentation>Section that describes the duration and the frequency of a process or an activity during which a substance is released to the environment.</xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element name="ExposureType" type="ESCOMXML:Phrase" minOccurs="1" maxOccurs="1">
<xs:annotation>
<xs:documentation>Specifies the exposure of the type of release to the environmental compartment, i.e. whether the releases are "continuous" or "intermittent".
Expected value: Phrase</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="EmissionDaysPerYear" type="ESCOMXML:NumericValue" minOccurs="1" maxOccurs="1">
<xs:annotation>
<xs:documentation>Specifies the number of days in a year during which the emission occurs.
Expected value: Numeric value</xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
</xs:complexType>
<xs:complexType name="AdditionalConditionsMeasuresHH">
<xs:annotation>
<xs:documentation>Section that describes environmental factors affecting environmental release within an exposure scenario.</xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element name="ConditionMeasure" type="ESCOMXML:UseCondMeasureHH" minOccurs="1" maxOccurs="unbounded">
<xs:annotation>
<xs:documentation>Additional conditions related to human health that do not fall under any other attribute, but which are relevant for the overall characterization of the use of the substance (or product) and therefore have to be communicated in the supply chain.
Expected value: Phrase or numeric value or both</xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
</xs:complexType>
<xs:complexType name="WorkerUse">
<xs:annotation>
<xs:documentation>Umbrella section that classifies the exposure scenario as an exposure scenario for activities by workers.</xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element name="ContributingScenarioEnvironmentForWorkerUse" type="ESCOMXML:ContributingScenarioEnvironmentForWorkerUse" minOccurs="1" maxOccurs="unbounded"/>
<xs:element name="ContributingScenarioWorker" type="ESCOMXML:ContributingScenarioWorker" minOccurs="1" maxOccurs="unbounded"/>
</xs:sequence>
</xs:complexType>
<xs:complexType name="ConsumerUse">
<xs:annotation>
<xs:documentation>Umbrella section that classifies the exposure scenario as an exposure scenario for activities by consumers.</xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element name="ContributingScenarioEnvironmentForConsumerUse" type="ESCOMXML:ContributingScenarioEnvironmentForConsumerUse" minOccurs="1" maxOccurs="unbounded"/>
<xs:element name="ContributingScenarioConsumer" type="ESCOMXML:ContributingScenarioConsumer" minOccurs="1" maxOccurs="unbounded"/>
</xs:sequence>
</xs:complexType>
<xs:complexType name="ContributingScenarioEnvironmentForConsumerUse">
<xs:annotation>
<xs:documentation>Section that describes the contributing scenario that controls exposure to the environment for consumers within a compartment, for example air, freshwater, freshwater sediment, or, soil.</xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element name="IdentificationString" type="ESCOMXML:UUID" minOccurs="1" maxOccurs="1">
<xs:annotation>
<xs:documentation>Describes the global unique identifier that is generated by the system which identifies the contributing scenario for the environment.
Expected value: UUID</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element minOccurs="0" name="Sperc" type="ESCOMXML:Phrase">
<xs:annotation>
<xs:documentation>SpERC = Specific Environmental Release Category. The phrase text is expected to hold the wording, the phrase OriginalCode is expected to hold the SpERC code.</xs:documentation>