{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/DECTNetworkDetail", "title": "DECTNetworkDetail", "type": "object", "required": [ "id", "name", "chainId", "model", "defaultAccessCodeEnabled", "defaultAccessCode", "numberOfBaseStations", "numberOfHandsetsAssigned", "numberOfLines", "location" ], "properties": { "id": { "type": "string", "example": "Y2lzY29zcGFyazovL3VzL0RFQ1RfREVWX05FVC81NmRiMjRkMy03YTdhLTQwYTItOWFjOS1iMjMzMjc3OTIxNzf", "description": "Unique identifier for the DECT network." }, "name": { "type": "string", "example": "Demo-DectNetwork", "description": "Name of the DECT network. This should be unique across the location." }, "displayName": { "type": "string", "example": "Demo-DectNetwork", "description": "DECT network name displayed on the handset." }, "chainId": { "type": "number", "example": 1356802345, "description": "Chain ID of the DECT network." }, "model": { "$ref": "#/components/schemas/BaseStationType", "description": "Base station model deployed in the DECT network." }, "defaultAccessCodeEnabled": { "type": "boolean", "example": true, "description": "Default access code is enabled. If true, the default access code is mandatory. If false, auto-generated access code is used." }, "defaultAccessCode": { "type": "string", "example": "1234", "description": "Default access code for the DECT network. The default access code should be unique within the same location to avoid the handset accidentally registering with base stations from different DECT networks in range. This is mandatory when `defaultAccessCodeEnabled` is true." }, "numberOfBaseStations": { "type": "number", "example": 2, "description": "Number of base stations in the DECT network." }, "numberOfHandsetsAssigned": { "type": "number", "example": 5, "description": "Number of handsets assigned to the DECT network." }, "numberOfLines": { "type": "number", "example": 2, "description": "Number of lines in the DECT network." }, "location": { "$ref": "#/components/schemas/location", "description": "Location of the DECT network." } } }