records
Bomen
Dataset schema
Click to expand Click to collapse
JSON Schema
The following JSON object is a standardized description of your dataset's schema. More about JSON schema.
{
- "title":"bomen",
- "type":"object",
- "oneOf":,[
- {
- "$ref":"#/definitions/bomen"
}
] - "definitions":{
- "bomen":,{
- "properties":{
- "records":{
- "type":"array",
- "items":{
- "$ref":"#/definitions/bomen_records"
}
}
} - "records":
} - "properties":
- "geoJSON":,{
- "title":"Geo JSON object",
- "description":"Schema for a Geo JSON object",
- "type":"object",
- "required":,[
- "type"
] - "properties":,{
- "crs":,{
- "$ref":"#/definitions/crs"
} - "bbox":{
- "$ref":"#/definitions/bbox"
}
} - "crs":
- "oneOf":[
- ,{
- "$ref":"#/definitions/geometry"
} - ,{
- "$ref":"#/definitions/geometryCollection"
} - ,{
- "$ref":"#/definitions/feature"
} - {
- "$ref":"#/definitions/featureCollection"
}
]
} - "bbox":,{
- "description":"A bounding box as defined by GeoJSON",
- "type":"array",
- "items":{
- "type":"number"
}
} - "crs":,{
- "title":"crs",
- "description":"a Coordinate Reference System object",
- "type":,[
- "object",
- "null"
] - "required":,[
- "type",
- "properties"
] - "properties":,{
- "type":,{
- "type":"string"
} - "properties":{
- "type":"object"
}
} - "type":
- "additionalProperties":false,
- "oneOf":[
- ,{
- "$ref":"#/definitions/namedCrs"
} - {
- "$ref":"#/definitions/linkedCrs"
}
]
} - "namedCrs":,{
- "properties":{
- "type":,{
- "enum":[
- "name"
]
} - "enum":
- "properties":{
- "required":,[
- "name"
] - "additionalProperties":false,
- "properties":{
- "name":{
- "type":"string"
}
} - "name":
} - "required":
} - "type":
} - "properties":
- "linkedObject":,{
- "type":"object",
- "required":,[
- "href"
] - "properties":{
- "href":,{
- "type":"string",
- "format":"uri"
} - "type":{
- "type":"string",
- "description":"Suggested values: proj4, ogjwkt, esriwkt"
}
} - "href":
} - "linkedCrs":,{
- "properties":{
- "type":,{
- "enum":[
- "link"
]
} - "enum":
- "properties":{
- "$ref":"#/definitions/linkedObject"
}
} - "type":
} - "properties":
- "geometryCollection":,{
- "title":"GeometryCollection",
- "description":"A collection of geometry objects",
- "required":,[
- "geometries"
] - "properties":{
- "type":,{
- "enum":[
- "GeometryCollection"
]
} - "enum":
- "geometries":{
- "type":"array",
- "items":{
- "$ref":"http://json-schema.org/geojson/geometry.json#"
}
}
} - "type":
} - "feature":,{
- "title":"Feature",
- "description":"A Geo JSON feature object",
- "required":,[
- "geometry",
- "properties"
] - "properties":{
- "type":,{
- "enum":[
- "Feature"
]
} - "enum":
- "geometry":,{
- "oneOf":[
- ,{
- "type":"null"
} - {
- "$ref":"#/definitions/geometry"
}
]
} - "oneOf":
- "properties":,{
- "type":[
- "object",
- "null"
]
} - "type":
- "id":{}
} - "type":
} - "featureCollection":,{
- "title":"FeatureCollection",
- "description":"A Geo JSON feature collection",
- "required":,[
- "features"
] - "properties":{
- "type":,{
- "enum":[
- "FeatureCollection"
]
} - "enum":
- "features":{
- "type":"array",
- "items":{
- "$ref":"#/definitions/feature"
}
}
} - "type":
} - "geometry":,{
- "title":"geometry",
- "description":"One geometry as defined by GeoJSON",
- "type":"object",
- "required":,[
- "type",
- "coordinates"
] - "oneOf":,[
- ,{
- "title":"Point",
- "properties":{
- "type":,{
- "enum":[
- "Point"
]
} - "enum":
- "coordinates":{
- "$ref":"#/definitions/position"
}
} - "type":
} - ,{
- "title":"MultiPoint",
- "properties":{
- "type":,{
- "enum":[
- "MultiPoint"
]
} - "enum":
- "coordinates":{
- "$ref":"#/definitions/positionArray"
}
} - "type":
} - ,{
- "title":"LineString",
- "properties":{
- "type":,{
- "enum":[
- "LineString"
]
} - "enum":
- "coordinates":{
- "$ref":"#/definitions/lineString"
}
} - "type":
} - ,{
- "title":"MultiLineString",
- "properties":{
- "type":,{
- "enum":[
- "MultiLineString"
]
} - "enum":
- "coordinates":{
- "type":"array",
- "items":{
- "$ref":"#/definitions/lineString"
}
}
} - "type":
} - ,{
- "title":"Polygon",
- "properties":{
- "type":,{
- "enum":[
- "Polygon"
]
} - "enum":
- "coordinates":{
- "$ref":"#/definitions/polygon"
}
} - "type":
} - {
- "title":"MultiPolygon",
- "properties":{
- "type":,{
- "enum":[
- "MultiPolygon"
]
} - "enum":
- "coordinates":{
- "type":"array",
- "items":{
- "$ref":"#/definitions/polygon"
}
}
} - "type":
}
] - "position":,{
- "description":"A single position",
- "type":"array",
- "minItems":2,
- "items":,[
- ,{
- "type":"number"
} - {
- "type":"number"
}
] - "additionalItems":false
} - "positionArray":,{
- "description":"An array of positions",
- "type":"array",
- "items":{
- "$ref":"#/definitions/position"
}
} - "lineString":,{
- "description":"An array of two or more positions",
- "allOf":[
- ,{
- "$ref":"#/definitions/positionArray"
} - {
- "minItems":2
}
]
} - "linearRing":,{
- "description":"An array of four positions where the first equals the last",
- "allOf":[
- ,{
- "$ref":"#/definitions/positionArray"
} - {
- "minItems":4
}
]
} - "polygon":{
- "description":"An array of linear rings",
- "type":"array",
- "items":{
- "$ref":"#/definitions/linearRing"
}
}
} - "bomen_records":{
- "properties":{
- "fields":{
- "type":"object",
- "properties":{
- "objectid":,{
- "type":"integer",
- "title":"OBJECTID",
- "description":""
} - "boomnummer":,{
- "type":"integer",
- "title":"BOOMNUMMER",
- "description":"Uniek identificatienummer waarmee de boom herkend kan worden."
} - "geovisia_id":,{
- "type":"string",
- "title":"GEOVISIA_ID",
- "description":"Uniek identificatienummer waarmee de boom herkend kan worden in het beheerpakket (GeoVisia)."
} - "eigenaar":,{
- "type":"string",
- "title":"EIGENAAR",
- "description":"Eigenaar van de boom. BOR: Beheer Openbare Ruimte, gemeentelijk eigendom. Als er sprake is van particulier eigendom, is particulier ingevuld."
} - "beheerder":,{
- "type":"string",
- "title":"BEHEERDER",
- "description":"Beheerder van de boom. BOR: Beheer Openbare Ruimte, gemeentelijk eigendom. Als er sprake is van particulier eigendom, is particulier ingevuld."
} - "boomsoort":,{
- "type":"string",
- "title":"BOOMSOORT",
- "description":"Latijnse naam die de soort boom beschrijft. De Nederlandse vertalingen zijn bijvoorbeeld te raadplegen via: https://www.bonsaicursus.com/latijnse-namen-bomen/"
} - "boomsoort_varieteit":,{
- "type":"string",
- "title":"BOOMSOORT_VARIETEIT",
- "description":""
} - "boomsoort_nederlands":,{
- "type":"string",
- "title":"BOOMSOORT_NEDERLANDS",
- "description":""
} - "eindbeeld":,{
- "type":"string",
- "title":"EINDBEELD",
- "description":"Snoei instructie voor de boom."
} - "hoogte":,{
- "type":"string",
- "title":"HOOGTE",
- "description":"Hoogteklasse van de boom in meters."
} - "plantjaar":,{
- "type":"string",
- "format":"date",
- "title":"PLANTJAAR",
- "description":"Jaar waarop de boom geplant is. Als het plantjaar onbekend is, dan is dit veld niet gevuld."
} - "status_ter_indicatie":,{
- "type":"string",
- "title":"STATUS_TER_INDICATIE",
- "description":"Opties: Waardevol, Monumentaal, of basis (leeg veld). Zie verordening bomen https://lokaleregelgeving.overheid.nl/CVDR657211"
} - "boom_def_afwezig":,{
- "type":"string",
- "title":"BOOM_DEF_AFWEZIG",
- "description":""
} - "plantwijze":,{
- "type":"string",
- "title":"PLANTWIJZE",
- "description":""
} - "boomrooster":,{
- "type":"string",
- "title":"BOOMROOSTER",
- "description":""
} - "verlichting":,{
- "type":"string",
- "title":"VERLICHTING",
- "description":""
} - "epr_aanwezig":,{
- "type":"string",
- "title":"EPR_AANWEZIG",
- "description":"Voor eiken zijn er een aantal attributen die aangemerkt zijn met de term "EPR" (EPR_AANWEZIG, EPR_BESTRIJDINGSMETHODE, EPR_STADIUM, etc.). Deze attributen hebben betrekking op de constatering en daarop volgende bestrijding van de eikenprocessierups."
} - "epr_preventief_inspecteren":,{
- "type":"string",
- "title":"EPR_PREVENTIEF_INSPECTEREN",
- "description":"Voor eiken zijn er een aantal attributen die aangemerkt zijn met de term "EPR" (EPR_AANWEZIG, EPR_BESTRIJDINGSMETHODE, EPR_STADIUM, etc.). Deze attributen hebben betrekking op de constatering en daarop volgende bestrijding van de eikenprocessierups."
} - "epr_bestrijdingsmethode":,{
- "type":"string",
- "title":"EPR_BESTRIJDINGSMETHODE",
- "description":"Voor eiken zijn er een aantal attributen die aangemerkt zijn met de term "EPR" (EPR_AANWEZIG, EPR_BESTRIJDINGSMETHODE, EPR_STADIUM, etc.). Deze attributen hebben betrekking op de constatering en daarop volgende bestrijding van de eikenprocessierups."
} - "epr_stadium":,{
- "type":"string",
- "title":"EPR_STADIUM",
- "description":"Voor eiken zijn er een aantal attributen die aangemerkt zijn met de term "EPR" (EPR_AANWEZIG, EPR_BESTRIJDINGSMETHODE, EPR_STADIUM, etc.). Deze attributen hebben betrekking op de constatering en daarop volgende bestrijding van de eikenprocessierups."
} - "epr_datum_constatering":,{
- "type":"string",
- "format":"date-time",
- "title":"EPR_DATUM_CONSTATERING",
- "description":"Voor eiken zijn er een aantal attributen die aangemerkt zijn met de term "EPR" (EPR_AANWEZIG, EPR_BESTRIJDINGSMETHODE, EPR_STADIUM, etc.). Deze attributen hebben betrekking op de constatering en daarop volgende bestrijding van de eikenprocessierups."
} - "epr_risicoprofiel":,{
- "type":"string",
- "title":"EPR_RISICOPROFIEL",
- "description":"Voor eiken zijn er een aantal attributen die aangemerkt zijn met de term "EPR" (EPR_AANWEZIG, EPR_BESTRIJDINGSMETHODE, EPR_STADIUM, etc.). Deze attributen hebben betrekking op de constatering en daarop volgende bestrijding van de eikenprocessierups."
} - "epr_datum_mech_bestreden":,{
- "type":"string",
- "format":"date-time",
- "title":"EPR_DATUM_MECH_BESTREDEN",
- "description":"Voor eiken zijn er een aantal attributen die aangemerkt zijn met de term "EPR" (EPR_AANWEZIG, EPR_BESTRIJDINGSMETHODE, EPR_STADIUM, etc.). Deze attributen hebben betrekking op de constatering en daarop volgende bestrijding van de eikenprocessierups."
} - "epr_datum_1_bio_bestrijding":,{
- "type":"string",
- "format":"date-time",
- "title":"EPR_DATUM_1_BIO_BESTRIJDING",
- "description":"Voor eiken zijn er een aantal attributen die aangemerkt zijn met de term "EPR" (EPR_AANWEZIG, EPR_BESTRIJDINGSMETHODE, EPR_STADIUM, etc.). Deze attributen hebben betrekking op de constatering en daarop volgende bestrijding van de eikenprocessierups."
} - "epr_datum_2_bio_bestrijding":,{
- "type":"string",
- "format":"date-time",
- "title":"EPR_DATUM_2_BIO_BESTRIJDING",
- "description":"Voor eiken zijn er een aantal attributen die aangemerkt zijn met de term "EPR" (EPR_AANWEZIG, EPR_BESTRIJDINGSMETHODE, EPR_STADIUM, etc.). Deze attributen hebben betrekking op de constatering en daarop volgende bestrijding van de eikenprocessierups."
} - "nazorgboom":,{
- "type":"string",
- "title":"NAZORGBOOM",
- "description":""
} - "projectnaam":,{
- "type":"string",
- "title":"PROJECTNAAM",
- "description":""
} - "geo_shape":,{
- "type":"object",
- "oneOf":,[
- {
- "$ref":"#/definitions/geometry"
}
] - "title":"geo_shape",
- "description":"Geometrie (punt) die de ligging van de boom beschrijft WGS 1984, EPSG:4326."
} - "geo_point_2d":{
- "type":"array",
- "minItems":2,
- "maxItems":2,
- "items":,{
- "type":"number"
} - "title":"geo_point_2d",
- "description":"Geometrie (punt) die de ligging van de boom beschrijft in WGS 1984, EPSG:4326."
}
} - "objectid":
}
} - "fields":
} - "properties":
} - "bomen":
}