forked from misdoro/VAMDC-XSAMS
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathnonradiative.xsd
65 lines (64 loc) · 2.52 KB
/
nonradiative.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
<?xml version="1.0" encoding="UTF-8"?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"
elementFormDefault="qualified" attributeFormDefault="unqualified"
xmlns="http://vamdc.org/xml/xsams/1.0"
xmlns:xsams="http://vamdc.org/xml/xsams/1.0"
targetNamespace="http://vamdc.org/xml/xsams/1.0">
<xs:include schemaLocation="./typesAttributes.xsd"/>
<xs:element name="NonRadiative" type="NonRadiativeType">
<xs:annotation>
<xs:documentation>List of autoionization and predissociation transitions</xs:documentation>
</xs:annotation>
</xs:element>
<xs:complexType name="NonRadiativeType">
<xs:sequence>
<xs:element name="NonRadiativeTransition" type="NonRadiativeTransitionType" maxOccurs="unbounded"/>
</xs:sequence>
</xs:complexType>
<xs:complexType name="NonRadiativeTransitionType">
<xs:complexContent>
<xs:extension base="PrimaryType">
<xs:sequence>
<xs:element name="UpperStateRef" type="StateRefType">
<xs:annotation>
<xs:documentation>Reference to the upper state</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="LowerStateRef" type="StateRefType" minOccurs="0">
<xs:annotation>
<xs:documentation>Reference to the lower state</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="SpeciesRef" type="SpeciesRefType" minOccurs="0">
<xs:annotation>
<xs:documentation>Reference to specie</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="Probability" type="DataType" minOccurs="0">
<xs:annotation>
<xs:documentation>Transition probability</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="NonRadiativeWidth" type="DataType" minOccurs="0">
<xs:annotation>
<xs:documentation>NonRadiative width </xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="TransitionEnergy" type="DataType" minOccurs="0">
<xs:annotation>
<xs:documentation>Transition energy</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="Type" type="xs:string" minOccurs="0">
<xs:annotation>
<xs:documentation>Description of the transition (e.g., Coster-Kronig)</xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
<xs:attribute name="id" type="ProcessIDType" use="required"/>
<xs:attribute name="groupLabel" type="xs:string"/>
<xs:attribute name="process" type="TransitionType"/>
</xs:extension>
</xs:complexContent>
</xs:complexType>
</xs:schema>