enregistrement

enregistrement

Filtres actifs Tout effacer

Aucun filtre actif

Filtres

Adresses

Pièces jointes

Cliquez pour déplier Cliquez pour replier

Modèle de données

Cliquez pour déplier Cliquez pour replier
Geometry X Y
               

Aucune description n'est disponible pour ce champ.

Nom (identifiant)
geom_x_y
Type
geo_point_2d
Exemple
                       
Geometry
               

Aucune description n'est disponible pour ce champ.

Nom (identifiant)
geom
Type
geo_shape
Exemple
                       
N_SQ_AD
               

Aucune description n'est disponible pour ce champ.

Nom (identifiant)
n_sq_ad
Type
int
Exemple
                       
N_VOIE
               

Aucune description n'est disponible pour ce champ.

Nom (identifiant)
n_voie
Type
int
Exemple
                       
C_SUF1
               

Aucune description n'est disponible pour ce champ.

Nom (identifiant)
c_suf1
Type
texte
Exemple
                       
C_SUF2
               

Aucune description n'est disponible pour ce champ.

Nom (identifiant)
c_suf2
Type
texte
Exemple
                       
C_SUF3
               

Aucune description n'est disponible pour ce champ.

Nom (identifiant)
c_suf3
Type
texte
Exemple
                       
C_AR
               

Aucune description n'est disponible pour ce champ.

Nom (identifiant)
c_ar
Type
int
Exemple
                       
A_NVOIE
               

Aucune description n'est disponible pour ce champ.

Nom (identifiant)
a_nvoie
Type
décimal
Exemple
                       
B_ANGLE
               

Aucune description n'est disponible pour ce champ.

Nom (identifiant)
b_angle
Type
texte
Exemple
                       
B_OFFSTDF
               

Aucune description n'est disponible pour ce champ.

Nom (identifiant)
b_offstdf
Type
texte
Exemple
                       
B_AFFSTDF
               

Aucune description n'est disponible pour ce champ.

Nom (identifiant)
b_affstdf
Type
texte
Exemple
                       
B_HORS75
               

Aucune description n'est disponible pour ce champ.

Nom (identifiant)
b_hors75
Type
texte
Exemple
                       
L_NVOIE
               

Aucune description n'est disponible pour ce champ.

Nom (identifiant)
l_nvoie
Type
texte
Exemple
                       
L_ADR
               

Aucune description n'est disponible pour ce champ.

Nom (identifiant)
l_adr
Type
texte
Exemple
                       
N_SQ_AR
               

Aucune description n'est disponible pour ce champ.

Nom (identifiant)
n_sq_ar
Type
int
Exemple
                       
N_SQ_VO
               

Aucune description n'est disponible pour ce champ.

Nom (identifiant)
n_sq_vo
Type
int
Exemple
                       
OBJECTID
               

Aucune description n'est disponible pour ce champ.

Nom (identifiant)
objectid
Type
int
Exemple
                       

Schéma JSON

L'objet JSON ci dessous est une description standardisée du modèle de votre jeu de données. Pour en savoir plus sur JSON schema.

{
  • "title":"adresse_paris",
  • "type":"object",
  • "oneOf":
    [
    • {
      • "$ref":"#/definitions/adresse_paris"
      }
    ]
    ,
  • "definitions":
    {
    • "adresse_paris":
      {
      • "properties":
        {
        • "records":
          {
          • "type":"array",
          • "items":
            {
            • "$ref":"#/definitions/adresse_paris_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"
            }
          }
        }
        ,
      • "adresse_paris_records":
        {
        • "properties":
          {
          • "fields":
            {
            • "type":"object",
            • "properties":
              {
              • "geom_x_y":
                {
                • "type":"array",
                • "minItems":2,
                • "maxItems":2,
                • "items":
                  {
                  • "type":"number"
                  }
                  ,
                • "title":"Geometry X Y",
                • "description":""
                }
                ,
              • "geom":
                {
                • "type":"object",
                • "oneOf":
                  [
                  • {
                    • "$ref":"#/definitions/geometry"
                    }
                  ]
                  ,
                • "title":"Geometry",
                • "description":""
                }
                ,
              • "n_sq_ad":
                {
                • "type":"integer",
                • "title":"N_SQ_AD",
                • "description":""
                }
                ,
              • "n_voie":
                {
                • "type":"integer",
                • "title":"N_VOIE",
                • "description":""
                }
                ,
              • "c_suf1":
                {
                • "type":"string",
                • "title":"C_SUF1",
                • "description":""
                }
                ,
              • "c_suf2":
                {
                • "type":"string",
                • "title":"C_SUF2",
                • "description":""
                }
                ,
              • "c_suf3":
                {
                • "type":"string",
                • "title":"C_SUF3",
                • "description":""
                }
                ,
              • "c_ar":
                {
                • "type":"integer",
                • "title":"C_AR",
                • "description":""
                }
                ,
              • "a_nvoie":
                {
                • "type":"number",
                • "title":"A_NVOIE",
                • "description":""
                }
                ,
              • "b_angle":
                {
                • "type":"string",
                • "title":"B_ANGLE",
                • "description":""
                }
                ,
              • "b_offstdf":
                {
                • "type":"string",
                • "title":"B_OFFSTDF",
                • "description":""
                }
                ,
              • "b_affstdf":
                {
                • "type":"string",
                • "title":"B_AFFSTDF",
                • "description":""
                }
                ,
              • "b_hors75":
                {
                • "type":"string",
                • "title":"B_HORS75",
                • "description":""
                }
                ,
              • "l_nvoie":
                {
                • "type":"string",
                • "title":"L_NVOIE",
                • "description":""
                }
                ,
              • "l_adr":
                {
                • "type":"string",
                • "title":"L_ADR",
                • "description":""
                }
                ,
              • "n_sq_ar":
                {
                • "type":"integer",
                • "title":"N_SQ_AR",
                • "description":""
                }
                ,
              • "n_sq_vo":
                {
                • "type":"integer",
                • "title":"N_SQ_VO",
                • "description":""
                }
                ,
              • "objectid":
                {
                • "type":"integer",
                • "title":"OBJECTID",
                • "description":""
                }
              }
            }
          }
        }
      }
    }

    Jeux de données similaires