Code
·
62 lines
·
3791 bytes
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<?xml version="1.0" encoding="utf-8"?>
<xs:schema
attributeFormDefault="unqualified"
elementFormDefault="qualified"
targetNamespace="http://www.tweedekamer.nl/xsd/tkData/v1-0"
xmlns="http://www.tweedekamer.nl/xsd/tkData/v1-0"
xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:include schemaLocation="tkData-v1-0-base.xsd"/>
<xs:include schemaLocation="tkData-v1-0-iso-8601.xsd"/>
<xs:element name="activiteit" type="activiteitType"/>
<xs:complexType name="activiteitType" final="#all">
<xs:complexContent>
<xs:extension base="entiteitType">
<xs:sequence>
<xs:element name="soort" minOccurs="0" maxOccurs="1" nillable="true" type="tokenType"/>
<xs:element name="nummer" minOccurs="0" maxOccurs="1" nillable="true" type="stringType"/>
<xs:element name="onderwerp" minOccurs="0" maxOccurs="1" nillable="true" type="stringType"/>
<xs:element name="datumSoort" minOccurs="0" maxOccurs="1" nillable="true" type="tokenType"/>
<xs:element name="datum" minOccurs="0" maxOccurs="1" nillable="true" type="xs:dateTime"/>
<xs:element name="aanvangstijd" minOccurs="0" maxOccurs="1" nillable="true" type="xs:dateTime"/>
<xs:element name="eindtijd" minOccurs="0" maxOccurs="1" nillable="true" type="xs:dateTime"/>
<xs:element name="locatie" minOccurs="0" maxOccurs="1" nillable="true" type="stringType"/>
<xs:element name="besloten" minOccurs="0" maxOccurs="1" type="booleanType"/>
<xs:element name="status" minOccurs="0" maxOccurs="1" type="stringType"/>
<xs:element name="vergaderjaar" minOccurs="0" nillable="true" type="vergaderjaarType"/>
<xs:element name="kamer" minOccurs="0" maxOccurs="1" type="stringType"/>
<xs:element name="noot" minOccurs="0" maxOccurs="1" nillable="true" type="stringType"/>
<xs:element name="vrsNummer" minOccurs="0" maxOccurs="1" nillable="true">
<xs:complexType>
<xs:simpleContent>
<xs:restriction base="stringType">
<xs:pattern value="[0-9]{8}"/>
</xs:restriction>
</xs:simpleContent>
</xs:complexType>
</xs:element>
<xs:element name="sidVoortouw" minOccurs="0" maxOccurs="1" nillable="true" type="tokenType"/>
<xs:element name="voortouwnaam" minOccurs="0" maxOccurs="1" nillable="true" type="tokenType"/>
<xs:element name="voortouwafkorting" minOccurs="0" maxOccurs="1" nillable="true" type="tokenType"/>
<xs:element name="voortouwkortenaam" minOccurs="0" maxOccurs="1" nillable="true" type="tokenType"/>
<xs:element name="voortouwcommissie" minOccurs="0" maxOccurs="1" type="referentieLiteral"/>
<xs:element name="aanvraagdatum" minOccurs="0" maxOccurs="1" nillable="true" type="xs:dateTime"/>
<xs:element name="datumVerzoekEersteVerlenging" minOccurs="0" maxOccurs="1" nillable="true" type="xs:dateTime"/>
<xs:element name="datumMededelingEersteVerlenging" minOccurs="0" maxOccurs="1" nillable="true" type="xs:dateTime"/>
<xs:element name="datumVerzoekTweedeVerlenging" minOccurs="0" maxOccurs="1" nillable="true" type="xs:dateTime"/>
<xs:element name="datumMededelingTweedeVerlenging" minOccurs="0" maxOccurs="1" nillable="true" type="xs:dateTime"/>
<xs:element name="vervaldatum" minOccurs="0" maxOccurs="1" nillable="true" type="xs:dateTime"/>
<xs:element name="voortgezetVanuit" minOccurs="0" maxOccurs="1" type="referentieLiteral"/>
<xs:element name="vervangenVanuit" minOccurs="0" maxOccurs="1" type="referentieLiteral"/>
</xs:sequence>
</xs:extension>
</xs:complexContent>
</xs:complexType>
</xs:schema>