enregistrement
Bibliothèques de l'Enseignement supérieur
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":"fr-esr-bibliotheques-de-l-enseignement-superieur",
- "type":"object",
- "oneOf":,[
- {
- "$ref":"#/definitions/fr-esr-bibliotheques-de-l-enseignement-superieur"
}
] - "definitions":{
- "fr-esr-bibliotheques-de-l-enseignement-superieur":,{
- "properties":{
- "records":{
- "type":"array",
- "items":{
- "$ref":"#/definitions/fr-esr-bibliotheques-de-l-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-bibliotheques-de-l-enseignement-superieur_records":{
- "properties":{
- "fields":{
- "type":"object",
- "properties":{
- "id":,{
- "type":"string",
- "title":"Identifiant du siège",
- "description":""
} - "siege":,{
- "type":"string",
- "title":"Libellé du siège",
- "description":""
} - "siege_encode":,{
- "type":"string",
- "title":"Libellé du siège (encodage)",
- "description":""
} - "id1":,{
- "type":"string",
- "title":"Identifiant de la bibliothèque",
- "description":""
} - "impl":,{
- "type":"string",
- "title":"Identifiant de l'implantation",
- "description":""
} - "premier":,{
- "type":"string",
- "title":"Première implantation ?",
- "description":""
} - "compte":,{
- "type":"integer",
- "title":"Nombre d'implantations",
- "description":""
} - "uaientitemere":,{
- "type":"string",
- "title":"Identifiant de l'établissement",
- "description":""
} - "identifiantunite":,{
- "type":"string",
- "title":"IdentifiantUnite",
- "description":""
} - "nomlong":,{
- "type":"string",
- "title":"Libellé de la bibliothèque",
- "description":""
} - "nomcourt":,{
- "type":"string",
- "title":"Libellé de l'implantation",
- "description":""
} - "nom_encode":,{
- "type":"string",
- "title":"Libellé de la bibliothèque (encodage)",
- "description":""
} - "description":,{
- "type":"string",
- "title":"Description",
- "description":""
} - "rcr":,{
- "type":"string",
- "title":"RCR",
- "description":""
} - "typebibliotheque":,{
- "type":"string",
- "title":"Type de bibliotheque",
- "description":""
} - "adresse_adresse":,{
- "type":"string",
- "title":"Adresse",
- "description":""
} - "adresse_adressecompl":,{
- "type":"string",
- "title":"Adresse complémentaire",
- "description":""
} - "adresse_codepostal":,{
- "type":"string",
- "title":"Code postal",
- "description":""
} - "adresse_ville":,{
- "type":"string",
- "title":"Ville",
- "description":""
} - "adresse_pays":,{
- "type":"string",
- "title":"Pays",
- "description":""
} - "geo":,{
- "type":"array",
- "minItems":2,
- "maxItems":2,
- "items":,{
- "type":"number"
} - "title":"Géolocalisation",
- "description":""
} - "internet_web":,{
- "type":"string",
- "title":"Lien internet",
- "description":""
} - "internet_info":,{
- "type":"string",
- "title":"Lien internet (informations)",
- "description":""
} - "internet_conta":,{
- "type":"string",
- "title":"Adresse email",
- "description":""
} - "internet_formu":,{
- "type":"string",
- "title":"Formulaire de contact",
- "description":""
} - "internet_rss":,{
- "type":"string",
- "title":"Flux RSS",
- "description":""
} - "internet_blog":,{
- "type":"string",
- "title":"Blog",
- "description":""
} - "internet_wiki":,{
- "type":"string",
- "title":"Wikipédia",
- "description":""
} - "internet_masto":,{
- "type":"string",
- "title":"Mastodon",
- "description":""
} - "internet_faceb":,{
- "type":"string",
- "title":"Facebook",
- "description":""
} - "internet_twitt":,{
- "type":"string",
- "title":"Twitter",
- "description":""
} - "internet_youtu":,{
- "type":"string",
- "title":"Youtube",
- "description":""
} - "internet_daily":,{
- "type":"string",
- "title":"Dailymotion",
- "description":""
} - "internet_vimeo":,{
- "type":"string",
- "title":"Vimeo",
- "description":""
} - "internet_peris":,{
- "type":"string",
- "title":"Periscope",
- "description":""
} - "internet_insta":,{
- "type":"string",
- "title":"Instagram",
- "description":""
} - "internet_flick":,{
- "type":"string",
- "title":"Flickr",
- "description":""
} - "internet_pinte":,{
- "type":"string",
- "title":"Pinterest",
- "description":""
} - "internet_linke":,{
- "type":"string",
- "title":"LinkedIn",
- "description":""
} - "internet_googl":,{
- "type":"string",
- "title":"Google+",
- "description":""
} - "internet_viade":,{
- "type":"string",
- "title":"Viadeo",
- "description":""
} - "com_code":,{
- "type":"string",
- "title":"Code commune",
- "description":""
} - "com_nom":,{
- "type":"string",
- "title":"Commune",
- "description":""
} - "uucr_id":,{
- "type":"string",
- "title":"Code de l'unité urbaine",
- "description":""
} - "uucr_nom":,{
- "type":"string",
- "title":"Unité urbaine",
- "description":""
} - "dep_id":,{
- "type":"string",
- "title":"Code du département",
- "description":""
} - "dep_nom":,{
- "type":"string",
- "title":"Département",
- "description":""
} - "aca_id":,{
- "type":"string",
- "title":"Code de l'académie",
- "description":""
} - "aca_nom":,{
- "type":"string",
- "title":"Académie",
- "description":""
} - "reg_id":,{
- "type":"string",
- "title":"Code de la région",
- "description":""
} - "reg_nom":,{
- "type":"string",
- "title":"Région",
- "description":""
} - "regrgp_nom":,{
- "type":"string",
- "title":"Regroupement géographique",
- "description":""
} - "fd_id":,{
- "type":"string",
- "title":"France détaillée",
- "description":""
} - "logo_scd":,{
- "type":"string",
- "title":"Logo",
- "description":""
} - "wall_rss":,{
- "type":"string",
- "title":"id RSS",
- "description":""
} - "wall_faceb":,{
- "type":"string",
- "title":"id Facebook",
- "description":""
} - "wall_twitt":,{
- "type":"string",
- "title":"id Twitter",
- "description":""
} - "wall_youtu":,{
- "type":"string",
- "title":"id Youtube",
- "description":""
} - "wall_vimeo":,{
- "type":"string",
- "title":"id Vimeo",
- "description":""
} - "wall_flick":,{
- "type":"string",
- "title":"id Flickr",
- "description":""
} - "wall_pinte":,{
- "type":"string",
- "title":"id Pinterest",
- "description":""
} - "wall_googl":,{
- "type":"string",
- "title":"id Google+",
- "description":""
} - "noctambuplus":{
- "type":"string",
- "title":"Label Noctambu+",
- "description":""
}
} - "id":
}
} - "fields":
} - "properties":
} - "fr-esr-bibliotheques-de-l-enseignement-superieur":
}
Soumettre une réutilisation
Cliquez pour déplier Cliquez pour replier
Connectez-vous pour proposer une réutilisation.
Jeux de données similaires
- Ce jeu de données présentent les informations sur les services de documentation et autres sièges des bibliothèques de l'enseignement supérieur, les centres de formation aux carrières des bibliothèques (CRFCB) et les unités régionales de formation à l'information scientifique et technique (URFIST).
- Caractéristiques des principaux établissements d'enseignement supérieur. Situation à date.
-
- Ce jeu de données présente la localisation des implantations des établissements d'enseignement supérieur publics : universités, université de technologie, INP, grands établissements, écoles d'ingénieur.