-
Notifications
You must be signed in to change notification settings - Fork 0
/
mutatielevering-generiek-2.0.xsd
86 lines (77 loc) · 3.21 KB
/
mutatielevering-generiek-2.0.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
<?xml version="1.0" encoding="UTF-8"?>
<xs:schema xmlns:ml="http://www.kadaster.nl/schemas/mutatielevering-generiek/2.0"
xmlns:xs="http://www.w3.org/2001/XMLSchema"
targetNamespace="http://www.kadaster.nl/schemas/mutatielevering-generiek/2.0" elementFormDefault="qualified">
<xs:element name="mutatieBericht">
<xs:complexType>
<xs:sequence>
<xs:element name="dataset" type="xs:string"/>
<xs:element name="inhoud" type="ml:inhoud"/>
<xs:element name="mutatieGroep" type="ml:mutatieGroep" minOccurs="0" maxOccurs="unbounded"/>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:complexType name="inhoud">
<xs:sequence>
<xs:element name="mutatieType" type="ml:mutatieType"/>
<xs:element name="gebied" type="xs:string"/>
<xs:element name="leveringsId" type="xs:string"/>
<xs:element name="objectTypen" type="ml:objectTypen"/>
</xs:sequence>
</xs:complexType>
<xs:simpleType name="mutatieType">
<xs:restriction base="xs:string">
<xs:enumeration value="delta"/>
<xs:enumeration value="initial"/>
</xs:restriction>
</xs:simpleType>
<xs:complexType name="objectTypen">
<xs:sequence>
<xs:element name="objectType" type="xs:string" maxOccurs="unbounded"/>
</xs:sequence>
</xs:complexType>
<xs:complexType name="mutatieGroep">
<xs:choice maxOccurs="unbounded">
<xs:element name="toevoeging" type="ml:toevoeging"/>
<xs:element name="wijziging" type="ml:wijziging"/>
<xs:element name="verwijdering" type="ml:verwijdering"/>
</xs:choice>
</xs:complexType>
<xs:complexType name="toevoeging">
<xs:sequence>
<xs:element name="wordt" type="ml:toestand"/>
</xs:sequence>
<xs:attribute name="objectType" type="xs:string"/>
<xs:attribute name="objectId" type="xs:string"/>
</xs:complexType>
<xs:complexType name="wijziging">
<xs:sequence>
<xs:element name="was" type="ml:toestand"/>
<xs:element name="wordt" type="ml:toestand"/>
</xs:sequence>
<xs:attribute name="objectType" type="xs:string"/>
<xs:attribute name="objectId" type="xs:string"/>
</xs:complexType>
<xs:complexType name="verwijdering">
<xs:sequence>
<xs:element name="was" type="ml:toestand"/>
</xs:sequence>
<xs:attribute name="objectType" type="xs:string"/>
<xs:attribute name="objectId" type="xs:string"/>
</xs:complexType>
<xs:complexType name="toestand">
<xs:annotation>
<xs:documentation>Was of wordt</xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element ref="ml:modelObject"/>
</xs:sequence>
<xs:attribute name="id" type="xs:string"/>
</xs:complexType>
<xs:element name="modelObject" type="ml:modelObject" abstract="true">
<xs:annotation>
<xs:documentation>Object uit het datamodel van de dataset</xs:documentation>
</xs:annotation>
</xs:element>
<xs:complexType name="modelObject" abstract="true"/>
</xs:schema>