record
Soll/Ist Vergleich Abfahrts-/Ankunftszeiten SBB (Vortag)
Schema dataset
Clicca per espandere Clicca per ridurre
Schema JSON
Il seguente oggetto JSON è una descrizione standardizzata dello schema del tuo dataset. Più informazioni sullo schema JSON.
{
- "title":"ist-daten-sbb",
- "type":"object",
- "oneOf":,[
- {
- "$ref":"#/definitions/ist-daten-sbb"
}
] - "definitions":{
- "ist-daten-sbb":,{
- "properties":{
- "records":{
- "type":"array",
- "items":{
- "$ref":"#/definitions/ist-daten-sbb_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"
}
}
} - "ist-daten-sbb_records":{
- "properties":{
- "fields":{
- "type":"object",
- "properties":{
- "betriebstag":,{
- "type":"string",
- "format":"date",
- "title":"Giorno d’esercizio",
- "description":"Data cui si riferiscono i valori"
} - "fahrt_bezeichner":,{
- "type":"string",
- "title":"Identificatore della corsa",
- "description":"technische Fahrtbezeichnung"
} - "betreiber_id":,{
- "type":"string",
- "title":"ID gestore",
- "description":"Identfikation der Eisenbahnverkehrsunternehmung welche die Fahrt durchführt"
} - "betreiber_abk":,{
- "type":"string",
- "title":"Abbreviazione gestore",
- "description":"Abbreviazione dell’organizzazione aziendale responsabile che esegue la corsa"
} - "betreiber_name":,{
- "type":"string",
- "title":"Nome gestore",
- "description":"Organizzazione aziendale responsabile che esegue la corsa"
} - "produkt_id":,{
- "type":"string",
- "title":"ID prodotto",
- "description":"Art des Verkehrsmittel"
} - "linien_id":,{
- "type":"integer",
- "title":"Linie",
- "description":"Bezeichnung der Linie"
} - "linien_text":,{
- "type":"string",
- "title":"Testo linea",
- "description":"Testo_linea è rilevante per il cliente e all’occorrenza viene visualizzato sui rispettivi display."
} - "umlauf_id":,{
- "type":"string",
- "title":"ID rotazione",
- "description":"Se l’impresa di trasporto trasmette rotazioni, l’ID rotazione è compilato."
} - "verkehrsmittel_text":,{
- "type":"string",
- "title":"ID mezzo di trasporto",
- "description":"Tipo di offerta AG = ATZ= treno auto EN = EuroNight EC = EuroCity IC = InterCity ICE = InterCityExpress ICN = InterCity ad assetto variabile IR = InterRegio RE = RegioExpress R = Regio S = S-Bahn TGV= Train à Grand Vitesse"
} - "zusatzfahrt_tf":,{
- "type":"string",
- "title":"Corsa supplementare orario giornaliero",
- "description":"Ist dieser Zug nicht im Sollfahrplan enthalten gewesen"
} - "faellt_aus_tf":,{
- "type":"string",
- "title":"Soppresso dall’orario giornaliero",
- "description":"Content-Type: text/plain; charset=utf-8 "
} - "bpuic":,{
- "type":"integer",
- "title":"BPUIC",
- "description":"Identificativo della fermata ai sensi della specifica UIC"
} - "haltestellen_name":,{
- "type":"string",
- "title":"Nome fermata",
- "description":"Nome ufficiale della fermata"
} - "ankunftszeit":,{
- "type":"string",
- "title":"Orario di arrivo",
- "description":"Fahrplanmässige Ankunftszeit"
} - "an_prognose":,{
- "type":"string",
- "title":"Previsione Ar",
- "description":"Zu dieser Zeit ist der Zug an der Haltestelle angekommen"
} - "an_prognose_status":,{
- "type":"string",
- "title":"Stato previsione Ar",
- "description":"Tipo di conferma dell’orario di arrivo effettivo Previsione: valore ricavato da stime; Stimato: valore precisato in base a feedback della tecnica di guida"
} - "abfahrtszeit":,{
- "type":"string",
- "title":"Orario di partenza",
- "description":"Orario di partenza previsto"
} - "ab_prognose":,{
- "type":"string",
- "title":"Previsione Pt",
- "description":"Previsione di partenza senza arrotondamento. NB: Se i secondi non sono disponibili è perché un’impresa di trasporto potrebbe aver già effettuato l’arrotondamento."
} - "ab_prognose_status":,{
- "type":"string",
- "title":"Stato previsione Pt",
- "description":"Tipo di conferma dell’ora di partenza effettiva Previsione: valore ricavato da stime; Stimato: valore precisato in base a feedback della tecnica di guida"
} - "durchfahrt_tf":,{
- "type":"string",
- "title":"Transito orario giornaliero",
- "description":"Content-Type: text/plain; charset=utf-8 "
} - "ankunftsverspatung":,{
- "type":"string",
- "title":"Ritardo di arrivo",
- "description":"Il treno è arrivato con più di 3 min. di ritardo?"
} - "abfahrtsverspatung":,{
- "type":"string",
- "title":"Ritardo di partenza",
- "description":"Il treno è partito con più di 3 min. di ritardo?"
} - "geopos":,{
- "type":"array",
- "minItems":2,
- "maxItems":2,
- "items":,{
- "type":"number"
} - "title":"Geopos.",
- "description":"Geoposizionamento del record"
} - "lod":{
- "type":"string",
- "title":"LOD",
- "description":"Rappresentazione Linked Open Data della fermata"
}
} - "betriebstag":
}
} - "fields":
} - "properties":
} - "ist-daten-sbb":
}
Invia un riutilizzo
Clicca per espandere Clicca per ridurre
Effettua il login per richiedere un nuovo riutilizzo.