records
Principaux établissements d'enseignement supérieur
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":"fr-esr-principaux-etablissements-enseignement-superieur",
- "type":"object",
- "oneOf":,[
- {
- "$ref":"#/definitions/fr-esr-principaux-etablissements-enseignement-superieur"
}
] - "definitions":{
- "fr-esr-principaux-etablissements-enseignement-superieur":,{
- "properties":{
- "records":{
- "type":"array",
- "items":{
- "$ref":"#/definitions/fr-esr-principaux-etablissements-enseignement-superieur_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"
}
}
} - "fr-esr-principaux-etablissements-enseignement-superieur_records":{
- "properties":{
- "fields":{
- "type":"object",
- "properties":{
- "etablissement_id_paysage":,{
- "type":"string",
- "title":"identifiant interne",
- "description":""
} - "uo_lib":,{
- "type":"string",
- "title":"libellé",
- "description":""
} - "nom_court":,{
- "type":"string",
- "title":"nom court",
- "description":""
} - "sigle":,{
- "type":"string",
- "title":"sigle",
- "description":""
} - "type_d_etablissement":,{
- "type":"string",
- "title":"type d'établissement",
- "description":""
} - "typologie_d_universites_et_assimiles":,{
- "type":"string",
- "title":"typologie d'universités et assimilés",
- "description":""
} - "secteur_d_etablissement":,{
- "type":"string",
- "title":"secteur d'établissement",
- "description":""
} - "vague_contractuelle":,{
- "type":"string",
- "title":"vague contractuelle",
- "description":""
} - "localisation":,{
- "type":"string",
- "title":"localisation",
- "description":""
} - "url":,{
- "type":"string",
- "title":"site internet",
- "description":""
} - "coordonnees":,{
- "type":"array",
- "minItems":2,
- "maxItems":2,
- "items":,{
- "type":"number"
} - "title":"géolocalisation",
- "description":""
} - "uai":,{
- "type":"string",
- "title":"uai - identifiant",
- "description":""
} - "anciens_codes_uai":,{
- "type":"string",
- "title":"anciens codes uai",
- "description":"Codes uai des prédécesseurs"
} - "siret":,{
- "type":"string",
- "title":"siret",
- "description":""
} - "siren":,{
- "type":"string",
- "title":"siren",
- "description":""
} - "rna":,{
- "type":"string",
- "title":"rna",
- "description":""
} - "identifiant_wikidata":,{
- "type":"string",
- "title":"Identifiant wikidata",
- "description":""
} - "element_wikidata":,{
- "type":"string",
- "title":"Elément wikidata",
- "description":""
} - "identifiant_idref":,{
- "type":"string",
- "title":"identifiant_idref",
- "description":""
} - "identifiant_eter":,{
- "type":"string",
- "title":"Identifiant ETER",
- "description":""
} - "identifiant_ror":,{
- "type":"string",
- "title":"Identifiant ROR",
- "description":""
} - "element_ror":,{
- "type":"string",
- "title":"Elément ROR",
- "description":""
} - "identifiant_pic":,{
- "type":"string",
- "title":"Identifiant PIC",
- "description":"Participant Identification Code utilisé dans les appels à projet européens"
} - "identifiant_orgref":,{
- "type":"string",
- "title":"Identifiant OrgRef",
- "description":""
} - "identifiant_isni":,{
- "type":"string",
- "title":"Identifiant ISNI",
- "description":""
} - "element_isni":,{
- "type":"string",
- "title":"Elément ISNI",
- "description":""
} - "element_fundref":,{
- "type":"string",
- "title":"Elément Funding Data",
- "description":""
} - "date_creation":,{
- "type":"string",
- "title":"date_creation",
- "description":""
} - "texte_de_ref_creation_lib":,{
- "type":"string",
- "title":"texte_de_ref_creation_lib",
- "description":""
} - "texte_de_ref_creation":,{
- "type":"string",
- "title":"texte_de_ref_creation",
- "description":""
} - "com_code":,{
- "type":"string",
- "title":"Code commune",
- "description":""
} - "com_nom":,{
- "type":"string",
- "title":"Commune",
- "description":""
} - "uucr_id":,{
- "type":"string",
- "title":"Code unité urbaine",
- "description":""
} - "uucr_nom":,{
- "type":"string",
- "title":"Unité urbaine",
- "description":""
} - "dep_id":,{
- "type":"string",
- "title":"Code département",
- "description":""
} - "dep_nom":,{
- "type":"string",
- "title":"Département",
- "description":""
} - "aca_id":,{
- "type":"string",
- "title":"Code académie",
- "description":""
} - "aca_nom":,{
- "type":"string",
- "title":"Académie",
- "description":""
} - "reg_id":,{
- "type":"string",
- "title":"Code région",
- "description":""
} - "reg_nom":,{
- "type":"string",
- "title":"Région",
- "description":""
} - "reg_id_old":,{
- "type":"string",
- "title":"Ancien code région",
- "description":""
} - "reg_nom_old":,{
- "type":"string",
- "title":"Ancienne région",
- "description":""
} - "mention_distribution":,{
- "type":"string",
- "title":"Mention distribution",
- "description":""
} - "adresse_uai":,{
- "type":"string",
- "title":"Adresse",
- "description":""
} - "lieu_dit_uai":,{
- "type":"string",
- "title":"Lieu dit",
- "description":""
} - "boite_postale_uai":,{
- "type":"string",
- "title":"Boite postale",
- "description":""
} - "code_postal_uai":,{
- "type":"string",
- "title":"Code postal",
- "description":""
} - "localite_acheminement_uai":,{
- "type":"string",
- "title":"Localité",
- "description":""
} - "pays_etranger_acheminement":,{
- "type":"string",
- "title":"Pays",
- "description":""
} - "numero_telephone_uai":,{
- "type":"string",
- "title":"Numéro de téléphone",
- "description":""
} - "statut_juridique_court":,{
- "type":"string",
- "title":"statut_juridique_court",
- "description":""
} - "statut_juridique_long":,{
- "type":"string",
- "title":"Statut juridique",
- "description":""
} - "compte_facebook":,{
- "type":"string",
- "title":"compte_facebook",
- "description":""
} - "compte_twitter":,{
- "type":"string",
- "title":"compte_twitter",
- "description":""
} - "compte_instagram":,{
- "type":"string",
- "title":"compte_instagram",
- "description":""
} - "compte_flickr":,{
- "type":"string",
- "title":"compte_flickr",
- "description":""
} - "compte_pinterest":,{
- "type":"string",
- "title":"compte_pinterest",
- "description":""
} - "flux_rss":,{
- "type":"string",
- "title":"flux_rss",
- "description":""
} - "compte_linkedin":,{
- "type":"string",
- "title":"compte_linkedin",
- "description":""
} - "compte_france_culture":,{
- "type":"string",
- "title":"compte_france_culture",
- "description":""
} - "compte_scribd":,{
- "type":"string",
- "title":"compte_scribd",
- "description":""
} - "compte_scoopit":,{
- "type":"string",
- "title":"compte_scoopit",
- "description":""
} - "compte_tumblr":,{
- "type":"string",
- "title":"compte_tumblr",
- "description":""
} - "compte_youtube":,{
- "type":"string",
- "title":"compte_youtube",
- "description":""
} - "compte_vimeo":,{
- "type":"string",
- "title":"compte_vimeo",
- "description":""
} - "compte_dailymotion":,{
- "type":"string",
- "title":"compte_dailymotion",
- "description":""
} - "compte_github":,{
- "type":"string",
- "title":"compte_github",
- "description":""
} - "wikipedia":,{
- "type":"string",
- "title":"Page Wikipédia en français",
- "description":""
} - "wikipedia_en":,{
- "type":"string",
- "title":"Page Wikipédia en anglais",
- "description":""
} - "scanr":,{
- "type":"string",
- "title":"scanr",
- "description":""
} - "hal":,{
- "type":"string",
- "title":"hal",
- "description":""
} - "mooc":,{
- "type":"string",
- "title":"mooc",
- "description":""
} - "article":,{
- "type":"string",
- "title":"article",
- "description":""
} - "uo_lib_officiel":,{
- "type":"string",
- "title":"uo_lib_officiel",
- "description":""
} - "uo_lib_en":,{
- "type":"string",
- "title":"English name",
- "description":""
} - "url_en":,{
- "type":"string",
- "title":"Site internet en anglais",
- "description":""
} - "url_cn":,{
- "type":"string",
- "title":"Site internet en chinois",
- "description":""
} - "url_es":,{
- "type":"string",
- "title":"Site internet en espagnol",
- "description":""
} - "url_de":,{
- "type":"string",
- "title":"Site internet en allemand",
- "description":""
} - "url_it":,{
- "type":"string",
- "title":"Site internet en italien",
- "description":""
} - "universites_fusionnees":,{
- "type":"string",
- "title":"universites_fusionnees",
- "description":""
} - "etablissement_experimental":,{
- "type":"string",
- "title":"etablissement_experimental",
- "description":""
} - "champ_recherche":,{
- "type":"string",
- "title":"champ_recherche",
- "description":""
} - "inscrits":,{
- "type":"string",
- "title":"inscrits",
- "description":""
} - "inscrits_2010":,{
- "type":"string",
- "title":"Effectifs d'étudiants inscrits 2010-11",
- "description":""
} - "inscrits_2011":,{
- "type":"string",
- "title":"Effectifs d'étudiants inscrits 2011-12",
- "description":""
} - "inscrits_2012":,{
- "type":"string",
- "title":"Effectifs d'étudiants inscrits 2012-13",
- "description":""
} - "inscrits_2013":,{
- "type":"string",
- "title":"Effectifs d'étudiants inscrits 2013-14",
- "description":""
} - "inscrits_2014":,{
- "type":"string",
- "title":"Effectifs d'étudiants inscrits 2014-15",
- "description":""
} - "inscrits_2015":,{
- "type":"string",
- "title":"Effectifs d'étudiants inscrits 2015-16",
- "description":""
} - "inscrits_2016":,{
- "type":"string",
- "title":"Effectifs d'étudiants inscrits 2016-17",
- "description":""
} - "inscrits_2017":,{
- "type":"string",
- "title":"Effectifs d'étudiants inscrits 2017-18",
- "description":""
} - "inscrits_2018":,{
- "type":"number",
- "title":"Effectifs d'étudiants inscrits 2018-19",
- "description":""
} - "inscrits_2019":,{
- "type":"number",
- "title":"Effectifs d'étudiants inscrits 2019-20",
- "description":""
} - "inscrits_2020":,{
- "type":"number",
- "title":"Effectifs d'étudiants inscrits 2020-21",
- "description":""
} - "inscrits_2021":,{
- "type":"number",
- "title":"Effectifs d'étudiants inscrits 2021-22",
- "description":""
} - "inscrits_2022":{
- "type":"number",
- "title":"Effectifs d'étudiants inscrits 2022-23",
- "description":""
}
} - "etablissement_id_paysage":
}
} - "fields":
} - "properties":
} - "fr-esr-principaux-etablissements-enseignement-superieur":
}
Submit a reuse
Click to expand Click to collapse
Please login to submit a new reuse.