records
Prix des carburants en France - Flux instantané - v2
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":"prix-des-carburants-en-france-flux-instantane-v2",
- "type":"object",
- "oneOf":,[
- {
- "$ref":"#/definitions/prix-des-carburants-en-france-flux-instantane-v2"
}
] - "definitions":{
- "prix-des-carburants-en-france-flux-instantane-v2":,{
- "properties":{
- "records":{
- "type":"array",
- "items":{
- "$ref":"#/definitions/prix-des-carburants-en-france-flux-instantane-v2_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"
}
}
} - "prix-des-carburants-en-france-flux-instantane-v2_records":{
- "properties":{
- "fields":{
- "type":"object",
- "properties":{
- "id":,{
- "type":"integer",
- "title":"id",
- "description":""
} - "latitude":,{
- "type":"string",
- "title":"latitude",
- "description":""
} - "longitude":,{
- "type":"string",
- "title":"longitude",
- "description":""
} - "cp":,{
- "type":"string",
- "title":"Code postal",
- "description":""
} - "pop":,{
- "type":"string",
- "title":"pop",
- "description":""
} - "adresse":,{
- "type":"string",
- "title":"Adresse",
- "description":""
} - "ville":,{
- "type":"string",
- "title":"Ville",
- "description":""
} - "services":,{
- "type":"string",
- "title":"services",
- "description":""
} - "prix":,{
- "type":"string",
- "title":"prix",
- "description":""
} - "rupture":,{
- "type":"string",
- "title":"rupture",
- "description":""
} - "horaires":,{
- "type":"string",
- "title":"horaires",
- "description":""
} - "geom":,{
- "type":"array",
- "minItems":2,
- "maxItems":2,
- "items":,{
- "type":"number"
} - "title":"geom",
- "description":""
} - "gazole_maj":,{
- "type":"string",
- "format":"date-time",
- "title":"Prix Gazole mis à jour le",
- "description":""
} - "gazole_prix":,{
- "type":"number",
- "title":"Prix Gazole",
- "description":""
} - "sp95_maj":,{
- "type":"string",
- "format":"date-time",
- "title":"Prix SP95 mis à jour le",
- "description":""
} - "sp95_prix":,{
- "type":"number",
- "title":"Prix SP95",
- "description":""
} - "e85_maj":,{
- "type":"string",
- "format":"date-time",
- "title":"Prix E85 mis à jour le",
- "description":""
} - "e85_prix":,{
- "type":"number",
- "title":"Prix E85",
- "description":""
} - "gplc_maj":,{
- "type":"string",
- "format":"date-time",
- "title":"Prix GPLc mis à jour le",
- "description":""
} - "gplc_prix":,{
- "type":"number",
- "title":"Prix GPLc",
- "description":""
} - "e10_maj":,{
- "type":"string",
- "format":"date-time",
- "title":"Prix E10 mis à jour le",
- "description":""
} - "e10_prix":,{
- "type":"number",
- "title":"Prix E10",
- "description":""
} - "sp98_maj":,{
- "type":"string",
- "format":"date-time",
- "title":"Prix SP98 mis à jour le",
- "description":""
} - "sp98_prix":,{
- "type":"number",
- "title":"Prix SP98",
- "description":""
} - "e10_rupture_debut":,{
- "type":"string",
- "format":"date-time",
- "title":"Début rupture e10 (si temporaire)",
- "description":""
} - "e10_rupture_type":,{
- "type":"string",
- "title":"Type rupture e10",
- "description":""
} - "sp98_rupture_debut":,{
- "type":"string",
- "format":"date-time",
- "title":"Début rupture sp98 (si temporaire)",
- "description":""
} - "sp98_rupture_type":,{
- "type":"string",
- "title":"Type rupture sp98",
- "description":""
} - "sp95_rupture_debut":,{
- "type":"string",
- "format":"date-time",
- "title":"Début rupture sp95 (si temporaire)",
- "description":""
} - "sp95_rupture_type":,{
- "type":"string",
- "title":"Type rupture sp95",
- "description":""
} - "e85_rupture_debut":,{
- "type":"string",
- "format":"date-time",
- "title":"Début rupture e85 (si temporaire)",
- "description":""
} - "e85_rupture_type":,{
- "type":"string",
- "title":"Type rupture e85",
- "description":""
} - "gplc_rupture_debut":,{
- "type":"string",
- "format":"date-time",
- "title":"Début rupture GPLc (si temporaire)",
- "description":""
} - "gplc_rupture_type":,{
- "type":"string",
- "title":"Type rupture GPLc",
- "description":""
} - "gazole_rupture_debut":,{
- "type":"string",
- "format":"date-time",
- "title":"Début rupture gazole (si temporaire)",
- "description":""
} - "gazole_rupture_type":,{
- "type":"string",
- "title":"Type rupture gazole",
- "description":""
} - "carburants_disponibles":,{
- "type":"string",
- "title":"Carburants disponibles",
- "description":""
} - "carburants_indisponibles":,{
- "type":"string",
- "title":"Carburants indisponibles",
- "description":""
} - "carburants_rupture_temporaire":,{
- "type":"string",
- "title":"Carburants en rupture temporaire",
- "description":""
} - "carburants_rupture_definitive":,{
- "type":"string",
- "title":"Carburants en rupture definitive",
- "description":""
} - "horaires_automate_24_24":,{
- "type":"string",
- "title":"Automate 24-24 (oui/non)",
- "description":""
} - "services_service":,{
- "type":"string",
- "title":"Services proposés",
- "description":""
} - "departement":,{
- "type":"string",
- "title":"Département",
- "description":""
} - "code_departement":,{
- "type":"string",
- "title":"code_departement",
- "description":""
} - "region":,{
- "type":"string",
- "title":"Région",
- "description":""
} - "code_region":,{
- "type":"string",
- "title":"code_region",
- "description":""
} - "horaires_jour":{
- "type":"string",
- "title":"horaires détaillés",
- "description":""
}
} - "id":
}
} - "fields":
} - "properties":
} - "prix-des-carburants-en-france-flux-instantane-v2":
}