Properties
| Name | Type | Description |
|---|---|---|
| id | string | ID of type local gateway. |
| name | string | Name of the local gateway. |
| locationId | string | Location ID to which local gateway belongs. |
| priority | number | Prioritizes local gateways based on these numbers; the lowest number gets the highest priority. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/LocalGateways",
"title": "LocalGateways",
"type": "object",
"required": [
"id",
"priority"
],
"properties": {
"id": {
"type": "string",
"example": "'Y2lzY29zcGFyazovL3VzL1RSVU5LLzY1Zjc4YzgxLTcwMTYtNDc0Ny05M2EyLWIxMGVlZjBhMWI1Ng'",
"description": "ID of type local gateway."
},
"name": {
"type": "string",
"example": "'localGatewayName'",
"description": "Name of the local gateway."
},
"locationId": {
"type": "string",
"example": "'Y2lzY29zcGFyazovL3VzL0xPQ0FUSU9OL1dTV1laMjEyODA2TDIxMjgwNw'",
"description": "Location ID to which local gateway belongs."
},
"priority": {
"type": "number",
"example": 1,
"description": "Prioritizes local gateways based on these numbers; the lowest number gets the highest priority."
}
}
}