Routing [VCon IG]
.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 | 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 | 2 | ID of the In-Port. |
outPortId | string | 100 | ID of the Out-Port. |
Example JSON Snippet
{
"id": "zp",
"start": "2023-02-22T09:02:58.033899Z",
"end": null,
"inPortId": 2,
"outPortId": 100
},