records
Varco n. 44 - viale Ercolani - direzione nord
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":"varco-n-44-viale-ercolani-direzione-nord",
- "type":"object",
- "oneOf":,[
- {
- "$ref":"#/definitions/varco-n-44-viale-ercolani-direzione-nord"
}
] - "definitions":{
- "varco-n-44-viale-ercolani-direzione-nord":,{
- "properties":{
- "records":{
- "type":"array",
- "items":{
- "$ref":"#/definitions/varco-n-44-viale-ercolani-direzione-nord_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"
}
}
} - "varco-n-44-viale-ercolani-direzione-nord_records":{
- "properties":{
- "fields":{
- "type":"object",
- "properties":{
- "data":,{
- "type":"string",
- "format":"date-time",
- "title":"Data",
- "description":"Data e ora rilevazione passaggi"
} - "varco":,{
- "type":"integer",
- "title":"Varco",
- "description":"Numero identificativo del varco"
} - "totale_passaggi":,{
- "type":"integer",
- "title":"Totale passaggi",
- "description":"Numero totale dei passaggi"
} - "non_classificato":,{
- "type":"integer",
- "title":"Non Classificato",
- "description":""
} - "moto_ciclomotori":,{
- "type":"integer",
- "title":"Moto/Ciclomotori",
- "description":""
} - "auto_furgoni":,{
- "type":"integer",
- "title":"Auto/Furgoni",
- "description":""
} - "bus_camion":,{
- "type":"integer",
- "title":"Bus/Camion",
- "description":""
} - "sintatticamente_corretta":,{
- "type":"integer",
- "title":"Sintatticamente Corretta",
- "description":""
} - "lista_bianca_fuori_fascia":,{
- "type":"integer",
- "title":"Lista Bianca fuori fascia",
- "description":""
} - "lista_bianca_regolare":,{
- "type":"integer",
- "title":"Lista bianca regolare",
- "description":""
} - "lista_speciale":,{
- "type":"integer",
- "title":"Lista speciale",
- "description":""
} - "lista_nera":,{
- "type":"integer",
- "title":"Lista Nera",
- "description":""
} - "transito_generico_irregolare":,{
- "type":"integer",
- "title":"Transito generico irregolare",
- "description":""
} - "segnalazioni":,{
- "type":"integer",
- "title":"Segnalazioni",
- "description":""
} - "coordinate":,{
- "type":"array",
- "minItems":2,
- "maxItems":2,
- "items":,{
- "type":"number"
} - "title":"coordinate",
- "description":""
} - "nome_varco":,{
- "type":"string",
- "title":"Nome varco",
- "description":""
} - "direzione":,{
- "type":"string",
- "title":"Direzione",
- "description":""
} - "descrizione":,{
- "type":"string",
- "title":"Descrizione",
- "description":""
} - "tipologia_varco":{
- "type":"string",
- "title":"Tipologia varco",
- "description":""
}
} - "data":
}
} - "fields":
} - "properties":
} - "varco-n-44-viale-ercolani-direzione-nord":
}