records
Lauréates et lauréats du prix PÉPITE-Tremplin pour l’Entrepreneuriat Étudiant
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-laureates-et-laureats-prix-pepite-tremplin-pour-lentrepreneuriat-etudiant",
- "type":"object",
- "oneOf":,[
- {
- "$ref":"#/definitions/fr-esr-laureates-et-laureats-prix-pepite-tremplin-pour-lentrepreneuriat-etudiant"
}
] - "definitions":{
- "fr-esr-laureates-et-laureats-prix-pepite-tremplin-pour-lentrepreneuriat-etudiant":,{
- "properties":{
- "records":{
- "type":"array",
- "items":{
- "$ref":"#/definitions/fr-esr-laureates-et-laureats-prix-pepite-tremplin-pour-lentrepreneuriat-etudiant_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-laureates-et-laureats-prix-pepite-tremplin-pour-lentrepreneuriat-etudiant_records":{
- "properties":{
- "fields":{
- "type":"object",
- "properties":{
- "edition_prix":,{
- "type":"string",
- "title":"Numéro de l'édition du prix",
- "description":""
} - "millesime_prix":,{
- "type":"string",
- "title":"Millésime du prix",
- "description":""
} - "prix":,{
- "type":"string",
- "title":"Prix spécial",
- "description":""
} - "pepite_id":,{
- "type":"string",
- "title":"Identifiant du PEPITE de rattachement",
- "description":""
} - "pepite_nom_long":,{
- "type":"string",
- "title":"PEPITE de rattachement",
- "description":""
} - "pepite_nom_court":,{
- "type":"string",
- "title":"PEPITE de rattachement (nom court)",
- "description":""
} - "laureat_genre":,{
- "type":"string",
- "title":"Genre",
- "description":""
} - "laureat_prenom":,{
- "type":"string",
- "title":"Prénom",
- "description":""
} - "laureat_nom":,{
- "type":"string",
- "title":"Nom",
- "description":""
} - "laureat_mail":,{
- "type":"string",
- "title":"Adresse email de contact",
- "description":""
} - "projet_acronyme":,{
- "type":"string",
- "title":"Acronyme du projet",
- "description":""
} - "projet_libelle":,{
- "type":"string",
- "title":"Nom du projet",
- "description":""
} - "projet_sous_titre":,{
- "type":"string",
- "title":"Sous-titre du projet",
- "description":""
} - "projet_resume":,{
- "type":"string",
- "title":"Résumé du projet",
- "description":""
} - "projet_technologique":,{
- "type":"string",
- "title":"Projet technologique",
- "description":""
} - "projet_web":,{
- "type":"string",
- "title":"Site internet",
- "description":""
} - "projet_twitter":,{
- "type":"string",
- "title":"Compte twitter",
- "description":""
} - "siren":,{
- "type":"string",
- "title":"SIREN",
- "description":""
} - "siret":,{
- "type":"string",
- "title":"SIRET",
- "description":""
} - "sirene_entreprise_nom":,{
- "type":"string",
- "title":"Base SIRENE : nom de l'entreprise",
- "description":""
} - "sirene_entreprise_sigle":,{
- "type":"string",
- "title":"Base SIRENE : sigle de l'entreprise",
- "description":""
} - "sirene_date_de_creation":,{
- "type":"string",
- "format":"date",
- "title":"Base SIRENE : date de création",
- "description":""
} - "sirene_ape_code":,{
- "type":"string",
- "title":"Base SIRENE : code APE (activité principale exercée)",
- "description":""
} - "sirene_ape":,{
- "type":"string",
- "title":"Base SIRENE : activité principale exercée",
- "description":""
} - "sirene_geolocalisation":,{
- "type":"array",
- "minItems":2,
- "maxItems":2,
- "items":,{
- "type":"number"
} - "title":"Base SIRENE : géolocalisation",
- "description":""
} - "sirene_com_code":,{
- "type":"string",
- "title":"Base SIRENE : code commune",
- "description":""
} - "sirene_com_nom":,{
- "type":"string",
- "title":"Base SIRENE : commune",
- "description":""
} - "sirene_uucr_id":,{
- "type":"string",
- "title":"Base SIRENE : code unité urbaine ou commune rurale",
- "description":""
} - "sirene_uucr_nom":,{
- "type":"string",
- "title":"Base SIRENE : unité urbaine ou commune rurale",
- "description":""
} - "sirene_dep_id":,{
- "type":"string",
- "title":"Base SIRENE : code département",
- "description":""
} - "sirene_dep_nom":,{
- "type":"string",
- "title":"Base SIRENE : département",
- "description":""
} - "sirene_aca_id":,{
- "type":"string",
- "title":"Base SIRENE : code académie",
- "description":""
} - "sirene_aca_nom":,{
- "type":"string",
- "title":"Base SIRENE : académie",
- "description":""
} - "sirene_reg_id":,{
- "type":"string",
- "title":"Base SIRENE : code région",
- "description":""
} - "sirene_reg_nom":,{
- "type":"string",
- "title":"Base SIRENE : région",
- "description":""
} - "pepite_academie_id":,{
- "type":"string",
- "title":"Code académie du PEPITE de rattachement",
- "description":""
} - "pepite_academie":,{
- "type":"string",
- "title":"Académie du PEPITE de rattachement",
- "description":""
} - "pepite_region_id":,{
- "type":"string",
- "title":"Code région du PEPITE de rattachement",
- "description":""
} - "pepite_region":{
- "type":"string",
- "title":"Région du PEPITE de rattachement",
- "description":""
}
} - "edition_prix":
}
} - "fields":
} - "properties":
} - "fr-esr-laureates-et-laureats-prix-pepite-tremplin-pour-lentrepreneuriat-etudiant":
}