{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/TrunkPut", "title": "TrunkPut", "type": "object", "required": [ "name", "password" ], "properties": { "name": { "type": "string", "example": "dialPlanName", "description": "A unique name for the dial plan." }, "password": { "type": "string", "example": "password", "description": "A password to use on the trunk." }, "dualIdentitySupportEnabled": { "type": "boolean", "example": true, "description": "Determines the behavior of the From and PAI headers on outbound calls." }, "maxConcurrentCalls": { "type": "number", "example": 1000, "description": "Max Concurrent call. Required to create a static certificate-based trunk." }, "pChargeInfoSupportPolicy": { "$ref": "#/components/schemas/PChargeInfoSupportPolicyType" } } }