enregistrement
Patrimoine des lycées publics de la Région Centre-Val de Loire en 2018
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":"patrimoine-des-lycees-rcvl",
- "type":"object",
- "oneOf":,[
- {
- "$ref":"#/definitions/patrimoine-des-lycees-rcvl"
}
] - "definitions":{
- "patrimoine-des-lycees-rcvl":,{
- "properties":{
- "records":{
- "type":"array",
- "items":{
- "$ref":"#/definitions/patrimoine-des-lycees-rcvl_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"
}
}
} - "patrimoine-des-lycees-rcvl_records":{
- "properties":{
- "fields":{
- "type":"object",
- "properties":{
- "code_rne":,{
- "type":"string",
- "title":"Code RNE",
- "description":"Code unique de l'établissement"
} - "code_site":,{
- "type":"integer",
- "title":"Code Site",
- "description":""
} - "type":,{
- "type":"string",
- "title":"TYPE",
- "description":"Education nationale, Agricole"
} - "categorie_etablissement":,{
- "type":"string",
- "title":"CATEGORIE ETABLISSEMENT",
- "description":"Catégorie d'établissement d'enseignement secondaire"
} - "nom_etablissement":,{
- "type":"string",
- "title":"NOM ETABLISSEMENT",
- "description":"Dénomination de l'établissement"
} - "adresse":,{
- "type":"string",
- "title":"ADRESSE",
- "description":"Adresse"
} - "ville":,{
- "type":"string",
- "title":"VILLE",
- "description":"Ville"
} - "cp":,{
- "type":"integer",
- "title":"CP",
- "description":"Code Postal"
} - "code_commune":,{
- "type":"integer",
- "title":"code commune",
- "description":"Code INSEE"
} - "departement":,{
- "type":"integer",
- "title":"Département",
- "description":"Code département"
} - "internat_oui_non":,{
- "type":"string",
- "title":"INTERNAT (OUI/NON)",
- "description":"Présence d'un internat oui/non"
} - "capacite_internat_nb_lit":,{
- "type":"integer",
- "title":"CAPACITE INTERNAT (nb lit)",
- "description":"Capacité théorique de l'internat en nombre de lits"
} - "surface_parcellaire_totale_m2":,{
- "type":"integer",
- "title":"SURFACE PARCELLAIRE TOTALE (m2)",
- "description":"en m²",
- "unit":"m2"
} - "surface_utile_total_des_locaux_m2":,{
- "type":"integer",
- "title":"SURFACE UTILE TOTAL DES LOCAUX (m2)",
- "description":"en m² ",
- "unit":"m2"
} - "surface_utile_locaux_administration_vie_scolaire_m2":,{
- "type":"integer",
- "title":"SURFACE UTILE LOCAUX ADMINISTRATION VIE SCOLAIRE (m2)",
- "description":"en m²",
- "unit":"m2"
} - "surface_utile_locaux_enseignement_technologique_m2":,{
- "type":"integer",
- "title":"SURFACE UTILE LOCAUX ENSEIGNEMENT TECHNOLOGIQUE (m²)",
- "description":"en m²",
- "unit":"m2"
} - "surface_utile_locaux_d_externat_m2":,{
- "type":"integer",
- "title":"SURFACE UTILE LOCAUX D'EXTERNAT (m²)",
- "description":"en m²",
- "unit":"m2"
} - "surface_utile_locaux_de_gymnase_m2":,{
- "type":"integer",
- "title":"SURFACE UTILE LOCAUX DE GYMNASE (m²)",
- "description":"en m²",
- "unit":"m2"
} - "surface_utile_locaux_d_internat_m2":,{
- "type":"integer",
- "title":"SURFACE UTILE LOCAUX D'INTERNAT (m²)",
- "description":"en m²",
- "unit":"m2"
} - "surface_utile_locaux_de_logement_de_fonctions_m2":,{
- "type":"integer",
- "title":"SURFACE UTILE LOCAUX DE LOGEMENT DE FONCTIONS (m²)",
- "description":"en m²",
- "unit":"m2"
} - "surface_utile_locaux_de_restauration_m2":,{
- "type":"integer",
- "title":"SURFACE UTILE LOCAUX DE RESTAURATION (m2)",
- "description":"en m²",
- "unit":"m2"
} - "surface_utile_locaux_de_services_m2":,{
- "type":"integer",
- "title":"SURFACE UTILE LOCAUX de SERVICES (m²)",
- "description":"en m²",
- "unit":"m2"
} - "surface_utile_locaux_de_regie_region_m2":,{
- "type":"integer",
- "title":"SURFACE UTILE LOCAUX DE REGIE REGION (m²)",
- "description":"en m²",
- "unit":"m2"
} - "surface_utile_de_locaux_de_batiments_demontables_m2":,{
- "type":"integer",
- "title":"SURFACE UTILE DE LOCAUX DE BATIMENTS DEMONTABLES (m²)",
- "description":"en m²",
- "unit":"m2"
} - "point_x_wgs84":,{
- "type":"number",
- "title":"POINT_X_WGS84",
- "description":""
} - "point_y_wgs84":,{
- "type":"number",
- "title":"POINT_Y_WGS84",
- "description":""
} - "observations":,{
- "type":"string",
- "title":"OBSERVATIONS",
- "description":"regroupement de plusieurs sites sur un même parcellaire"
} - "position_geographique":,{
- "type":"array",
- "minItems":2,
- "maxItems":2,
- "items":,{
- "type":"number"
} - "title":"Position géographique",
- "description":"Coordonnées géographiques"
} - "libelle_de_l_epci_metropole":{
- "type":"string",
- "title":"Libellé de l'EPCI / Métropole",
- "description":""
}
} - "code_rne":
}
} - "fields":
} - "properties":
} - "patrimoine-des-lycees-rcvl":
}