805
enregistrements
Halte: mobilité
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":"mobilitat",
- "type":"object",
- "oneOf":,[
- {
- "$ref":"#/definitions/mobilitat"
}
] - "definitions":{
- "mobilitat":,{
- "properties":{
- "records":{
- "type":"array",
- "items":{
- "$ref":"#/definitions/mobilitat_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"
}
}
} - "mobilitat_records":{
- "properties":{
- "fields":{
- "type":"object",
- "properties":{
- "didok":,{
- "type":"integer",
- "title":"Numéro DiDok",
- "description":"Code de la halte selon la liste DiDok (documentation des services). Code de la halte selon la liste DiDok (documentation des services)."
} - "parkrail_anzahl":,{
- "type":"number",
- "title":"nombre_de_P+Rail",
- "description":"Nombre de places de stationnement P+Rail"
} - "parkrail_preis_tag":,{
- "type":"number",
- "title":"P+Rail_prix_jour",
- "description":"Prix de la place de stationnement par jour"
} - "parkrail_preis_monat":,{
- "type":"number",
- "title":"P+Rail_prix_mois",
- "description":"Prix de la place de stationnement par mois"
} - "parkrail_preis_jahr":,{
- "type":"number",
- "title":"P+Rail_prix_année",
- "description":"Prix de la place de stationnement par an"
} - "parkrail_pflichtig_zeit1":,{
- "type":"string",
- "title":"P+Rail_obligatoire_durée1",
- "description":"Horaire d’ouverture lu-ve"
} - "parkrail_pflichtig_zeit2":,{
- "type":"string",
- "title":"P+Rail_obligatoire_durée2",
- "description":"Horaire d’ouverture sa"
} - "parkrail_pflichtig_zeit3":,{
- "type":"string",
- "title":"P+Rail_obligatoire_durée3",
- "description":"Horaire d’ouverture di"
} - "parkrail_bemerkung":,{
- "type":"string",
- "title":"remarque_P+Rail",
- "description":"Remarques sur P+Rail"
} - "railtaxitext":,{
- "type":"string",
- "title":"texte RailTaxi",
- "description":"Numéro de téléphone RailTaxi"
} - "railtaxiinfo":,{
- "type":"string",
- "title":"Info RailTaxi",
- "description":"Commentaires sur RailTaxi"
} - "mietvelo_bezeichnung":,{
- "type":"string",
- "title":"désignation_vélos_de_location",
- "description":"Désignation du service de vélos de location"
} - "mietvelo_anzahl":,{
- "type":"number",
- "title":"nombre_de_vélos_de_location",
- "description":"Nombre de vélos de location"
} - "mietvelo_bemerkung":,{
- "type":"string",
- "title":"commentaire_vélos_de_location",
- "description":"Commentaires"
} - "veloparking_status_d":,{
- "type":"string",
- "title":"statut_parking_à_vélos_d",
- "description":"Taux d’occupation du parking à vélos"
} - "veloparking_bemerkung_d":,{
- "type":"string",
- "title":"commentaire_parking_à_vélos_d",
- "description":"Commentaire sur le parking à vélos"
} - "veloparking_abschliessbar":,{
- "type":"integer",
- "title":"Parking_à_vélos_verrouillable",
- "description":"Le parking à vélos est-il verrouillable"
} - "veloparking_abschliessbar_text":,{
- "type":"string",
- "title":"texte_parking_à_vélos_verrouillable",
- "description":"Commentaires sur le parking à vélos/commentaires sur la possibilité de verrouiller le parking?"
} - "carsharing_standort_bezeichnung":,{
- "type":"string",
- "title":"désignation_site Carsharing",
- "description":"Désignation du site Mobility"
} - "parkrail_app":,{
- "type":"integer",
- "title":"Appli_P+Rail",
- "description":"Canal de vente appli"
} - "parkrail_webshop":,{
- "type":"integer",
- "title":"P+Rail_webshop",
- "description":"Canal de vente webshop"
} - "parkrail_lokal":,{
- "type":"integer",
- "title":"P+Rail_local",
- "description":"Canal de vente caisse sur place"
} - "parkrail_automat":,{
- "type":"integer",
- "title":"parkrail_Automat",
- "description":""
} - "bpuic":,{
- "type":"integer",
- "title":"PEUIC",
- "description":"Identification de la halte selon la spécification de l’UIC"
} - "bezeichnung_offiziell":,{
- "type":"string",
- "title":"Nom de la halte",
- "description":"nom officiel de la halte"
} - "abkuerzung":,{
- "type":"string",
- "title":"Abréviation gare",
- "description":"Code abréviation de la gare/du point d’exploitation"
} - "lod":,{
- "type":"string",
- "title":"LOD",
- "description":"Données ouvertes liées Représentation de la halte"
} - "geopos":,{
- "type":"array",
- "minItems":2,
- "maxItems":2,
- "items":,{
- "type":"number"
} - "title":"geopos",
- "description":"Géopositionnement du jeu de données"
} - "tu_nummer":,{
- "type":"integer",
- "title":"entreprise de transport",
- "description":"Content-Type: text/plain; charset=utf-8 "
} - "meteo":,{
- "type":"string",
- "title":"météo",
- "description":"Link zur Wetterprognose"
} - "plz":{
- "type":"string",
- "title":"NPA",
- "description":"Numéro postal d’acheminement de la halte"
}
} - "didok":
}
} - "fields":
} - "properties":
} - "mobilitat":
}
Soumettre une réutilisation
Cliquez pour déplier Cliquez pour replier
Connectez-vous pour proposer une réutilisation.
Jeux de données similaires
- Information regarding park&rail, bikeparking, railtaxi, rentalbike, carsharing.
- Quels sont les commerces disponibles aux différentes haltes et quels sont leurs horaires d’ouverture.
- Horaire d’ouverture des services en gare.
- Les grandes gares vous proposent une large gamme de services CFF ainsi que des horaires d’ouverture attractifs: guichet, distributeurs de billets, guichets pour billets événementiels, change, transfert d’argent, expédition des bagages, Agence de voyages CFF.