{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/DECTNetworkPatch", "title": "DECTNetworkPatch", "type": "object", "required": [ "name", "defaultAccessCodeEnabled", "defaultAccessCode" ], "properties": { "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 that will be displayed on the handset." }, "defaultAccessCodeEnabled": { "type": "boolean", "example": true, "description": "Default access code is enabled. If true, the default access code is mandatory. If false, an 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." } } }