enregistrement
Services de documentation et sièges des 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-services-communs-de-documentation-et-bibliotheques-de-l-ens-superieur",
- "type":"object",
- "oneOf":,[
- {
- "$ref":"#/definitions/fr-esr-services-communs-de-documentation-et-bibliotheques-de-l-ens-superieur"
}
] - "definitions":{
- "fr-esr-services-communs-de-documentation-et-bibliotheques-de-l-ens-superieur":,{
- "properties":{
- "records":{
- "type":"array",
- "items":{
- "$ref":"#/definitions/fr-esr-services-communs-de-documentation-et-bibliotheques-de-l-ens-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-services-communs-de-documentation-et-bibliotheques-de-l-ens-superieur_records":{
- "properties":{
- "fields":{
- "type":"object",
- "properties":{
- "uaientite":,{
- "type":"string",
- "title":"Identifiant du siège",
- "description":""
} - "uaientitemere":,{
- "type":"string",
- "title":"Identifiant de l'établissement mère",
- "description":""
} - "uaientitemere_lib":,{
- "type":"string",
- "title":"Libellé de l'établissement mère",
- "description":""
} - "maj":,{
- "type":"string",
- "format":"date",
- "title":"Date de mise à jour",
- "description":""
} - "nomlong":,{
- "type":"string",
- "title":"Libellé du siège",
- "description":""
} - "nomcourt":,{
- "type":"string",
- "title":"Libellé court du siège",
- "description":""
} - "nom_encode":,{
- "type":"string",
- "title":"Libellé du siège (encodage)",
- "description":""
} - "rcr":,{
- "type":"integer",
- "title":"RCR",
- "description":""
} - "typesd":,{
- "type":"string",
- "title":"Type de siège",
- "description":""
} - "typesd_lib":,{
- "type":"string",
- "title":"Libellé du type de siège",
- "description":""
} - "description":,{
- "type":"string",
- "title":"Description",
- "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_bnum":,{
- "type":"string",
- "title":"Lien bibliothèque numérique",
- "description":""
} - "internet_rss":,{
- "type":"string",
- "title":"Flux RSS",
- "description":""
} - "internet_blog":,{
- "type":"string",
- "title":"Blog",
- "description":""
} - "internet_wikip":,{
- "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":""
} - "internet_slide":,{
- "type":"string",
- "title":"Slideshare",
- "description":""
} - "logo_scd":,{
- "type":"string",
- "title":"Logo",
- "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":""
} - "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":"number",
- "title":"id Google+",
- "description":""
} - "noctambuplus":{
- "type":"string",
- "title":"Label Noctambu+",
- "description":""
}
} - "uaientite":
}
} - "fields":
} - "properties":
} - "fr-esr-services-communs-de-documentation-et-bibliotheques-de-l-ens-superieur":
}