{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/DialPatternPut",
"title": "DialPatternPut",
"type": "object",
"properties": {
"dialPatterns": {
"type": "array",
"items": {
"$ref": "#/components/schemas/DialPattern"
},
"description": "Array of dial patterns to add or delete. Dial Pattern that is not present in the request is not modified."
},
"deleteAllDialPatterns": {
"type": "boolean",
"example": true,
"description": "Delete all the dial patterns for a dial plan."
}
}
}