Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
58 changes: 58 additions & 0 deletions openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -381,6 +381,62 @@ components:
type: string
format: byte

Impact:
type: object
example: {
"lower": "AS Cloppenburg (63)",
"upper": "Cappeln Hagelage-West",
"symbols": [
"BREAKDOWN_LANE",
"BORDER_LEFT",
"CLOSED",
"ARROW_DOWN",
"ARROW_DOWN",
"SEPARATE",
"ARROW_UP",
"ARROW_UP",
"ARROW_UP",
"BORDER_RIGHT",
"BREAKDOWN_LANE"
]
}
properties:
lower:
type: string
description: Erster Knotenpunkt nach dem betroffenen Abschnitt (beispielsweise Anschlussstelle oder Rastplatz).
upper:
type: string
description: Letzter Knotenpunkt vor dem betroffenen Abschnitt (beispielsweise Anschlussstelle oder Rastplatz).
symbols:
type: array
description: |
Verkehrsführung im betroffenen Abschnitt:
<ul>
<li>ARROW_DOWN: Spur in Gegenrichtung</li>
<li>ARROW_DOWN_BLUE: Spur in Gegenrichtung</li>
<li>ARROW_UP: Spur in Fahrtrichtung</li>
<li>ARROW_UP_BLUE: Spur in Fahrtrichtung</li>
<li>BORDER_LEFT: Linke Fahrbahnbegrenzung</li>
<li>BORDER_RIGHT: Rechte Fahrbahnbegrenzung</li>
<li>BREAKDOWN_LANE: Pannenstreifen</li>
<li>CLOSED: Spur gesperrt</li>
<li>SEPARATE: Bauliche Trennung</li>
<li>SEPARATE_TMP: Provisorische bauliche Trennung</li>
</ul>
items:
type: string
enum:
- ARROW_DOWN
- ARROW_DOWN_BLUE
- ARROW_UP
- ARROW_UP_BLUE
- BORDER_LEFT
- BORDER_RIGHT
- BREAKDOWN_LANE
- CLOSED
- SEPARATE
- SEPARATE_TMP

MultilineText:
type: array
example: [
Expand Down Expand Up @@ -472,6 +528,8 @@ components:
startTimestamp:
type: string
format: date-time
impact:
$ref: '#/components/schemas/Impact'

Roadworks:
type: object
Expand Down