-
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.
- Loading branch information
1 parent
c1d3f16
commit 3aaff36
Showing
1 changed file
with
67 additions
and
60 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,62 +1,69 @@ | ||
{ | ||
"type": "dataset", | ||
"id": "grex", | ||
"title": "grex", | ||
"status": "beschikbaar", | ||
"description": "Grondexploitatie projecten", | ||
"version": "1.0.0", | ||
"crs": "EPSG:28992", | ||
"owner": "Gemeente Amsterdam", | ||
"creator": "bronhouder onbekend", | ||
"publisher": { | ||
"$ref": "publishers/SOEB" | ||
}, | ||
"auth": "OPENBAAR", | ||
"authorizationGrantor": "n.v.t.", | ||
"tables": [ | ||
{ | ||
"id": "projecten", | ||
"type": "table", | ||
"version": "1.0.0", | ||
"schema": { | ||
"$schema": "http://json-schema.org/draft-07/schema#", | ||
"type": "object", | ||
"additionalProperties": false, | ||
"required": [ | ||
"schema", | ||
"id" | ||
], | ||
"display": "id", | ||
"properties": { | ||
"schema": { | ||
"$ref": "https://schemas.data.amsterdam.nl/schema@v2#/definitions/schema" | ||
}, | ||
"id": { | ||
"type": "integer", | ||
"description": "Uniek plannummer" | ||
}, | ||
"plannaam": { | ||
"type": "string", | ||
"description": "Plannaam van het object" | ||
}, | ||
"startdatum": { | ||
"type": "string", | ||
"description": "Startdatum van het plan", | ||
"format": "date" | ||
}, | ||
"planstatus": { | ||
"type": "string", | ||
"description": "Planstatus: Planstatus van het project. Kan bestaan uit A (Actueel), F (Functioneel), H (Historisch) en T (Toekomstig)" | ||
}, | ||
"oppervlakte": { | ||
"type": "number", | ||
"description": "Oppervlakte in m2" | ||
}, | ||
"geometry": { | ||
"$ref": "https://geojson.org/schema/MultiPolygon.json" | ||
} | ||
"type": "dataset", | ||
"id": "grex", | ||
"title": "grex", | ||
"status": "beschikbaar", | ||
"description": "Grondexploitatie projecten", | ||
"version": "1.0.0", | ||
"crs": "EPSG:28992", | ||
"owner": "Gemeente Amsterdam", | ||
"creator": "bronhouder onbekend", | ||
"publisher": { | ||
"$ref": "publishers/SOEB" | ||
}, | ||
"auth": "OPENBAAR", | ||
"authorizationGrantor": "n.v.t.", | ||
"tables": [ | ||
{ | ||
"id": "projecten", | ||
"type": "table", | ||
"version": "1.0.0", | ||
"schema": { | ||
"$schema": "http://json-schema.org/draft-07/schema#", | ||
"type": "object", | ||
"additionalProperties": false, | ||
"required": [ | ||
"schema", | ||
"id" | ||
], | ||
"display": "id", | ||
"properties": { | ||
"schema": { | ||
"$ref": "https://schemas.data.amsterdam.nl/schema@v2#/definitions/schema" | ||
}, | ||
"id": { | ||
"title": "Grondexploitatie project ID", | ||
"description": "De unieke identificatie van een grondexploitatie project", | ||
"type": "integer" | ||
}, | ||
"plannaam": { | ||
"title": "Grondexploitatie project naam", | ||
"description": "De naam van een grondexploitatie project", | ||
"type": "string" | ||
}, | ||
"startdatum": { | ||
"title": "Grondexploitatie project startdatum", | ||
"description": "De begindatum van een grondexploitatie project", | ||
"type": "string", | ||
"format": "date" | ||
}, | ||
"planstatus": { | ||
"title": "Grondexploitatie project status code", | ||
"description": "Nadere aanduiding van de levenscyclus van een grondexploitatie plan waarin deze zich bevindt", | ||
"type": "string" | ||
}, | ||
"oppervlakte": { | ||
"title": "Grondexploitatie project oppervlakte", | ||
"description": "De oppervlakte van een grondexploitatie project, uitgedrukt in vierkante meters", | ||
"type": "number" | ||
}, | ||
"geometry": { | ||
"title": "Grondexploitatie project geometrie", | ||
"description": "Geometrie omschrijving van het type POLYGON van het vlak van een grondexploitatie project", | ||
"$ref": "https://geojson.org/schema/MultiPolygon.json" | ||
} | ||
} | ||
} | ||
} | ||
} | ||
} | ||
] | ||
} | ||
] | ||
} |