Represents an in- and out-port-pair of a router device that is or was connected for a certain time range.
Properties
|
Property |
Possible Values |
Example |
Description |
|---|---|---|---|
|
id |
string |
VCR-4e |
External ID of the Routing. |
|
start |
string (DateTime using the universal sortable date/time pattern) |
2023-02-22T09:59:58.11673Z |
Start of this routing. |
|
end |
string (DateTime using the universal sortable date/time pattern) |
2023-02-22T09:02:58.033899Z |
End of this routing. null if the routing is still present. |
|
inPortId |
string |
VCR-ab |
ID of the In-Port. |
|
outPortId |
string |
VCR-gh |
ID of the Out-Port. |
Example JSON Snippet
JSON
{
"id": "VCR-zp",
"start": "2023-02-22T09:02:58.033899Z",
"end": null,
"inPortId": "VCR-ab",
"outPortId": "VCR-gh"
},