46
enregistrements
Principales institutions exécutant ou finançant la recherche (hors établissements d'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":"principales-institutions-executant-ou-financant-la-recherche-hors-etablissements",
- "type":"object",
- "oneOf":,[
- {
- "$ref":"#/definitions/principales-institutions-executant-ou-financant-la-recherche-hors-etablissements"
}
] - "definitions":{
- "principales-institutions-executant-ou-financant-la-recherche-hors-etablissements":,{
- "properties":{
- "records":{
- "type":"array",
- "items":{
- "$ref":"#/definitions/principales-institutions-executant-ou-financant-la-recherche-hors-etablissements_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"
}
}
} - "principales-institutions-executant-ou-financant-la-recherche-hors-etablissements_records":{
- "properties":{
- "fields":{
- "type":"object",
- "properties":{
- "uai":,{
- "type":"string",
- "title":"uai",
- "description":""
} - "libelle_court":,{
- "type":"string",
- "title":"libelle_court",
- "description":""
} - "libelle_long":,{
- "type":"string",
- "title":"libelle_long",
- "description":""
} - "statut_juridique_court":,{
- "type":"string",
- "title":"statut_juridique_court",
- "description":""
} - "adresse":,{
- "type":"string",
- "title":"adresse",
- "description":""
} - "complement_adresse":,{
- "type":"string",
- "title":"complement_adresse",
- "description":""
} - "code_postal":,{
- "type":"string",
- "title":"code_postal",
- "description":""
} - "localite":,{
- "type":"string",
- "title":"localite",
- "description":""
} - "geolocalisation":,{
- "type":"array",
- "minItems":2,
- "maxItems":2,
- "items":,{
- "type":"number"
} - "title":"geolocalisation",
- "description":""
} - "site_internet":,{
- "type":"string",
- "title":"site_internet",
- "description":""
} - "compte_twitter":,{
- "type":"string",
- "title":"compte_twitter",
- "description":""
} - "compte_facebook":,{
- "type":"string",
- "title":"compte_facebook",
- "description":""
} - "compte_linkedin":,{
- "type":"string",
- "title":"compte_linkedin",
- "description":""
} - "compte_googleplus":,{
- "type":"string",
- "title":"compte_googleplus",
- "description":""
} - "compte_youtube":,{
- "type":"string",
- "title":"compte_youtube",
- "description":""
} - "compte_dailymotion":,{
- "type":"string",
- "title":"compte_dailymotion",
- "description":""
} - "identifiant_freebase":,{
- "type":"string",
- "title":"identifiant_freebase",
- "description":""
} - "identifiant_wikidata":,{
- "type":"string",
- "title":"identifiant_wikidata",
- "description":""
} - "statut_operateur_lolf":,{
- "type":"string",
- "title":"statut_operateur_lolf",
- "description":""
} - "libelle_mission_chef_de_file":,{
- "type":"string",
- "title":"libelle_mission_chef_de_file",
- "description":""
} - "identifiant_programme_lolf_chef_de_file":,{
- "type":"string",
- "title":"identifiant_programme_lolf_chef_de_file",
- "description":""
} - "libelle_programme_lolf_chef_de_file":,{
- "type":"string",
- "title":"libelle_programme_lolf_chef_de_file",
- "description":""
} - "identifiants_autres_programmes_lolf":,{
- "type":"string",
- "title":"identifiants_autres_programmes_lolf",
- "description":""
} - "libelles_autres_programmes_lolf":,{
- "type":"string",
- "title":"libelles_autres_programmes_lolf",
- "description":""
} - "com_code":,{
- "type":"string",
- "title":"com_code",
- "description":""
} - "com_nom":,{
- "type":"string",
- "title":"com_nom",
- "description":""
} - "uucr_id":,{
- "type":"string",
- "title":"uucr_id",
- "description":""
} - "uucr_nom":,{
- "type":"string",
- "title":"uucr_nom",
- "description":""
} - "dep_id":,{
- "type":"string",
- "title":"dep_id",
- "description":""
} - "dep_nom":,{
- "type":"string",
- "title":"dep_nom",
- "description":""
} - "aca_id":,{
- "type":"string",
- "title":"aca_id",
- "description":""
} - "aca_nom":,{
- "type":"string",
- "title":"aca_nom",
- "description":""
} - "reg_id":,{
- "type":"string",
- "title":"reg_id",
- "description":""
} - "reg_nom":,{
- "type":"string",
- "title":"reg_nom",
- "description":""
} - "numero_siren_siret_uai":{
- "type":"string",
- "title":"numero_siren_siret_uai",
- "description":""
}
} - "uai":
}
} - "fields":
} - "properties":
} - "principales-institutions-executant-ou-financant-la-recherche-hors-etablissements":
}
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ésente les établissements publics ou privés actifs impliqués dans la recherche et développement. Ils sont présents dans l'application scanR au travers notamment de leur participation à des programmes de recherche ou à leurs dépôts de brevets.
- Ce jeu de données présente les personnels des principaux organismes publics de recherche, par type de contrat et type d’emploi ; de 2014 à 2020.
- Ce jeu de données présente les moyens financiers et humains consacrés à la recherche et au développement des EPST et des EPIC par région, année, type d'organisme et type de personnel.
- /!\ Ce jeu de données n'est désormais plus actualisé. Retrouvez de nouveaux jeux sur ce domaine à cette adresse.