enregistrement
Lieux et équipements culturels
Modèle de données
Cliquez pour déplier Cliquez pour replier
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":"lieux-et-equipements-culturels",
- "type":"object",
- "oneOf":,[
- {
- "$ref":"#/definitions/lieux-et-equipements-culturels"
}
] - "definitions":{
- "lieux-et-equipements-culturels":,{
- "properties":{
- "records":{
- "type":"array",
- "items":{
- "$ref":"#/definitions/lieux-et-equipements-culturels_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"
}
}
} - "lieux-et-equipements-culturels_records":{
- "properties":{
- "fields":{
- "type":"object",
- "properties":{
- "source":,{
- "type":"string",
- "title":"source",
- "description":""
} - "nom":,{
- "type":"string",
- "title":"nom",
- "description":""
} - "adresse":,{
- "type":"string",
- "title":"adresse",
- "description":""
} - "complement_adresse":,{
- "type":"string",
- "title":"complement_adresse",
- "description":""
} - "code_postal":,{
- "type":"integer",
- "title":"code_postal",
- "description":""
} - "libelle_geographique":,{
- "type":"string",
- "title":"libelle_geographique",
- "description":""
} - "code_insee":,{
- "type":"integer",
- "title":"code_insee",
- "description":""
} - "code_insee_arrondt":,{
- "type":"integer",
- "title":"code_insee_arrondt",
- "description":""
} - "identifiant_origine":,{
- "type":"string",
- "title":"identifiant_origine",
- "description":""
} - "type_equipement_ou_lieu":,{
- "type":"string",
- "title":"type_equipement_ou_lieu",
- "description":""
} - "label_et_appellation":,{
- "type":"string",
- "title":"label_et_appellation",
- "description":""
} - "region":,{
- "type":"string",
- "title":"region",
- "description":""
} - "domaine":,{
- "type":"string",
- "title":"domaine",
- "description":""
} - "sous_domaines":,{
- "type":"string",
- "title":"sous_domaines",
- "description":""
} - "archeologie_detail":,{
- "type":"string",
- "title":"archeologie_detail",
- "description":""
} - "adresse_postale":,{
- "type":"string",
- "title":"adresse_postale",
- "description":""
} - "departement":,{
- "type":"string",
- "title":"departement",
- "description":""
} - "precision_equipement":,{
- "type":"string",
- "title":"precision_equipement",
- "description":""
} - "n_departement":,{
- "type":"integer",
- "title":"n_departement",
- "description":""
} - "fonction_1":,{
- "type":"string",
- "title":"fonction_1",
- "description":""
} - "fonction_2":,{
- "type":"string",
- "title":"fonction_2",
- "description":""
} - "fonction_3":,{
- "type":"string",
- "title":"fonction_3",
- "description":""
} - "fonction_4":,{
- "type":"string",
- "title":"fonction_4",
- "description":""
} - "multiplexe":,{
- "type":"string",
- "title":"multiplexe",
- "description":""
} - "type_de_cinema":,{
- "type":"string",
- "title":"type_de_cinema",
- "description":""
} - "nombre_fauteuils_de_cinema":,{
- "type":"string",
- "title":"nombre_fauteuils_de_cinema",
- "description":""
} - "nombre_ecrans":,{
- "type":"string",
- "title":"nombre_ecrans",
- "description":""
} - "nombre_de_salles_de_theatre":,{
- "type":"string",
- "title":"nombre_de_salles_de_theatre",
- "description":""
} - "organisme_siege_du_theatre":,{
- "type":"string",
- "title":"organisme_siege_du_theatre",
- "description":""
} - "jauge_du_theatre":,{
- "type":"string",
- "title":"jauge_du_theatre",
- "description":""
} - "code_du_reseau_de_bibliotheques":,{
- "type":"string",
- "title":"code_du_reseau_de_bibliotheques",
- "description":""
} - "nom_du_reseau_de_bibliotheques":,{
- "type":"string",
- "title":"nom_du_reseau_de_bibliotheques",
- "description":""
} - "nom_de_l_illustre":,{
- "type":"string",
- "title":"nom_de_l_illustre",
- "description":""
} - "surface_bibliotheque":,{
- "type":"string",
- "title":"surface_bibliotheque",
- "description":""
} - "rang":,{
- "type":"integer",
- "title":"rang",
- "description":""
} - "ident":,{
- "type":"string",
- "title":"ident",
- "description":""
} - "identifiant_deps_a_partir_de_2022":,{
- "type":"string",
- "title":"identifiant_deps_a_partir_de_2022",
- "description":""
} - "libelle_epci":,{
- "type":"string",
- "title":"libelle_epci",
- "description":""
} - "code_insee_epci":,{
- "type":"integer",
- "title":"code_insee_epci",
- "description":""
} - "demographie_sortie":,{
- "type":"string",
- "title":"demographie_sortie",
- "description":""
} - "demographie_detail":,{
- "type":"string",
- "title":"demographie_detail",
- "description":""
} - "rang_fev24":,{
- "type":"integer",
- "title":"rang_fev24",
- "description":""
} - "identifiant_deps_old":,{
- "type":"string",
- "title":"identifiant_deps_old",
- "description":""
} - "precision_protection_sites_et_monuments":,{
- "type":"string",
- "title":"precision_protection_sites_et_monuments",
- "description":""
} - "gcd":,{
- "type":"string",
- "title":"gcd",
- "description":""
} - "aav":,{
- "type":"string",
- "title":"aav",
- "description":""
} - "region0":,{
- "type":"integer",
- "title":"region0",
- "description":""
} - "annee_label_appellation":,{
- "type":"string",
- "title":"annee_label_appellation",
- "description":""
} - "latitude":,{
- "type":"number",
- "title":"latitude",
- "description":""
} - "longitude":,{
- "type":"number",
- "title":"longitude",
- "description":""
} - "demographie_entree_sortie":,{
- "type":"string",
- "title":"demographie_entree_sortie",
- "description":""
} - "multi_equipements":,{
- "type":"string",
- "title":"multi_equipements",
- "description":""
} - "identifi_qpv":,{
- "type":"string",
- "title":"identifi_qpv",
- "description":""
} - "coordonnees_geo":{
- "type":"array",
- "minItems":2,
- "maxItems":2,
- "items":,{
- "type":"number"
} - "title":"coordonnees_geo",
- "description":""
}
} - "source":
}
} - "fields":
} - "properties":
} - "lieux-et-equipements-culturels":
}