Aruba · Schema
SiteUpdate
CloudInfrastructureNetwork ManagementNetworkingSD-WANSecuritySwitchesWireless
Properties
| Name | Type | Description |
|---|---|---|
| site_name | string | |
| address | string | |
| city | string | |
| state | string | |
| country | string | |
| zipcode | string | |
| longitude | number | |
| latitude | number |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/SiteUpdate",
"title": "SiteUpdate",
"type": "object",
"properties": {
"site_name": {
"type": "string",
"example": "example_value"
},
"address": {
"type": "string",
"example": "example_value"
},
"city": {
"type": "string",
"example": "example_value"
},
"state": {
"type": "string",
"example": "example_value"
},
"country": {
"type": "string",
"example": "example_value"
},
"zipcode": {
"type": "string",
"example": "example_value"
},
"longitude": {
"type": "number",
"format": "double",
"example": 42.5
},
"latitude": {
"type": "number",
"format": "double",
"example": 42.5
}
}
}