167
records
Community gardens and food trees
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":"community-gardens-and-food-trees",
- "type":"object",
- "oneOf":,[
- {
- "$ref":"#/definitions/community-gardens-and-food-trees"
}
] - "definitions":{
- "community-gardens-and-food-trees":,{
- "properties":{
- "records":{
- "type":"array",
- "items":{
- "$ref":"#/definitions/community-gardens-and-food-trees_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"
}
}
} - "community-gardens-and-food-trees_records":{
- "properties":{
- "fields":{
- "type":"object",
- "properties":{
- "mapid":,{
- "type":"string",
- "title":"MAPID",
- "description":"Unique identifier for each community garden"
} - "year_created":,{
- "type":"string",
- "title":"YEAR_CREATED",
- "description":"The year of which the community garden was created or the year when the first food tree was planted."
} - "name":,{
- "type":"string",
- "title":"NAME",
- "description":"Name of the community garden and/or site where food trees are associated with."
} - "street_number":,{
- "type":"string",
- "title":"STREET_NUMBER",
- "description":"Number assigned to the street where the community garden and/or food tree site is located"
} - "street_direction":,{
- "type":"string",
- "title":"STREET_DIRECTION",
- "description":"Cardinal direction of the street where the community garden, and/or food tree site is located"
} - "street_name":,{
- "type":"string",
- "title":"STREET_NAME",
- "description":"Name of the street where the community garden, and/or food tree site is located"
} - "street_type":,{
- "type":"string",
- "title":"STREET_TYPE",
- "description":"Type of the street where the community garden, and/or food tree site is located"
} - "merged_address":,{
- "type":"string",
- "title":"MERGED_ADDRESS",
- "description":"Combined site address assembled from StreetNumber, StreetDirection, StreetName, and StreetType fields"
} - "number_of_plots":,{
- "type":"integer",
- "title":"NUMBER_OF_PLOTS",
- "description":"Number of individual allotments on site used to grow food Note: There is no specific standard with regards to size or intensity of use for individual plots"
} - "number_of_food_trees":,{
- "type":"string",
- "title":"NUMBER_OF_FOOD_TREES",
- "description":"Number of fruit and nut bearing trees on site."
} - "notes":,{
- "type":"string",
- "title":"NOTES",
- "description":"Additional information on the community garden and/or food tree."
} - "food_tree_varieties":,{
- "type":"string",
- "title":"FOOD_TREE_VARIETIES",
- "description":"Fruit, nut, and berry varieties that are planted on the site."
} - "other_food_assets":,{
- "type":"string",
- "title":"OTHER_FOOD_ASSETS",
- "description":"Apiaries, mason bee houses, number of collaborative garden plots, pollinator gardens, and other food assets not as commonly found in gardens Note: This is not activated yet but will be in the near future."
} - "jurisdiction":,{
- "type":"string",
- "title":"JURISDICTION",
- "description":"Owner or agency responsible for land parcel(s), distinguished between City of Vancouver departments (City), Park Board (Parks), Transit authority (TransLink), Private owner (Private), and Other."
} - "steward_or_managing_organization":,{
- "type":"string",
- "title":"STEWARD_OR_MANAGING_ORGANIZATION",
- "description":"The name of group or organization that helps steward food-growing operations on site"
} - "public_e_mail":,{
- "type":"string",
- "title":"PUBLIC_E_MAIL",
- "description":"Contact e-mail address of the site"
} - "website":,{
- "type":"string",
- "title":"WEBSITE",
- "description":"Web page address of the site or the managing organization"
} - "geo_local_area":,{
- "type":"string",
- "title":"Geo Local Area",
- "description":"The local area where the feature is found, derived from the feature's coordinates or address in the source system. The City has 22 local areas (also known as local planning areas). For more details, see the Local area boundary data set."
} - "geom":,{
- "type":"object",
- "oneOf":,[
- {
- "$ref":"#/definitions/geometry"
}
] - "title":"Geom",
- "description":"Spatial representation of feature"
} - "geo_point_2d":{
- "type":"array",
- "minItems":2,
- "maxItems":2,
- "items":,{
- "type":"number"
} - "title":"geo_point_2d",
- "description":""
}
} - "mapid":
}
} - "fields":
} - "properties":
} - "community-gardens-and-food-trees":
}