-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
changed display field for unesco (#1170)
- Loading branch information
1 parent
9fdc3df
commit 4b3ad41
Showing
2 changed files
with
60 additions
and
2 deletions.
There are no files selected for viewing
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
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,57 @@ | ||
{ | ||
"id": "unesco", | ||
"type": "table", | ||
"auth": "OPENBAAR", | ||
"version": "3.0.1", | ||
"description": "De Amsterdamse grachtengordel staat op de UNESCO-Werelderfgoedlijst, wat betekent dat er internationale erkenning is van het bijzondere karakter van dit deel van de historische binnenstad. Het aanwijzen van cultureel erfgoed is bedoeld om het beter te kunnen bewaren voor toekomstige generaties.", | ||
"schema": { | ||
"$schema": "http://json-schema.org/draft-07/schema#", | ||
"type": "object", | ||
"additionalProperties": false, | ||
"mainGeometry": "geometrie", | ||
"identifier": [ | ||
"identificatie" | ||
], | ||
"required": [ | ||
"schema", | ||
"identificatie" | ||
], | ||
"display": "naam", | ||
"properties": { | ||
"schema": { | ||
"$ref": "https://schemas.data.amsterdam.nl/[email protected]#/definitions/schema" | ||
}, | ||
"identificatie": { | ||
"type": "string", | ||
"description": "unieke identificatie van het object" | ||
}, | ||
"datumActueelTot": { | ||
"type": "string", | ||
"format": "date-time", | ||
"description": "einddatum van de cyclus, eventueel in combinatie met het kenmerk Status" | ||
}, | ||
"naam": { | ||
"type": "string", | ||
"description": "de naam van het object" | ||
}, | ||
"beginGeldigheid": { | ||
"type": "string", | ||
"format": "date-time", | ||
"description": "datum waarop de beschermde status van de zone in werking treedt" | ||
}, | ||
"eindGeldigheid": { | ||
"type": "string", | ||
"format": "date-time", | ||
"description": "datum waarop de beschermde status van de zone is afgevoerd" | ||
}, | ||
"redengevendeOmschrijving": { | ||
"type": "string", | ||
"description": "de publieke, historische omschrijvng, behorend bij het besluit" | ||
}, | ||
"geometrie": { | ||
"$ref": "https://geojson.org/schema/Geometry.json", | ||
"description": "geometrische beschrijving van een object" | ||
} | ||
} | ||
} | ||
} |