records

records

Active filters Clear all

No active filters

Filters

Lavori in corso in città

Attachments

Click to expand Click to collapse

Dataset schema

Click to expand Click to collapse
id
               

No description available for this field.

Name (identifier)
id
Type
integer
Sample
                       
pinPoint
               

No description available for this field.

Name (identifier)
pinpoint
Type
geo point
Sample
                       
Tipo di lavoro - 1
               

No description available for this field.

Name (identifier)
roadway1
Type
text
Sample
                       
Tipo di lavoro - 2
               

No description available for this field.

Name (identifier)
roadway2
Type
text
Sample
                       
Tipo di lavoro - 3
               

No description available for this field.

Name (identifier)
roadway3
Type
text
Sample
                       
Quartiere - 1
               

No description available for this field.

Name (identifier)
neighborhood1
Type
text
Sample
                       
Quartiere - 2
               

No description available for this field.

Name (identifier)
neighborhood2
Type
text
Sample
                       
Quartiere - 3
               

No description available for this field.

Name (identifier)
neighborhood3
Type
text
Sample
                       
Stato
               

No description available for this field.

Name (identifier)
status
Type
text
Sample
                       
Indirizzo
               

No description available for this field.

Name (identifier)
address
Type
text
Sample
                       
Data di inizio lavori
               

No description available for this field.

Name (identifier)
effectivestartdate
Type
datetime
Sample
                       
Data di fine lavori
               

No description available for this field.

Name (identifier)
effectiveenddate
Type
datetime
Sample
                       
Modifica alla circolazione
               

No description available for this field.

Name (identifier)
trafficchangesmeasure
Type
text
Sample
                       
Anno
               

No description available for this field.

Name (identifier)
year
Type
date
Sample
                       
Civico di inizio cantiere
               

No description available for this field.

Name (identifier)
addressnumberfrom
Type
text
Sample
                       
Civico di fine cantiere
               

No description available for this field.

Name (identifier)
addressnumberto
Type
text
Sample
                       
Descrizione
               

No description available for this field.

Name (identifier)
description
Type
text
Sample
                       
Note
               

No description available for this field.

Name (identifier)
visualizationnotes
Type
text
Sample
                       
Coordinate di inizio cantiere
               

No description available for this field.

Name (identifier)
addressnumberfromcoordinate
Type
geo point
Sample
                       
Coordinate di fine cantiere
               

No description available for this field.

Name (identifier)
addressnumbertocoordinate
Type
geo point
Sample
                       

JSON Schema

The following JSON object is a standardized description of your dataset's schema. More about JSON schema.

{
  • "title":"lavori-pubblici",
  • "type":"object",
  • "oneOf":
    [
    • {
      • "$ref":"#/definitions/lavori-pubblici"
      }
    ]
    ,
  • "definitions":
    {
    • "lavori-pubblici":
      {
      • "properties":
        {
        • "records":
          {
          • "type":"array",
          • "items":
            {
            • "$ref":"#/definitions/lavori-pubblici_records"
            }
          }
        }
      }
      ,
    • "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"
          }
        }
        ,
      • "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"
          }
        }
        ,
      • "additionalProperties":false,
      • "oneOf":
        [
        • {
          • "$ref":"#/definitions/namedCrs"
          }
          ,
        • {
          • "$ref":"#/definitions/linkedCrs"
          }
        ]
      }
      ,
    • "namedCrs":
      {
      • "properties":
        {
        • "type":
          {
          • "enum":
            [
            • "name"
            ]
          }
          ,
        • "properties":
          {
          • "required":
            [
            • "name"
            ]
            ,
          • "additionalProperties":false,
          • "properties":
            {
            • "name":
              {
              • "type":"string"
              }
            }
          }
        }
      }
      ,
    • "linkedObject":
      {
      • "type":"object",
      • "required":
        [
        • "href"
        ]
        ,
      • "properties":
        {
        • "href":
          {
          • "type":"string",
          • "format":"uri"
          }
          ,
        • "type":
          {
          • "type":"string",
          • "description":"Suggested values: proj4, ogjwkt, esriwkt"
          }
        }
      }
      ,
    • "linkedCrs":
      {
      • "properties":
        {
        • "type":
          {
          • "enum":
            [
            • "link"
            ]
          }
          ,
        • "properties":
          {
          • "$ref":"#/definitions/linkedObject"
          }
        }
      }
      ,
    • "geometryCollection":
      {
      • "title":"GeometryCollection",
      • "description":"A collection of geometry objects",
      • "required":
        [
        • "geometries"
        ]
        ,
      • "properties":
        {
        • "type":
          {
          • "enum":
            [
            • "GeometryCollection"
            ]
          }
          ,
        • "geometries":
          {
          • "type":"array",
          • "items":
            {
            • "$ref":"http://json-schema.org/geojson/geometry.json#"
            }
          }
        }
      }
      ,
    • "feature":
      {
      • "title":"Feature",
      • "description":"A Geo JSON feature object",
      • "required":
        [
        • "geometry",
        • "properties"
        ]
        ,
      • "properties":
        {
        • "type":
          {
          • "enum":
            [
            • "Feature"
            ]
          }
          ,
        • "geometry":
          {
          • "oneOf":
            [
            • {
              • "type":"null"
              }
              ,
            • {
              • "$ref":"#/definitions/geometry"
              }
            ]
          }
          ,
        • "properties":
          {
          • "type":
            [
            • "object",
            • "null"
            ]
          }
          ,
        • "id":
          {
            }
          }
        }
        ,
      • "featureCollection":
        {
        • "title":"FeatureCollection",
        • "description":"A Geo JSON feature collection",
        • "required":
          [
          • "features"
          ]
          ,
        • "properties":
          {
          • "type":
            {
            • "enum":
              [
              • "FeatureCollection"
              ]
            }
            ,
          • "features":
            {
            • "type":"array",
            • "items":
              {
              • "$ref":"#/definitions/feature"
              }
            }
          }
        }
        ,
      • "geometry":
        {
        • "title":"geometry",
        • "description":"One geometry as defined by GeoJSON",
        • "type":"object",
        • "required":
          [
          • "type",
          • "coordinates"
          ]
          ,
        • "oneOf":
          [
          • {
            • "title":"Point",
            • "properties":
              {
              • "type":
                {
                • "enum":
                  [
                  • "Point"
                  ]
                }
                ,
              • "coordinates":
                {
                • "$ref":"#/definitions/position"
                }
              }
            }
            ,
          • {
            • "title":"MultiPoint",
            • "properties":
              {
              • "type":
                {
                • "enum":
                  [
                  • "MultiPoint"
                  ]
                }
                ,
              • "coordinates":
                {
                • "$ref":"#/definitions/positionArray"
                }
              }
            }
            ,
          • {
            • "title":"LineString",
            • "properties":
              {
              • "type":
                {
                • "enum":
                  [
                  • "LineString"
                  ]
                }
                ,
              • "coordinates":
                {
                • "$ref":"#/definitions/lineString"
                }
              }
            }
            ,
          • {
            • "title":"MultiLineString",
            • "properties":
              {
              • "type":
                {
                • "enum":
                  [
                  • "MultiLineString"
                  ]
                }
                ,
              • "coordinates":
                {
                • "type":"array",
                • "items":
                  {
                  • "$ref":"#/definitions/lineString"
                  }
                }
              }
            }
            ,
          • {
            • "title":"Polygon",
            • "properties":
              {
              • "type":
                {
                • "enum":
                  [
                  • "Polygon"
                  ]
                }
                ,
              • "coordinates":
                {
                • "$ref":"#/definitions/polygon"
                }
              }
            }
            ,
          • {
            • "title":"MultiPolygon",
            • "properties":
              {
              • "type":
                {
                • "enum":
                  [
                  • "MultiPolygon"
                  ]
                }
                ,
              • "coordinates":
                {
                • "type":"array",
                • "items":
                  {
                  • "$ref":"#/definitions/polygon"
                  }
                }
              }
            }
          ]
          ,
        • "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"
            }
          }
        }
        ,
      • "lavori-pubblici_records":
        {
        • "properties":
          {
          • "fields":
            {
            • "type":"object",
            • "properties":
              {
              • "id":
                {
                • "type":"integer",
                • "title":"id",
                • "description":""
                }
                ,
              • "pinpoint":
                {
                • "type":"array",
                • "minItems":2,
                • "maxItems":2,
                • "items":
                  {
                  • "type":"number"
                  }
                  ,
                • "title":"pinPoint",
                • "description":""
                }
                ,
              • "roadway1":
                {
                • "type":"string",
                • "title":"Tipo di lavoro - 1",
                • "description":""
                }
                ,
              • "roadway2":
                {
                • "type":"string",
                • "title":"Tipo di lavoro - 2",
                • "description":""
                }
                ,
              • "roadway3":
                {
                • "type":"string",
                • "title":"Tipo di lavoro - 3",
                • "description":""
                }
                ,
              • "neighborhood1":
                {
                • "type":"string",
                • "title":"Quartiere - 1",
                • "description":""
                }
                ,
              • "neighborhood2":
                {
                • "type":"string",
                • "title":"Quartiere - 2",
                • "description":""
                }
                ,
              • "neighborhood3":
                {
                • "type":"string",
                • "title":"Quartiere - 3",
                • "description":""
                }
                ,
              • "status":
                {
                • "type":"string",
                • "title":"Stato",
                • "description":""
                }
                ,
              • "address":
                {
                • "type":"string",
                • "title":"Indirizzo",
                • "description":""
                }
                ,
              • "effectivestartdate":
                {
                • "type":"string",
                • "format":"date-time",
                • "title":"Data di inizio lavori",
                • "description":""
                }
                ,
              • "effectiveenddate":
                {
                • "type":"string",
                • "format":"date-time",
                • "title":"Data di fine lavori",
                • "description":""
                }
                ,
              • "trafficchangesmeasure":
                {
                • "type":"string",
                • "title":"Modifica alla circolazione",
                • "description":""
                }
                ,
              • "year":
                {
                • "type":"string",
                • "format":"date",
                • "title":"Anno",
                • "description":""
                }
                ,
              • "addressnumberfrom":
                {
                • "type":"string",
                • "title":"Civico di inizio cantiere",
                • "description":""
                }
                ,
              • "addressnumberto":
                {
                • "type":"string",
                • "title":"Civico di fine cantiere",
                • "description":""
                }
                ,
              • "description":
                {
                • "type":"string",
                • "title":"Descrizione",
                • "description":""
                }
                ,
              • "visualizationnotes":
                {
                • "type":"string",
                • "title":"Note",
                • "description":""
                }
                ,
              • "addressnumberfromcoordinate":
                {
                • "type":"array",
                • "minItems":2,
                • "maxItems":2,
                • "items":
                  {
                  • "type":"number"
                  }
                  ,
                • "title":"Coordinate di inizio cantiere",
                • "description":""
                }
                ,
              • "addressnumbertocoordinate":
                {
                • "type":"array",
                • "minItems":2,
                • "maxItems":2,
                • "items":
                  {
                  • "type":"number"
                  }
                  ,
                • "title":"Coordinate di fine cantiere",
                • "description":""
                }
              }
            }
          }
        }
      }
    }

    Similar datasets