forked from esdscom/sdscom-xml
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSDSComXMLCT.xsd
1919 lines (1903 loc) · 96.3 KB
/
SDSComXMLCT.xsd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0" encoding="UTF-8"?>
<!-- Mit XMLSpy v2012 sp1 (x64) (http://www.altova.com) von Nils Jattkowski (eska Ingenieurgesellschaft mbH) bearbeitet -->
<!-- *****************************************************************************
Issue : SDScom XML schema definition 4.x
Purpose : Complex Types Schema Definition
to enable a xml-based
distribution of Safety Data Sheets (SDS)
as specified in the Format. For detailed
information please refer to
http://www.eSDSCom.eu
History :
Recent changes are documented on https://github.com/esdscom/sdscom-xml
History until v4.2.0:
2013.04.12 Normally, either a pure substance or a mixture is specified in the composition type. But
pure substances with stabilizers or impurities, might use both. The stabilizers and impurities can
be specified as components under the mixture with the IsIpurity og IsStabilizers flags set. An XSD
CHOICE construction in the type Composition has been removedto allow use of both Substance and
Mixture in such cases. The MinOccurence for both Substance and Mixture has been set to 0.
2013.09.16 Update of ClpHazardStatement from maxOccur 1 to 2 according to CLP ATP 4.
2013.09.20 Added the attribute ComponentInternalSdsId to components. Optional GUID to identfy
components in mixtures as identical to pure substances with the same GUID as InternalSdsId.
2013.09.22 Added the the optional attribute PrintAsAttachment to exposure scenarios.
2013.09.23 Added two new fields IsPhysicalValues and IsToxicologicalValues to flag substances of
mixtures to be shown in section 9 and 11. Min and MaxOccurrences set for all such "show in section X"-flags.
2013.10.14 Added missing MinOccurs=0 and MaxOccurs=1 to IsDetergent.
2013.11.21 The type of AssessedEuRestrictions and AssessedNationalRestrictions changed from xs:boolen
to AssessmentEnum for consistency.
2013.11.29 Added a new field IsEcoToxicologicalValues to flag substances of mixtures to be shown in section 12.
2014.02.11 Updated minOccurrence to 0 for Medium in Solubilities according to Excel sheet.
2014.02.12 The type for SafetySigns updated to phrase from SafetySign (enumeration) according to the Excel
definition.
2014.04.04 MinOccurrence changed from 0 to 1 for SuCode, PcCode, ProcCode, AcCode.
2014.07.22 New complexType for ProductGtin
2015.05.21 ReachRegNo maxOccur changed to unbound
Changed StorageStability from type phrase to own type
Changed GloveThickness from type phrase to UnitValue
Changed GloveBreakInTime from type phrase to UnitValue
2015.06.18 Added under PhysicalChemicalProperties->Appearance a new state "StateUnderStandardConditions"
Added StateUnderStandardConditionsEnum
Changed "IsOccupationalExposureLimit" to "IncludeOccupationalExposureLimit"
Changed "IsBiologicalLimitValues" to "IncludeBiologicalLimitValues"
Changed "IsPhysicalValues" to "IncludePhysicalValues"
Changed "IsToxicologicalValues" to "IncludeToxicologicalValues"
Changed "IsEcoToxicologicalValues" to "IncludeEcoToxicologicalValues"
Changed LowerExplosionLimit from PhysChemValue to PhysChemUnitValue
Changed UpperExplosionLimit from PhysChemValue to PhysChemUnitValue
2015.07.30 Extended Component with TransportInformation
IsDangerReleasingSubstanceAdrRidAdn
IsDangerReleasingSubstanceImdg
IsDangerReleasingSubstanceIcao
***************************************************************************** -->
<xs:schema targetNamespace="http://www.esdscom.eu/SDScom" xmlns="http://www.w3.org/2001/XMLSchema" xmlns:SDScom="http://www.esdscom.eu/SDScom" xmlns:xs="http://www.w3.org/2001/XMLSchema" version="2.0">
<xs:include schemaLocation="SDSComXMLDT.xsd"/>
<!-- National extensions to the standard. Initially empty. -->
<xs:include schemaLocation="SDSComXMLNE.xsd"/>
<xs:include schemaLocation="SDSComXMLNE_CH.xsd"/>
<xs:include schemaLocation="SDSComXMLNE_DE.xsd"/>
<xs:include schemaLocation="SDSComXMLNE_NO.xsd"/>
<!-- ******************************************************************* SectorOfUse ************* -->
<xs:complexType name="SectorOfUse">
<xs:annotation>
<xs:appinfo>SDScomBau</xs:appinfo>
<xs:appinfo>SDScomChem</xs:appinfo>
<xs:documentation> SectorOfUse, source: Chapter 1, used by: CT "IdentifiedUse" </xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element name="SuCode" type="SDScom:SectorOfUseCodeEnum" minOccurs="1" maxOccurs="1">
<xs:annotation>
<xs:appinfo>SDScomBau</xs:appinfo>
<xs:appinfo>SDScomChem</xs:appinfo>
</xs:annotation>
</xs:element>
<xs:element name="SuFulltext" type="SDScom:Phrase" minOccurs="0" maxOccurs="1">
<xs:annotation>
<xs:appinfo>SDScomBau</xs:appinfo>
<xs:appinfo>SDScomChem</xs:appinfo>
</xs:annotation>
</xs:element>
</xs:sequence>
</xs:complexType>
<!-- ******************************************************************* ProductCategory ************* -->
<xs:complexType name="ProductCategory">
<xs:annotation>
<xs:appinfo>SDScomBau</xs:appinfo>
<xs:appinfo>SDScomChem</xs:appinfo>
<xs:documentation> ProductCategory, source: Chapter 1, used by: CT "IdentifiedUse" </xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element name="PcCode" type="SDScom:ProductCategoryCodeEnum" minOccurs="1" maxOccurs="1">
<xs:annotation>
<xs:appinfo>SDScomBau</xs:appinfo>
<xs:appinfo>SDScomChem</xs:appinfo>
</xs:annotation>
</xs:element>
<xs:element name="PcFulltext" type="SDScom:Phrase" minOccurs="0" maxOccurs="1">
<xs:annotation>
<xs:appinfo>SDScomBau</xs:appinfo>
<xs:appinfo>SDScomChem</xs:appinfo>
</xs:annotation>
</xs:element>
</xs:sequence>
</xs:complexType>
<!-- ******************************************************************* ProcessCategory ************* -->
<xs:complexType name="ProcessCategory">
<xs:annotation>
<xs:appinfo>SDScomBau</xs:appinfo>
<xs:appinfo>SDScomChem</xs:appinfo>
<xs:documentation> ProcessCategory, source: Chapter 1, used by: CT "IdentifiedUse" </xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element name="ProcCode" type="SDScom:ProcessCategoryCodeEnum" minOccurs="1" maxOccurs="1">
<xs:annotation>
<xs:appinfo>SDScomBau</xs:appinfo>
<xs:appinfo>SDScomChem</xs:appinfo>
</xs:annotation>
</xs:element>
<xs:element name="ProcFulltext" type="SDScom:Phrase" minOccurs="0" maxOccurs="1">
<xs:annotation>
<xs:appinfo>SDScomBau</xs:appinfo>
<xs:appinfo>SDScomChem</xs:appinfo>
</xs:annotation>
</xs:element>
</xs:sequence>
</xs:complexType>
<!-- ******************************************************************* ArticleCategory ************* -->
<xs:complexType name="ArticleCategory">
<xs:annotation>
<xs:appinfo>SDScomBau</xs:appinfo>
<xs:appinfo>SDScomChem</xs:appinfo>
<xs:documentation> ArticleCategory, source: Chapter 1, used by: CT "IdentifiedUse" </xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element name="AcCode" type="SDScom:ArticleCategoryCodeEnum" minOccurs="1" maxOccurs="1">
<xs:annotation>
<xs:appinfo>SDScomBau</xs:appinfo>
<xs:appinfo>SDScomChem</xs:appinfo>
</xs:annotation>
</xs:element>
<xs:element name="AcFulltext" type="SDScom:Phrase" minOccurs="0" maxOccurs="1">
<xs:annotation>
<xs:appinfo>SDScomBau</xs:appinfo>
<xs:appinfo>SDScomChem</xs:appinfo>
</xs:annotation>
</xs:element>
</xs:sequence>
</xs:complexType>
<!-- ******************************************************************* CorrespondingEs ***** -->
<xs:complexType name="CorrespondingEs">
<xs:annotation>
<xs:documentation> CorrespondingEs source: Chapter 1 </xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element name="ExposureScenarioName" type="SDScom:string128" minOccurs="0" maxOccurs="1"/>
<xs:element name="LegalDocumentFileName" type="SDScom:string256" minOccurs="0" maxOccurs="1">
<xs:annotation>
<xs:documentation> File name: For example, a locked PDF document. Static URL possible. </xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="LegalDocumentPrintDate" type="xs:date" minOccurs="0" maxOccurs="1">
<xs:annotation>
<xs:documentation> Print date: </xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="LegalDocumentSignature" type="SDScom:string64" minOccurs="0" maxOccurs="1">
<xs:annotation>
<xs:documentation> Digital signature: Digital signature to verify the document </xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="XmlFileName" type="SDScom:string256" minOccurs="0" maxOccurs="1">
<xs:annotation>
<xs:documentation> Xml file name: File name if the exposure scenarios is available in an Xml format. </xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
</xs:complexType>
<!-- ******************************************************************* Substance ************* -->
<xs:complexType name="SubstanceName">
<xs:sequence>
<xs:element name="IupacName" type="SDScom:string1024" minOccurs="0" maxOccurs="1">
<xs:annotation>
<xs:appinfo>SDScomBau</xs:appinfo>
<xs:appinfo>SDScomChem</xs:appinfo>
<xs:documentation>IUPAC or chemical name</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element minOccurs="0" name="CasInventoryName" type="SDScom:string1024">
<xs:annotation>
<xs:documentation>a.k.a CAIN, Name in the CAS Online Inventory</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="Synonyme" type="SDScom:string1024" minOccurs="0" maxOccurs="unbounded">
<xs:annotation>
<xs:appinfo>SDScomBau</xs:appinfo>
<xs:appinfo>SDScomChem</xs:appinfo>
</xs:annotation>
</xs:element>
</xs:sequence>
</xs:complexType>
<xs:complexType name="Substance">
<xs:annotation>
<xs:documentation> Substance </xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:choice minOccurs="0">
<xs:element minOccurs="0" name="SubstanceName" type="SDScom:SubstanceName"> </xs:element>
<xs:element name="GenericName" type="SDScom:string1024" minOccurs="0">
<xs:annotation>
<xs:appinfo>SDScomBau</xs:appinfo>
<xs:appinfo>SDScomChem</xs:appinfo>
<xs:documentation>according to CLP article 24</xs:documentation>
</xs:annotation>
</xs:element>
</xs:choice>
<xs:element name="InciName" type="SDScom:string1024" minOccurs="0">
<xs:annotation>
<xs:documentation>according to EU cosmetics regulation</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="NameDetergentsRegulation" type="SDScom:string1024" minOccurs="0" maxOccurs="1">
<xs:annotation>
<xs:appinfo>SDScomChem</xs:appinfo>
</xs:annotation>
</xs:element>
<xs:element name="CasNo" type="SDScom:CasNo" minOccurs="0" maxOccurs="1">
<xs:annotation>
<xs:appinfo>SDScomBau</xs:appinfo>
<xs:appinfo>SDScomChem</xs:appinfo>
<xs:documentation> CAS No: Identification number for trade products that are substances. Identification number issued by Chemical Abstract Service. An internationally recognized system for identification of pure substances and groups of substances. </xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="IndexNo" type="SDScom:IndexNo" minOccurs="0" maxOccurs="1">
<xs:annotation>
<xs:appinfo>SDScomBau</xs:appinfo>
<xs:appinfo>SDScomChem</xs:appinfo>
<xs:documentation> Index No: Identification number applied on chemical substances classified by authorities and listed in part 3 of Annex VI to CLP regulation (EC) No 1272/2008. </xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="AuthorisationNo" type="SDScom:string32" minOccurs="0" maxOccurs="1">
<xs:annotation>
<xs:appinfo>SDScomBau</xs:appinfo>
<xs:appinfo>SDScomChem</xs:appinfo>
<xs:documentation> Authorisation number: For chemicals subject to authorisation according to REACH Annex XIV, which have been granted authorisation for the actual use. </xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="EcNo" type="SDScom:EcNo" minOccurs="0" maxOccurs="1">
<xs:annotation>
<xs:appinfo>SDScomBau</xs:appinfo>
<xs:appinfo>SDScomChem</xs:appinfo>
<xs:documentation> EC No: Identification number for trade products that are substances. Identification number for chemical substances within EEA. The EC number is assigned either in EINECS or in ELINCS. </xs:documentation>
</xs:annotation>
</xs:element>
<xs:element maxOccurs="unbounded" minOccurs="0" name="ReachRegistration">
<xs:complexType>
<xs:sequence>
<xs:element name="RegistrationNumber" type="SDScom:ReachRegNo" minOccurs="0">
<xs:annotation>
<xs:appinfo>SDScomBau</xs:appinfo>
<xs:appinfo>SDScomChem</xs:appinfo>
<xs:documentation> REACH registration number: A number issued by ECHA to state that a registration of a substance is complete. The last four digits are identification of the company and may be omitted by DUs (downstream users). </xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="Comments" type="SDScom:Phrase" minOccurs="0" maxOccurs="unbounded">
<xs:annotation>
<xs:appinfo>SDScomBau</xs:appinfo>
<xs:appinfo>SDScomChem</xs:appinfo>
<xs:documentation> Comments to REACH registration No: E.g. used to describe why a registration number is not supplied. </xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="Formula" type="SDScom:string256" minOccurs="0" maxOccurs="1">
<xs:annotation>
<xs:documentation> Formula: Field to state the gross formula for the chemical (applies to pure substances). The formula shall be stated according to standard from Chemical Abstract Service. </xs:documentation>
</xs:annotation>
</xs:element>
<xs:element minOccurs="0" name="SubstanceType" type="SDScom:SubstanceTypeEnum"/>
<xs:element name="SubstanceAdditionalInformation" type="SDScom:Phrase" minOccurs="0" maxOccurs="unbounded">
<xs:annotation>
<xs:appinfo>SDScomChem</xs:appinfo>
<xs:documentation>If SubstanceType is other (or not used), specify the details here.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="MolecularWeight" type="SDScom:UnitValue" minOccurs="0"/>
<xs:element name="ChemicalPurity" type="SDScom:Phrase" minOccurs="0" maxOccurs="unbounded"/>
<xs:element maxOccurs="unbounded" minOccurs="0" name="ExposureScenarioIdentificationString" type="SDScom:Uuid">
<xs:annotation>
<xs:documentation>Link to ESCom exposure scenario. The referenced exposure scenario(s) must be delivered in one or more separate file(s) in ESCom format. In its element ExposureScenario/IdentificationString, ESCom provides the UUID which is referenced here.</xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
</xs:complexType>
<!-- ******************************************************************* StateUnderStandardConditionsEnum ****** -->
<xs:simpleType name="StateUnderStandardConditionsEnum">
<xs:annotation>
<xs:documentation> physical state (only solid/liquid/gaseous) under standard conditions (20°C, 1013 hpa) </xs:documentation>
</xs:annotation>
<xs:restriction base="xs:string">
<xs:enumeration value="solid"/>
<xs:enumeration value="liquid"/>
<xs:enumeration value="gaseous"/>
</xs:restriction>
</xs:simpleType>
<!-- ******************************************************************* EcologicalInformation ************ -->
<xs:complexType name="ToxInfoStotSE3">
<xs:sequence>
<xs:element name="HumanExperience" type="SDScom:Phrase" minOccurs="0" maxOccurs="unbounded"/>
<xs:element name="OtherInfo" type="SDScom:Phrase" minOccurs="0" maxOccurs="unbounded">
<xs:annotation>
<xs:documentation>Usually just one phrase how the evaluation took place. See EuPhraC for content examples.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="Source" type="SDScom:Phrase" minOccurs="0" maxOccurs="unbounded"/>
<xs:element name="Remark" type="SDScom:Phrase" minOccurs="0" maxOccurs="unbounded">
<xs:annotation>
<xs:documentation>Usually just one phrase if dta lacking - see EuPhraC for cotent examples.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="AssessmentOrClassification" type="SDScom:Phrase" minOccurs="0" maxOccurs="unbounded"/>
</xs:sequence>
</xs:complexType>
<!-- ******************************************************************* EcologicalInformation ************ -->
<!--Missing-->
<!--<xs:element name="KnownOrPredictedDistributionToEnvironmentalCompartments" type="SDScom:Phrase" minOccurs="0" maxOccurs="unbounded"/>-->
<!-- ************************************************************* Classification ********************************************** -->
<xs:complexType name="Classifications">
<xs:annotation>
<xs:appinfo>SDScomBau</xs:appinfo>
<xs:appinfo>SDScomChem</xs:appinfo>
<xs:documentation> Classification, source: Chapter 2, called by CT "Component" </xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element name="ClpClassification" type="SDScom:Classification" minOccurs="0" maxOccurs="1">
<xs:annotation>
<xs:appinfo>SDScomBau</xs:appinfo>
<xs:appinfo>SDScomChem</xs:appinfo>
<xs:documentation> CLP classification: The chemical’s hazard classification according to EU-CLP, with any remarks and notes. </xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="ClassificationAdditionalInformation" type="SDScom:Phrase" minOccurs="0" maxOccurs="unbounded">
<xs:annotation>
<xs:appinfo>SDScomBau</xs:appinfo>
<xs:appinfo>SDScomChem</xs:appinfo>
<xs:documentation> Additional information on classification: If the chemical do not meet the classification criteria etc. German: ClassificationAdditionalHints </xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
</xs:complexType>
<!-- ******************************************************************* OccupationalExposureLimit ************* -->
<xs:complexType name="Classification">
<xs:sequence>
<xs:element name="ClpHazardClassification" minOccurs="0" maxOccurs="unbounded">
<xs:annotation>
<xs:appinfo>SDScomBau</xs:appinfo>
<xs:appinfo>SDScomChem</xs:appinfo>
<xs:documentation> CLP classification: The chemical’s individual hazard classifications according to EU-CLP. </xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:sequence>
<xs:element name="ClpHazardClassCategory" type="SDScom:HazardClassCategoryEnum" minOccurs="1" maxOccurs="1">
<xs:annotation>
<xs:appinfo>SDScomBau</xs:appinfo>
<xs:appinfo>SDScomChem</xs:appinfo>
<xs:documentation> CLP hazard category: The hazard class and a corresponding category / differentiation according to CLP. </xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="ClpHazardStatement" type="SDScom:HazardStatement" minOccurs="0" maxOccurs="2">
<xs:annotation>
<xs:appinfo>SDScomBau</xs:appinfo>
<xs:appinfo>SDScomChem</xs:appinfo>
<xs:documentation>Hazard statement: The code and the text of the hazard statement corresponding to the hazard class and category. Zero instances for classes "Expl. 1.6", "Org. Perox. G" and "Self-react. G". One instance usually. Two instances for Aerosols category 1 and 2.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="ClpClassificationProcedure" type="SDScom:Phrase" minOccurs="0" maxOccurs="1">
<xs:annotation>
<xs:appinfo>SDScomBau</xs:appinfo>
<xs:appinfo>SDScomChem</xs:appinfo>
<xs:documentation>CLP classification procedure: To state how the individual classification is prepared. (This information should be shown in section 16). Only relevant for instances of type Classification in section 2. For components in section 3, this info should not be part of the SDS.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="MultiplyingFactor" minOccurs="0" maxOccurs="1" type="SDScom:int16">
<xs:annotation>
<xs:appinfo>SDScomChem</xs:appinfo>
<xs:documentation>Multiplying factor for substances highly toxic to the environment. Part of the classification of pure substances. The M factors are used in application of summation method for classification of mixtures containing substances that are classified as very toxic. The concept of M factors has been established to give an increased weight to very toxic substances when classifying mixtures. </xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element minOccurs="0" name="ClpAtp" type="SDScom:AtpEnum">
<xs:annotation>
<xs:documentation>Describes which amendment of CLP the ClpHazardClassification (and the labelling) is compliant with. Especially useful if the SDS revision date allows to classify according to different ATPs.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="ClpClassificationComments" type="SDScom:Phrase" minOccurs="0" maxOccurs="unbounded">
<xs:annotation>
<xs:appinfo>SDScomChem</xs:appinfo>
</xs:annotation>
</xs:element>
<xs:element name="ClpClassificationNotes" type="SDScom:Phrase" minOccurs="0" maxOccurs="4">
<xs:annotation>
<xs:appinfo>SDScomChem</xs:appinfo>
<xs:documentation> Classification notes: To identify classification notes (letters and/or figures) in the case that the trade product is a substance. This information shall be stated in the SDS together with the classifications of the substance. </xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
</xs:complexType>
<xs:complexType name="HazardLabellings">
<xs:sequence>
<xs:element name="ClpLabellingInfo" type="SDScom:HazardLabelling" minOccurs="0">
<xs:annotation>
<xs:appinfo>SDScomBau</xs:appinfo>
<xs:appinfo>SDScomChem</xs:appinfo>
<xs:documentation> CLP hazard labelling: Hazard labelling information according to CLP (GHS). </xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="AdditionalInformation" type="SDScom:Phrase" minOccurs="0" maxOccurs="unbounded">
<xs:annotation>
<xs:appinfo>SDScomChem</xs:appinfo>
<xs:documentation> Additional information and comments to hazard labelling. </xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="EcLabel" type="xs:boolean" minOccurs="0">
<xs:annotation>
<xs:documentation> EC label: States if true, the hazard label shall be marked ”EC label”. </xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="TactileWarning" type="xs:boolean" minOccurs="0">
<xs:annotation>
<xs:documentation> Tactile Warning: To inform if packaging must be supplied with tactile warning if the chemical is supplied to the gerneral public </xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="ChildResistantOpening" type="xs:boolean" minOccurs="0">
<xs:annotation>
<xs:documentation> Child Resistant Fastening: To inform if the packaging must be supplied with such fastening if the chemical is supplied to the general public. </xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="LabellingAccordingToOtherEuLegislation" minOccurs="0">
<xs:annotation>
<xs:appinfo>SDScomChem</xs:appinfo>
<xs:documentation> Other elements of the hazard label in accordance with EU legislation: Labelling required by other EU legislation </xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:sequence>
<xs:element name="VocLabelling" minOccurs="0" maxOccurs="unbounded">
<xs:annotation>
<xs:appinfo>SDScomChem</xs:appinfo>
<xs:documentation>VOC Labelling: Labelling requirements according to directive 2004/42/EC (amending 1999/13/EC)</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:sequence>
<xs:element name="ProductSubcategory" type="SDScom:Phrase" minOccurs="0">
<xs:annotation>
<xs:appinfo>SDScomChem</xs:appinfo>
<xs:documentation> Product Subcategory: The type of paint or varnish </xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="VocLimitForSubcategory" type="SDScom:UnitValue" minOccurs="0">
<xs:annotation>
<xs:appinfo>SDScomChem</xs:appinfo>
<xs:documentation> Maximum VOC content limit for the mixture: The maximum concentration of VOC in the actual product. To begiven i gram per litre. </xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="MaxVocConcInMixture" type="SDScom:UnitValue" minOccurs="0">
<xs:annotation>
<xs:appinfo>SDScomChem</xs:appinfo>
<xs:documentation> Actual max. concentration in the mixture: The concentration of VOC in the mixture. To begiven i gram per litre. </xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="DetergentLabelling" type="SDScom:Phrase" minOccurs="0" maxOccurs="unbounded">
<xs:annotation>
<xs:documentation> Detergent labelling: Labelling requirements according to detergents regulation (648/2004/EC with later amanedments). Includes dosing recommendations. Concentration groups: _lt 5 weight%, 5 - _lt 15 vekt%, 15 - _lt 30 weight%, og _ge 30 weight%. </xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="AerosolLabelling" type="SDScom:Phrase" minOccurs="0" maxOccurs="unbounded">
<xs:annotation>
<xs:documentation> Aerosol labelling: Labelling of aerosol dispensers in accordance with EU directive (75/324/EEC with later amendments) </xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="OtherEuLabellingRequirements" type="SDScom:Phrase" minOccurs="0" maxOccurs="unbounded">
<xs:annotation>
<xs:documentation> Other labelling requirenments in accordance with EU legislation: Labelling requirements imposed to the chemical in accordance with EU legislation not stated above. </xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:sequence>
</xs:complexType>
<xs:complexType name="HazardLabelling">
<xs:sequence>
<xs:element name="ClpHazardPictogram" type="SDScom:HazardPictogram" minOccurs="0" maxOccurs="6">
<xs:annotation>
<xs:appinfo>SDScomBau</xs:appinfo>
<xs:appinfo>SDScomChem</xs:appinfo>
<xs:documentation> Pictogram: A graphical presentation that includes a symbol plus other graphic elements, such as a border, background pattern or colour that is intended to convey specific information on the hazard concerned. </xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="ClpSignalWord" type="SDScom:SignalWord" minOccurs="0" maxOccurs="1">
<xs:annotation>
<xs:appinfo>SDScomBau</xs:appinfo>
<xs:appinfo>SDScomChem</xs:appinfo>
<xs:documentation> Signal word: A word that indicates the relative level of severity of hazards to alert the reader to a potential hazard. </xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="ClpHazardStatement" type="SDScom:HazardStatement" minOccurs="0" maxOccurs="unbounded">
<xs:annotation>
<xs:appinfo>SDScomBau</xs:appinfo>
<xs:appinfo>SDScomChem</xs:appinfo>
<xs:documentation> Hazard statement: A phrase assigned to a hazard class and category that describes the nature of the hazards of a hazardous substance or mixture, including, where appropriate, the degree of hazard. </xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="ClpPrecautionaryStatement" type="SDScom:PrecautionaryStatement" minOccurs="0" maxOccurs="unbounded">
<xs:annotation>
<xs:appinfo>SDScomBau</xs:appinfo>
<xs:appinfo>SDScomChem</xs:appinfo>
<xs:documentation> Precautionary statement: A phrase that describes recommended measure(s) to minimise or prevent adverse effects resulting from exposure to a hazardous substance or mixture due to its use or disposal. </xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="ClpSupplementalHazardInformation" type="SDScom:SupplementalHazardInformation" minOccurs="0" maxOccurs="unbounded">
<xs:annotation>
<xs:appinfo>SDScomBau</xs:appinfo>
<xs:appinfo>SDScomChem</xs:appinfo>
<xs:documentation> Supplemental information on the label: Statements shall be included in the section for supplemental information on the label where a substance or mixture classified as hazardous has the physical properties or health properties referred to in sections 1.1 and 1.2 of Annex II of CLP. E.g. EUH001, EUH203, EUH401, etc. </xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="ClpSpecialSupplementalLabelInfoMixtures" type="SDScom:SpecialSupplementalLabelInfo" minOccurs="0" maxOccurs="unbounded">
<xs:annotation>
<xs:appinfo>SDScomBau</xs:appinfo>
<xs:appinfo>SDScomChem</xs:appinfo>
<xs:documentation> Special supplemental labelling information: Labelling requirements according to REACH Annex XVII. </xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="ClpAdditionalLabellingInfo" type="SDScom:Phrase" minOccurs="0" maxOccurs="unbounded">
<xs:annotation>
<xs:appinfo>SDScomChem</xs:appinfo>
<xs:documentation> Additional information, CLP labelling: Information for instance on labelling of combined user and transport packing (with reference.to Section 14 of the SDS). </xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="ClpSpecialRulesOnPackaging" type="SDScom:Phrase" minOccurs="0" maxOccurs="unbounded">
<xs:annotation>
<xs:appinfo>SDScomChem</xs:appinfo>
</xs:annotation>
</xs:element>
</xs:sequence>
</xs:complexType>
<xs:complexType name="OccupationalExposureLimit">
<xs:annotation>
<xs:documentation>see Github issue #116 regarding multiple limit values</xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element name="LimitValueTypeWithCountryOrOrganisation" type="SDScom:ExposureLimitValueTypeEnum" minOccurs="0" maxOccurs="1"/>
<xs:element name="Limit8H" type="SDScom:UnitValue" minOccurs="0" maxOccurs="2">
<xs:annotation>
<xs:documentation>If two occurences, one must be ppm and the other a matching mg/m3 value.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="LimitShortTerm" type="SDScom:STEL" minOccurs="0" maxOccurs="2">
<xs:annotation>
<xs:documentation>If two occurences, one must be ppm and the other a matching mg/m3 value.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="PeakLimitation" minOccurs="0" maxOccurs="2">
<xs:annotation>
<xs:documentation>Also known as ceiling value. If two occurences, one must be ppm and the other a matching mg/m3 value. One of Value and PeakLimitationOverflowFactor is sufficient. If both are given, Value must be the short-term Value multiplied with the overflow factor.</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:sequence>
<xs:element name="Value" type="SDScom:UnitValue" minOccurs="0" maxOccurs="1"/>
<xs:element name="PeakLimitationOverflowFactor" type="SDScom:Value" minOccurs="0" maxOccurs="1"/>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="RecommendedMonitoringProcedure" type="SDScom:Phrase" minOccurs="0" maxOccurs="1"/>
<xs:element name="ParticleFraction" type="SDScom:ExposureLimitFractionEnum" minOccurs="0"/>
<xs:element name="Reference" type="SDScom:Phrase" minOccurs="0" maxOccurs="1"/>
<xs:element name="Comments" type="SDScom:Phrase" minOccurs="0" maxOccurs="unbounded">
<xs:annotation>
<xs:documentation>A remark that applies to all of the abovementioned OELs. Can cover specific info like code letters (H, Sh, Sa, Y, Z in Germany's TRGS 900) either as the letter or as the respective explanatory text.
If there are multiple limit values depending on conditions described in remarks (e.g. dust and spray values), use multiple instances of OccupationalExposueLimit - ofr example, two instances for inhalable and respirable fraction OEL's.</xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
</xs:complexType>
<!-- ******************************************************************* BiologicalLimitValue ************* -->
<xs:simpleType name="ExposureLimitFractionEnum">
<xs:restriction base="xs:string">
<xs:enumeration value="inhalable"/>
<xs:enumeration value="respirable"/>
</xs:restriction>
</xs:simpleType>
<xs:complexType name="BiologicalLimitValue">
<xs:annotation>
<xs:documentation> BiologicalLimitValue, source: Chapter 8 </xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element name="LimitValueTypeWithCountryOrOrganisation" type="SDScom:ExposureLimitValueTypeEnum" minOccurs="0" maxOccurs="1"/>
<xs:element name="InvestigationParameter" type="SDScom:Phrase" minOccurs="0" maxOccurs="1"/>
<xs:element name="Value" type="SDScom:UnitValue" minOccurs="0" maxOccurs="1"/>
<xs:element name="TestMaterial" type="SDScom:Phrase" minOccurs="0" maxOccurs="1"/>
<xs:element name="TestDate" type="xs:date" minOccurs="0" maxOccurs="1"/>
<xs:element name="Reference" type="SDScom:Phrase" minOccurs="0" maxOccurs="1"/>
<xs:element name="Comments" type="SDScom:Phrase" minOccurs="0" maxOccurs="unbounded"/>
</xs:sequence>
</xs:complexType>
<!-- ******************************************************************* STEL ****************************** -->
<xs:complexType name="STEL">
<xs:annotation>
<xs:documentation> Short Term Exposure Limit </xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element name="Value" type="SDScom:UnitValue" minOccurs="0" maxOccurs="1"/>
<xs:element name="AppraisalPeriod" type="SDScom:Phrase" minOccurs="0" maxOccurs="1"/>
</xs:sequence>
</xs:complexType>
<!-- ******************************************************************* DNEL ****************************** -->
<xs:complexType name="DNEL">
<xs:annotation>
<xs:documentation> DNEL, source: Chapter 8 </xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element name="Group" type="SDScom:EffectLevelGroupEnum" minOccurs="1" maxOccurs="1"/>
<xs:element name="ExposureRouteFrequencyAndEffect" type="SDScom:EffectLevelTypeEnum" minOccurs="1" maxOccurs="1">
<xs:annotation>
<xs:documentation> Exposure route, frequency and type of effect: </xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="DnelValue" type="SDScom:UnitValue" minOccurs="1" maxOccurs="1"/>
<xs:element name="AssessmentFactor" type="SDScom:Value" minOccurs="0">
<xs:annotation>
<xs:documentation>May be important in those cases where the DNEL is very low and where more than 1 DNEL existing to show how high the influence on the deviation was.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="Reference" type="SDScom:Phrase" minOccurs="0" maxOccurs="1"/>
<xs:element name="Comments" type="SDScom:Phrase" minOccurs="0" maxOccurs="unbounded"/>
</xs:sequence>
</xs:complexType>
<!-- ******************************************************************* DMEL ***************************** -->
<xs:complexType name="DMEL">
<xs:annotation>
<xs:documentation> DNEL source: Chapter 8 </xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element name="ExposureRouteFrequencyAndEffect" type="SDScom:EffectLevelTypeEnum" minOccurs="1" maxOccurs="1"/>
<xs:element name="DmelValue" type="SDScom:UnitValue" minOccurs="1" maxOccurs="1"/>
<xs:element name="AssessmentFactor" type="SDScom:Value" minOccurs="0">
<xs:annotation>
<xs:documentation>May be important in those cases where the DMEL is very low and where more than 1 DMEL existing to show how high the influence on the deviation was.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="Reference" type="SDScom:Phrase" minOccurs="0" maxOccurs="1"/>
<xs:element name="Comments" type="SDScom:Phrase" minOccurs="0" maxOccurs="unbounded"/>
</xs:sequence>
</xs:complexType>
<!-- ******************************************************************* PNEC **************************** -->
<xs:complexType name="PNEC">
<xs:annotation>
<xs:documentation> PNEC source: Chapter 8 </xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element name="Type" type="SDScom:PNECTypeEnum" minOccurs="1" maxOccurs="1"/>
<xs:element name="PnecValue" type="SDScom:UnitValue" minOccurs="1" maxOccurs="1"/>
<xs:element name="AssessmentFactor" type="SDScom:Value" minOccurs="0">
<xs:annotation>
<xs:documentation>May be important in those cases where the PNEC is very low and where more than 1 PNEC existing to show how high the influence on the deviation was.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="Reference" type="SDScom:Phrase" minOccurs="0" maxOccurs="1"/>
<xs:element name="Comments" type="SDScom:Phrase" minOccurs="0" maxOccurs="unbounded"/>
</xs:sequence>
</xs:complexType>
<!-- ******************************************************************* RespiratoryProtectionArticle ***** -->
<xs:complexType name="RespiratoryProtectionArticle">
<xs:annotation>
<xs:appinfo>SDScomChem</xs:appinfo>
<xs:documentation> RespiratoryProtectionArticle source: Chapter 8 </xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element name="Type" minOccurs="0" maxOccurs="unbounded">
<xs:annotation>
<xs:appinfo>SDScomChem</xs:appinfo>
</xs:annotation>
<xs:complexType>
<xs:sequence>
<xs:element name="EquipmentForSelfRescue" type="SDScom:Phrase" minOccurs="0" maxOccurs="unbounded">
<xs:annotation>
<xs:appinfo>SDScomChem</xs:appinfo>
</xs:annotation>
</xs:element>
<xs:element name="MaskType" type="SDScom:Phrase" minOccurs="0" maxOccurs="unbounded">
<xs:annotation>
<xs:appinfo>SDScomChem</xs:appinfo>
</xs:annotation>
</xs:element>
<xs:element name="FilterApparatusType" type="SDScom:Phrase" minOccurs="0" maxOccurs="unbounded">
<xs:annotation>
<xs:appinfo>SDScomChem</xs:appinfo>
</xs:annotation>
</xs:element>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="Description" type="SDScom:Phrase" minOccurs="0" maxOccurs="unbounded">
<xs:annotation>
<xs:appinfo>SDScomChem</xs:appinfo>
</xs:annotation>
</xs:element>
<xs:element name="Manufacturer" type="SDScom:Phrase" minOccurs="0" maxOccurs="1">
<xs:annotation>
<xs:appinfo>SDScomChem</xs:appinfo>
</xs:annotation>
</xs:element>
<xs:element name="SourcesOfSupply" type="SDScom:Phrase" minOccurs="0" maxOccurs="unbounded">
<xs:annotation>
<xs:appinfo>SDScomChem</xs:appinfo>
</xs:annotation>
</xs:element>
<xs:element name="ReferenceRelevantStandard" type="SDScom:Phrase" minOccurs="0" maxOccurs="unbounded">
<xs:annotation>
<xs:appinfo>SDScomChem</xs:appinfo>
<xs:documentation> Reference relevant standard: Only to be used for referencing old standards for compatibility </xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
</xs:complexType>
<!-- ******************************************************************* ProtectionArticle ************* -->
<xs:complexType name="ProtectionArticle">
<xs:annotation>
<xs:appinfo>SDScomChem</xs:appinfo>
<xs:documentation> ProtectionArticle source: Chapter 8 </xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element name="Description" type="SDScom:Phrase" minOccurs="0" maxOccurs="unbounded">
<xs:annotation>
<xs:appinfo>SDScomChem</xs:appinfo>
</xs:annotation>
</xs:element>
<xs:element name="Manufacturer" type="SDScom:Phrase" minOccurs="0" maxOccurs="1">
<xs:annotation>
<xs:appinfo>SDScomChem</xs:appinfo>
</xs:annotation>
</xs:element>
<xs:element name="SourcesOfSupply" type="SDScom:Phrase" minOccurs="0" maxOccurs="unbounded">
<xs:annotation>
<xs:appinfo>SDScomChem</xs:appinfo>
</xs:annotation>
</xs:element>
<xs:element name="ReferenceRelevantStandard" type="SDScom:Phrase" minOccurs="0" maxOccurs="unbounded">
<xs:annotation>
<xs:appinfo>SDScomChem</xs:appinfo>
<xs:documentation> Reference relevant standard: Only to be used for referencing old standards for compatibility </xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
</xs:complexType>
<!-- ******************************************************************* PhysicalHazardsScreeningProcedures *********** -->
<xs:complexType name="PhysicalHazardsScreeningProcedures">
<xs:annotation>
<xs:appinfo>SDScomChem</xs:appinfo>
<xs:documentation> PhysicalHazardsScreeningProcedures source: Chapter 9 </xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element name="ScreeningType" type="SDScom:Phrase" minOccurs="0" maxOccurs="1">
<xs:annotation>
<xs:appinfo>SDScomChem</xs:appinfo>
</xs:annotation>
</xs:element>
<xs:element name="ScreeningResult" type="SDScom:PhysChemUnitValue" minOccurs="0" maxOccurs="1">
<xs:annotation>
<xs:appinfo>SDScomChem</xs:appinfo>
</xs:annotation>
</xs:element>
</xs:sequence>
</xs:complexType>
<!-- ******************************************************************* PhysicalHazardsSafetyCharacteristics *********** -->
<xs:complexType name="PhysicalHazardsSafetyCharacteristics">
<xs:annotation>
<xs:appinfo>SDScomChem</xs:appinfo>
<xs:documentation> PhysicalHazardsSafetyCharacteristics source: Chapter 9 </xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element name="SafetyParameter" type="SDScom:Phrase" minOccurs="0" maxOccurs="1">
<xs:annotation>
<xs:appinfo>SDScomChem</xs:appinfo>
</xs:annotation>
</xs:element>
<xs:element name="SafetyResult" type="SDScom:PhysChemUnitValue" minOccurs="0" maxOccurs="1">
<xs:annotation>
<xs:appinfo>SDScomChem</xs:appinfo>
</xs:annotation>
</xs:element>
</xs:sequence>
</xs:complexType>
<!-- ******************************************************************** PhValue ********************* -->
<xs:complexType name="PhValue">
<xs:annotation>
<xs:appinfo>SDScomBau</xs:appinfo>
<xs:appinfo>SDScomChem</xs:appinfo>
<xs:documentation> PhValue source: Chapter 9 </xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element name="State" type="SDScom:PhValueStateEnum" minOccurs="0" maxOccurs="1">
<xs:annotation>
<xs:appinfo>SDScomBau</xs:appinfo>
<xs:appinfo>SDScomChem</xs:appinfo>
<xs:documentation> State: "in delivery state" or "in aqueous solution" </xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="Value" type="SDScom:PhysChemValueWithTemperature" minOccurs="0" maxOccurs="1">
<xs:annotation>
<xs:appinfo>SDScomBau</xs:appinfo>
<xs:appinfo>SDScomChem</xs:appinfo>
</xs:annotation>
</xs:element>
<xs:element name="Concentration" type="SDScom:UnitValue" minOccurs="0" maxOccurs="1">
<xs:annotation>
<xs:appinfo>SDScomBau</xs:appinfo>
<xs:appinfo>SDScomChem</xs:appinfo>
<xs:documentation> In aqueous solution </xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
<!-- xs:complexContent>
<xs:extension base="PhysChemValueWithTemperature">
<xs:sequence>
<xs:element name="State" type="PhValueStateEnum" minOccurs="0" maxOccurs="1"/>
<xs:element name="Concentration" type="SDScom:UnitValue" minOccurs="0" maxOccurs="1"/>
</xs:sequence>
</xs:extension>
</xs:complexContent -->
</xs:complexType>
<!-- ******************************************************************** FlashPoint ******************** -->
<xs:complexType name="FlashPoint">
<xs:annotation>
<xs:appinfo>SDScomBau</xs:appinfo>
<xs:appinfo>SDScomChem</xs:appinfo>
<xs:documentation> FlashPoint source: Chapter 9 </xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element name="Value" type="SDScom:PhysChemUnitValue" minOccurs="0" maxOccurs="1">
<xs:annotation>
<xs:appinfo>SDScomBau</xs:appinfo>
<xs:appinfo>SDScomChem</xs:appinfo>
</xs:annotation>
</xs:element>
<xs:element name="Evaluation" type="SDScom:Phrase" minOccurs="0" maxOccurs="unbounded">
<xs:annotation>
<xs:appinfo>SDScomBau</xs:appinfo>
<xs:appinfo>SDScomChem</xs:appinfo>
</xs:annotation>
</xs:element>
<xs:element name="ValueComments" type="SDScom:Phrase" minOccurs="0" maxOccurs="unbounded">
<xs:annotation>
<xs:appinfo>SDScomBau</xs:appinfo>
<xs:appinfo>SDScomChem</xs:appinfo>
</xs:annotation>
</xs:element>
</xs:sequence>
<!--xs:complexContent>
<xs:extension base="PhysChemUnitValue">
<xs:sequence>
<xs:element name="Valuation" type="SDScom:Phrase" minOccurs="0" maxOccurs="unbounded"/>
<xs:element name="ValueComments" type="SDScom:Phrase" minOccurs="0" maxOccurs="unbounded"/>
</xs:sequence>
</xs:extension>
</xs:complexContent -->
</xs:complexType>
<!-- ******************************************************************** Solubilities ************** -->
<xs:complexType name="Solubilities">
<xs:annotation>
<xs:appinfo>SDScomChem</xs:appinfo>
<xs:documentation>Describes the solutibities in one medium, optionally at various temperatures (section 9). </xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element name="SolubilityDescription" type="SDScom:Phrase" minOccurs="0" maxOccurs="unbounded">
<xs:annotation>
<xs:appinfo>SDScomChem</xs:appinfo>
</xs:annotation>
</xs:element>
<xs:element name="Solubility" minOccurs="0" maxOccurs="unbounded">
<xs:annotation>
<xs:appinfo>SDScomChem</xs:appinfo>
<xs:documentation>should be 0..1 only (unbounded is deprecated / on the list for refactoring).</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:sequence>
<xs:element name="Medium" type="SDScom:SolubilityMediumEnum" minOccurs="1" maxOccurs="1">
<xs:annotation>
<xs:appinfo>SDScomChem</xs:appinfo>
</xs:annotation>
</xs:element>
<xs:element name="OtherMediumDescription" type="SDScom:Phrase" minOccurs="0" maxOccurs="1">
<xs:annotation>
<xs:appinfo>SDScomChem</xs:appinfo>
<xs:documentation> Specify solubility medium if Medium above is Other. </xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="Value" type="SDScom:PhysChemUnitValueWithTemperature" minOccurs="0" maxOccurs="unbounded">
<xs:annotation>
<xs:appinfo>SDScomChem</xs:appinfo>
<xs:documentation>If the product has a low solubility or is insoluble in the specified medium, and if there is no numerical translation of this circumstance, put the respective phrase in Comments. (see issue #71)</xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:sequence>
<!--xs:complexContent>
<xs:extension base="PhysChemUnitValueWithTemperature">
<xs:sequence>
<xs:element name="Medium" type="SDScom:Phrase" minOccurs="0" maxOccurs="1"/>
<xs:element name="OtherMediumDescription" type="SDScom:Phrase" minOccurs="0" maxOccurs="1"/>
</xs:sequence>
</xs:extension>
</xs:complexContent -->
</xs:complexType>
<!-- ******************************************************************** HydrolysisRate ********************* -->
<xs:complexType name="HydrolysisRate">
<xs:annotation>
<xs:documentation> HydrolysisRate source: Chapter 9 </xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element name="Value" type="SDScom:PhysChemValueWithTemperature" minOccurs="0" maxOccurs="1"/>
<xs:element name="Concentration" type="SDScom:UnitValue" minOccurs="0" maxOccurs="1"/>
<xs:element name="PhValue" type="SDScom:Value" minOccurs="0" maxOccurs="1"/>
</xs:sequence>
<!-- xs:complexContent>
<xs:extension base="PhysChemValueWithTemperature">
<xs:sequence>
<xs:element name="Concentration" type="SDScom:UnitValue" minOccurs="0" maxOccurs="1"/>
<xs:element name="PhValue" type="SDScom:Value" minOccurs="0" maxOccurs="1"/>
</xs:sequence>
</xs:extension>
</xs:complexContent -->
</xs:complexType>
<!-- ******************************************************************* PartitionCoefficient ********************** -->
<xs:complexType name="PartitionCoefficient">
<xs:annotation>
<xs:appinfo>SDScomChem</xs:appinfo>
<xs:documentation> PartitionCoefficient n-octanol/water (log P O/W) source: Chapter 9, 12 </xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element name="Value" type="SDScom:PhysChemUnitValueWithTemperature" minOccurs="0" maxOccurs="1">
<xs:annotation>
<xs:appinfo>SDScomChem</xs:appinfo>
</xs:annotation>
</xs:element>
<!-- Was PhysChemValueWithTemperature -->
<xs:element name="Ph" type="SDScom:Value" minOccurs="0" maxOccurs="1">
<xs:annotation>
<xs:appinfo>SDScomChem</xs:appinfo>
</xs:annotation>
</xs:element>
</xs:sequence>
<!--xs:complexContent>
<xs:extension base="PhysChemValueWithTemperature">
<xs:sequence>
<xs:element name="PhValue" type="SDScom:Value" minOccurs="0" maxOccurs="1"/>
</xs:sequence>
</xs:extension>
</xs:complexContent-->
</xs:complexType>
<!-- ******************************************************************** Viscosity ******************** -->
<xs:complexType name="Viscosity">
<xs:annotation>
<xs:appinfo>SDScomChem</xs:appinfo>
<xs:documentation> Viscosity source: Chapter 9 </xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element name="Value" type="SDScom:PhysChemUnitValueWithTemperature" minOccurs="0" maxOccurs="1">
<xs:annotation>
<xs:appinfo>SDScomChem</xs:appinfo>
</xs:annotation>
</xs:element>
<xs:element name="Type" type="SDScom:ViscosityTypeEnum" minOccurs="0" maxOccurs="1">
<xs:annotation>
<xs:appinfo>SDScomChem</xs:appinfo>
</xs:annotation>
</xs:element>
<xs:element name="OtherTypeDescription" type="SDScom:Phrase" minOccurs="0" maxOccurs="unbounded">
<xs:annotation>