XSD-Datum-Änderung

This commit is contained in:
Simon Martens
2024-12-21 15:04:01 +01:00
parent 9c8b07002a
commit 995801315f

View File

@@ -1,379 +1,379 @@
<?xml version="1.0"?> <?xml version="1.0"?>
<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema" <xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema"
targetNamespace="https://www.koenigsberger-zeitungen.de" targetNamespace="https://www.koenigsberger-zeitungen.de"
xmlns="https://www.koenigsberger-zeitungen.de" xmlns="https://www.koenigsberger-zeitungen.de"
xmlns:kgpz="https://www.koenigsberger-zeitungen.de" xmlns:kgpz="https://www.koenigsberger-zeitungen.de"
elementFormDefault="qualified"> elementFormDefault="qualified">
<xsd:simpleType name="NonEmptyString"> <xsd:simpleType name="NonEmptyString">
<xsd:restriction base="xsd:string"> <xsd:restriction base="xsd:string">
<xsd:minLength value="1" /> <xsd:minLength value="1" />
</xsd:restriction> </xsd:restriction>
</xsd:simpleType> </xsd:simpleType>
<xsd:complexType name="ref"> <xsd:complexType name="ref">
<xsd:annotation> <xsd:annotation>
<xsd:documentation>Referenziert ein anderes Element.</xsd:documentation> <xsd:documentation>Referenziert ein anderes Element.</xsd:documentation>
</xsd:annotation> </xsd:annotation>
<xsd:complexContent> <xsd:complexContent>
<xsd:extension base="kgpz:text"> <xsd:extension base="kgpz:text">
<xsd:attribute name="ref" use="required" type="kgpz:NonEmptyString"> <xsd:attribute name="ref" use="required" type="kgpz:NonEmptyString">
<xsd:annotation> <xsd:annotation>
<xsd:documentation>Pflicht: Die ID des referenzierten Elements.</xsd:documentation> <xsd:documentation>Pflicht: Die ID des referenzierten Elements.</xsd:documentation>
</xsd:annotation> </xsd:annotation>
</xsd:attribute> </xsd:attribute>
<xsd:attribute name="unsicher" use="optional" default="false" type="xsd:boolean"> <xsd:attribute name="unsicher" use="optional" default="false" type="xsd:boolean">
<xsd:annotation> <xsd:annotation>
<xsd:documentation>Optional: Ist die Referenz unsicher? Erlaubt: true | false</xsd:documentation> <xsd:documentation>Optional: Ist die Referenz unsicher? Erlaubt: true | false</xsd:documentation>
</xsd:annotation> </xsd:annotation>
</xsd:attribute> </xsd:attribute>
</xsd:extension> </xsd:extension>
</xsd:complexContent> </xsd:complexContent>
</xsd:complexType> </xsd:complexType>
<xsd:complexType name="stueckref"> <xsd:complexType name="stueckref">
<xsd:annotation> <xsd:annotation>
<xsd:documentation>Bezieht sich auf ein Stück und qualifiziert diese Beziehung.</xsd:documentation> <xsd:documentation>Bezieht sich auf ein Stück und qualifiziert diese Beziehung.</xsd:documentation>
</xsd:annotation> </xsd:annotation>
<xsd:attribute name="datum" <xsd:attribute name="datum"
use="required"> use="required">
<xsd:annotation> <xsd:annotation>
<xsd:documentation>Pflicht: Das Datum, zumindest aber: das Jahr des Stücks.</xsd:documentation> <xsd:documentation>Pflicht: Das Datum, zumindest aber: das Jahr des Stücks.</xsd:documentation>
</xsd:annotation> </xsd:annotation>
<xsd:simpleType> <xsd:simpleType>
<xsd:union <xsd:union
memberTypes="xsd:date xsd:gYear xsd:gMonth xsd:gDay xsd:gYearMonth xsd:gMonthDay xsd:time xsd:dateTime" /> memberTypes="xsd:date xsd:gYear xsd:gMonth xsd:gDay xsd:gYearMonth xsd:gMonthDay xsd:time xsd:dateTime" />
</xsd:simpleType> </xsd:simpleType>
</xsd:attribute> </xsd:attribute>
<xsd:attribute name="nr" type="xsd:positiveInteger" <xsd:attribute name="nr" type="xsd:positiveInteger"
use="optional"> use="optional">
<xsd:annotation> <xsd:annotation>
<xsd:documentation>Optional: Die Nummer des Stücks.</xsd:documentation> <xsd:documentation>Pflicht: Die Nummer des Stücks.</xsd:documentation>
</xsd:annotation> </xsd:annotation>
</xsd:attribute> </xsd:attribute>
<xsd:attribute name="von" type="xsd:positiveInteger" <xsd:attribute name="von" type="xsd:positiveInteger"
use="optional"> use="optional">
<xsd:annotation> <xsd:annotation>
<xsd:documentation>Die erste Seitenzahl des Bezugs, falls bekannt.</xsd:documentation> <xsd:documentation>Die erste Seitenzahl des Bezugs, falls bekannt.</xsd:documentation>
</xsd:annotation> </xsd:annotation>
</xsd:attribute> </xsd:attribute>
<xsd:attribute name="bis" type="xsd:positiveInteger" <xsd:attribute name="bis" type="xsd:positiveInteger"
use="optional"> use="optional">
<xsd:annotation> <xsd:annotation>
<xsd:documentation>Die letzte Seitenzahl des Bezugs, falls bekannt.</xsd:documentation> <xsd:documentation>Die letzte Seitenzahl des Bezugs, falls bekannt.</xsd:documentation>
</xsd:annotation> </xsd:annotation>
</xsd:attribute> </xsd:attribute>
<xsd:attribute name="kat" use="optional" default="auszug"> <xsd:attribute name="kat" use="optional" default="auszug">
<xsd:annotation> <xsd:annotation>
<xsd:documentation>Die Art der Beziehung zum Beitrag. Werte: auszug (default), erwähnung, <xsd:documentation>Die Art der Beziehung zum Beitrag. Werte: auszug (default), erwähnung,
kommentar.</xsd:documentation> kommentar.</xsd:documentation>
</xsd:annotation> </xsd:annotation>
<xsd:simpleType> <xsd:simpleType>
<xsd:restriction base="xsd:string"> <xsd:restriction base="xsd:string">
<xsd:enumeration value="auszug" /> <xsd:enumeration value="auszug" />
<xsd:enumeration value="erwähnung" /> <xsd:enumeration value="erwähnung" />
<xsd:enumeration value="kommentar" /> <xsd:enumeration value="kommentar" />
</xsd:restriction> </xsd:restriction>
</xsd:simpleType> </xsd:simpleType>
</xsd:attribute> </xsd:attribute>
</xsd:complexType> </xsd:complexType>
<xsd:complexType name="beilageref"> <xsd:complexType name="beilageref">
<xsd:annotation> <xsd:annotation>
<xsd:documentation>Bezieht sich auf eine Beilage und qualifiziert diese Beziehung</xsd:documentation> <xsd:documentation>Bezieht sich auf eine Beilage und qualifiziert diese Beziehung</xsd:documentation>
</xsd:annotation> </xsd:annotation>
<xsd:attribute name="datum" <xsd:attribute name="datum"
use="required"> use="required">
<xsd:annotation> <xsd:annotation>
<xsd:documentation>Pflicht: Das Datum, zumindest aber: das Jahr des Stücks.</xsd:documentation> <xsd:documentation>Pflicht: Das Datum, zumindest aber: das Jahr des Stücks.</xsd:documentation>
</xsd:annotation> </xsd:annotation>
<xsd:simpleType> <xsd:simpleType>
<xsd:union <xsd:union
memberTypes="xsd:date xsd:gYear xsd:gMonth xsd:gDay xsd:gYearMonth xsd:gMonthDay xsd:time xsd:dateTime" /> memberTypes="xsd:date xsd:gYear xsd:gMonth xsd:gDay xsd:gYearMonth xsd:gMonthDay xsd:time xsd:dateTime" />
</xsd:simpleType> </xsd:simpleType>
</xsd:attribute> </xsd:attribute>
<xsd:attribute name="nr" type="xsd:positiveInteger" <xsd:attribute name="nr" type="xsd:positiveInteger"
use="optional"> use="optional">
<xsd:annotation> <xsd:annotation>
<xsd:documentation>Optional: Die Nummer des Stücks.</xsd:documentation> <xsd:documentation>Optional: Die Nummer des Stücks.</xsd:documentation>
</xsd:annotation> </xsd:annotation>
</xsd:attribute> </xsd:attribute>
<xsd:attribute name="beilage" type="xsd:positiveInteger" <xsd:attribute name="beilage" type="xsd:positiveInteger"
use="optional" default="1"> use="optional" default="1">
<xsd:annotation> <xsd:annotation>
<xsd:documentation>Pflicht: Die Nummer der Beilage.</xsd:documentation> <xsd:documentation>Pflicht: Die Nummer der Beilage.</xsd:documentation>
</xsd:annotation> </xsd:annotation>
</xsd:attribute> </xsd:attribute>
<xsd:attribute name="von" type="xsd:positiveInteger" <xsd:attribute name="von" type="xsd:positiveInteger"
use="optional"> use="optional">
<xsd:annotation> <xsd:annotation>
<xsd:documentation>Optional: Die erste Seitenzahl des Beitrags (nur bei mehreren Beiträgen <xsd:documentation>Optional: Die erste Seitenzahl des Beitrags (nur bei mehreren Beiträgen
in einer Beilage).</xsd:documentation> in einer Beilage).</xsd:documentation>
</xsd:annotation> </xsd:annotation>
</xsd:attribute> </xsd:attribute>
<xsd:attribute name="bis" type="xsd:positiveInteger" <xsd:attribute name="bis" type="xsd:positiveInteger"
use="optional"> use="optional">
<xsd:annotation> <xsd:annotation>
<xsd:documentation>Optional: Die letzte Seitenzahl des Beitrags, erstreckt er sich über <xsd:documentation>Optional: Die letzte Seitenzahl des Beitrags, erstreckt er sich über
mehrere Seiten (nur bei mehreren Beiträgen in einer Beilage).</xsd:documentation> mehrere Seiten (nur bei mehreren Beiträgen in einer Beilage).</xsd:documentation>
</xsd:annotation> </xsd:annotation>
</xsd:attribute> </xsd:attribute>
<xsd:attribute name="kat" use="optional" default="auszug"> <xsd:attribute name="kat" use="optional" default="auszug">
<xsd:annotation> <xsd:annotation>
<xsd:documentation>Die Art der Beziehung zum Beitrag. Werte: auszug (default), erwähnung, <xsd:documentation>Die Art der Beziehung zum Beitrag. Werte: auszug (default), erwähnung,
kommentar.</xsd:documentation> kommentar.</xsd:documentation>
</xsd:annotation> </xsd:annotation>
<xsd:simpleType> <xsd:simpleType>
<xsd:restriction base="xsd:string"> <xsd:restriction base="xsd:string">
<xsd:enumeration value="auszug" /> <xsd:enumeration value="auszug" />
<xsd:enumeration value="erwähnung" /> <xsd:enumeration value="erwähnung" />
<xsd:enumeration value="kommentar" /> <xsd:enumeration value="kommentar" />
</xsd:restriction> </xsd:restriction>
</xsd:simpleType> </xsd:simpleType>
</xsd:attribute> </xsd:attribute>
</xsd:complexType> </xsd:complexType>
<xsd:complexType name="beitragref"> <xsd:complexType name="beitragref">
<xsd:annotation> <xsd:annotation>
<xsd:documentation>Bezieht sich auf einen Beitrag und qualifiziert diese Beziehung. </xsd:documentation> <xsd:documentation>Bezieht sich auf einen Beitrag und qualifiziert diese Beziehung. </xsd:documentation>
</xsd:annotation> </xsd:annotation>
<xsd:complexContent> <xsd:complexContent>
<xsd:extension base="kgpz:ref"> <xsd:extension base="kgpz:ref">
<xsd:attribute name="kat" use="required"> <xsd:attribute name="kat" use="required">
<xsd:annotation> <xsd:annotation>
<xsd:documentation>Die Art der Beziehung zum Beitrag. Werte: erwähnung, kommentar.</xsd:documentation> <xsd:documentation>Die Art der Beziehung zum Beitrag. Werte: erwähnung, kommentar.</xsd:documentation>
</xsd:annotation> </xsd:annotation>
<xsd:simpleType> <xsd:simpleType>
<xsd:restriction base="xsd:string"> <xsd:restriction base="xsd:string">
<xsd:enumeration value="erwähnung" /> <xsd:enumeration value="erwähnung" />
<xsd:enumeration value="kommentar" /> <xsd:enumeration value="kommentar" />
<xsd:enumeration value="replik" /> <xsd:enumeration value="replik" />
<xsd:enumeration value="nachtrag" /> <xsd:enumeration value="nachtrag" />
</xsd:restriction> </xsd:restriction>
</xsd:simpleType> </xsd:simpleType>
</xsd:attribute> </xsd:attribute>
<xsd:attribute name="s" use="optional" type="kgpz:NonEmptyString"> <xsd:attribute name="s" use="optional" type="kgpz:NonEmptyString">
<xsd:annotation> <xsd:annotation>
<xsd:documentation>Angabe zu Seite oder Stelle innerhalb eines Beitrages.</xsd:documentation> <xsd:documentation>Angabe zu Seite oder Stelle innerhalb eines Beitrages.</xsd:documentation>
</xsd:annotation> </xsd:annotation>
</xsd:attribute> </xsd:attribute>
</xsd:extension> </xsd:extension>
</xsd:complexContent> </xsd:complexContent>
</xsd:complexType> </xsd:complexType>
<xsd:complexType name="werkref"> <xsd:complexType name="werkref">
<xsd:annotation> <xsd:annotation>
<xsd:documentation> Bezieht sich auf ein Werk und qualifiziert diese Beziehung. </xsd:documentation> <xsd:documentation> Bezieht sich auf ein Werk und qualifiziert diese Beziehung. </xsd:documentation>
</xsd:annotation> </xsd:annotation>
<xsd:complexContent> <xsd:complexContent>
<xsd:extension base="kgpz:ref"> <xsd:extension base="kgpz:ref">
<xsd:attribute name="kat" use="required"> <xsd:attribute name="kat" use="required">
<xsd:annotation> <xsd:annotation>
<xsd:documentation> Die Art der Beziehung zum Werk. Werte: rezension, auszug, kommentar, <xsd:documentation> Die Art der Beziehung zum Werk. Werte: rezension, auszug, kommentar,
erwähnung, anzeige, provinienz.</xsd:documentation> erwähnung, anzeige, provinienz.</xsd:documentation>
</xsd:annotation> </xsd:annotation>
<xsd:simpleType> <xsd:simpleType>
<xsd:restriction base="xsd:string"> <xsd:restriction base="xsd:string">
<xsd:enumeration value="theaterkritik" /> <xsd:enumeration value="theaterkritik" />
<xsd:enumeration value="erwähnung" /> <xsd:enumeration value="erwähnung" />
<xsd:enumeration value="rezension" /> <xsd:enumeration value="rezension" />
<xsd:enumeration value="auszug" /> <xsd:enumeration value="auszug" />
<xsd:enumeration value="kommentar" /> <xsd:enumeration value="kommentar" />
<xsd:enumeration value="replik" /> <xsd:enumeration value="replik" />
<xsd:enumeration value="anzeige" /> <xsd:enumeration value="anzeige" />
<xsd:enumeration value="provinienz" /> <xsd:enumeration value="provinienz" />
<xsd:enumeration value="uebersetzung" /> <xsd:enumeration value="uebersetzung" />
</xsd:restriction> </xsd:restriction>
</xsd:simpleType> </xsd:simpleType>
</xsd:attribute> </xsd:attribute>
<xsd:attribute name="s" use="optional" type="kgpz:NonEmptyString"> <xsd:attribute name="s" use="optional" type="kgpz:NonEmptyString">
<xsd:annotation> <xsd:annotation>
<xsd:documentation>Angabe zu Seite oder Stelle innerhalb eines Werkes.</xsd:documentation> <xsd:documentation>Angabe zu Seite oder Stelle innerhalb eines Werkes.</xsd:documentation>
</xsd:annotation> </xsd:annotation>
</xsd:attribute> </xsd:attribute>
</xsd:extension> </xsd:extension>
</xsd:complexContent> </xsd:complexContent>
</xsd:complexType> </xsd:complexType>
<xsd:complexType name="akteurref"> <xsd:complexType name="akteurref">
<xsd:annotation> <xsd:annotation>
<xsd:documentation> Bezieht sich auf einen Akteur und qualifiziert diese Beziehung. </xsd:documentation> <xsd:documentation> Bezieht sich auf einen Akteur und qualifiziert diese Beziehung. </xsd:documentation>
</xsd:annotation> </xsd:annotation>
<xsd:complexContent> <xsd:complexContent>
<xsd:extension base="kgpz:ref"> <xsd:extension base="kgpz:ref">
<xsd:attribute name="kat" use="optional" default="autor"> <xsd:attribute name="kat" use="optional" default="autor">
<xsd:annotation> <xsd:annotation>
<xsd:documentation> Die Art der Beziehung zum Akteur. Werte: erwähnung, autor, <xsd:documentation> Die Art der Beziehung zum Akteur. Werte: erwähnung, autor,
herausgeber, verleger, drucker, vertrieb, nachruf. </xsd:documentation> herausgeber, verleger, drucker, vertrieb, nachruf. </xsd:documentation>
</xsd:annotation> </xsd:annotation>
<xsd:simpleType> <xsd:simpleType>
<xsd:restriction base="xsd:string"> <xsd:restriction base="xsd:string">
<xsd:enumeration value="autor" /> <xsd:enumeration value="autor" />
<xsd:enumeration value="herausgeber" /> <xsd:enumeration value="herausgeber" />
<xsd:enumeration value="übersetzer" /> <xsd:enumeration value="übersetzer" />
<xsd:enumeration value="verleger" /> <xsd:enumeration value="verleger" />
<xsd:enumeration value="drucker" /> <xsd:enumeration value="drucker" />
<xsd:enumeration value="vertrieb" /> <xsd:enumeration value="vertrieb" />
<xsd:enumeration value="erwähnung" /> <xsd:enumeration value="erwähnung" />
<xsd:enumeration value="nachruf" /> <xsd:enumeration value="nachruf" />
</xsd:restriction> </xsd:restriction>
</xsd:simpleType> </xsd:simpleType>
</xsd:attribute> </xsd:attribute>
</xsd:extension> </xsd:extension>
</xsd:complexContent> </xsd:complexContent>
</xsd:complexType> </xsd:complexType>
<xsd:complexType name="ortref"> <xsd:complexType name="ortref">
<xsd:annotation> <xsd:annotation>
<xsd:documentation> Bezieht sich auf einen Ort und qualifiziert diese Beziehung. </xsd:documentation> <xsd:documentation> Bezieht sich auf einen Ort und qualifiziert diese Beziehung. </xsd:documentation>
</xsd:annotation> </xsd:annotation>
<xsd:complexContent> <xsd:complexContent>
<xsd:extension base="kgpz:ref"> <xsd:extension base="kgpz:ref">
<xsd:attribute name="kat" use="optional" default="entstehungsort"> <xsd:attribute name="kat" use="optional" default="entstehungsort">
<xsd:annotation> <xsd:annotation>
<xsd:documentation> Die Art der Beziehung zum Ort. Werte: entstehungsort </xsd:documentation> <xsd:documentation> Die Art der Beziehung zum Ort. Werte: entstehungsort </xsd:documentation>
</xsd:annotation> </xsd:annotation>
<xsd:simpleType> <xsd:simpleType>
<xsd:restriction base="xsd:string"> <xsd:restriction base="xsd:string">
<xsd:enumeration value="entstehungsort" /> <xsd:enumeration value="entstehungsort" />
</xsd:restriction> </xsd:restriction>
</xsd:simpleType> </xsd:simpleType>
</xsd:attribute> </xsd:attribute>
</xsd:extension> </xsd:extension>
</xsd:complexContent> </xsd:complexContent>
</xsd:complexType> </xsd:complexType>
<xsd:complexType name="wwwlink"> <xsd:complexType name="wwwlink">
<xsd:annotation> <xsd:annotation>
<xsd:documentation>Link ins Internet</xsd:documentation> <xsd:documentation>Link ins Internet</xsd:documentation>
</xsd:annotation> </xsd:annotation>
<xsd:complexContent> <xsd:complexContent>
<xsd:extension base="text"> <xsd:extension base="text">
<xsd:attribute name="address" use="required" type="xsd:anyURI"> <xsd:attribute name="address" use="required" type="xsd:anyURI">
<xsd:annotation> <xsd:annotation>
<xsd:documentation>URL des Links</xsd:documentation> <xsd:documentation>URL des Links</xsd:documentation>
</xsd:annotation> </xsd:annotation>
</xsd:attribute> </xsd:attribute>
</xsd:extension> </xsd:extension>
</xsd:complexContent> </xsd:complexContent>
</xsd:complexType> </xsd:complexType>
<xsd:complexType name="year"> <xsd:complexType name="year">
<xsd:annotation> <xsd:annotation>
<xsd:documentation>Jahresangabe</xsd:documentation> <xsd:documentation>Jahresangabe</xsd:documentation>
</xsd:annotation> </xsd:annotation>
<xsd:complexContent> <xsd:complexContent>
<xsd:extension base="text"> <xsd:extension base="text">
</xsd:extension> </xsd:extension>
</xsd:complexContent> </xsd:complexContent>
</xsd:complexType> </xsd:complexType>
<xsd:complexType name="title"> <xsd:complexType name="title">
<xsd:annotation> <xsd:annotation>
<xsd:documentation>Titel</xsd:documentation> <xsd:documentation>Titel</xsd:documentation>
</xsd:annotation> </xsd:annotation>
<xsd:complexContent> <xsd:complexContent>
<xsd:extension base="text"> <xsd:extension base="text">
</xsd:extension> </xsd:extension>
</xsd:complexContent> </xsd:complexContent>
</xsd:complexType> </xsd:complexType>
<xsd:complexType name="text" mixed="true"> <xsd:complexType name="text" mixed="true">
<xsd:annotation> <xsd:annotation>
<xsd:documentation>Elemente und Attribute zur Textauszeichnung im Volltext</xsd:documentation> <xsd:documentation>Elemente und Attribute zur Textauszeichnung im Volltext</xsd:documentation>
</xsd:annotation> </xsd:annotation>
<xsd:choice maxOccurs="unbounded" minOccurs="0"> <xsd:choice maxOccurs="unbounded" minOccurs="0">
<xsd:element name="wwwlink" type="kgpz:wwwlink" /> <xsd:element name="wwwlink" type="kgpz:wwwlink" />
<xsd:element name="year" type="kgpz:year" /> <xsd:element name="year" type="kgpz:year" />
<xsd:element name="title" type="kgpz:title" /> <xsd:element name="title" type="kgpz:title" />
</xsd:choice> </xsd:choice>
</xsd:complexType> </xsd:complexType>
<!-- This section is almost exactly as in TEI --> <!-- This section is almost exactly as in TEI -->
<xsd:attributeGroup name="dateattributes"> <xsd:attributeGroup name="dateattributes">
<xsd:attributeGroup ref="kgpz:when" /> <xsd:attributeGroup ref="kgpz:when" />
<xsd:attributeGroup ref="kgpz:notBefore" /> <xsd:attributeGroup ref="kgpz:notBefore" />
<xsd:attributeGroup ref="kgpz:notAfter" /> <xsd:attributeGroup ref="kgpz:notAfter" />
<xsd:attributeGroup ref="kgpz:from" /> <xsd:attributeGroup ref="kgpz:from" />
<xsd:attributeGroup ref="kgpz:to" /> <xsd:attributeGroup ref="kgpz:to" />
</xsd:attributeGroup> </xsd:attributeGroup>
<xsd:complexType name="date"> <xsd:complexType name="date">
<xsd:annotation> <xsd:annotation>
<xsd:documentation>(date) contains a date in any format.</xsd:documentation> <xsd:documentation>(date) contains a date in any format.</xsd:documentation>
</xsd:annotation> </xsd:annotation>
<xsd:attributeGroup ref="kgpz:dateattributes" /> <xsd:attributeGroup ref="kgpz:dateattributes" />
</xsd:complexType> </xsd:complexType>
<xsd:attributeGroup name="when"> <xsd:attributeGroup name="when">
<xsd:attribute name="when"> <xsd:attribute name="when">
<xsd:annotation> <xsd:annotation>
<xsd:documentation>supplies the value of the date or time in a standard form, e.g. <xsd:documentation>supplies the value of the date or time in a standard form, e.g.
yyyy-mm-dd.</xsd:documentation> yyyy-mm-dd.</xsd:documentation>
</xsd:annotation> </xsd:annotation>
<xsd:simpleType> <xsd:simpleType>
<xsd:union <xsd:union
memberTypes="xsd:date xsd:gYear xsd:gMonth xsd:gDay xsd:gYearMonth xsd:gMonthDay xsd:time xsd:dateTime" /> memberTypes="xsd:date xsd:gYear xsd:gMonth xsd:gDay xsd:gYearMonth xsd:gMonthDay xsd:time xsd:dateTime" />
</xsd:simpleType> </xsd:simpleType>
</xsd:attribute> </xsd:attribute>
</xsd:attributeGroup> </xsd:attributeGroup>
<xsd:attributeGroup name="notBefore"> <xsd:attributeGroup name="notBefore">
<xsd:attribute name="notBefore"> <xsd:attribute name="notBefore">
<xsd:annotation> <xsd:annotation>
<xsd:documentation>specifies the earliest possible date for the event in standard form, e.g. <xsd:documentation>specifies the earliest possible date for the event in standard form, e.g.
yyyy-mm-dd.</xsd:documentation> yyyy-mm-dd.</xsd:documentation>
</xsd:annotation> </xsd:annotation>
<xsd:simpleType> <xsd:simpleType>
<xsd:union <xsd:union
memberTypes="xsd:date xsd:gYear xsd:gMonth xsd:gDay xsd:gYearMonth xsd:gMonthDay xsd:time xsd:dateTime" /> memberTypes="xsd:date xsd:gYear xsd:gMonth xsd:gDay xsd:gYearMonth xsd:gMonthDay xsd:time xsd:dateTime" />
</xsd:simpleType> </xsd:simpleType>
</xsd:attribute> </xsd:attribute>
</xsd:attributeGroup> </xsd:attributeGroup>
<xsd:attributeGroup name="notAfter"> <xsd:attributeGroup name="notAfter">
<xsd:attribute name="notAfter"> <xsd:attribute name="notAfter">
<xsd:annotation> <xsd:annotation>
<xsd:documentation>specifies the latest possible date for the event in standard form, e.g. <xsd:documentation>specifies the latest possible date for the event in standard form, e.g.
yyyy-mm-dd.</xsd:documentation> yyyy-mm-dd.</xsd:documentation>
</xsd:annotation> </xsd:annotation>
<xsd:simpleType> <xsd:simpleType>
<xsd:union <xsd:union
memberTypes="xsd:date xsd:gYear xsd:gMonth xsd:gDay xsd:gYearMonth xsd:gMonthDay xsd:time xsd:dateTime" /> memberTypes="xsd:date xsd:gYear xsd:gMonth xsd:gDay xsd:gYearMonth xsd:gMonthDay xsd:time xsd:dateTime" />
</xsd:simpleType> </xsd:simpleType>
</xsd:attribute> </xsd:attribute>
</xsd:attributeGroup> </xsd:attributeGroup>
<xsd:attributeGroup name="from"> <xsd:attributeGroup name="from">
<xsd:attribute name="from"> <xsd:attribute name="from">
<xsd:annotation> <xsd:annotation>
<xsd:documentation>indicates the starting point of the period in standard form, e.g. <xsd:documentation>indicates the starting point of the period in standard form, e.g.
yyyy-mm-dd.</xsd:documentation> yyyy-mm-dd.</xsd:documentation>
</xsd:annotation> </xsd:annotation>
<xsd:simpleType> <xsd:simpleType>
<xsd:union <xsd:union
memberTypes="xsd:date xsd:gYear xsd:gMonth xsd:gDay xsd:gYearMonth xsd:gMonthDay xsd:time xsd:dateTime" /> memberTypes="xsd:date xsd:gYear xsd:gMonth xsd:gDay xsd:gYearMonth xsd:gMonthDay xsd:time xsd:dateTime" />
</xsd:simpleType> </xsd:simpleType>
</xsd:attribute> </xsd:attribute>
</xsd:attributeGroup> </xsd:attributeGroup>
<xsd:attributeGroup name="to"> <xsd:attributeGroup name="to">
<xsd:attribute name="to"> <xsd:attribute name="to">
<xsd:annotation> <xsd:annotation>
<xsd:documentation>indicates the ending point of the period in standard form, e.g. <xsd:documentation>indicates the ending point of the period in standard form, e.g.
yyyy-mm-dd.</xsd:documentation> yyyy-mm-dd.</xsd:documentation>
</xsd:annotation> </xsd:annotation>
<xsd:simpleType> <xsd:simpleType>
<xsd:union <xsd:union
memberTypes="xsd:date xsd:gYear xsd:gMonth xsd:gDay xsd:gYearMonth xsd:gMonthDay xsd:time xsd:dateTime" /> memberTypes="xsd:date xsd:gYear xsd:gMonth xsd:gDay xsd:gYearMonth xsd:gMonthDay xsd:time xsd:dateTime" />
</xsd:simpleType> </xsd:simpleType>
</xsd:attribute> </xsd:attribute>
</xsd:attributeGroup> </xsd:attributeGroup>
</xsd:schema> </xsd:schema>