-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Oplevering PI14, Sprint 5, 17-06-2020 v1.0
Oplevering PI14, Sprint 5, 17-06-2020 v1.0
- Loading branch information
1 parent
2d1cc8d
commit d51497f
Showing
96 changed files
with
18,763 additions
and
2 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,5 @@ | ||
# TPOD | ||
Repository voor Respec/Markdown documenten voor Toepassings Profiel Omgevings Documenten (TPOD) | ||
TPOD | ||
==== | ||
|
||
Repository voor documenten betreffende het Toepassings Profiel Omgevings | ||
Documenten (TPOD) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,149 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" | ||
targetNamespace="http://www.w3.org/XML/1998/namespace" | ||
xml:lang="en"><!-- | ||
This schema is provided by Geonovum as a local copy, as a convenience to the user. This schema may itself reference a local copy of the schema originally referenced by URI. The local reference takes the form of a relative path, and is introduced by Geonovum. | ||
--> | ||
|
||
<xs:annotation> | ||
<xs:documentation> | ||
See http://www.w3.org/XML/1998/namespace.html and | ||
http://www.w3.org/TR/REC-xml for information about this namespace. | ||
|
||
This schema document describes the XML namespace, in a form | ||
suitable for import by other schema documents. | ||
|
||
Note that local names in this namespace are intended to be defined | ||
only by the World Wide Web Consortium or its subgroups. The | ||
following names are currently defined in this namespace and should | ||
not be used with conflicting semantics by any Working Group, | ||
specification, or document instance: | ||
|
||
base (as an attribute name): denotes an attribute whose value | ||
provides a URI to be used as the base for interpreting any | ||
relative URIs in the scope of the element on which it | ||
appears; its value is inherited. This name is reserved | ||
by virtue of its definition in the XML Base specification. | ||
|
||
id (as an attribute name): denotes an attribute whose value | ||
should be interpreted as if declared to be of type ID. | ||
This name is reserved by virtue of its definition in the | ||
xml:id specification. | ||
|
||
lang (as an attribute name): denotes an attribute whose value | ||
is a language code for the natural language of the content of | ||
any element; its value is inherited. This name is reserved | ||
by virtue of its definition in the XML specification. | ||
|
||
space (as an attribute name): denotes an attribute whose | ||
value is a keyword indicating what whitespace processing | ||
discipline is intended for the content of the element; its | ||
value is inherited. This name is reserved by virtue of its | ||
definition in the XML specification. | ||
|
||
Father (in any context at all): denotes Jon Bosak, the chair of | ||
the original XML Working Group. This name is reserved by | ||
the following decision of the W3C XML Plenary and | ||
XML Coordination groups: | ||
|
||
In appreciation for his vision, leadership and dedication | ||
the W3C XML Plenary on this 10th day of February, 2000 | ||
reserves for Jon Bosak in perpetuity the XML name | ||
xml:Father | ||
</xs:documentation> | ||
</xs:annotation> | ||
|
||
<xs:annotation> | ||
<xs:documentation>This schema defines attributes and an attribute group | ||
suitable for use by | ||
schemas wishing to allow xml:base, xml:lang, xml:space or xml:id | ||
attributes on elements they define. | ||
|
||
To enable this, such a schema must import this schema | ||
for the XML namespace, e.g. as follows: | ||
<schema . . .> | ||
. . . | ||
<import namespace="http://www.w3.org/XML/1998/namespace" | ||
schemaLocation="http://www.w3.org/2001/xml.xsd"/> | ||
|
||
Subsequently, qualified reference to any of the attributes | ||
or the group defined below will have the desired effect, e.g. | ||
|
||
<type . . .> | ||
. . . | ||
<attributeGroup ref="xml:specialAttrs"/> | ||
|
||
will define a type which will schema-validate an instance | ||
element with any of those attributes</xs:documentation> | ||
</xs:annotation> | ||
|
||
<xs:annotation> | ||
<xs:documentation>In keeping with the XML Schema WG's standard versioning | ||
policy, this schema document will persist at | ||
http://www.w3.org/2007/08/xml.xsd. | ||
At the date of issue it can also be found at | ||
http://www.w3.org/2001/xml.xsd. | ||
The schema document at that URI may however change in the future, | ||
in order to remain compatible with the latest version of XML Schema | ||
itself, or with the XML namespace itself. In other words, if the XML | ||
Schema or XML namespaces change, the version of this document at | ||
http://www.w3.org/2001/xml.xsd will change | ||
accordingly; the version at | ||
http://www.w3.org/2007/08/xml.xsd will not change. | ||
</xs:documentation> | ||
</xs:annotation> | ||
|
||
<xs:attribute name="lang"> | ||
<xs:annotation> | ||
<xs:documentation>Attempting to install the relevant ISO 2- and 3-letter | ||
codes as the enumerated possible values is probably never | ||
going to be a realistic possibility. See | ||
RFC 3066 at http://www.ietf.org/rfc/rfc3066.txt and the IANA registry | ||
at http://www.iana.org/assignments/lang-tag-apps.htm for | ||
further information. | ||
|
||
The union allows for the 'un-declaration' of xml:lang with | ||
the empty string.</xs:documentation> | ||
</xs:annotation> | ||
<xs:simpleType> | ||
<xs:union memberTypes="xs:language"> | ||
<xs:simpleType> | ||
<xs:restriction base="xs:string"> | ||
<xs:enumeration value=""/> | ||
</xs:restriction> | ||
</xs:simpleType> | ||
</xs:union> | ||
</xs:simpleType> | ||
</xs:attribute> | ||
|
||
<xs:attribute name="space"> | ||
<xs:simpleType> | ||
<xs:restriction base="xs:NCName"> | ||
<xs:enumeration value="default"/> | ||
<xs:enumeration value="preserve"/> | ||
</xs:restriction> | ||
</xs:simpleType> | ||
</xs:attribute> | ||
|
||
<xs:attribute name="base" type="xs:anyURI"> | ||
<xs:annotation> | ||
<xs:documentation>See http://www.w3.org/TR/xmlbase/ for | ||
information about this attribute.</xs:documentation> | ||
</xs:annotation> | ||
</xs:attribute> | ||
|
||
<xs:attribute name="id" type="xs:ID"> | ||
<xs:annotation> | ||
<xs:documentation>See http://www.w3.org/TR/xml-id/ for | ||
information about this attribute.</xs:documentation> | ||
</xs:annotation> | ||
</xs:attribute> | ||
|
||
<xs:attributeGroup name="specialAttrs"> | ||
<xs:attribute ref="xml:base"/> | ||
<xs:attribute ref="xml:lang"/> | ||
<xs:attribute ref="xml:space"/> | ||
<xs:attribute ref="xml:id"/> | ||
</xs:attributeGroup> | ||
|
||
</xs:schema> |
63 changes: 63 additions & 0 deletions
63
xmlschema/v1.0.2/IMOW/datatypenalgemeen/IMOW_DatatypenAlgemeen.xsd
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,63 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<xs:schema xmlns:da="http://www.geostandaarden.nl/imow/datatypenalgemeen" | ||
xmlns:xs="http://www.w3.org/2001/XMLSchema" | ||
xmlns:imvert="http://www.imvertor.org/schema/system" | ||
targetNamespace="http://www.geostandaarden.nl/imow/datatypenalgemeen" | ||
elementFormDefault="qualified" | ||
attributeFormDefault="unqualified" | ||
version="1.0"> | ||
<xs:annotation> | ||
<xs:appinfo source="http://www.imvertor.org/schema-info/uri">http://www.geostandaarden.nl/imow/datatypenalgemeen</xs:appinfo> | ||
<xs:appinfo source="http://www.imvertor.org/schema-info/version">1.0</xs:appinfo> | ||
<xs:appinfo source="http://www.imvertor.org/schema-info/phase">2</xs:appinfo> | ||
<xs:appinfo source="http://www.imvertor.org/schema-info/release">20200401</xs:appinfo> | ||
<xs:appinfo source="http://www.imvertor.org/schema-info/generated">2020-03-24T15:38:19Z</xs:appinfo> | ||
<xs:appinfo source="http://www.imvertor.org/schema-info/generator">1.58.0</xs:appinfo> | ||
<xs:appinfo source="http://www.imvertor.org/schema-info/owner">Geonovum</xs:appinfo> | ||
<xs:documentation source="http://www.imvertor.org/schema-info/file-location">IMOW/datatypenalgemeen/IMOW_DatatypenAlgemeen.xsd</xs:documentation> | ||
<xs:documentation source="http://www.imvertor.org/schema-info/conversion"> | ||
This schema is based on an UML specification, which is transformed by the Imvertor software. Imvertor modules are in the public domain, see http://www.imvertor.org. | ||
</xs:documentation> | ||
</xs:annotation> | ||
<xs:element name="WaardeEenheid" type="da:WaardeEenheid" abstract="false"> | ||
<xs:annotation> | ||
<xs:documentation source="http://www.imvertor.org/schema-info/technical-documentation">Een specifieke datatype voor het vastleggen van waarden met een eenheid, zoals 5 meter, 30 decibel en andere. </xs:documentation> | ||
</xs:annotation> | ||
</xs:element> | ||
<xs:complexType name="WaardeEenheid" abstract="false"> | ||
<xs:sequence> | ||
<xs:element name="waarde" type="xs:decimal" minOccurs="1" maxOccurs="1"> | ||
<xs:annotation> | ||
<xs:documentation source="http://www.imvertor.org/schema-info/technical-documentation">Een numerieke waarde. </xs:documentation> | ||
</xs:annotation> | ||
</xs:element> | ||
<xs:element name="eenheid" type="da:Eenheid" minOccurs="1" maxOccurs="1"> | ||
<xs:annotation> | ||
<xs:documentation source="http://www.imvertor.org/schema-info/technical-documentation">De grootheid waarin een numerieke waarde wordt uitgedrukt.</xs:documentation> | ||
</xs:annotation> | ||
</xs:element> | ||
</xs:sequence> | ||
</xs:complexType> | ||
<xs:element name="NEN3610ID" type="da:NEN3610ID" abstract="false"> | ||
<xs:annotation> | ||
<xs:documentation source="http://www.imvertor.org/schema-info/technical-documentation">Identificatiegegevens voor de universeel unieke identificatie van een object.</xs:documentation> | ||
</xs:annotation> | ||
</xs:element> | ||
<xs:simpleType name="NEN3610ID"> | ||
<xs:annotation> | ||
<xs:documentation>This complex datatype is transformed to a simple type because a content pattern is defined.</xs:documentation> | ||
</xs:annotation> | ||
<xs:restriction base="xs:string"> | ||
<xs:pattern value="nl\.imow-(gm|pv|ws|mnre)[0-9]{1,6}\.(regeltekst|gebied|gebiedengroep|lijn|lijnengroep|punt|puntengroep|activiteit|gebiedsaanwijzing|omgevingswaarde|omgevingsnorm|pons|kaart|tekstdeel|hoofdlijn|divisie|kaartlaag|juridischeregel|activiteitlocatieaanduiding|normwaarde|regelingsgebied)\.[A-Za-z0-9]{1,32}"/> | ||
</xs:restriction> | ||
</xs:simpleType> | ||
<xs:simpleType name="Eenheid"> | ||
<xs:annotation> | ||
<xs:appinfo source="http://www.imvertor.org/data-info/uri">http://wetgeving.omgevingswet.overheid.nl/id/waardelijst/Eenheid</xs:appinfo> | ||
<xs:documentation source="http://www.imvertor.org/schema-info/technical-documentation">Een uitbreidbare lijst met een opsomming van de mogelijke domeinwaarden van een attribuutsoort, die buiten het model in een externe waardenlijst worden beheerd. </xs:documentation> | ||
</xs:annotation> | ||
<xs:restriction base="xs:anyURI"> | ||
<xs:pattern value="(http|https)://(wetgeving|standaarden|regelgeving)\.omgevingswet\.overheid\.nl/.*"/> | ||
</xs:restriction> | ||
</xs:simpleType> | ||
</xs:schema> |
134 changes: 134 additions & 0 deletions
134
xmlschema/v1.0.2/IMOW/gebiedsaanwijzing/IMOW_Gebiedsaanwijzing.xsd
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,134 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<xs:schema xmlns:ga="http://www.geostandaarden.nl/imow/gebiedsaanwijzing" | ||
xmlns:xs="http://www.w3.org/2001/XMLSchema" | ||
xmlns:imvert="http://www.imvertor.org/schema/system" | ||
xmlns:da="http://www.geostandaarden.nl/imow/datatypenalgemeen" | ||
xmlns:l="http://www.geostandaarden.nl/imow/locatie" | ||
xmlns:ow="http://www.geostandaarden.nl/imow/owobject" | ||
xmlns:op="http://www.geostandaarden.nl/imow/opobject" | ||
xmlns:xlink="http://www.w3.org/1999/xlink" | ||
targetNamespace="http://www.geostandaarden.nl/imow/gebiedsaanwijzing" | ||
elementFormDefault="qualified" | ||
attributeFormDefault="unqualified" | ||
version="1.0"> | ||
<xs:annotation> | ||
<xs:appinfo source="http://www.imvertor.org/schema-info/uri">http://www.geostandaarden.nl/imow/gebiedsaanwijzing</xs:appinfo> | ||
<xs:appinfo source="http://www.imvertor.org/schema-info/version">1.0</xs:appinfo> | ||
<xs:appinfo source="http://www.imvertor.org/schema-info/phase">2</xs:appinfo> | ||
<xs:appinfo source="http://www.imvertor.org/schema-info/release">20200401</xs:appinfo> | ||
<xs:appinfo source="http://www.imvertor.org/schema-info/generated">2020-03-24T15:38:19Z</xs:appinfo> | ||
<xs:appinfo source="http://www.imvertor.org/schema-info/generator">1.58.0</xs:appinfo> | ||
<xs:appinfo source="http://www.imvertor.org/schema-info/owner">Geonovum</xs:appinfo> | ||
<xs:documentation source="http://www.imvertor.org/schema-info/file-location">IMOW/gebiedsaanwijzing/IMOW_GebiedsAanwijzing.xsd</xs:documentation> | ||
<xs:documentation source="http://www.imvertor.org/schema-info/conversion"> | ||
This schema is based on an UML specification, which is transformed by the Imvertor software. Imvertor modules are in the public domain, see http://www.imvertor.org. | ||
</xs:documentation> | ||
</xs:annotation> | ||
<xs:import namespace="http://www.geostandaarden.nl/imow/datatypenalgemeen" | ||
schemaLocation="../../IMOW/datatypenalgemeen/IMOW_DatatypenAlgemeen.xsd"/> | ||
<xs:import namespace="http://www.geostandaarden.nl/imow/locatie" | ||
schemaLocation="../../IMOW/locatie/IMOW_Locatie.xsd"/> | ||
<xs:import namespace="http://www.geostandaarden.nl/imow/owobject" | ||
schemaLocation="../../IMOW/owobject/IMOW_OWobject.xsd"/> | ||
<xs:import namespace="http://www.geostandaarden.nl/imow/opobject" | ||
schemaLocation="../../IMOW/opobject/IMOW_OPobject.xsd"/> | ||
<xs:import namespace="http://www.w3.org/1999/xlink" | ||
schemaLocation="../../xlink/1.0.0/xlinks.xsd"/> | ||
<xs:element name="Gebiedsaanwijzing" | ||
type="ga:Gebiedsaanwijzing" | ||
abstract="false"> | ||
<xs:annotation> | ||
<xs:documentation source="http://www.imvertor.org/schema-info/technical-documentation">Type gebied aangewezen door een juridische regel.</xs:documentation> | ||
</xs:annotation> | ||
</xs:element> | ||
<xs:complexType name="Gebiedsaanwijzing" abstract="false"> | ||
<xs:complexContent> | ||
<xs:extension base="ow:OWobject"> | ||
<xs:sequence> | ||
<xs:element name="identificatie" | ||
type="da:NEN3610ID" | ||
minOccurs="1" | ||
maxOccurs="1"> | ||
<xs:annotation> | ||
<xs:documentation source="http://www.imvertor.org/schema-info/technical-documentation">De unieke identificatie waaronder elk object van dit type bekend is. </xs:documentation> | ||
</xs:annotation> | ||
</xs:element> | ||
<xs:element name="type" | ||
type="ga:TypeGebiedsaanwijzing" | ||
minOccurs="1" | ||
maxOccurs="1"> | ||
<xs:annotation> | ||
<xs:documentation source="http://www.imvertor.org/schema-info/technical-documentation">Het type Gebiedsaanwijzing.</xs:documentation> | ||
</xs:annotation> | ||
</xs:element> | ||
<xs:element name="naam" minOccurs="1" maxOccurs="1"> | ||
<xs:annotation> | ||
<xs:documentation source="http://www.imvertor.org/schema-info/technical-documentation">Een (korte) naam van de gebiedsaanwijzing. </xs:documentation> | ||
</xs:annotation> | ||
<xs:simpleType> | ||
<xs:restriction base="xs:string"> | ||
<xs:pattern value="\S.*"/> | ||
</xs:restriction> | ||
</xs:simpleType> | ||
</xs:element> | ||
<xs:element name="groep" | ||
type="ga:Gebiedsaanwijzinggroep" | ||
minOccurs="1" | ||
maxOccurs="1"> | ||
<xs:annotation> | ||
<xs:documentation source="http://www.imvertor.org/schema-info/technical-documentation">De groep waartoe de Gebiedsaanwijzing behoort.</xs:documentation> | ||
</xs:annotation> | ||
</xs:element> | ||
<xs:element name="specifiekeSymbolisatie" | ||
type="xs:string" | ||
minOccurs="0" | ||
maxOccurs="1"> | ||
<xs:annotation> | ||
<xs:documentation source="http://www.imvertor.org/schema-info/technical-documentation">De symbolisatie zoals door het bevoegd gezag is bepaald en afwijkt van de standaard symbolisatie. Als waarde wordt gebruik gemaakt van de lijst van gestandaardiseerde symboolcodes.</xs:documentation> | ||
</xs:annotation> | ||
</xs:element> | ||
<xs:element name="locatieaanduiding" minOccurs="1" maxOccurs="1"> | ||
<xs:annotation> | ||
<xs:documentation source="http://www.imvertor.org/schema-info/technical-documentation">Deze specifieke Gebiedsaanwijzing is toegekend aan deze specifieke locatie(s).</xs:documentation> | ||
</xs:annotation> | ||
<xs:complexType> | ||
<xs:choice minOccurs="1" maxOccurs="unbounded"> | ||
<xs:element ref="l:LocatieRef"/> | ||
<xs:element ref="l:GebiedRef"/> | ||
<xs:element ref="l:GebiedengroepRef"/> | ||
<xs:element ref="l:PuntRef"/> | ||
<xs:element ref="l:PuntengroepRef"/> | ||
<xs:element ref="l:LijnengroepRef"/> | ||
<xs:element ref="l:LijnRef"/> | ||
</xs:choice> | ||
</xs:complexType> | ||
</xs:element> | ||
</xs:sequence> | ||
<xs:attribute name="id" type="xs:ID" use="optional"/> | ||
</xs:extension> | ||
</xs:complexContent> | ||
</xs:complexType> | ||
<xs:simpleType name="Gebiedsaanwijzinggroep"> | ||
<xs:annotation> | ||
<xs:appinfo source="http://www.imvertor.org/data-info/uri">http://standaarden.omgevingswet.overheid.nl/id/waardelijst/Gebiedsaanwijzinggroep</xs:appinfo> | ||
</xs:annotation> | ||
<xs:restriction base="xs:anyURI"> | ||
<xs:pattern value="(http|https)://(wetgeving|standaarden|regelgeving)\.omgevingswet\.overheid\.nl/.*"/> | ||
</xs:restriction> | ||
</xs:simpleType> | ||
<xs:simpleType name="TypeGebiedsaanwijzing"> | ||
<xs:annotation> | ||
<xs:appinfo source="http://www.imvertor.org/data-info/uri">http://standaarden.omgevingswet.overheid.nl/id/waardelijst/TypeGebiedsaanwijzing</xs:appinfo> | ||
</xs:annotation> | ||
<xs:restriction base="xs:anyURI"> | ||
<xs:pattern value="(http|https)://(wetgeving|standaarden|regelgeving)\.omgevingswet\.overheid\.nl/.*"/> | ||
</xs:restriction> | ||
</xs:simpleType> | ||
<xs:element name="GebiedsaanwijzingRef" | ||
type="ga:GebiedsaanwijzingRef" | ||
abstract="false"/> | ||
<xs:complexType name="GebiedsaanwijzingRef" abstract="false"> | ||
<xs:attribute name="type" type="xs:string" fixed="simple"/> | ||
<xs:attribute ref="xlink:href" use="required"/> | ||
</xs:complexType> | ||
</xs:schema> |
Oops, something went wrong.