{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/BaseStationDetailResponse", "title": "BaseStationDetailResponse", "type": "object", "required": [ "id", "mac", "handsets" ], "properties": { "id": { "type": "string", "example": "Y2lzY29zcGFyazovL3VzL1NDSU1fR1JPVVAvZjA2ZWRiOGMtMjMxNC00ZTcxLWIzNzgtZTdiMmQwNjk3OTliOjk2YWJjMmFhLTNkY2MtMTFlNS1hMTUyLWZlMzQ4MTljZGM5YQ", "description": "Unique identifier of the base station." }, "mac": { "type": "string", "example": "ABBD45856978", "description": "Mac address of the DECT base station device." }, "handsets": { "type": "array", "items": { "$ref": "#/components/schemas/HandsetsResponse" }, "description": "List of handset and member line details registered with the base station." } } }