Amazon Panorama · Schema
NetworkStatus
The network status of a device.
CamerasComputer VisionEdge MLIndustrial IoT
Properties
| Name | Type | Description |
|---|---|---|
| Ethernet0Status | object | |
| Ethernet1Status | object | |
| LastUpdatedTime | object | |
| NtpStatus | object |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/amazon-panorama/refs/heads/main/json-schema/openapi-network-status-schema.json",
"title": "NetworkStatus",
"description": "The network status of a device.",
"type": "object",
"properties": {
"Ethernet0Status": {
"allOf": [
{
"$ref": "#/components/schemas/EthernetStatus"
},
{
"description": "The status of Ethernet port 0."
}
]
},
"Ethernet1Status": {
"allOf": [
{
"$ref": "#/components/schemas/EthernetStatus"
},
{
"description": "The status of Ethernet port 1."
}
]
},
"LastUpdatedTime": {
"allOf": [
{
"$ref": "#/components/schemas/LastUpdatedTime"
},
{
"description": "When the network status changed."
}
]
},
"NtpStatus": {
"allOf": [
{
"$ref": "#/components/schemas/NtpStatus"
},
{
"description": "Details about a network time protocol (NTP) server connection."
}
]
}
}
}