{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/Site", "title": "Site", "type": "object", "description": "Physical site or location used to geographically organize network devices within Aruba Central.", "properties": { "site_id": { "type": "integer", "format": "int64", "description": "Unique identifier for the site.", "example": "500123" }, "site_name": { "type": "string", "description": "Name of the site.", "examples": [ "Headquarters" ] }, "address": { "type": "string", "description": "Street address of the site.", "example": "example_value" }, "city": { "type": "string", "description": "City where the site is located.", "example": "example_value" }, "state": { "type": "string", "description": "State or province where the site is located.", "example": "example_value" }, "country": { "type": "string", "description": "Country where the site is located.", "example": "example_value" }, "zipcode": { "type": "string", "description": "Postal code for the site location.", "example": "example_value" }, "longitude": { "type": "number", "format": "double", "description": "Geographic longitude coordinate.", "example": 42.5 }, "latitude": { "type": "number", "format": "double", "description": "Geographic latitude coordinate.", "example": 42.5 }, "tags": { "type": "array", "description": "Tags applied to the site.", "items": { "type": "string" }, "example": [] }, "associated_device_count": { "type": "integer", "description": "Number of devices associated with the site.", "example": 10 } } }