{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/CreateDECTNetwork", "title": "CreateDECTNetwork", "type": "object", "required": [ "name", "model", "defaultAccessCodeEnabled", "defaultAccessCode" ], "properties": { "name": { "type": "string", "example": "test-dect", "description": "Name of the DECT network. Min and max length supported for the DECT network name are 1 and 40 respectively." }, "displayName": { "type": "string", "example": "test-dect", "description": "Add a default name (11 characters max) to display for all handsets. If left blank, the default name will be an indexed number followed by the DECT network name." }, "model": { "type": "string", "enum": [ "DMS Cisco DBS110", "Cisco DECT 110 Base", "DMS Cisco DBS210", "Cisco DECT 210 Base" ], "description": "Select a device model type depending on the number of base stations and handset lines needed in the DECT network. The corresponding device model display name sometimes called the product name, can also be used to specify the model.\n * `DMS Cisco DBS110` - Model name supporting 1 base station and 30 line ports.\n * `Cisco DECT 110 Base` - Alternate product/display name which also specifies the model `DMS Cisco DBS110`.\n * `DMS Cisco DBS210` - Supports 250 base stations and 1000 line ports.\n * `Cisco DECT 210 Base` - Alternate product/display name which also specifies the model `DMS Cisco DBS210`.\n" }, "defaultAccessCodeEnabled": { "type": "boolean", "example": true, "description": "If set to true, need to provide a default access code that will be shared for all users in this network to pair their lines to the next available handset. Otherwise, each user will get a unique 4-digit access code that will be auto-generated. Note: There is currently no public API to retrieve the auto generated access codes for handsets. Use Control Hub instead." }, "defaultAccessCode": { "type": "string", "example": "1551", "description": "If `defaultAccessCodeEnabled` is set to true, then provide a default access code that needs to be a 4-numeric digit. The access code should be unique to the DECT network for the location." } } }