{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/DialPlanGet", "title": "DialPlanGet", "type": "object", "required": [ "id", "name", "routeId", "routeName", "routeType", "customer" ], "properties": { "id": { "type": "string", "example": "Y2lzY29zcGFyazovL3VzL0RJQUxfUExBTi8wNTlhMjczZS1iYmIwLTExZWMtODQyMi0wMjQyYWMxMjAwMDI", "description": "Unique identifier for the dial plan." }, "name": { "type": "string", "example": "dialPlanName", "description": "A unique name for the dial plan." }, "routeId": { "type": "string", "example": "Y2lzY29zcGFyazovL3VzL1JPVVRFX0dST1VQLzA1OWEyNzNlLWJiYjAtMTFlYy04NDIyLTAyNDJhYzEyMDAwMg", "description": "ID of route type associated with the dial plan." }, "routeName": { "type": "string", "example": "routeName", "description": "Name of route type associated with the dial plan." }, "routeType": { "$ref": "#/components/schemas/RouteType", "description": "Route Type associated with the dial plan." }, "customer": { "$ref": "#/components/schemas/Customer", "description": "Customer information." } } }