[Index]
This data model encapsulates the information needed to deploy a dial plan schema.
Model ref.: data/HcsDpDialPlanSchemaDAT
The full URL would include the host-proxy name: https://[host-proxy].
Variables are enclosed in square brackets.
{
"$schema": "http://json-schema.org/draft-03/schema",
"type": "object",
"properties": {
"name": {
"title": "Dial Plan Name",
"description": "Dial plan schema name.",
"type": "string",
"maxLength": 1024,
"required": true,
"readonly": false,
"is_password": false,
"displayable": false
},
"description": {
"title": "Description",
"description": "A description for this dial plan schema.",
"type": "string",
"maxLength": 1024,
"required": false,
"readonly": false,
"is_password": false,
"displayable": false
},
"timePeriodArray": {
"title": "Time Periods",
"description": "Time Periods for this dial plan schema.",
"type": "array",
"minItems": 0,
"required": false,
"readonly": false,
"is_password": false,
"displayable": false,
"items": {
"type": "object",
"is_password": false,
"properties": {
"name": {
"title": "Time Period Name",
"description": "The name for this time period.",
"type": "string",
"maxLength": 1024,
"required": true,
"readonly": false,
"displayable": false,
"is_password": false
},
"description": {
"title": "Description",
"description": "A meaningful description for this time period.",
"type": "string",
"maxLength": 1024,
"required": false,
"readonly": false,
"displayable": false,
"is_password": false
},
"startTime": {
"title": "Time of Day Start",
"description": "The start time for this period.",
"type": "string",
"maxLength": 1024,
"required": true,
"readonly": false,
"displayable": false,
"is_password": false,
"default": "No Office Hours",
"choices": [
{
"value": "No Office Hours",
"title": "No Office Hours"
}
]
},
"endTime": {
"title": "Time of Day End",
"description": "The end time for this period.",
"type": "string",
"maxLength": 1024,
"required": true,
"readonly": false,
"displayable": false,
"is_password": false,
"default": "No Office Hours",
"choices": [
{
"value": "No Office Hours",
"title": "No Office Hours"
}
]
},
"startDay": {
"title": "Start Day",
"description": "Optional start day for this period.",
"type": "string",
"maxLength": 1024,
"required": false,
"readonly": false,
"displayable": false,
"is_password": false,
"default": "None",
"choices": [
{
"value": "None",
"title": "None"
}
]
},
"endDay": {
"title": "End Day",
"description": "Optional end day for this period.",
"type": "string",
"maxLength": 1024,
"required": false,
"readonly": false,
"displayable": false,
"is_password": false,
"default": "None",
"choices": [
{
"value": "None",
"title": "None"
}
]
},
"startMonth": {
"title": "Start Month",
"description": "Optional start month for this period.",
"type": "string",
"maxLength": 1024,
"required": false,
"readonly": false,
"displayable": false,
"is_password": false,
"default": "None",
"choices": [
{
"value": "None",
"title": "None"
}
]
},
"startDayOfMonth": {
"title": "Start Day of Month",
"description": "Optional start day of month for this period.",
"type": "string",
"maxLength": 1024,
"required": false,
"readonly": false,
"displayable": false,
"is_password": false,
"pattern": "^([0-9]|[12][0-9]|[3][01])$",
"default": "0"
},
"endMonth": {
"title": "End Month",
"description": "Optional end month for this period.",
"type": "string",
"maxLength": 1024,
"required": false,
"readonly": false,
"displayable": false,
"is_password": false,
"default": "None",
"choices": [
{
"value": "None",
"title": "None"
}
]
},
"endDayOfMonth": {
"title": "End Day of Month",
"description": "Optional end day of month for this period.",
"type": "string",
"maxLength": 1024,
"required": false,
"readonly": false,
"displayable": false,
"is_password": false,
"pattern": "^([0-9]|[12][0-9]|[3][01])$",
"default": "0"
}
}
}
},
"timeScheduleArray": {
"title": "Time Schedules",
"description": "Time Schedules for this dial plan schema.",
"type": "array",
"minItems": 0,
"required": false,
"readonly": false,
"is_password": false,
"displayable": false,
"items": {
"type": "object",
"is_password": false,
"properties": {
"name": {
"title": "Time Schedule Name",
"description": "The name for this time schedule.",
"type": "string",
"maxLength": 1024,
"required": true,
"readonly": false,
"displayable": false,
"is_password": false
},
"description": {
"title": "Description",
"description": "A meaningful description for this time schedule.",
"type": "string",
"maxLength": 1024,
"required": false,
"readonly": false,
"displayable": false,
"is_password": false
},
"timeScheduleMembers": {
"title": "Time Periods",
"type": "array",
"minItems": 0,
"required": false,
"readonly": false,
"displayable": false,
"is_password": false,
"items": {
"type": "object",
"properties": {
"timePeriodName": {
"title": "Time Period Name",
"description": "A time period that is part of this time schedule.",
"type": "string",
"maxLength": 1024,
"is_password": false,
"required": false,
"readonly": false,
"displayable": false
}
}
}
}
}
}
},
"partitionArray": {
"title": "Partitions",
"description": "Partitions for this dial plan schema.",
"type": "array",
"minItems": 0,
"required": false,
"readonly": false,
"is_password": false,
"displayable": false,
"items": {
"type": "object",
"is_password": false,
"properties": {
"name": {
"title": "Partition Name",
"description": "The name for this partition.",
"type": "string",
"maxLength": 1024,
"required": true,
"readonly": false,
"displayable": false,
"is_password": false
},
"description": {
"title": "Description",
"description": "A meaningful description for this partition.",
"type": "string",
"maxLength": 1024,
"required": false,
"readonly": false,
"displayable": false,
"is_password": false
},
"timeSchedule": {
"title": "Time Schedule",
"description": "The time schedule to use for this partition.",
"type": "string",
"maxLength": 1024,
"required": false,
"readonly": false,
"displayable": false,
"is_password": false,
"default": "NULL"
}
}
}
},
"cssArray": {
"title": "Calling Search Spaces",
"description": "Calling Search Spaces for this dial plan schema.",
"type": "array",
"minItems": 0,
"required": false,
"readonly": false,
"is_password": false,
"displayable": false,
"items": {
"type": "object",
"is_password": false,
"properties": {
"name": {
"title": "CSS Name",
"description": "The name of the calling search space.",
"type": "string",
"maxLength": 1024,
"required": true,
"readonly": false,
"displayable": false,
"is_password": false
},
"description": {
"title": "Description",
"description": "A meaningful description for this calling search space.",
"type": "string",
"maxLength": 1024,
"required": false,
"readonly": false,
"displayable": false,
"is_password": false
},
"usage": {
"title": "Partition Usage",
"type": "string",
"maxLength": 1024,
"required": false,
"readonly": false,
"displayable": false,
"is_password": false,
"default": "General"
},
"isClassOfService": {
"title": "Class of Service CSS",
"description": "If enabled, indicates that this CSS is a class of service.",
"type": "boolean",
"required": false,
"readonly": false,
"displayable": false,
"is_password": false
},
"partitionMembers": {
"title": "Partitions",
"description": "The array of default partitions associated with this calling search space.",
"type": "array",
"minItems": 0,
"required": false,
"readonly": false,
"displayable": false,
"is_password": false,
"items": {
"type": "object",
"properties": {
"partition": {
"title": "Route Partition Name",
"description": "The name of the partition.",
"type": "string",
"maxLength": 1024,
"is_password": false,
"required": true,
"readonly": false,
"displayable": false
},
"index": {
"title": "Index",
"description": "The index for this route partition.",
"type": "string",
"maxLength": 1024,
"is_password": false,
"required": true,
"readonly": false,
"displayable": false,
"pattern": "^[0-9]*"
}
}
}
}
}
}
},
"translationPatternArray": {
"title": "Translation Patterns",
"description": "Translation patterns for this dial plan schema.",
"type": "array",
"minItems": 0,
"required": false,
"readonly": false,
"is_password": false,
"displayable": false,
"items": {
"type": "object",
"is_password": false,
"properties": {
"forEach": {
"title": "For Each",
"description": "If a list is specific, create a translation pattern for each item in the list.",
"type": "string",
"maxLength": 1024,
"required": false,
"readonly": false,
"displayable": false,
"is_password": false
},
"pattern": {
"title": "Translation Pattern",
"description": "The translation pattern.",
"type": "string",
"maxLength": 1024,
"required": true,
"readonly": false,
"displayable": false,
"is_password": false
},
"description": {
"title": "Description",
"description": "A meaningful description for this translation pattern.",
"type": "string",
"maxLength": 1024,
"required": false,
"readonly": false,
"displayable": false,
"is_password": false
},
"routePartition": {
"title": "Partition",
"description": "The route partition to which this pattern belongs.",
"type": "string",
"maxLength": 1024,
"required": true,
"readonly": false,
"displayable": false,
"is_password": false
},
"css": {
"title": "CSS",
"type": "string",
"maxLength": 1024,
"required": false,
"readonly": false,
"displayable": false,
"is_password": false
},
"useOrigCss": {
"title": "Use Originator's Calling Search Space",
"type": "boolean",
"required": false,
"readonly": false,
"displayable": false,
"is_password": false
},
"routeOption": {
"title": "Route Option",
"type": "string",
"maxLength": 1024,
"required": false,
"readonly": false,
"displayable": false,
"is_password": false,
"default": "Route this pattern",
"choices": [
{
"value": "Route this pattern",
"title": "Route this pattern"
},
{
"value": "Block this pattern",
"title": "Block this pattern"
}
]
},
"releaseClause": {
"title": "Release Clause",
"description": "If this is a blocking pattern, select the release clause when the call is blocked.",
"type": "string",
"maxLength": 1024,
"required": false,
"readonly": false,
"displayable": false,
"is_password": false,
"default": "No Error",
"choices": [
{
"value": "No Error",
"title": "No Error"
},
{
"value": "Unallocated Number",
"title": "Unallocated Number"
},
{
"value": "Call Rejected",
"title": "Call Rejected"
},
{
"value": "Call Rejected",
"title": "Call Rejected"
},
{
"value": "Number Changed",
"title": "Number Changed"
},
{
"value": "Invalid Number Format",
"title": "Invalid Number Format"
},
{
"value": "Precedence Level Exceeded",
"title": "Precedence Level Exceeded"
}
]
},
"provideOutsideDialTone": {
"title": "Provide Outside Dial Tone",
"type": "boolean",
"required": false,
"readonly": false,
"displayable": false,
"is_password": false
},
"urgentPriority": {
"title": "Urgent Priority",
"type": "boolean",
"required": false,
"readonly": false,
"displayable": false,
"is_password": false
},
"noWaitInterdigitTimeoutSubseqHops": {
"title": "Do Not Wait For Interdigit Timeout On Subsequent Hops",
"type": "boolean",
"required": false,
"readonly": false,
"displayable": false,
"is_password": false
},
"nextHopByCallingPtyNum": {
"title": "Route Next Hop By Calling Party Number",
"type": "boolean",
"required": false,
"readonly": false,
"displayable": false,
"is_password": false
},
"useCallingPartyExternalPhoneNumMask": {
"title": "Use Calling Party's External Phone Number Mask",
"type": "boolean",
"required": false,
"readonly": false,
"displayable": false,
"is_password": false
},
"callingPartyTransformMask": {
"title": "Calling Party Transform Mask",
"type": "string",
"maxLength": 1024,
"required": false,
"readonly": false,
"displayable": false,
"is_password": false
},
"callingPartyPrefixDigits": {
"title": "Calling Party Prefix Digits (Outgoing Calls)",
"type": "string",
"maxLength": 1024,
"required": false,
"readonly": false,
"displayable": false,
"is_password": false
},
"calledPartyDiscardDigits": {
"title": "Called Party Discard Digits",
"type": "string",
"maxLength": 1024,
"required": false,
"readonly": false,
"displayable": false,
"is_password": false,
"default": "None",
"choices": [
{
"value": "None",
"title": "None"
},
{
"value": "PreDot",
"title": "PreDot"
},
{
"value": "PreDot Trailing-#",
"title": "PreDot Trailing-#"
}
]
},
"calledPartyTransformMask": {
"title": "Called Party Transform Mask",
"type": "string",
"maxLength": 1024,
"required": false,
"readonly": false,
"displayable": false,
"is_password": false
},
"calledPartyPrefixDigits": {
"title": "Called Party Prefix Digits (Outgoing Calls)",
"type": "string",
"maxLength": 1024,
"required": false,
"readonly": false,
"displayable": false,
"is_password": false
},
"cgLinePresBit": {
"title": "Calling Line Presentation Bit",
"type": "string",
"maxLength": 1024,
"required": false,
"readonly": false,
"displayable": false,
"is_password": false,
"default": "Default",
"choices": [
{
"value": "Default",
"title": "Default"
},
{
"value": "Allowed",
"title": "Allowed"
},
{
"value": "Restricted",
"title": "Restricted"
}
]
},
"cgNamePresBit": {
"title": "Calling Name Presentation Bit",
"type": "string",
"maxLength": 1024,
"required": false,
"readonly": false,
"displayable": false,
"is_password": false,
"default": "Default",
"choices": [
{
"value": "Default",
"title": "Default"
},
{
"value": "Allowed",
"title": "Allowed"
},
{
"value": "Restricted",
"title": "Restricted"
}
]
},
"connLinePresBit": {
"title": "Connected Line Presentation Bit",
"type": "string",
"maxLength": 1024,
"required": false,
"readonly": false,
"displayable": false,
"is_password": false,
"default": "Default",
"choices": [
{
"value": "Default",
"title": "Default"
},
{
"value": "Allowed",
"title": "Allowed"
},
{
"value": "Restricted",
"title": "Restricted"
}
]
},
"connNamePresBit": {
"title": "Connected Name Presentation Bit",
"type": "string",
"maxLength": 1024,
"required": false,
"readonly": false,
"displayable": false,
"is_password": false,
"default": "Default",
"choices": [
{
"value": "Default",
"title": "Default"
},
{
"value": "Allowed",
"title": "Allowed"
},
{
"value": "Restricted",
"title": "Restricted"
}
]
}
}
}
},
"callingPartyTransPatternArray": {
"title": "Calling Party Transformation Patterns",
"description": "Calling party transformation patterns for this dial plan schema.",
"type": "array",
"minItems": 0,
"required": false,
"readonly": false,
"is_password": false,
"displayable": false,
"items": {
"type": "object",
"is_password": false,
"properties": {
"pattern": {
"title": "Pattern",
"description": "The pattern for this calling party transformation.",
"type": "string",
"maxLength": 1024,
"required": true,
"readonly": false,
"displayable": false,
"is_password": false
},
"description": {
"title": "Description",
"description": "A meaningful description for this calling party transformation pattern.",
"type": "string",
"maxLength": 1024,
"required": false,
"readonly": false,
"displayable": false,
"is_password": false
},
"partition": {
"title": "Partition",
"description": "The route partition to which this calling party transformation belongs.",
"type": "string",
"maxLength": 1024,
"required": false,
"readonly": false,
"displayable": false,
"is_password": false
},
"useCallingPartyExternalPhoneNumMask": {
"title": "Use Calling Party's External Phone Number Mask",
"type": "boolean",
"required": false,
"readonly": false,
"displayable": false,
"is_password": false
},
"discardDigits": {
"title": "Calling Party Discard Digits",
"type": "string",
"maxLength": 1024,
"required": false,
"readonly": false,
"displayable": false,
"is_password": false,
"default": "None",
"choices": [
{
"value": "None",
"title": "None"
},
{
"value": "PreDot",
"title": "PreDot"
}
]
},
"transformMask": {
"title": "Calling Party Transform Mask",
"type": "string",
"maxLength": 1024,
"required": false,
"readonly": false,
"displayable": false,
"is_password": false
},
"prefixDigits": {
"title": "Calling Party Prefix Digits (Outgoing Calls)",
"type": "string",
"maxLength": 1024,
"required": false,
"readonly": false,
"displayable": false,
"is_password": false
},
"cgLineIdPres": {
"title": "Calling Line ID Presentation",
"type": "string",
"maxLength": 1024,
"required": true,
"readonly": false,
"displayable": false,
"is_password": false,
"default": "Default",
"choices": [
{
"value": "Default",
"title": "Default"
},
{
"value": "Allowed",
"title": "Allowed"
},
{
"value": "Restricted",
"title": "Restricted"
}
]
},
"cgPtyNumType": {
"title": "Calling Party Number Type",
"type": "string",
"maxLength": 1024,
"required": true,
"readonly": false,
"displayable": false,
"is_password": false,
"default": "Cisco CallManager",
"choices": [
{
"value": "Cisco CallManager",
"title": "Cisco CallManager"
},
{
"value": "Unknown",
"title": "Unknown"
},
{
"value": "National",
"title": "National"
},
{
"value": "International",
"title": "International"
},
{
"value": "Subscriber",
"title": "Subscriber"
}
]
},
"cgPtyNumPlan": {
"title": "Calling Party Numbering Plan",
"type": "string",
"maxLength": 1024,
"required": true,
"readonly": false,
"displayable": false,
"is_password": false,
"default": "Cisco CallManager",
"choices": [
{
"value": "Cisco CallManager",
"title": "Cisco CallManager"
},
{
"value": "ISDN",
"title": "ISDN"
},
{
"value": "National Standard",
"title": "National Standard"
},
{
"value": "Private",
"title": "Private"
},
{
"value": "Unknown",
"title": "Unknown"
}
]
}
}
}
},
"calledPartyTransPatternArray": {
"title": "Called Party Transformation Patterns",
"description": "Called party transformation patterns for this dial plan schema.",
"type": "array",
"minItems": 0,
"required": false,
"readonly": false,
"is_password": false,
"displayable": false,
"items": {
"type": "object",
"is_password": false,
"properties": {
"pattern": {
"title": "Pattern",
"description": "The pattern for this called party transformation.",
"type": "string",
"maxLength": 1024,
"required": true,
"readonly": false,
"displayable": false,
"is_password": false
},
"description": {
"title": "Description",
"description": "A meaningful description for this called party transformation pattern.",
"type": "string",
"maxLength": 1024,
"required": false,
"readonly": false,
"displayable": false,
"is_password": false
},
"partition": {
"title": "Route Partition",
"description": "The route partition to which this calling party transformation belongs.",
"type": "string",
"maxLength": 1024,
"required": false,
"readonly": false,
"displayable": false,
"is_password": false
},
"discardDigits": {
"title": "Discard Digits",
"type": "string",
"maxLength": 1024,
"required": false,
"readonly": false,
"displayable": false,
"is_password": false,
"default": "None",
"choices": [
{
"value": "None",
"title": "None"
},
{
"value": "PreDot",
"title": "PreDot"
},
{
"value": "PreDot Trailing-#",
"title": "PreDot Trailing-#"
}
]
},
"transformMask": {
"title": "Called Party Transformation Mask",
"type": "string",
"maxLength": 1024,
"required": false,
"readonly": false,
"displayable": false,
"is_password": false
},
"prefixDigits": {
"title": "Called Party Prefix Digits",
"type": "string",
"maxLength": 1024,
"required": false,
"readonly": false,
"displayable": false,
"is_password": false
},
"numType": {
"title": "Called Party Number Type",
"type": "string",
"maxLength": 1024,
"required": true,
"readonly": false,
"displayable": false,
"is_password": false,
"default": "Cisco CallManager",
"choices": [
{
"value": "Cisco CallManager",
"title": "Cisco CallManager"
},
{
"value": "Unknown",
"title": "Unknown"
},
{
"value": "National",
"title": "National"
},
{
"value": "International",
"title": "International"
},
{
"value": "Subscriber",
"title": "Subscriber"
}
]
},
"numPlan": {
"title": "Called Party Numbering Plan",
"type": "string",
"maxLength": 1024,
"required": true,
"readonly": false,
"displayable": false,
"is_password": false,
"default": "Cisco CallManager",
"choices": [
{
"value": "Cisco CallManager",
"title": "Cisco CallManager"
},
{
"value": "ISDN",
"title": "ISDN"
},
{
"value": "National Standard",
"title": "National Standard"
},
{
"value": "Private",
"title": "Private"
},
{
"value": "Unknown",
"title": "Unknown"
}
]
}
}
}
},
"routeListArray": {
"title": "Route Lists",
"description": "Route list items for this dial plan schema.",
"type": "array",
"minItems": 0,
"required": false,
"readonly": false,
"is_password": false,
"displayable": false,
"items": {
"type": "object",
"is_password": false,
"properties": {
"name": {
"title": "Name",
"description": "The name for this route list.",
"type": "string",
"maxLength": 1024,
"required": true,
"readonly": false,
"displayable": false,
"is_password": false
},
"description": {
"title": "Description",
"description": "A meaningful description for this route list.",
"type": "string",
"maxLength": 1024,
"required": false,
"readonly": false,
"displayable": false,
"is_password": false
},
"callManagerGroup": {
"title": "Call Manager Group Name",
"type": "string",
"maxLength": 1024,
"required": false,
"readonly": false,
"displayable": false,
"is_password": false
},
"routeListEnabled": {
"title": "Route List Enabled",
"type": "boolean",
"required": false,
"readonly": false,
"displayable": false,
"is_password": false
},
"runOnEveryNode": {
"title": "Run On Every Node",
"type": "boolean",
"required": false,
"readonly": false,
"displayable": false,
"is_password": false
},
"members": {
"title": "Members",
"type": "array",
"minItems": 0,
"required": false,
"readonly": false,
"displayable": false,
"is_password": false,
"items": {
"type": "object",
"properties": {
"routeGroupName": {
"title": "Route Group Name",
"type": "string",
"maxLength": 1024,
"is_password": false,
"required": true,
"readonly": false,
"displayable": false
},
"selectionOrder": {
"title": "Selection Order",
"type": "string",
"maxLength": 1024,
"is_password": false,
"required": true,
"readonly": false,
"displayable": false
},
"useCallingPartyExternalPhoneNumMask": {
"title": "Use Calling Party's External Phone Number Mask",
"type": "string",
"maxLength": 1024,
"is_password": false,
"required": false,
"readonly": false,
"displayable": false,
"default": "Default",
"choices": [
{
"value": "Default",
"title": "Default"
},
{
"value": "On",
"title": "On"
},
{
"value": "Off",
"title": "Off"
}
]
},
"callingPartyTransformMask": {
"title": "Calling Party Transform Mask",
"type": "string",
"maxLength": 1024,
"is_password": false,
"required": false,
"readonly": false,
"displayable": false
},
"callingPartyPrefixDigits": {
"title": "Calling Party Prefix Digits (Outgoing Calls)",
"type": "string",
"maxLength": 1024,
"is_password": false,
"required": false,
"readonly": false,
"displayable": false
},
"calledPartyDiscardDigits": {
"title": "Called Party Discard Digits",
"type": "string",
"maxLength": 1024,
"is_password": false,
"required": false,
"readonly": false,
"displayable": false,
"default": "None",
"choices": [
{
"value": "None",
"title": "None"
}
]
},
"calledPartyTransformMask": {
"title": "Called Party Transform Mask",
"type": "string",
"maxLength": 1024,
"is_password": false,
"required": false,
"readonly": false,
"displayable": false
},
"calledPartyPrefixDigits": {
"title": "Called Party Prefix Digits (Outgoing Calls)",
"type": "string",
"maxLength": 1024,
"is_password": false,
"required": false,
"readonly": false,
"displayable": false
}
}
}
}
}
}
},
"routePatternArray": {
"title": "Route Patterns",
"description": "Route pattern list for this dial plan schema.",
"type": "array",
"minItems": 0,
"required": false,
"readonly": false,
"is_password": false,
"displayable": false,
"items": {
"type": "object",
"is_password": false,
"properties": {
"pattern": {
"title": "Route Pattern",
"description": "The route pattern.",
"type": "string",
"maxLength": 1024,
"required": true,
"readonly": false,
"displayable": false,
"is_password": false
},
"description": {
"title": "Description",
"description": "A meaningful description for this route pattern.",
"type": "string",
"maxLength": 1024,
"required": false,
"readonly": false,
"displayable": false,
"is_password": false
},
"routePartition": {
"title": "Route Partition",
"description": "The route partition to which this pattern belongs.",
"type": "string",
"maxLength": 1024,
"required": true,
"readonly": false,
"displayable": false,
"is_password": false
},
"routeList": {
"title": "Route List",
"type": "string",
"maxLength": 1024,
"required": false,
"readonly": false,
"displayable": false,
"is_password": false
},
"gatewayName": {
"title": "Gateway Name",
"type": "string",
"maxLength": 1024,
"required": false,
"readonly": false,
"displayable": false,
"is_password": false
},
"routeOption": {
"title": "Route Option",
"type": "string",
"maxLength": 1024,
"required": false,
"readonly": false,
"displayable": false,
"is_password": false,
"default": "Route this pattern",
"choices": [
{
"value": "Route this pattern",
"title": "Route this pattern"
},
{
"value": "Block this pattern",
"title": "Block this pattern"
}
]
},
"releaseClause": {
"title": "Release Clause",
"description": "If this is a blocking pattern, select the release clause when the call is blocked.",
"type": "string",
"maxLength": 1024,
"required": false,
"readonly": false,
"displayable": false,
"is_password": false,
"default": "No Error",
"choices": [
{
"value": "No Error",
"title": "No Error"
},
{
"value": "Unallocated Number",
"title": "Unallocated Number"
},
{
"value": "Call Rejected",
"title": "Call Rejected"
},
{
"value": "Number Changed",
"title": "Number Changed"
},
{
"value": "Invalid Number Format",
"title": "Invalid Number Format"
},
{
"value": "Precedence Level Exceeded",
"title": "Precedence Level Exceeded"
}
]
},
"callClassification": {
"title": "Call Classification",
"description": "OnNet or Offnet call",
"type": "string",
"maxLength": 1024,
"required": true,
"readonly": false,
"displayable": false,
"is_password": false,
"default": "OffNet",
"choices": [
{
"value": "OffNet",
"title": "OffNet"
},
{
"value": "OnNet",
"title": "OnNet"
}
]
},
"allowDeviceOverride": {
"title": "Allow Device Override",
"type": "boolean",
"required": false,
"readonly": false,
"displayable": false,
"is_password": false
},
"provideOutsideDialTone": {
"title": "Provide Outside Dial Tone",
"type": "boolean",
"required": false,
"readonly": false,
"displayable": false,
"is_password": false
},
"allowOverlapSending": {
"title": "Allow Overlap Sending",
"type": "boolean",
"required": false,
"readonly": false,
"displayable": false,
"is_password": false
},
"urgentPriority": {
"title": "Urgent Priority",
"type": "boolean",
"required": false,
"readonly": false,
"displayable": false,
"is_password": false
},
"reqForcedAuthCode": {
"title": "Require Forced Authorization Code",
"type": "boolean",
"required": false,
"readonly": false,
"displayable": false,
"is_password": false
},
"authLevel": {
"title": "Authorization Level",
"type": "string",
"maxLength": 1024,
"required": true,
"readonly": false,
"displayable": false,
"is_password": false,
"default": "0"
},
"reqClientMatterCode": {
"title": "Require Client Matter Code",
"type": "boolean",
"required": false,
"readonly": false,
"displayable": false,
"is_password": false
},
"useCallingPartyExternalPhoneNumMask": {
"title": "Use Calling Party's External Phone Number Mask",
"type": "boolean",
"required": false,
"readonly": false,
"displayable": false,
"is_password": false
},
"callingPartyTransformMask": {
"title": "Calling Party Transform Mask",
"type": "string",
"maxLength": 1024,
"required": false,
"readonly": false,
"displayable": false,
"is_password": false
},
"callingPartyPrefixDigits": {
"title": "Calling Party Prefix Digits (Outgoing Calls)",
"type": "string",
"maxLength": 1024,
"required": false,
"readonly": false,
"displayable": false,
"is_password": false
},
"calledPartyDiscardDigits": {
"title": "Called Party Discard Digits",
"type": "string",
"maxLength": 1024,
"required": false,
"readonly": false,
"displayable": false,
"is_password": false,
"default": "None",
"choices": [
{
"value": "None",
"title": "None"
},
{
"value": "PreDot",
"title": "PreDot"
},
{
"value": "PreDot Trailing-#",
"title": "PreDot Trailing-#"
}
]
},
"calledPartyTransformMask": {
"title": "Called Party Transform Mask",
"type": "string",
"maxLength": 1024,
"required": false,
"readonly": false,
"displayable": false,
"is_password": false
},
"calledPartyPrefixDigits": {
"title": "Called Party Prefix Digits (Outgoing Calls)",
"type": "string",
"maxLength": 1024,
"required": false,
"readonly": false,
"displayable": false,
"is_password": false
},
"cgLinePresBit": {
"title": "Calling Line Presentation Bit",
"type": "string",
"maxLength": 1024,
"required": false,
"readonly": false,
"displayable": false,
"is_password": false,
"default": "Default",
"choices": [
{
"value": "Default",
"title": "Default"
},
{
"value": "Allowed",
"title": "Allowed"
},
{
"value": "Restricted",
"title": "Restricted"
}
]
},
"cgNamePresBit": {
"title": "Calling Name Presentation Bit",
"type": "string",
"maxLength": 1024,
"required": false,
"readonly": false,
"displayable": false,
"is_password": false,
"default": "Default",
"choices": [
{
"value": "Default",
"title": "Default"
},
{
"value": "Allowed",
"title": "Allowed"
},
{
"value": "Restricted",
"title": "Restricted"
}
]
},
"connLinePresBit": {
"title": "Connected Line Presentation Bit",
"type": "string",
"maxLength": 1024,
"required": false,
"readonly": false,
"displayable": false,
"is_password": false,
"default": "Default",
"choices": [
{
"value": "Default",
"title": "Default"
},
{
"value": "Allowed",
"title": "Allowed"
},
{
"value": "Restricted",
"title": "Restricted"
}
]
},
"connNamePresBit": {
"title": "Connected Name Presentation Bit",
"type": "string",
"maxLength": 1024,
"required": false,
"readonly": false,
"displayable": false,
"is_password": false,
"default": "Default",
"choices": [
{
"value": "Default",
"title": "Default"
},
{
"value": "Allowed",
"title": "Allowed"
},
{
"value": "Restricted",
"title": "Restricted"
}
]
},
"patternPrecedence": {
"title": "MLPP Precedence",
"type": "string",
"maxLength": 1024,
"required": false,
"readonly": false,
"displayable": false,
"is_password": false,
"default": "Default",
"choices": [
{
"value": "Default",
"title": "Default"
},
{
"value": "Executive Override",
"title": "Executive Override"
},
{
"value": "Flash",
"title": "Flash"
},
{
"value": "Flash Override",
"title": "Flash Override"
},
{
"value": "Immediate",
"title": "Immediate"
},
{
"value": "Priority",
"title": "Priority"
},
{
"value": "Routine",
"title": "Routine"
}
]
}
}
}
},
"sipRoutePatternArray": {
"title": "SIP Route Patterns",
"description": "SIP Route pattern list for this dial plan schema.",
"type": "array",
"minItems": 0,
"required": false,
"readonly": false,
"is_password": false,
"displayable": false,
"items": {
"type": "object",
"is_password": false,
"properties": {
"pattern": {
"title": "Pattern",
"description": "The SIP route pattern.",
"type": "string",
"maxLength": 1024,
"required": true,
"readonly": false,
"displayable": false,
"is_password": false
},
"description": {
"title": "Description",
"description": "A meaningful description for this SIP route pattern.",
"type": "string",
"maxLength": 1024,
"required": false,
"readonly": false,
"displayable": false,
"is_password": false
},
"usage": {
"title": "Usage",
"description": "The usage for this SIP route pattern.",
"type": "string",
"maxLength": 1024,
"required": true,
"readonly": false,
"displayable": false,
"is_password": false,
"choices": [
{
"value": "Domain Routing",
"title": "Domain Routing"
}
]
},
"routePartitionName": {
"title": "Route Partition",
"description": "The route partition to which this pattern belongs.",
"type": "string",
"maxLength": 1024,
"required": true,
"readonly": false,
"displayable": false,
"is_password": false
},
"routeOption": {
"title": "Route Option",
"type": "string",
"maxLength": 1024,
"required": false,
"readonly": false,
"displayable": false,
"is_password": false,
"default": "Route this pattern",
"choices": [
{
"value": "Route this pattern",
"title": "Route this pattern"
},
{
"value": "Block this pattern",
"title": "Block this pattern"
}
]
},
"callingPartyTransformationMask": {
"title": "Calling Party Transformation Mask",
"type": "string",
"maxLength": 1024,
"required": false,
"readonly": false,
"displayable": false,
"is_password": false
},
"useCallingPartyExternalPhoneNumMask": {
"title": "Use Calling Party's External Phone Number Mask",
"type": "boolean",
"required": false,
"readonly": false,
"displayable": false,
"is_password": false
},
"callingPartyPrefixDigits": {
"title": "Calling Party Prefix Digits (Outgoing Calls)",
"type": "string",
"maxLength": 1024,
"required": false,
"readonly": false,
"displayable": false,
"is_password": false
},
"cgLinePresBit": {
"title": "Calling Line Presentation Bit",
"type": "string",
"maxLength": 1024,
"required": false,
"readonly": false,
"displayable": false,
"is_password": false,
"default": "Default",
"choices": [
{
"value": "Default",
"title": "Default"
},
{
"value": "Allowed",
"title": "Allowed"
},
{
"value": "Restricted",
"title": "Restricted"
}
]
},
"cgNamePresBit": {
"title": "Calling Name Presentation Bit",
"type": "string",
"maxLength": 1024,
"required": false,
"readonly": false,
"displayable": false,
"is_password": false,
"default": "Default",
"choices": [
{
"value": "Default",
"title": "Default"
},
{
"value": "Allowed",
"title": "Allowed"
},
{
"value": "Restricted",
"title": "Restricted"
}
]
},
"connLinePresBit": {
"title": "Connected Line Presentation Bit",
"type": "string",
"maxLength": 1024,
"required": false,
"readonly": false,
"displayable": false,
"is_password": false,
"default": "Default",
"choices": [
{
"value": "Default",
"title": "Default"
},
{
"value": "Allowed",
"title": "Allowed"
},
{
"value": "Restricted",
"title": "Restricted"
}
]
},
"connNamePresBit": {
"title": "Connected Name Presentation Bit",
"type": "string",
"maxLength": 1024,
"required": false,
"readonly": false,
"displayable": false,
"is_password": false,
"default": "Default",
"choices": [
{
"value": "Default",
"title": "Default"
},
{
"value": "Allowed",
"title": "Allowed"
},
{
"value": "Restricted",
"title": "Restricted"
}
]
},
"sipTrunkName": {
"title": "Sip Trunk/Route List Name",
"type": "string",
"maxLength": 1024,
"required": true,
"readonly": false,
"displayable": false,
"is_password": false
},
"dnOrPatternIpv6": {
"title": "Dn or Pattern IPv6",
"type": "string",
"maxLength": 1024,
"required": false,
"readonly": false,
"displayable": false,
"is_password": false
},
"routeOnUserPart": {
"title": "Route On User Part",
"type": "boolean",
"required": false,
"readonly": false,
"displayable": false,
"is_password": false
},
"useCallerCss": {
"title": "Use Caller CSS",
"type": "boolean",
"required": false,
"readonly": false,
"displayable": false,
"is_password": false
},
"domainRoutingCssName": {
"title": "Domain Routing Css Name",
"type": "string",
"maxLength": 1024,
"required": false,
"readonly": false,
"displayable": false,
"is_password": false
}
}
}
},
"ctiRoutePointArray": {
"title": "CTI Route Points",
"type": "array",
"minItems": 0,
"required": false,
"readonly": false,
"is_password": false,
"displayable": false,
"items": {
"type": "object",
"is_password": false,
"properties": {
"deviceName": {
"title": "Device Name",
"description": "The name for this CTI route point.",
"type": "string",
"maxLength": 1024,
"required": true,
"readonly": false,
"displayable": false,
"is_password": false
},
"description": {
"title": "Description",
"description": "Meaningful description for this CTI route point.",
"type": "string",
"maxLength": 1024,
"required": false,
"readonly": false,
"displayable": false,
"is_password": false
},
"devicePool": {
"title": "Device Pool",
"type": "string",
"maxLength": 1024,
"required": true,
"readonly": false,
"displayable": false,
"is_password": false
},
"css": {
"title": "Calling Search Space",
"type": "string",
"maxLength": 1024,
"required": false,
"readonly": false,
"displayable": false,
"is_password": false
},
"location": {
"title": "Location",
"type": "string",
"maxLength": 1024,
"required": true,
"readonly": false,
"displayable": false,
"is_password": false
},
"useTrustedRelayPoint": {
"title": "Use Trusted Relay Point",
"type": "string",
"maxLength": 1024,
"required": true,
"readonly": false,
"displayable": false,
"is_password": false,
"default": "Default",
"choices": [
{
"value": "Default",
"title": "Default"
},
{
"value": "On",
"title": "On"
},
{
"value": "Off",
"title": "Off"
}
]
},
"cgPtyTransCss": {
"title": "Calling Party Transformation CSS",
"type": "string",
"maxLength": 1024,
"required": false,
"readonly": false,
"displayable": false,
"is_password": false
},
"geolocation": {
"title": "Geolocation",
"type": "string",
"maxLength": 1024,
"required": false,
"readonly": false,
"displayable": false,
"is_password": false
},
"useDevPoolCgPtyTransCss": {
"title": "Use Device Pool Calling Party Transformation CSS",
"type": "boolean",
"required": false,
"readonly": false,
"displayable": false,
"is_password": false
}
}
}
}
},
"schema_version": "2.0"
}
| Task | Call | URL | Parameters | Response |
|---|---|---|---|---|
| Get the GUI Add form. | GET | /api/data/HcsDpDialPlanSchemaDAT/add/ |
|
The GUI Add form of data/HcsDpDialPlanSchemaDAT as JSON |
The API call to the /add/ URL can only be made from a hierarchy that allows the model type to be added. The actions in the response shows the url for the POST API call to create an instance.
| Task | Call | URL | Parameters | Payload |
|---|---|---|---|---|
| Create | POST | /api/data/HcsDpDialPlanSchemaDAT | hierarchy=[hierarchy] |
|
tool/Transaction/[trans pkid]to inspect the created resource and its instance pkid.
| Task | Call | URL | Parameters | Payload |
|---|---|---|---|---|
| Bulk delete [pkid1],[pkid2]... | DELETE | /api/data/HcsDpDialPlanSchemaDAT/ | hierarchy=[hierarchy] | {"hrefs":["/api/data/HcsDpDialPlanSchemaDAT/[pkid1]", "/api/data/HcsDpDialPlanSchemaDAT/[pkid2]", ...]} |
GET http://[host-proxy]/api/data/HcsDpDialPlanSchemaDAT/?hierarchy=[hierarchy]&format=json
| Task | Call | URL | Parameters | Payload |
|---|---|---|---|---|
| Get a selected [export_format] of the schema and instances [pkid1], [pkid2],... of data/HcsDpDialPlanSchemaDAT; optionally with tag_version at [version] and Configuration Template as [configtemplate]. | POST | /api/data/HcsDpDialPlanSchemaDAT/export/ |
|
{ "hrefs":["/api/data/HcsDpDialPlanSchemaDAT/[pkid1]", "/api/data/HcsDpDialPlanSchemaDAT/[pkid2]",...]}} |
For export_format=json, the response is a time stamped zip file of data in JSON as in the system database. Item properties such as strings that are empty or Boolean values that are not set, are not included. The filename in the response is of the format as the example:
Content-Disposition: attachment; filename=export_2013-05-17_14:20:19.186444.json.zip
Content-Language:en
Content-Type:application/x-zip
For export_format=raw_xlsx, the response is a MS Excel spreadsheet with columns corresponding to the JSON format export and a response filename format:
Content-Disposition: attachment; filename=<resource_type>_<resource_name>_exportedsheet_CCYY-MM-DD_HH-MM-SS.xlsx
Content-Language:en
Content-Type:application/vnd.openxmlformats-officedocument.spreadsheetml.sheet
For export_format=xlsx, the response is a MS Excel spreadsheet, arranged by any Field Display Policies that apply. The columns correspond with those of a Bulk Load Template export sheet. The response filename format is:
Content-Disposition: attachment; filename=<resource_type>_<resource_name>_exportedsheet_formatted_CCYY-MM-DD_HH-MM-SS.xlsx
Content-Language:en
Content-Type:application/vnd.openxmlformats-officedocument.spreadsheetml.sheet
The XLSX format can be used to bulk load instances of data/HcsDpDialPlanSchemaDAT and the JSON format can be used to import instances of data/HcsDpDialPlanSchemaDAT.
GET http://[host-proxy]/api/data/HcsDpDialPlanSchemaDAT/?hierarchy=[hierarchy]
| Task | Call | URL | Parameters | Response |
|---|---|---|---|---|
| Get a compressed format of the Bulk Load spreadsheet template for data/HcsDpDialPlanSchemaDAT | POST | /api/data/HcsDpDialPlanSchemaDAT/export_bulkload_template/ |
|
The response is an attachment of the format: filetype_bulkloadsheet.xlsx.gz |
| Task | Call | URL | Parameters | Response |
|---|---|---|---|---|
| List | GET | /api/data/HcsDpDialPlanSchemaDAT/ |
|
The data/HcsDpDialPlanSchemaDAT schema and all instances as JSON. |
(The list will return 0 to 3 data/HcsDpDialPlanSchemaDAT instances)
{
"pagination": {
"skip": 0,
"limit": 3,
"maximum_limit": 2000,
"total": 219,
"total_limit": null,
"order_by": "name",
"direction": "asc",
"current": "/api/data/HcsDpDialPlanSchemaDAT/?skip=0&limit=3&order_by=name&direction=asc&traversal=fulltree"
},
"operations": [
"export",
"help",
"update",
"migration",
"get",
"list",
"remove",
"move",
"configuration_template",
"add",
"export_bulkload_template",
"transform",
"bulk_update_form",
"field_display_policy"
],
"meta": {
"model_type": "data/HcsDpDialPlanSchemaDAT",
"summary_attrs": [
{
"name": "name",
"title": "Dial Plan Name"
},
{
"name": "hierarchy_friendly_name",
"title": "Located At",
"allow_filtering": true
}
],
"tagged_versions": [],
"tags": [],
"title": "",
"business_key": {
"unique": [
"name"
],
"hierarchy": true
},
"api_version": "21.2",
"cached": true,
"references": {
"children": [],
"parent": [
{
"href": "/api/data/HierarchyNode/6t0ggef2c0deab00hb595101",
"pkid": "6t0ggef2c0deab00hb595101"
}
],
"device": [
{
"href": "",
"pkid": ""
}
],
"foreign_key": []
},
"model_specific_actions": [
"get",
"list",
"add",
"update",
"remove",
"clone",
"help",
"export",
"export_bulkload_template",
"help"
],
"schema_version": "2.0",
"actions": [
{
"add": {
"method": "GET",
"class": "add",
"href": "/api/data/HcsDpDialPlanSchemaDAT/add/?hierarchy=[hierarchy]",
"support_async": false,
"title": "Add"
}
},
{
"remove": {
"method": "DELETE",
"class": "delete",
"href": "/api/data/HcsDpDialPlanSchemaDAT/?hierarchy=[hierarchy]",
"support_async": true,
"title": "Delete"
}
},
{
"export": {
"method": "POST",
"class": "export",
"href": "/api/data/HcsDpDialPlanSchemaDAT/export/?hierarchy=[hierarchy]",
"support_async": false,
"title": "Export",
"view": "/api/view/ExportData/add/?auth_token=[authtoken],
"submit": "payload"
}
},
{
"export_bulkload_template": {
"method": "POST",
"class": "bulkload_template",
"href": "/api/data/HcsDpDialPlanSchemaDAT/export_bulkload_template/?hierarchy=[hierarchy]",
"support_async": false,
"title": "Export Bulk Load Template"
}
},
{
"list": {
"method": "GET",
"class": "list",
"href": "/api/data/HcsDpDialPlanSchemaDAT/?hierarchy=[hierarchy]",
"support_async": false,
"title": "List"
}
},
{
"help": {
"method": "GET",
"class": "help",
"href": "/api/data/HcsDpDialPlanSchemaDAT/help?hierarchy=[hierarchy]",
"support_async": false,
"title": "Help"
}
}
]
},
"resources": [
{
"data": {
"cssArray": [
{
"usage": "General",
"isClassOfService": false,
"partitionMembers": [
{
"index": "1",
"partition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-LBRteSel-PT"
}
],
"name": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-LBRteSel-CSS",
"description": "{{macro.HcsDpUniqueCustomerPrefixMCR}} AAM_Group LB RteSel CSS"
},
{
"usage": "General",
"isClassOfService": false,
"partitionMembers": [
{
"index": "1",
"partition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-PreLBRteSel-PT"
}
],
"name": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-PreLBRteSel-CSS",
"description": "{{macro.HcsDpUniqueCustomerPrefixMCR}} AAM_Group PreLB RteSel CSS"
},
{
"usage": "General",
"isClassOfService": false,
"partitionMembers": [
{
"index": "1",
"partition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-DBRteSel-PT"
}
],
"name": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-DBRteSel-CSS",
"description": "{{macro.HcsDpUniqueCustomerPrefixMCR}} AAM_Group DB RteSel CSS"
}
],
"description": "AAM_Group DP for per Customer per Country per Cluster",
"routeListArray": [
{
"callManagerGroup": "{{ macro.DEFAULT_CUCM_GROUP }}",
"runOnEveryNode": true,
"description": "AAM_GroupDP International Route List",
"routeListEnabled": true,
"name": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupIntl-RL"
},
{
"callManagerGroup": "{{ macro.DEFAULT_CUCM_GROUP }}",
"runOnEveryNode": true,
"description": "AAM_GroupDP National Route List",
"routeListEnabled": true,
"name": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupNatl-RL"
},
{
"callManagerGroup": "{{ macro.DEFAULT_CUCM_GROUP }}",
"runOnEveryNode": true,
"description": "AAM_GroupDP Mobile Route List",
"routeListEnabled": true,
"name": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupMobl-RL"
},
{
"callManagerGroup": "{{ macro.DEFAULT_CUCM_GROUP }}",
"runOnEveryNode": true,
"description": "AAM_GroupDP Emergency Route List",
"routeListEnabled": true,
"name": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupEmer-RL"
},
{
"callManagerGroup": "{{ macro.DEFAULT_CUCM_GROUP }}",
"runOnEveryNode": true,
"description": "AAM_GroupDP Service Route List",
"routeListEnabled": true,
"name": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupServ-RL"
},
{
"callManagerGroup": "{{ macro.DEFAULT_CUCM_GROUP }}",
"runOnEveryNode": true,
"description": "AAM_GroupDP Local Route List",
"routeListEnabled": true,
"name": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupLocal-RL"
},
{
"callManagerGroup": "{{ macro.DEFAULT_CUCM_GROUP }}",
"runOnEveryNode": true,
"description": "AAM_GroupDP Premium Rate Service Route List",
"routeListEnabled": true,
"name": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupPRSN-RL"
},
{
"callManagerGroup": "{{ macro.DEFAULT_CUCM_GROUP }}",
"runOnEveryNode": true,
"description": "AAM_GroupDP TollFree Route List",
"routeListEnabled": true,
"name": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupFPHN-RL"
},
{
"callManagerGroup": "{{ macro.DEFAULT_CUCM_GROUP }}",
"runOnEveryNode": true,
"description": "AAM_GroupDP Personal Comm Service Route List",
"routeListEnabled": true,
"name": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupPCSN-RL"
},
{
"callManagerGroup": "{{ macro.DEFAULT_CUCM_GROUP }}",
"runOnEveryNode": true,
"description": "AAM_GroupDP Special Rate Service Route List",
"routeListEnabled": true,
"name": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupSRSN-RL"
},
{
"callManagerGroup": "{{ macro.DEFAULT_CUCM_GROUP }}",
"runOnEveryNode": true,
"description": "AAM_GroupDP Operator Service Route List",
"routeListEnabled": true,
"name": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupOper-RL"
},
{
"name": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupIntl-SLRG-RL",
"routeListEnabled": true,
"runOnEveryNode": true,
"callManagerGroup": "{{ macro.DEFAULT_CUCM_GROUP }}",
"members": [
{
"calledPartyDiscardDigits": "None",
"selectionOrder": "0",
"routeGroupName": "SLRG-Intl",
"useCallingPartyExternalPhoneNumMask": "Default"
}
],
"description": "AAM_GroupDP International Route List"
},
{
"name": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupNatl-SLRG-RL",
"routeListEnabled": true,
"runOnEveryNode": true,
"callManagerGroup": "{{ macro.DEFAULT_CUCM_GROUP }}",
"members": [
{
"calledPartyDiscardDigits": "None",
"selectionOrder": "0",
"routeGroupName": "SLRG-Natl",
"useCallingPartyExternalPhoneNumMask": "Default"
}
],
"description": "AAM_GroupDP National Route List"
},
{
"name": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupMobl-SLRG-RL",
"routeListEnabled": true,
"runOnEveryNode": true,
"callManagerGroup": "{{ macro.DEFAULT_CUCM_GROUP }}",
"members": [
{
"calledPartyDiscardDigits": "None",
"selectionOrder": "0",
"routeGroupName": "SLRG-Mobl",
"useCallingPartyExternalPhoneNumMask": "Default"
}
],
"description": "AAM_GroupDP Mobile Route List"
},
{
"name": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupEmer-SLRG-RL",
"routeListEnabled": true,
"runOnEveryNode": true,
"callManagerGroup": "{{ macro.DEFAULT_CUCM_GROUP }}",
"members": [
{
"calledPartyDiscardDigits": "None",
"selectionOrder": "0",
"routeGroupName": "SLRG-Emer",
"useCallingPartyExternalPhoneNumMask": "Default"
}
],
"description": "AAM_GroupDP Emergency Route List"
},
{
"name": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupServ-SLRG-RL",
"routeListEnabled": true,
"runOnEveryNode": true,
"callManagerGroup": "{{ macro.DEFAULT_CUCM_GROUP }}",
"members": [
{
"calledPartyDiscardDigits": "None",
"selectionOrder": "0",
"routeGroupName": "SLRG-Serv",
"useCallingPartyExternalPhoneNumMask": "Default"
}
],
"description": "AAM_GroupDP Service Route List"
},
{
"name": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupLocal-SLRG-RL",
"routeListEnabled": true,
"runOnEveryNode": true,
"callManagerGroup": "{{ macro.DEFAULT_CUCM_GROUP }}",
"members": [
{
"calledPartyDiscardDigits": "None",
"selectionOrder": "0",
"routeGroupName": "SLRG-Local",
"useCallingPartyExternalPhoneNumMask": "Default"
}
],
"description": "AAM_GroupDP Local Route List"
},
{
"name": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupPRSN-SLRG-RL",
"routeListEnabled": true,
"runOnEveryNode": true,
"callManagerGroup": "{{ macro.DEFAULT_CUCM_GROUP }}",
"members": [
{
"calledPartyDiscardDigits": "None",
"selectionOrder": "0",
"routeGroupName": "SLRG-PRSN",
"useCallingPartyExternalPhoneNumMask": "Default"
}
],
"description": "AAM_GroupDP Premium Rate Service Route List"
},
{
"name": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupFPHN-SLRG-RL",
"routeListEnabled": true,
"runOnEveryNode": true,
"callManagerGroup": "{{ macro.DEFAULT_CUCM_GROUP }}",
"members": [
{
"calledPartyDiscardDigits": "None",
"selectionOrder": "0",
"routeGroupName": "SLRG-FPHN",
"useCallingPartyExternalPhoneNumMask": "Default"
}
],
"description": "AAM_GroupDP TollFree Route List"
},
{
"name": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupPCSN-SLRG-RL",
"routeListEnabled": true,
"runOnEveryNode": true,
"callManagerGroup": "{{ macro.DEFAULT_CUCM_GROUP }}",
"members": [
{
"calledPartyDiscardDigits": "None",
"selectionOrder": "0",
"routeGroupName": "SLRG-PCSN",
"useCallingPartyExternalPhoneNumMask": "Default"
}
],
"description": "AAM_GroupDP Personal Comm Service Route List"
},
{
"name": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupSRSN-SLRG-RL",
"routeListEnabled": true,
"runOnEveryNode": true,
"callManagerGroup": "{{ macro.DEFAULT_CUCM_GROUP }}",
"members": [
{
"calledPartyDiscardDigits": "None",
"selectionOrder": "0",
"routeGroupName": "SLRG-SRSN",
"useCallingPartyExternalPhoneNumMask": "Default"
}
],
"description": "AAM_GroupDP Special Rate Service Route List"
},
{
"name": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupOper-SLRG-RL",
"routeListEnabled": true,
"runOnEveryNode": true,
"callManagerGroup": "{{ macro.DEFAULT_CUCM_GROUP }}",
"members": [
{
"calledPartyDiscardDigits": "None",
"selectionOrder": "0",
"routeGroupName": "SLRG-Oper",
"useCallingPartyExternalPhoneNumMask": "Default"
}
],
"description": "AAM_GroupDP Operator Service Route List"
}
],
"partitionArray": [
{
"timeSchedule": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AllDay-TSchd",
"name": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-Defn-PT",
"description": "{{macro.HcsDpUniqueCustomerPrefixMCR}} AAM_GroupDP Definition PT"
},
{
"timeSchedule": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AllDay-TSchd",
"name": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-LBRtg-PT",
"description": "{{macro.HcsDpUniqueCustomerPrefixMCR}} AAM_Group LB Rtg PT"
},
{
"timeSchedule": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AllDay-TSchd",
"name": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-PreLBRteSel-PT",
"description": "{{macro.HcsDpUniqueCustomerPrefixMCR}} AAM_Group PreLB RteSel PT"
},
{
"timeSchedule": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AllDay-TSchd",
"name": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-LBRteSel-PT",
"description": "{{macro.HcsDpUniqueCustomerPrefixMCR}} AAM_Group LB RteSel PT"
},
{
"timeSchedule": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AllDay-TSchd",
"name": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-DBRtg-PT",
"description": "{{macro.HcsDpUniqueCustomerPrefixMCR}} AAM_Group DB Rtg PT"
},
{
"timeSchedule": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AllDay-TSchd",
"name": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-PreDBRteSel-PT",
"description": "{{macro.HcsDpUniqueCustomerPrefixMCR}} AAM_Group PreDB RteSel PT"
},
{
"timeSchedule": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AllDay-TSchd",
"name": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-DBRteSel-PT",
"description": "{{macro.HcsDpUniqueCustomerPrefixMCR}} AAM_Group DB RteSel PT"
},
{
"timeSchedule": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AllDay-TSchd",
"name": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-CustSCode-PT",
"description": "{{macro.HcsDpUniqueCustomerPrefixMCR}} CustSCode-PT"
},
{
"timeSchedule": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AllDay-TSchd",
"name": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-GDPR-PT",
"description": "{{macro.HcsDpUniqueCustomerPrefixMCR}} GDPR-PT"
},
{
"timeSchedule": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AllDay-TSchd",
"name": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-Defn-PT",
"description": "{{macro.HcsDpUniqueCustomerPrefixMCR}} DP-Defn-PT"
},
{
"timeSchedule": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AllDay-TSchd",
"name": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ExtHrsCLIP-PT",
"description": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ExtHrsCLIP-PT"
},
{
"timeSchedule": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AllDay-TSchd",
"name": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ExtHrsCLIR-PT",
"description": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ExtHrsCLIR-PT"
}
],
"name": "AAM_Group Customer DP-V01",
"pkid": "5df0b5d1ce894e001275a185",
"translationPatternArray": [
{
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "AAM_Group LBRtg non LBO : no FAC no CMC",
"cgLinePresBit": "Default",
"useOrigCss": false,
"connNamePresBit": "Default",
"routeOption": "Route this pattern",
"connLinePresBit": "Default",
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyPrefixDigits": "**0",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-LBRtg-PT",
"cgNamePresBit": "Default",
"nextHopByCallingPtyNum": true,
"pattern": "\\+\\+06X0.!",
"noWaitInterdigitTimeoutSubseqHops": true,
"urgentPriority": true,
"releaseClause": "No Error",
"css": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-PreLBRteSel-CSS"
},
{
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "AAM_Group LBRtg non LBO : FAC no CMC",
"cgLinePresBit": "Default",
"useOrigCss": false,
"connNamePresBit": "Default",
"routeOption": "Route this pattern",
"connLinePresBit": "Default",
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyPrefixDigits": "**1",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-LBRtg-PT",
"cgNamePresBit": "Default",
"nextHopByCallingPtyNum": true,
"pattern": "\\+\\+06X1.!",
"noWaitInterdigitTimeoutSubseqHops": true,
"urgentPriority": true,
"releaseClause": "No Error",
"css": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-PreLBRteSel-CSS"
},
{
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "AAM_Group LBRtg non LBO : no FAC CMC",
"cgLinePresBit": "Default",
"useOrigCss": false,
"connNamePresBit": "Default",
"routeOption": "Route this pattern",
"connLinePresBit": "Default",
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyPrefixDigits": "**2",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-LBRtg-PT",
"cgNamePresBit": "Default",
"nextHopByCallingPtyNum": true,
"pattern": "\\+\\+06X2.!",
"noWaitInterdigitTimeoutSubseqHops": true,
"urgentPriority": true,
"releaseClause": "No Error",
"css": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-PreLBRteSel-CSS"
},
{
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "AAM_Group LBRtg non LBO : FAC CMC",
"cgLinePresBit": "Default",
"useOrigCss": false,
"connNamePresBit": "Default",
"routeOption": "Route this pattern",
"connLinePresBit": "Default",
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyPrefixDigits": "**3",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-LBRtg-PT",
"cgNamePresBit": "Default",
"nextHopByCallingPtyNum": true,
"pattern": "\\+\\+06X3.!",
"noWaitInterdigitTimeoutSubseqHops": true,
"urgentPriority": true,
"releaseClause": "No Error",
"css": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-PreLBRteSel-CSS"
},
{
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "AAM_Group DBRtg nonLBO : no FAC no CMC",
"cgLinePresBit": "Default",
"useOrigCss": true,
"connNamePresBit": "Default",
"routeOption": "Route this pattern",
"connLinePresBit": "Default",
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyPrefixDigits": "**0",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-DBRtg-PT",
"cgNamePresBit": "Default",
"nextHopByCallingPtyNum": true,
"pattern": "\\+\\+06X0.!",
"noWaitInterdigitTimeoutSubseqHops": true,
"urgentPriority": true,
"releaseClause": "No Error"
},
{
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "AAM_Group DBRtg nonLBO : FAC no CMC",
"cgLinePresBit": "Default",
"useOrigCss": true,
"connNamePresBit": "Default",
"routeOption": "Route this pattern",
"connLinePresBit": "Default",
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyPrefixDigits": "**1",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-DBRtg-PT",
"cgNamePresBit": "Default",
"nextHopByCallingPtyNum": true,
"pattern": "\\+\\+06X1.!",
"noWaitInterdigitTimeoutSubseqHops": true,
"urgentPriority": true,
"releaseClause": "No Error"
},
{
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "AAM_Group DBRtg nonLBO : CMC no FAC",
"cgLinePresBit": "Default",
"useOrigCss": true,
"connNamePresBit": "Default",
"routeOption": "Route this pattern",
"connLinePresBit": "Default",
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyPrefixDigits": "**2",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-DBRtg-PT",
"cgNamePresBit": "Default",
"nextHopByCallingPtyNum": true,
"pattern": "\\+\\+06X2.!",
"noWaitInterdigitTimeoutSubseqHops": true,
"urgentPriority": true,
"releaseClause": "No Error"
},
{
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "AAM_Group DBRtg nonLBO : CMC FAC",
"cgLinePresBit": "Default",
"useOrigCss": true,
"connNamePresBit": "Default",
"routeOption": "Route this pattern",
"connLinePresBit": "Default",
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyPrefixDigits": "**3",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-DBRtg-PT",
"cgNamePresBit": "Default",
"nextHopByCallingPtyNum": true,
"pattern": "\\+\\+06X3.!",
"noWaitInterdigitTimeoutSubseqHops": true,
"urgentPriority": true,
"releaseClause": "No Error"
},
{
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "AAM_Group DBRtg nonLBO SVC Call - no FAC no CMC",
"cgLinePresBit": "Default",
"useOrigCss": true,
"connNamePresBit": "Default",
"routeOption": "Route this pattern",
"connLinePresBit": "Default",
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyPrefixDigits": "**00527",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-DBRtg-PT",
"cgNamePresBit": "Default",
"nextHopByCallingPtyNum": true,
"pattern": "\\+\\+06X005.!",
"noWaitInterdigitTimeoutSubseqHops": true,
"urgentPriority": true,
"releaseClause": "No Error"
},
{
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "AAM_Group DBRtg nonLBO SVC Call - FAC no CMC",
"cgLinePresBit": "Default",
"useOrigCss": true,
"connNamePresBit": "Default",
"routeOption": "Route this pattern",
"connLinePresBit": "Default",
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyPrefixDigits": "**10527",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-DBRtg-PT",
"cgNamePresBit": "Default",
"nextHopByCallingPtyNum": true,
"pattern": "\\+\\+06X105.!",
"noWaitInterdigitTimeoutSubseqHops": true,
"urgentPriority": true,
"releaseClause": "No Error"
},
{
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "AAM_Group DBRtg nonLBO SVC Call - CMC no FAC",
"cgLinePresBit": "Default",
"useOrigCss": true,
"connNamePresBit": "Default",
"routeOption": "Route this pattern",
"connLinePresBit": "Default",
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyPrefixDigits": "**20527",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-DBRtg-PT",
"cgNamePresBit": "Default",
"nextHopByCallingPtyNum": true,
"pattern": "\\+\\+06X205.!",
"noWaitInterdigitTimeoutSubseqHops": true,
"urgentPriority": true,
"releaseClause": "No Error"
},
{
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "AAM_Group DBRtg nonLBO SVC Call - CMC FAC",
"cgLinePresBit": "Default",
"useOrigCss": true,
"connNamePresBit": "Default",
"routeOption": "Route this pattern",
"connLinePresBit": "Default",
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyPrefixDigits": "**30527",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-DBRtg-PT",
"cgNamePresBit": "Default",
"nextHopByCallingPtyNum": true,
"pattern": "\\+\\+06X305.!",
"noWaitInterdigitTimeoutSubseqHops": true,
"urgentPriority": true,
"releaseClause": "No Error"
},
{
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "AAM_Group DBRtg non LBO Oper Call - no FAC no CMC",
"cgLinePresBit": "Default",
"useOrigCss": true,
"connNamePresBit": "Default",
"routeOption": "Route this pattern",
"connLinePresBit": "Default",
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyPrefixDigits": "**01127",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-DBRtg-PT",
"cgNamePresBit": "Default",
"nextHopByCallingPtyNum": true,
"pattern": "\\+\\+06X011.!",
"noWaitInterdigitTimeoutSubseqHops": true,
"urgentPriority": true,
"releaseClause": "No Error"
},
{
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "AAM_Group DBRtg non LBO Oper Call - FAC no CMC",
"cgLinePresBit": "Default",
"useOrigCss": true,
"connNamePresBit": "Default",
"routeOption": "Route this pattern",
"connLinePresBit": "Default",
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyPrefixDigits": "**11127",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-DBRtg-PT",
"cgNamePresBit": "Default",
"nextHopByCallingPtyNum": true,
"pattern": "\\+\\+06X111.!",
"noWaitInterdigitTimeoutSubseqHops": true,
"urgentPriority": true,
"releaseClause": "No Error"
},
{
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "Cntr DBRtg non LBO Oper Call - CMC no FAC",
"cgLinePresBit": "Default",
"useOrigCss": true,
"connNamePresBit": "Default",
"routeOption": "Route this pattern",
"connLinePresBit": "Default",
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyPrefixDigits": "**21127",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-DBRtg-PT",
"cgNamePresBit": "Default",
"nextHopByCallingPtyNum": true,
"pattern": "\\+\\+06X211.!",
"noWaitInterdigitTimeoutSubseqHops": true,
"urgentPriority": true,
"releaseClause": "No Error"
},
{
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "AAM_Group DBRtg non LBO Oper Call - CMC no FAC",
"cgLinePresBit": "Default",
"useOrigCss": true,
"connNamePresBit": "Default",
"routeOption": "Route this pattern",
"connLinePresBit": "Default",
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyPrefixDigits": "**31127",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-DBRtg-PT",
"cgNamePresBit": "Default",
"nextHopByCallingPtyNum": true,
"pattern": "\\+\\+06X311.!",
"noWaitInterdigitTimeoutSubseqHops": true,
"urgentPriority": true,
"releaseClause": "No Error"
},
{
"calledPartyDiscardDigits": "None",
"provideOutsideDialTone": false,
"description": "AAM_Group - FE Security for LBRteSel",
"cgLinePresBit": "Default",
"connNamePresBit": "Default",
"cgNamePresBit": "Default",
"routeOption": "Route this pattern",
"connLinePresBit": "Default",
"useCallingPartyExternalPhoneNumMask": false,
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-PreLBRteSel-PT",
"pattern": "\\+*\\+*!",
"nextHopByCallingPtyNum": false,
"useOrigCss": false,
"noWaitInterdigitTimeoutSubseqHops": true,
"urgentPriority": true,
"releaseClause": "No Error",
"css": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-LBRteSel-CSS"
},
{
"calledPartyDiscardDigits": "None",
"provideOutsideDialTone": false,
"description": "AAM_Group - FE Security for DBRteSel",
"cgLinePresBit": "Default",
"connNamePresBit": "Default",
"cgNamePresBit": "Default",
"routeOption": "Route this pattern",
"connLinePresBit": "Default",
"useCallingPartyExternalPhoneNumMask": false,
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-PreDBRteSel-PT",
"pattern": "\\+*\\+*!",
"nextHopByCallingPtyNum": false,
"useOrigCss": false,
"noWaitInterdigitTimeoutSubseqHops": true,
"urgentPriority": true,
"releaseClause": "No Error",
"css": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-DBRteSel-CSS"
},
{
"calledPartyDiscardDigits": "None",
"provideOutsideDialTone": false,
"description": "AAM_Group - FE Security for LBRteSel",
"cgLinePresBit": "Default",
"connNamePresBit": "Default",
"cgNamePresBit": "Default",
"routeOption": "Route this pattern",
"connLinePresBit": "Default",
"useCallingPartyExternalPhoneNumMask": false,
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-PreLBRteSel-PT",
"pattern": "\\+*\\+*\\+!",
"nextHopByCallingPtyNum": false,
"useOrigCss": false,
"noWaitInterdigitTimeoutSubseqHops": true,
"urgentPriority": true,
"releaseClause": "No Error",
"css": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-LBRteSel-CSS"
},
{
"calledPartyDiscardDigits": "None",
"provideOutsideDialTone": false,
"description": "AAM_Group - FE Security for DBRteSel",
"cgLinePresBit": "Default",
"connNamePresBit": "Default",
"cgNamePresBit": "Default",
"routeOption": "Route this pattern",
"connLinePresBit": "Default",
"useCallingPartyExternalPhoneNumMask": false,
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-PreDBRteSel-PT",
"pattern": "\\+*\\+*\\+!",
"nextHopByCallingPtyNum": false,
"useOrigCss": false,
"noWaitInterdigitTimeoutSubseqHops": true,
"urgentPriority": true,
"releaseClause": "No Error",
"css": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-DBRteSel-CSS"
},
{
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "Intl Dialing",
"cgLinePresBit": "Default",
"useOrigCss": true,
"connNamePresBit": "Default",
"routeOption": "Route this pattern",
"connLinePresBit": "Default",
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyPrefixDigits": "++01001",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-Defn-PT",
"cgNamePresBit": "Default",
"nextHopByCallingPtyNum": false,
"pattern": "{{macro.HcsDpPstnBreakout}}00.[^0]!",
"noWaitInterdigitTimeoutSubseqHops": true,
"urgentPriority": false,
"releaseClause": "No Error"
},
{
"calledPartyDiscardDigits": "PreDot Trailing-#",
"provideOutsideDialTone": false,
"description": "Intl Dialing",
"cgLinePresBit": "Default",
"useOrigCss": true,
"connNamePresBit": "Default",
"routeOption": "Route this pattern",
"connLinePresBit": "Default",
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyPrefixDigits": "++01001",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-Defn-PT",
"cgNamePresBit": "Default",
"nextHopByCallingPtyNum": false,
"pattern": "{{macro.HcsDpPstnBreakout}}00.[^0]!#",
"noWaitInterdigitTimeoutSubseqHops": true,
"urgentPriority": false,
"releaseClause": "No Error"
},
{
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "Intl Dialing",
"cgLinePresBit": "Default",
"useOrigCss": true,
"connNamePresBit": "Default",
"routeOption": "Route this pattern",
"connLinePresBit": "Default",
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyPrefixDigits": "{{macro.HcsDpPstnBreakout}}0",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-Defn-PT",
"cgNamePresBit": "Default",
"nextHopByCallingPtyNum": false,
"pattern": "{{macro.HcsDpPstnBreakout}}0027.[^0]!",
"noWaitInterdigitTimeoutSubseqHops": true,
"urgentPriority": false,
"releaseClause": "No Error"
},
{
"calledPartyDiscardDigits": "PreDot Trailing-#",
"provideOutsideDialTone": false,
"description": "Intl Dialing",
"cgLinePresBit": "Default",
"useOrigCss": true,
"connNamePresBit": "Default",
"routeOption": "Route this pattern",
"connLinePresBit": "Default",
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyPrefixDigits": "{{macro.HcsDpPstnBreakout}}0",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-Defn-PT",
"cgNamePresBit": "Default",
"nextHopByCallingPtyNum": false,
"pattern": "{{macro.HcsDpPstnBreakout}}0027.[^0]!#",
"noWaitInterdigitTimeoutSubseqHops": true,
"urgentPriority": false,
"releaseClause": "No Error"
},
{
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "Intl dialing without #",
"cgLinePresBit": "Default",
"useOrigCss": true,
"connNamePresBit": "Default",
"routeOption": "Route this pattern",
"connLinePresBit": "Default",
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyPrefixDigits": "++01001",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-Defn-PT",
"cgNamePresBit": "Default",
"nextHopByCallingPtyNum": false,
"pattern": "\\+.[^02]!",
"noWaitInterdigitTimeoutSubseqHops": true,
"urgentPriority": false,
"releaseClause": "No Error"
},
{
"calledPartyDiscardDigits": "PreDot Trailing-#",
"provideOutsideDialTone": false,
"description": "Intl dialing with #",
"cgLinePresBit": "Default",
"useOrigCss": true,
"connNamePresBit": "Default",
"routeOption": "Route this pattern",
"connLinePresBit": "Default",
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyPrefixDigits": "++01001",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-Defn-PT",
"cgNamePresBit": "Default",
"nextHopByCallingPtyNum": false,
"pattern": "\\+.[^02]!#",
"noWaitInterdigitTimeoutSubseqHops": true,
"urgentPriority": false,
"releaseClause": "No Error"
},
{
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "Intl dialing without #",
"cgLinePresBit": "Default",
"useOrigCss": true,
"connNamePresBit": "Default",
"routeOption": "Route this pattern",
"connLinePresBit": "Default",
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyPrefixDigits": "++01001",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-Defn-PT",
"cgNamePresBit": "Default",
"nextHopByCallingPtyNum": false,
"pattern": "\\+.2[^7]!",
"noWaitInterdigitTimeoutSubseqHops": true,
"urgentPriority": false,
"releaseClause": "No Error"
},
{
"calledPartyDiscardDigits": "PreDot Trailing-#",
"provideOutsideDialTone": false,
"description": "Intl dialing with #",
"cgLinePresBit": "Default",
"useOrigCss": true,
"connNamePresBit": "Default",
"routeOption": "Route this pattern",
"connLinePresBit": "Default",
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyPrefixDigits": "++01001",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-Defn-PT",
"cgNamePresBit": "Default",
"nextHopByCallingPtyNum": false,
"pattern": "\\+.2[^7]!#",
"noWaitInterdigitTimeoutSubseqHops": true,
"urgentPriority": false,
"releaseClause": "No Error"
},
{
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "National Dialing",
"cgLinePresBit": "Default",
"useOrigCss": true,
"connNamePresBit": "Default",
"routeOption": "Route this pattern",
"connLinePresBit": "Default",
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyPrefixDigits": "++0100227",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-Defn-PT",
"cgNamePresBit": "Default",
"nextHopByCallingPtyNum": false,
"pattern": "{{macro.HcsDpPstnBreakout}}0.[1-5]XXXXXXXX",
"noWaitInterdigitTimeoutSubseqHops": true,
"urgentPriority": false,
"releaseClause": "No Error"
},
{
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "Inbound, VoIP and Pagers",
"cgLinePresBit": "Default",
"useOrigCss": true,
"connNamePresBit": "Default",
"routeOption": "Route this pattern",
"connLinePresBit": "Default",
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyPrefixDigits": "++0100227",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-Defn-PT",
"cgNamePresBit": "Default",
"nextHopByCallingPtyNum": false,
"pattern": "{{macro.HcsDpPstnBreakout}}0.8[6-8]XXXXXXX",
"noWaitInterdigitTimeoutSubseqHops": true,
"urgentPriority": false,
"releaseClause": "No Error"
},
{
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "National Plus Dialing",
"cgLinePresBit": "Default",
"useOrigCss": true,
"connNamePresBit": "Default",
"routeOption": "Route this pattern",
"connLinePresBit": "Default",
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyPrefixDigits": "++0100227",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-Defn-PT",
"cgNamePresBit": "Default",
"nextHopByCallingPtyNum": false,
"pattern": "\\+27.[1-5]XXXXXXXX",
"noWaitInterdigitTimeoutSubseqHops": true,
"urgentPriority": false,
"releaseClause": "No Error"
},
{
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "Inbound, VoIP and Pagers",
"cgLinePresBit": "Default",
"useOrigCss": true,
"connNamePresBit": "Default",
"routeOption": "Route this pattern",
"connLinePresBit": "Default",
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyPrefixDigits": "++0100227",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-Defn-PT",
"cgNamePresBit": "Default",
"nextHopByCallingPtyNum": false,
"pattern": "\\+27.8[6-8]XXXXXXX",
"noWaitInterdigitTimeoutSubseqHops": true,
"urgentPriority": false,
"releaseClause": "No Error"
},
{
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "Mobile Numbers",
"cgLinePresBit": "Default",
"useOrigCss": true,
"connNamePresBit": "Default",
"routeOption": "Route this pattern",
"connLinePresBit": "Default",
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyPrefixDigits": "++0100327",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-Defn-PT",
"cgNamePresBit": "Default",
"nextHopByCallingPtyNum": false,
"pattern": "{{macro.HcsDpPstnBreakout}}0.6[0-5]XXXXXXX",
"noWaitInterdigitTimeoutSubseqHops": true,
"urgentPriority": false,
"releaseClause": "No Error"
},
{
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "Mobile Numbers",
"cgLinePresBit": "Default",
"useOrigCss": true,
"connNamePresBit": "Default",
"routeOption": "Route this pattern",
"connLinePresBit": "Default",
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyPrefixDigits": "++0100327",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-Defn-PT",
"cgNamePresBit": "Default",
"nextHopByCallingPtyNum": false,
"pattern": "{{macro.HcsDpPstnBreakout}}0.7[^5]XXXXXXX",
"noWaitInterdigitTimeoutSubseqHops": true,
"urgentPriority": false,
"releaseClause": "No Error"
},
{
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "Mobile Numbers",
"cgLinePresBit": "Default",
"useOrigCss": true,
"connNamePresBit": "Default",
"routeOption": "Route this pattern",
"connLinePresBit": "Default",
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyPrefixDigits": "++0100327",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-Defn-PT",
"cgNamePresBit": "Default",
"nextHopByCallingPtyNum": false,
"pattern": "{{macro.HcsDpPstnBreakout}}0.8[1-4]XXXXXXX",
"noWaitInterdigitTimeoutSubseqHops": true,
"urgentPriority": false,
"releaseClause": "No Error"
},
{
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "14D M2M Mobile Numbers",
"cgLinePresBit": "Default",
"useOrigCss": true,
"connNamePresBit": "Default",
"routeOption": "Route this pattern",
"connLinePresBit": "Default",
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyPrefixDigits": "++0100327",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-Defn-PT",
"cgNamePresBit": "Default",
"nextHopByCallingPtyNum": false,
"pattern": "{{macro.HcsDpPstnBreakout}}0.9[6-8]XXXXXXXXXXX",
"noWaitInterdigitTimeoutSubseqHops": true,
"urgentPriority": false,
"releaseClause": "No Error"
},
{
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "Mobile Plus Dialing",
"cgLinePresBit": "Default",
"useOrigCss": true,
"connNamePresBit": "Default",
"routeOption": "Route this pattern",
"connLinePresBit": "Default",
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyPrefixDigits": "++0100327",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-Defn-PT",
"cgNamePresBit": "Default",
"nextHopByCallingPtyNum": false,
"pattern": "\\+27.6[0-5]XXXXXXX",
"noWaitInterdigitTimeoutSubseqHops": true,
"urgentPriority": false,
"releaseClause": "No Error"
},
{
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "Mobile Plus Dialing",
"cgLinePresBit": "Default",
"useOrigCss": true,
"connNamePresBit": "Default",
"routeOption": "Route this pattern",
"connLinePresBit": "Default",
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyPrefixDigits": "++0100327",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-Defn-PT",
"cgNamePresBit": "Default",
"nextHopByCallingPtyNum": false,
"pattern": "\\+27.7[^5]XXXXXXX",
"noWaitInterdigitTimeoutSubseqHops": true,
"urgentPriority": false,
"releaseClause": "No Error"
},
{
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "Mobile Plus Dialing",
"cgLinePresBit": "Default",
"useOrigCss": true,
"connNamePresBit": "Default",
"routeOption": "Route this pattern",
"connLinePresBit": "Default",
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyPrefixDigits": "++0100327",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-Defn-PT",
"cgNamePresBit": "Default",
"nextHopByCallingPtyNum": false,
"pattern": "\\+27.8[1-4]XXXXXXX",
"noWaitInterdigitTimeoutSubseqHops": true,
"urgentPriority": false,
"releaseClause": "No Error"
},
{
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "Mobile Plus Dialing",
"cgLinePresBit": "Default",
"useOrigCss": true,
"connNamePresBit": "Default",
"routeOption": "Route this pattern",
"connLinePresBit": "Default",
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyPrefixDigits": "++0100327",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-Defn-PT",
"cgNamePresBit": "Default",
"nextHopByCallingPtyNum": false,
"pattern": "\\+27.9[6-8]XXXXXXXXXXX",
"noWaitInterdigitTimeoutSubseqHops": true,
"urgentPriority": false,
"releaseClause": "No Error"
},
{
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "Service Numbers",
"cgLinePresBit": "Default",
"useOrigCss": true,
"connNamePresBit": "Default",
"routeOption": "Route this pattern",
"connLinePresBit": "Default",
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyPrefixDigits": "++01005",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-Defn-PT",
"cgNamePresBit": "Default",
"nextHopByCallingPtyNum": false,
"pattern": "{{macro.HcsDpPstnBreakout}}.10XX",
"noWaitInterdigitTimeoutSubseqHops": true,
"urgentPriority": false,
"releaseClause": "No Error"
},
{
"calledPartyDiscardDigits": "PreDot Trailing-#",
"provideOutsideDialTone": false,
"description": "Service Numbers",
"cgLinePresBit": "Default",
"useOrigCss": true,
"connNamePresBit": "Default",
"routeOption": "Route this pattern",
"connLinePresBit": "Default",
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyPrefixDigits": "++01005",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-Defn-PT",
"cgNamePresBit": "Default",
"nextHopByCallingPtyNum": false,
"pattern": "{{macro.HcsDpPstnBreakout}}.10XX#",
"noWaitInterdigitTimeoutSubseqHops": true,
"urgentPriority": false,
"releaseClause": "No Error"
},
{
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "Service Numbers",
"cgLinePresBit": "Default",
"useOrigCss": true,
"connNamePresBit": "Default",
"routeOption": "Route this pattern",
"connLinePresBit": "Default",
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyPrefixDigits": "++01005",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-Defn-PT",
"cgNamePresBit": "Default",
"nextHopByCallingPtyNum": false,
"pattern": "{{macro.HcsDpPstnBreakout}}.10XXX",
"noWaitInterdigitTimeoutSubseqHops": true,
"urgentPriority": false,
"releaseClause": "No Error"
},
{
"calledPartyDiscardDigits": "PreDot Trailing-#",
"provideOutsideDialTone": false,
"description": "Service Numbers",
"cgLinePresBit": "Default",
"useOrigCss": true,
"connNamePresBit": "Default",
"routeOption": "Route this pattern",
"connLinePresBit": "Default",
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyPrefixDigits": "++01005",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-Defn-PT",
"cgNamePresBit": "Default",
"nextHopByCallingPtyNum": false,
"pattern": "{{macro.HcsDpPstnBreakout}}.10XXX#",
"noWaitInterdigitTimeoutSubseqHops": true,
"urgentPriority": false,
"releaseClause": "No Error"
},
{
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "Government services - Provincial offices",
"cgLinePresBit": "Default",
"useOrigCss": true,
"connNamePresBit": "Default",
"routeOption": "Route this pattern",
"connLinePresBit": "Default",
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyPrefixDigits": "++01005",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-Defn-PT",
"cgNamePresBit": "Default",
"nextHopByCallingPtyNum": false,
"pattern": "{{macro.HcsDpPstnBreakout}}.17737",
"noWaitInterdigitTimeoutSubseqHops": true,
"urgentPriority": false,
"releaseClause": "No Error"
},
{
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "Service Numbers",
"cgLinePresBit": "Default",
"useOrigCss": true,
"connNamePresBit": "Default",
"routeOption": "Route this pattern",
"connLinePresBit": "Default",
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyPrefixDigits": "++01005",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-Defn-PT",
"cgNamePresBit": "Default",
"nextHopByCallingPtyNum": false,
"pattern": "{{macro.HcsDpPstnBreakout}}.1[0-4]!",
"noWaitInterdigitTimeoutSubseqHops": true,
"urgentPriority": false,
"releaseClause": "No Error"
},
{
"calledPartyDiscardDigits": "PreDot Trailing-#",
"provideOutsideDialTone": false,
"description": "Service Numbers",
"cgLinePresBit": "Default",
"useOrigCss": true,
"connNamePresBit": "Default",
"routeOption": "Route this pattern",
"connLinePresBit": "Default",
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyPrefixDigits": "++01005",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-Defn-PT",
"cgNamePresBit": "Default",
"nextHopByCallingPtyNum": false,
"pattern": "{{macro.HcsDpPstnBreakout}}.1[0-4]!#",
"noWaitInterdigitTimeoutSubseqHops": true,
"urgentPriority": false,
"releaseClause": "No Error"
},
{
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "Service Numbers",
"cgLinePresBit": "Default",
"useOrigCss": true,
"connNamePresBit": "Default",
"routeOption": "Route this pattern",
"connLinePresBit": "Default",
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyPrefixDigits": "++01005",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-Defn-PT",
"cgNamePresBit": "Default",
"nextHopByCallingPtyNum": false,
"pattern": "{{macro.HcsDpPstnBreakout}}.8[1-4]!",
"noWaitInterdigitTimeoutSubseqHops": true,
"urgentPriority": false,
"releaseClause": "No Error"
},
{
"calledPartyDiscardDigits": "PreDot Trailing-#",
"provideOutsideDialTone": false,
"description": "Service Numbers",
"cgLinePresBit": "Default",
"useOrigCss": true,
"connNamePresBit": "Default",
"routeOption": "Route this pattern",
"connLinePresBit": "Default",
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyPrefixDigits": "++01005",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-Defn-PT",
"cgNamePresBit": "Default",
"nextHopByCallingPtyNum": false,
"pattern": "{{macro.HcsDpPstnBreakout}}.8[1-4]!#",
"noWaitInterdigitTimeoutSubseqHops": true,
"urgentPriority": false,
"releaseClause": "No Error"
},
{
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "Service Numbers",
"cgLinePresBit": "Default",
"useOrigCss": true,
"connNamePresBit": "Default",
"routeOption": "Route this pattern",
"connLinePresBit": "Default",
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyPrefixDigits": "++01005",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-Defn-PT",
"cgNamePresBit": "Default",
"nextHopByCallingPtyNum": false,
"pattern": "{{macro.HcsDpPstnBreakout}}.[34]XXXX!",
"noWaitInterdigitTimeoutSubseqHops": true,
"urgentPriority": false,
"releaseClause": "No Error"
},
{
"calledPartyDiscardDigits": "PreDot Trailing-#",
"provideOutsideDialTone": false,
"description": "Service Numbers",
"cgLinePresBit": "Default",
"useOrigCss": true,
"connNamePresBit": "Default",
"routeOption": "Route this pattern",
"connLinePresBit": "Default",
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyPrefixDigits": "++01005",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-Defn-PT",
"cgNamePresBit": "Default",
"nextHopByCallingPtyNum": false,
"pattern": "{{macro.HcsDpPstnBreakout}}.[34]XXXX!#",
"noWaitInterdigitTimeoutSubseqHops": true,
"urgentPriority": false,
"releaseClause": "No Error"
},
{
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "Premium Rate",
"cgLinePresBit": "Default",
"useOrigCss": true,
"connNamePresBit": "Default",
"routeOption": "Route this pattern",
"connLinePresBit": "Default",
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyPrefixDigits": "++0100727",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-Defn-PT",
"cgNamePresBit": "Default",
"nextHopByCallingPtyNum": false,
"pattern": "{{macro.HcsDpPstnBreakout}}0.9[0-5]XXXXXXX",
"noWaitInterdigitTimeoutSubseqHops": true,
"urgentPriority": false,
"releaseClause": "No Error"
},
{
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "Premium Rate",
"cgLinePresBit": "Default",
"useOrigCss": true,
"connNamePresBit": "Default",
"routeOption": "Route this pattern",
"connLinePresBit": "Default",
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyPrefixDigits": "++0100727",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-Defn-PT",
"cgNamePresBit": "Default",
"nextHopByCallingPtyNum": false,
"pattern": "{{macro.HcsDpPstnBreakout}}0.86[2-9]XXXXXX",
"noWaitInterdigitTimeoutSubseqHops": true,
"urgentPriority": false,
"releaseClause": "No Error"
},
{
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "Premium Rate",
"cgLinePresBit": "Default",
"useOrigCss": true,
"connNamePresBit": "Default",
"routeOption": "Route this pattern",
"connLinePresBit": "Default",
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyPrefixDigits": "++0100727",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-Defn-PT",
"cgNamePresBit": "Default",
"nextHopByCallingPtyNum": false,
"pattern": "{{macro.HcsDpPstnBreakout}}0.89XXXXXXX",
"noWaitInterdigitTimeoutSubseqHops": true,
"urgentPriority": false,
"releaseClause": "No Error"
},
{
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "Premium Rate",
"cgLinePresBit": "Default",
"useOrigCss": true,
"connNamePresBit": "Default",
"routeOption": "Route this pattern",
"connLinePresBit": "Default",
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyPrefixDigits": "++0100727",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-Defn-PT",
"cgNamePresBit": "Default",
"nextHopByCallingPtyNum": false,
"pattern": "\\+27.9[0-5]XXXXXXX",
"noWaitInterdigitTimeoutSubseqHops": true,
"urgentPriority": false,
"releaseClause": "No Error"
},
{
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "Premium Rate",
"cgLinePresBit": "Default",
"useOrigCss": true,
"connNamePresBit": "Default",
"routeOption": "Route this pattern",
"connLinePresBit": "Default",
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyPrefixDigits": "++0100727",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-Defn-PT",
"cgNamePresBit": "Default",
"nextHopByCallingPtyNum": false,
"pattern": "\\+27.86[2-9]XXXXXX",
"noWaitInterdigitTimeoutSubseqHops": true,
"urgentPriority": false,
"releaseClause": "No Error"
},
{
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "Premium Rate",
"cgLinePresBit": "Default",
"useOrigCss": true,
"connNamePresBit": "Default",
"routeOption": "Route this pattern",
"connLinePresBit": "Default",
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyPrefixDigits": "++0100727",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-Defn-PT",
"cgNamePresBit": "Default",
"nextHopByCallingPtyNum": false,
"pattern": "\\+27.89XXXXXXX",
"noWaitInterdigitTimeoutSubseqHops": true,
"urgentPriority": false,
"releaseClause": "No Error"
},
{
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "Freephone Pattern",
"cgLinePresBit": "Default",
"useOrigCss": true,
"connNamePresBit": "Default",
"routeOption": "Route this pattern",
"connLinePresBit": "Default",
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyPrefixDigits": "++0100827",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-Defn-PT",
"cgNamePresBit": "Default",
"nextHopByCallingPtyNum": false,
"pattern": "{{macro.HcsDpPstnBreakout}}0.80XXXXXXX",
"noWaitInterdigitTimeoutSubseqHops": true,
"urgentPriority": false,
"releaseClause": "No Error"
},
{
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "Freephone Pattern",
"cgLinePresBit": "Default",
"useOrigCss": true,
"connNamePresBit": "Default",
"routeOption": "Route this pattern",
"connLinePresBit": "Default",
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyPrefixDigits": "++0100827",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-Defn-PT",
"cgNamePresBit": "Default",
"nextHopByCallingPtyNum": false,
"pattern": "\\+27.80XXXXXXX",
"noWaitInterdigitTimeoutSubseqHops": true,
"urgentPriority": false,
"releaseClause": "No Error"
}
],
"routePatternArray": [
{
"provideOutsideDialTone": false,
"reqClientMatterCode": false,
"reqForcedAuthCode": false,
"releaseClause": "No Error",
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"pattern": "**001.!",
"patternPrecedence": "Default",
"routeOption": "Route this pattern",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-LBRteSel-PT",
"authLevel": "0",
"description": "AAM_Group Intl Call Type - no FAC no CMC",
"calledPartyPrefixDigits": "+",
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupIntl-RL",
"cgLinePresBit": "Default",
"connNamePresBit": "Default",
"callClassification": "OffNet",
"allowDeviceOverride": false,
"useCallingPartyExternalPhoneNumMask": false,
"cgNamePresBit": "Default",
"connLinePresBit": "Default",
"urgentPriority": true
},
{
"provideOutsideDialTone": false,
"reqClientMatterCode": false,
"reqForcedAuthCode": true,
"releaseClause": "No Error",
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"pattern": "**101.!",
"patternPrecedence": "Default",
"routeOption": "Route this pattern",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-LBRteSel-PT",
"authLevel": "10",
"description": "AAM_Group Intl Call Type - FAC no CMC",
"calledPartyPrefixDigits": "+",
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupIntl-RL",
"cgLinePresBit": "Default",
"connNamePresBit": "Default",
"callClassification": "OffNet",
"allowDeviceOverride": false,
"useCallingPartyExternalPhoneNumMask": true,
"cgNamePresBit": "Default",
"connLinePresBit": "Default",
"urgentPriority": true
},
{
"provideOutsideDialTone": false,
"reqClientMatterCode": true,
"reqForcedAuthCode": false,
"releaseClause": "No Error",
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"pattern": "**201.!",
"patternPrecedence": "Default",
"routeOption": "Route this pattern",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-LBRteSel-PT",
"authLevel": "0",
"description": "AAM_Group Intl Call Type - CMC no FAC",
"calledPartyPrefixDigits": "+",
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupIntl-RL",
"cgLinePresBit": "Default",
"connNamePresBit": "Default",
"callClassification": "OffNet",
"allowDeviceOverride": false,
"useCallingPartyExternalPhoneNumMask": false,
"cgNamePresBit": "Default",
"connLinePresBit": "Default",
"urgentPriority": true
},
{
"provideOutsideDialTone": false,
"reqClientMatterCode": true,
"reqForcedAuthCode": true,
"releaseClause": "No Error",
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"pattern": "**301.!",
"patternPrecedence": "Default",
"routeOption": "Route this pattern",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-LBRteSel-PT",
"authLevel": "10",
"description": "AAM_Group Intl Call Type - CMC FAC",
"calledPartyPrefixDigits": "+",
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupIntl-RL",
"cgLinePresBit": "Default",
"connNamePresBit": "Default",
"callClassification": "OffNet",
"allowDeviceOverride": false,
"useCallingPartyExternalPhoneNumMask": false,
"cgNamePresBit": "Default",
"connLinePresBit": "Default",
"urgentPriority": true
},
{
"provideOutsideDialTone": false,
"reqClientMatterCode": false,
"reqForcedAuthCode": false,
"releaseClause": "No Error",
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"pattern": "**00227.!",
"patternPrecedence": "Default",
"routeOption": "Route this pattern",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-LBRteSel-PT",
"authLevel": "0",
"description": "AAM_Group Natl Call Type - no FAC no CMC",
"calledPartyPrefixDigits": "+27",
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupNatl-RL",
"cgLinePresBit": "Default",
"connNamePresBit": "Default",
"callClassification": "OffNet",
"allowDeviceOverride": false,
"useCallingPartyExternalPhoneNumMask": false,
"cgNamePresBit": "Default",
"connLinePresBit": "Default",
"urgentPriority": true
},
{
"provideOutsideDialTone": false,
"reqClientMatterCode": false,
"reqForcedAuthCode": true,
"releaseClause": "No Error",
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"pattern": "**10227.!",
"patternPrecedence": "Default",
"routeOption": "Route this pattern",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-LBRteSel-PT",
"authLevel": "6",
"description": "AAM_Group Natl Call Type - FAC no CMC",
"calledPartyPrefixDigits": "+27",
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupNatl-RL",
"cgLinePresBit": "Default",
"connNamePresBit": "Default",
"callClassification": "OffNet",
"allowDeviceOverride": false,
"useCallingPartyExternalPhoneNumMask": false,
"cgNamePresBit": "Default",
"connLinePresBit": "Default",
"urgentPriority": true
},
{
"provideOutsideDialTone": false,
"reqClientMatterCode": true,
"reqForcedAuthCode": false,
"releaseClause": "No Error",
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"pattern": "**20227.!",
"patternPrecedence": "Default",
"routeOption": "Route this pattern",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-LBRteSel-PT",
"authLevel": "0",
"description": "AAM_Group Natl Call Type - CMC no FAC",
"calledPartyPrefixDigits": "+27",
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupNatl-RL",
"cgLinePresBit": "Default",
"connNamePresBit": "Default",
"callClassification": "OffNet",
"allowDeviceOverride": false,
"useCallingPartyExternalPhoneNumMask": false,
"cgNamePresBit": "Default",
"connLinePresBit": "Default",
"urgentPriority": true
},
{
"provideOutsideDialTone": false,
"reqClientMatterCode": true,
"reqForcedAuthCode": true,
"releaseClause": "No Error",
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"pattern": "**30227.!",
"patternPrecedence": "Default",
"routeOption": "Route this pattern",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-LBRteSel-PT",
"authLevel": "6",
"description": "AAM_Group RP for Natl Call Type - FAC CMC",
"calledPartyPrefixDigits": "+27",
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupNatl-RL",
"cgLinePresBit": "Default",
"connNamePresBit": "Default",
"callClassification": "OffNet",
"allowDeviceOverride": false,
"useCallingPartyExternalPhoneNumMask": false,
"cgNamePresBit": "Default",
"connLinePresBit": "Default",
"urgentPriority": true
},
{
"provideOutsideDialTone": false,
"reqClientMatterCode": false,
"reqForcedAuthCode": false,
"releaseClause": "No Error",
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"pattern": "**00327.!",
"patternPrecedence": "Default",
"routeOption": "Route this pattern",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-LBRteSel-PT",
"authLevel": "0",
"description": "AAM_Group Mobl Call Type - no FAC no CMC",
"calledPartyPrefixDigits": "+27",
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupMobl-RL",
"cgLinePresBit": "Default",
"connNamePresBit": "Default",
"callClassification": "OffNet",
"allowDeviceOverride": false,
"useCallingPartyExternalPhoneNumMask": false,
"cgNamePresBit": "Default",
"connLinePresBit": "Default",
"urgentPriority": true
},
{
"provideOutsideDialTone": false,
"reqClientMatterCode": false,
"reqForcedAuthCode": true,
"releaseClause": "No Error",
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"pattern": "**10327.!",
"patternPrecedence": "Default",
"routeOption": "Route this pattern",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-LBRteSel-PT",
"authLevel": "8",
"description": "AAM_Group Mobl Call Type - FAC no CMC",
"calledPartyPrefixDigits": "+27",
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupMobl-RL",
"cgLinePresBit": "Default",
"connNamePresBit": "Default",
"callClassification": "OffNet",
"allowDeviceOverride": false,
"useCallingPartyExternalPhoneNumMask": false,
"cgNamePresBit": "Default",
"connLinePresBit": "Default",
"urgentPriority": true
},
{
"provideOutsideDialTone": false,
"reqClientMatterCode": true,
"reqForcedAuthCode": false,
"releaseClause": "No Error",
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"pattern": "**20327.!",
"patternPrecedence": "Default",
"routeOption": "Route this pattern",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-LBRteSel-PT",
"authLevel": "0",
"description": "AAM_Group Mobl Call Type - CMC no FAC",
"calledPartyPrefixDigits": "+27",
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupMobl-RL",
"cgLinePresBit": "Default",
"connNamePresBit": "Default",
"callClassification": "OffNet",
"allowDeviceOverride": false,
"useCallingPartyExternalPhoneNumMask": false,
"cgNamePresBit": "Default",
"connLinePresBit": "Default",
"urgentPriority": true
},
{
"provideOutsideDialTone": false,
"reqClientMatterCode": true,
"reqForcedAuthCode": true,
"releaseClause": "No Error",
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"pattern": "**30327.!",
"patternPrecedence": "Default",
"routeOption": "Route this pattern",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-LBRteSel-PT",
"authLevel": "8",
"description": "AAM_Group Mobl Call Type - FAC CMC",
"calledPartyPrefixDigits": "+27",
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupMobl-RL",
"cgLinePresBit": "Default",
"connNamePresBit": "Default",
"callClassification": "OffNet",
"allowDeviceOverride": false,
"useCallingPartyExternalPhoneNumMask": false,
"cgNamePresBit": "Default",
"connLinePresBit": "Default",
"urgentPriority": true
},
{
"urgentPriority": true,
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "AAM_Group SVC Call Type - no FAC no CMC",
"cgLinePresBit": "Default",
"pattern": "**005.!",
"callClassification": "OffNet",
"patternPrecedence": "Default",
"allowDeviceOverride": false,
"authLevel": "0",
"cgNamePresBit": "Default",
"reqClientMatterCode": false,
"reqForcedAuthCode": false,
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-LBRteSel-PT",
"connNamePresBit": "Default",
"connLinePresBit": "Default",
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupServ-RL",
"routeOption": "Route this pattern",
"releaseClause": "No Error",
"useCallingPartyExternalPhoneNumMask": false
},
{
"urgentPriority": true,
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "AAM_Group RP for Service Call Type - FAC no CMC",
"cgLinePresBit": "Default",
"pattern": "**105.!",
"callClassification": "OffNet",
"patternPrecedence": "Default",
"allowDeviceOverride": false,
"authLevel": "6",
"cgNamePresBit": "Default",
"reqClientMatterCode": false,
"reqForcedAuthCode": true,
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-LBRteSel-PT",
"connNamePresBit": "Default",
"connLinePresBit": "Default",
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupServ-RL",
"routeOption": "Route this pattern",
"releaseClause": "No Error",
"useCallingPartyExternalPhoneNumMask": false
},
{
"urgentPriority": true,
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "AAM_Group SVC Call Type - CMC no FAC",
"cgLinePresBit": "Default",
"pattern": "**205.!",
"callClassification": "OffNet",
"patternPrecedence": "Default",
"allowDeviceOverride": false,
"authLevel": "0",
"cgNamePresBit": "Default",
"reqClientMatterCode": true,
"reqForcedAuthCode": false,
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-LBRteSel-PT",
"connNamePresBit": "Default",
"connLinePresBit": "Default",
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupServ-RL",
"routeOption": "Route this pattern",
"releaseClause": "No Error",
"useCallingPartyExternalPhoneNumMask": false
},
{
"urgentPriority": true,
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "AAM_Group SVC Call Type - CMC FAC",
"cgLinePresBit": "Default",
"pattern": "**305.!",
"callClassification": "OffNet",
"patternPrecedence": "Default",
"allowDeviceOverride": false,
"authLevel": "6",
"cgNamePresBit": "Default",
"reqClientMatterCode": true,
"reqForcedAuthCode": true,
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-LBRteSel-PT",
"connNamePresBit": "Default",
"connLinePresBit": "Default",
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupServ-RL",
"routeOption": "Route this pattern",
"releaseClause": "No Error",
"useCallingPartyExternalPhoneNumMask": false
},
{
"provideOutsideDialTone": false,
"reqClientMatterCode": false,
"reqForcedAuthCode": false,
"releaseClause": "No Error",
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"pattern": "**00627.!",
"patternPrecedence": "Default",
"routeOption": "Route this pattern",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-LBRteSel-PT",
"authLevel": "0",
"description": "AAM_Group Local Call Type - no FAC no CMC",
"calledPartyPrefixDigits": "+27",
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupLocal-RL",
"cgLinePresBit": "Default",
"connNamePresBit": "Default",
"callClassification": "OffNet",
"allowDeviceOverride": false,
"useCallingPartyExternalPhoneNumMask": false,
"cgNamePresBit": "Default",
"connLinePresBit": "Default",
"urgentPriority": true
},
{
"provideOutsideDialTone": false,
"reqClientMatterCode": false,
"reqForcedAuthCode": true,
"releaseClause": "No Error",
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"pattern": "**10627.!",
"patternPrecedence": "Default",
"routeOption": "Route this pattern",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-LBRteSel-PT",
"authLevel": "1",
"description": "AAM_Group Local Call Type - FAC no CMC",
"calledPartyPrefixDigits": "+27",
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupLocal-RL",
"cgLinePresBit": "Default",
"connNamePresBit": "Default",
"callClassification": "OffNet",
"allowDeviceOverride": false,
"useCallingPartyExternalPhoneNumMask": false,
"cgNamePresBit": "Default",
"connLinePresBit": "Default",
"urgentPriority": true
},
{
"provideOutsideDialTone": false,
"reqClientMatterCode": true,
"reqForcedAuthCode": false,
"releaseClause": "No Error",
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"pattern": "**20627.!",
"patternPrecedence": "Default",
"routeOption": "Route this pattern",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-LBRteSel-PT",
"authLevel": "0",
"description": "AAM_Group Local Call Type - CMC no FAC",
"calledPartyPrefixDigits": "+27",
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupLocal-RL",
"cgLinePresBit": "Default",
"connNamePresBit": "Default",
"callClassification": "OffNet",
"allowDeviceOverride": false,
"useCallingPartyExternalPhoneNumMask": false,
"cgNamePresBit": "Default",
"connLinePresBit": "Default",
"urgentPriority": true
},
{
"provideOutsideDialTone": false,
"reqClientMatterCode": true,
"reqForcedAuthCode": true,
"releaseClause": "No Error",
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"pattern": "**30627.!",
"patternPrecedence": "Default",
"routeOption": "Route this pattern",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-LBRteSel-PT",
"authLevel": "1",
"description": "AAM_Group Local Call Type - CMC FAC",
"calledPartyPrefixDigits": "+27",
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupLocal-RL",
"cgLinePresBit": "Default",
"connNamePresBit": "Default",
"callClassification": "OffNet",
"allowDeviceOverride": false,
"useCallingPartyExternalPhoneNumMask": false,
"cgNamePresBit": "Default",
"connLinePresBit": "Default",
"urgentPriority": true
},
{
"provideOutsideDialTone": false,
"reqClientMatterCode": false,
"reqForcedAuthCode": false,
"releaseClause": "No Error",
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"pattern": "**00727.!",
"patternPrecedence": "Default",
"routeOption": "Route this pattern",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-LBRteSel-PT",
"authLevel": "0",
"description": "AAM_Group PRS Call Type - no FAC no CMC",
"calledPartyPrefixDigits": "+27",
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupPRSN-RL",
"cgLinePresBit": "Default",
"connNamePresBit": "Default",
"callClassification": "OffNet",
"allowDeviceOverride": false,
"useCallingPartyExternalPhoneNumMask": false,
"cgNamePresBit": "Default",
"connLinePresBit": "Default",
"urgentPriority": true
},
{
"provideOutsideDialTone": false,
"reqClientMatterCode": false,
"reqForcedAuthCode": true,
"releaseClause": "No Error",
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"pattern": "**10727.!",
"patternPrecedence": "Default",
"routeOption": "Route this pattern",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-LBRteSel-PT",
"authLevel": "10",
"description": "AAM_Group PRS Call Type - FAC no CMC",
"calledPartyPrefixDigits": "+27",
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupPRSN-RL",
"cgLinePresBit": "Default",
"connNamePresBit": "Default",
"callClassification": "OffNet",
"allowDeviceOverride": false,
"useCallingPartyExternalPhoneNumMask": false,
"cgNamePresBit": "Default",
"connLinePresBit": "Default",
"urgentPriority": true
},
{
"provideOutsideDialTone": false,
"reqClientMatterCode": true,
"reqForcedAuthCode": false,
"releaseClause": "No Error",
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"pattern": "**20727.!",
"patternPrecedence": "Default",
"routeOption": "Route this pattern",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-LBRteSel-PT",
"authLevel": "0",
"description": "AAM_Group PRS Call Type - CMC no FAC",
"calledPartyPrefixDigits": "+27",
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupPRSN-RL",
"cgLinePresBit": "Default",
"connNamePresBit": "Default",
"callClassification": "OffNet",
"allowDeviceOverride": false,
"useCallingPartyExternalPhoneNumMask": false,
"cgNamePresBit": "Default",
"connLinePresBit": "Default",
"urgentPriority": true
},
{
"provideOutsideDialTone": false,
"reqClientMatterCode": true,
"reqForcedAuthCode": true,
"releaseClause": "No Error",
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"pattern": "**30727.!",
"patternPrecedence": "Default",
"routeOption": "Route this pattern",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-LBRteSel-PT",
"authLevel": "10",
"description": "AAM_Group PRS Call Type - CMC FAC",
"calledPartyPrefixDigits": "+27",
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupPRSN-RL",
"cgLinePresBit": "Default",
"connNamePresBit": "Default",
"callClassification": "OffNet",
"allowDeviceOverride": false,
"useCallingPartyExternalPhoneNumMask": false,
"cgNamePresBit": "Default",
"connLinePresBit": "Default",
"urgentPriority": true
},
{
"provideOutsideDialTone": false,
"reqClientMatterCode": false,
"reqForcedAuthCode": false,
"releaseClause": "No Error",
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"pattern": "**00827.!",
"patternPrecedence": "Default",
"routeOption": "Route this pattern",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-LBRteSel-PT",
"authLevel": "0",
"description": "AAM_Group FPH Call Type - no FAC no CMC",
"calledPartyPrefixDigits": "+27",
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupFPHN-RL",
"cgLinePresBit": "Default",
"connNamePresBit": "Default",
"callClassification": "OffNet",
"allowDeviceOverride": false,
"useCallingPartyExternalPhoneNumMask": false,
"cgNamePresBit": "Default",
"connLinePresBit": "Default",
"urgentPriority": true
},
{
"provideOutsideDialTone": false,
"reqClientMatterCode": false,
"reqForcedAuthCode": true,
"releaseClause": "No Error",
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"pattern": "**10827.!",
"patternPrecedence": "Default",
"routeOption": "Route this pattern",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-LBRteSel-PT",
"authLevel": "6",
"description": "AAM_Group FPH Call Type - FAC no CMC",
"calledPartyPrefixDigits": "+27",
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupFPHN-RL",
"cgLinePresBit": "Default",
"connNamePresBit": "Default",
"callClassification": "OffNet",
"allowDeviceOverride": false,
"useCallingPartyExternalPhoneNumMask": false,
"cgNamePresBit": "Default",
"connLinePresBit": "Default",
"urgentPriority": true
},
{
"provideOutsideDialTone": false,
"reqClientMatterCode": true,
"reqForcedAuthCode": false,
"releaseClause": "No Error",
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"pattern": "**20827.!",
"patternPrecedence": "Default",
"routeOption": "Route this pattern",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-LBRteSel-PT",
"authLevel": "0",
"description": "AAM_Group FPH Call Type - CMC no FAC",
"calledPartyPrefixDigits": "+27",
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupFPHN-RL",
"cgLinePresBit": "Default",
"connNamePresBit": "Default",
"callClassification": "OffNet",
"allowDeviceOverride": false,
"useCallingPartyExternalPhoneNumMask": false,
"cgNamePresBit": "Default",
"connLinePresBit": "Default",
"urgentPriority": true
},
{
"provideOutsideDialTone": false,
"reqClientMatterCode": true,
"reqForcedAuthCode": true,
"releaseClause": "No Error",
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"pattern": "**30827.!",
"patternPrecedence": "Default",
"routeOption": "Route this pattern",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-LBRteSel-PT",
"authLevel": "6",
"description": "AAM_Group FPH Call Type - CMC FAC",
"calledPartyPrefixDigits": "+27",
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupFPHN-RL",
"cgLinePresBit": "Default",
"connNamePresBit": "Default",
"callClassification": "OffNet",
"allowDeviceOverride": false,
"useCallingPartyExternalPhoneNumMask": false,
"cgNamePresBit": "Default",
"connLinePresBit": "Default",
"urgentPriority": true
},
{
"provideOutsideDialTone": false,
"reqClientMatterCode": false,
"reqForcedAuthCode": false,
"releaseClause": "No Error",
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"pattern": "**00927.!",
"patternPrecedence": "Default",
"routeOption": "Route this pattern",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-LBRteSel-PT",
"authLevel": "0",
"description": "AAM_Group PCS Call Type - no FAC no CMC",
"calledPartyPrefixDigits": "+27",
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupPCSN-RL",
"cgLinePresBit": "Default",
"connNamePresBit": "Default",
"callClassification": "OffNet",
"allowDeviceOverride": false,
"useCallingPartyExternalPhoneNumMask": false,
"cgNamePresBit": "Default",
"connLinePresBit": "Default",
"urgentPriority": true
},
{
"provideOutsideDialTone": false,
"reqClientMatterCode": false,
"reqForcedAuthCode": true,
"releaseClause": "No Error",
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"pattern": "**10927.!",
"patternPrecedence": "Default",
"routeOption": "Route this pattern",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-LBRteSel-PT",
"authLevel": "6",
"description": "AAM_Group PCS Call Type - FAC no CMC",
"calledPartyPrefixDigits": "+27",
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupPCSN-RL",
"cgLinePresBit": "Default",
"connNamePresBit": "Default",
"callClassification": "OffNet",
"allowDeviceOverride": false,
"useCallingPartyExternalPhoneNumMask": false,
"cgNamePresBit": "Default",
"connLinePresBit": "Default",
"urgentPriority": true
},
{
"provideOutsideDialTone": false,
"reqClientMatterCode": true,
"reqForcedAuthCode": false,
"releaseClause": "No Error",
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"pattern": "**20927.!",
"patternPrecedence": "Default",
"routeOption": "Route this pattern",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-LBRteSel-PT",
"authLevel": "0",
"description": "AAM_Group PCS Call Type - CMC no FAC",
"calledPartyPrefixDigits": "+27",
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupPCSN-RL",
"cgLinePresBit": "Default",
"connNamePresBit": "Default",
"callClassification": "OffNet",
"allowDeviceOverride": false,
"useCallingPartyExternalPhoneNumMask": false,
"cgNamePresBit": "Default",
"connLinePresBit": "Default",
"urgentPriority": true
},
{
"provideOutsideDialTone": false,
"reqClientMatterCode": true,
"reqForcedAuthCode": true,
"releaseClause": "No Error",
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"pattern": "**30927.!",
"patternPrecedence": "Default",
"routeOption": "Route this pattern",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-LBRteSel-PT",
"authLevel": "6",
"description": "AAM_Group PCS Call Type -CMC FAC",
"calledPartyPrefixDigits": "+27",
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupPCSN-RL",
"cgLinePresBit": "Default",
"connNamePresBit": "Default",
"callClassification": "OffNet",
"allowDeviceOverride": false,
"useCallingPartyExternalPhoneNumMask": false,
"cgNamePresBit": "Default",
"connLinePresBit": "Default",
"urgentPriority": true
},
{
"provideOutsideDialTone": false,
"reqClientMatterCode": false,
"reqForcedAuthCode": false,
"releaseClause": "No Error",
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"pattern": "**01027.!",
"patternPrecedence": "Default",
"routeOption": "Route this pattern",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-LBRteSel-PT",
"authLevel": "0",
"description": "AAM_Group SRS Call Type - no FAC no CMC",
"calledPartyPrefixDigits": "+27",
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupSRSN-RL",
"cgLinePresBit": "Default",
"connNamePresBit": "Default",
"callClassification": "OffNet",
"allowDeviceOverride": false,
"useCallingPartyExternalPhoneNumMask": false,
"cgNamePresBit": "Default",
"connLinePresBit": "Default",
"urgentPriority": true
},
{
"provideOutsideDialTone": false,
"reqClientMatterCode": false,
"reqForcedAuthCode": true,
"releaseClause": "No Error",
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"pattern": "**11027.!",
"patternPrecedence": "Default",
"routeOption": "Route this pattern",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-LBRteSel-PT",
"authLevel": "6",
"description": "AAM_Group SRS Call Type - FAC no CMC",
"calledPartyPrefixDigits": "+27",
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupSRSN-RL",
"cgLinePresBit": "Default",
"connNamePresBit": "Default",
"callClassification": "OffNet",
"allowDeviceOverride": false,
"useCallingPartyExternalPhoneNumMask": false,
"cgNamePresBit": "Default",
"connLinePresBit": "Default",
"urgentPriority": true
},
{
"provideOutsideDialTone": false,
"reqClientMatterCode": true,
"reqForcedAuthCode": false,
"releaseClause": "No Error",
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"pattern": "**21027.!",
"patternPrecedence": "Default",
"routeOption": "Route this pattern",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-LBRteSel-PT",
"authLevel": "0",
"description": "AAM_Group SRS Call Type - CMC no FAC",
"calledPartyPrefixDigits": "+27",
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupSRSN-RL",
"cgLinePresBit": "Default",
"connNamePresBit": "Default",
"callClassification": "OffNet",
"allowDeviceOverride": false,
"useCallingPartyExternalPhoneNumMask": false,
"cgNamePresBit": "Default",
"connLinePresBit": "Default",
"urgentPriority": true
},
{
"provideOutsideDialTone": false,
"reqClientMatterCode": true,
"reqForcedAuthCode": true,
"releaseClause": "No Error",
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"pattern": "**31027.!",
"patternPrecedence": "Default",
"routeOption": "Route this pattern",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-LBRteSel-PT",
"authLevel": "6",
"description": "AAM_Group SRS Call Type - cmc FAC",
"calledPartyPrefixDigits": "+27",
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupSRSN-RL",
"cgLinePresBit": "Default",
"connNamePresBit": "Default",
"callClassification": "OffNet",
"allowDeviceOverride": false,
"useCallingPartyExternalPhoneNumMask": false,
"cgNamePresBit": "Default",
"connLinePresBit": "Default",
"urgentPriority": true
},
{
"urgentPriority": true,
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "AAM_Group OPR Call Type - no FAC no CMC",
"cgLinePresBit": "Default",
"pattern": "**011.!",
"callClassification": "OffNet",
"patternPrecedence": "Default",
"allowDeviceOverride": false,
"authLevel": "0",
"cgNamePresBit": "Default",
"reqClientMatterCode": false,
"reqForcedAuthCode": false,
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-LBRteSel-PT",
"connNamePresBit": "Default",
"connLinePresBit": "Default",
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupOper-RL",
"routeOption": "Route this pattern",
"releaseClause": "No Error",
"useCallingPartyExternalPhoneNumMask": false
},
{
"urgentPriority": true,
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "AAM_Group OPR Call Type - FAC no CMC",
"cgLinePresBit": "Default",
"pattern": "**111.!",
"callClassification": "OffNet",
"patternPrecedence": "Default",
"allowDeviceOverride": false,
"authLevel": "6",
"cgNamePresBit": "Default",
"reqClientMatterCode": false,
"reqForcedAuthCode": true,
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-LBRteSel-PT",
"connNamePresBit": "Default",
"connLinePresBit": "Default",
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupOper-RL",
"routeOption": "Route this pattern",
"releaseClause": "No Error",
"useCallingPartyExternalPhoneNumMask": false
},
{
"urgentPriority": true,
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "AAM_Group OPR Call Type - CMC no FAC",
"cgLinePresBit": "Default",
"pattern": "**211.!",
"callClassification": "OffNet",
"patternPrecedence": "Default",
"allowDeviceOverride": false,
"authLevel": "0",
"cgNamePresBit": "Default",
"reqClientMatterCode": true,
"reqForcedAuthCode": false,
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-LBRteSel-PT",
"connNamePresBit": "Default",
"connLinePresBit": "Default",
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupOper-RL",
"routeOption": "Route this pattern",
"releaseClause": "No Error",
"useCallingPartyExternalPhoneNumMask": false
},
{
"urgentPriority": true,
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "AAM_Group OPR Call Type - CMC FAC",
"cgLinePresBit": "Default",
"pattern": "**311.!",
"callClassification": "OffNet",
"patternPrecedence": "Default",
"allowDeviceOverride": false,
"authLevel": "6",
"cgNamePresBit": "Default",
"reqClientMatterCode": true,
"reqForcedAuthCode": true,
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-LBRteSel-PT",
"connNamePresBit": "Default",
"connLinePresBit": "Default",
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupOper-RL",
"routeOption": "Route this pattern",
"releaseClause": "No Error",
"useCallingPartyExternalPhoneNumMask": false
},
{
"provideOutsideDialTone": false,
"reqClientMatterCode": false,
"reqForcedAuthCode": false,
"releaseClause": "No Error",
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"pattern": "**001.X!",
"patternPrecedence": "Default",
"routeOption": "Route this pattern",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-DBRteSel-PT",
"authLevel": "0",
"description": "AAM_Group CT=IntlXnFACnCMC use Intl RL",
"calledPartyPrefixDigits": "+",
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupIntl-SLRG-RL",
"cgLinePresBit": "Default",
"connNamePresBit": "Default",
"callClassification": "OffNet",
"allowDeviceOverride": false,
"useCallingPartyExternalPhoneNumMask": false,
"cgNamePresBit": "Default",
"connLinePresBit": "Default",
"urgentPriority": true
},
{
"provideOutsideDialTone": false,
"reqClientMatterCode": false,
"reqForcedAuthCode": true,
"releaseClause": "No Error",
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"pattern": "**101.X!",
"patternPrecedence": "Default",
"routeOption": "Route this pattern",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-DBRteSel-PT",
"authLevel": "10",
"description": "AAM_Group CT=IntlXyFACnCMC use Intl RL",
"calledPartyPrefixDigits": "+",
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupIntl-SLRG-RL",
"cgLinePresBit": "Default",
"connNamePresBit": "Default",
"callClassification": "OffNet",
"allowDeviceOverride": false,
"useCallingPartyExternalPhoneNumMask": false,
"cgNamePresBit": "Default",
"connLinePresBit": "Default",
"urgentPriority": true
},
{
"provideOutsideDialTone": false,
"reqClientMatterCode": true,
"reqForcedAuthCode": false,
"releaseClause": "No Error",
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"pattern": "**201.X!",
"patternPrecedence": "Default",
"routeOption": "Route this pattern",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-DBRteSel-PT",
"authLevel": "0",
"description": "AAM_Group CT=IntlXnFACyCMC use Intl RL",
"calledPartyPrefixDigits": "+",
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupIntl-SLRG-RL",
"cgLinePresBit": "Default",
"connNamePresBit": "Default",
"callClassification": "OffNet",
"allowDeviceOverride": false,
"useCallingPartyExternalPhoneNumMask": false,
"cgNamePresBit": "Default",
"connLinePresBit": "Default",
"urgentPriority": true
},
{
"provideOutsideDialTone": false,
"reqClientMatterCode": true,
"reqForcedAuthCode": true,
"releaseClause": "No Error",
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"pattern": "**301.X!",
"patternPrecedence": "Default",
"routeOption": "Route this pattern",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-DBRteSel-PT",
"authLevel": "10",
"description": "AAM_Group CT=IntlXyFACyCMC use Intl RL",
"calledPartyPrefixDigits": "+",
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupIntl-SLRG-RL",
"cgLinePresBit": "Default",
"connNamePresBit": "Default",
"callClassification": "OffNet",
"allowDeviceOverride": false,
"useCallingPartyExternalPhoneNumMask": false,
"cgNamePresBit": "Default",
"connLinePresBit": "Default",
"urgentPriority": true
},
{
"provideOutsideDialTone": false,
"reqClientMatterCode": false,
"reqForcedAuthCode": false,
"releaseClause": "No Error",
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"pattern": "**002.X!",
"patternPrecedence": "Default",
"routeOption": "Route this pattern",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-DBRteSel-PT",
"authLevel": "0",
"description": "AAM_Group CT=NatlXnFACnCMC use Intl RL",
"calledPartyPrefixDigits": "+",
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupIntl-SLRG-RL",
"cgLinePresBit": "Default",
"connNamePresBit": "Default",
"callClassification": "OffNet",
"allowDeviceOverride": false,
"useCallingPartyExternalPhoneNumMask": false,
"cgNamePresBit": "Default",
"connLinePresBit": "Default",
"urgentPriority": true
},
{
"provideOutsideDialTone": false,
"reqClientMatterCode": false,
"reqForcedAuthCode": true,
"releaseClause": "No Error",
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"pattern": "**102.X!",
"patternPrecedence": "Default",
"routeOption": "Route this pattern",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-DBRteSel-PT",
"authLevel": "6",
"description": "AAM_Group CT=NatlXyFACnCMC use Intl RL",
"calledPartyPrefixDigits": "+",
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupIntl-SLRG-RL",
"cgLinePresBit": "Default",
"connNamePresBit": "Default",
"callClassification": "OffNet",
"allowDeviceOverride": false,
"useCallingPartyExternalPhoneNumMask": false,
"cgNamePresBit": "Default",
"connLinePresBit": "Default",
"urgentPriority": true
},
{
"provideOutsideDialTone": false,
"reqClientMatterCode": true,
"reqForcedAuthCode": false,
"releaseClause": "No Error",
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"pattern": "**202.X!",
"patternPrecedence": "Default",
"routeOption": "Route this pattern",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-DBRteSel-PT",
"authLevel": "0",
"description": "AAM_Group CT=NatlXnFACyCMC use Intl RL",
"calledPartyPrefixDigits": "+",
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupIntl-SLRG-RL",
"cgLinePresBit": "Default",
"connNamePresBit": "Default",
"callClassification": "OffNet",
"allowDeviceOverride": false,
"useCallingPartyExternalPhoneNumMask": false,
"cgNamePresBit": "Default",
"connLinePresBit": "Default",
"urgentPriority": true
},
{
"provideOutsideDialTone": false,
"reqClientMatterCode": true,
"reqForcedAuthCode": true,
"releaseClause": "No Error",
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"pattern": "**302.X!",
"patternPrecedence": "Default",
"routeOption": "Route this pattern",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-DBRteSel-PT",
"authLevel": "6",
"description": "AAM_Group CT=NatlXyFACyCMC use Intl RL",
"calledPartyPrefixDigits": "+",
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupIntl-SLRG-RL",
"cgLinePresBit": "Default",
"connNamePresBit": "Default",
"callClassification": "OffNet",
"allowDeviceOverride": false,
"useCallingPartyExternalPhoneNumMask": false,
"cgNamePresBit": "Default",
"connLinePresBit": "Default",
"urgentPriority": true
},
{
"provideOutsideDialTone": false,
"reqClientMatterCode": false,
"reqForcedAuthCode": false,
"releaseClause": "No Error",
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"pattern": "**003.X!",
"patternPrecedence": "Default",
"routeOption": "Route this pattern",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-DBRteSel-PT",
"authLevel": "0",
"description": "AAM_Group CT=MoblXnFACnCMC use Intl RL",
"calledPartyPrefixDigits": "+",
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupIntl-SLRG-RL",
"cgLinePresBit": "Default",
"connNamePresBit": "Default",
"callClassification": "OffNet",
"allowDeviceOverride": false,
"useCallingPartyExternalPhoneNumMask": false,
"cgNamePresBit": "Default",
"connLinePresBit": "Default",
"urgentPriority": true
},
{
"provideOutsideDialTone": false,
"reqClientMatterCode": false,
"reqForcedAuthCode": true,
"releaseClause": "No Error",
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"pattern": "**103.X!",
"patternPrecedence": "Default",
"routeOption": "Route this pattern",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-DBRteSel-PT",
"authLevel": "6",
"description": "AAM_Group CT=Mobl1yFACnCMC use Intl RL",
"calledPartyPrefixDigits": "+",
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupIntl-SLRG-RL",
"cgLinePresBit": "Default",
"connNamePresBit": "Default",
"callClassification": "OffNet",
"allowDeviceOverride": false,
"useCallingPartyExternalPhoneNumMask": false,
"cgNamePresBit": "Default",
"connLinePresBit": "Default",
"urgentPriority": true
},
{
"provideOutsideDialTone": false,
"reqClientMatterCode": true,
"reqForcedAuthCode": false,
"releaseClause": "No Error",
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"pattern": "**203.X!",
"patternPrecedence": "Default",
"routeOption": "Route this pattern",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-DBRteSel-PT",
"authLevel": "0",
"description": "AAM_Group CT=MoblXnFACyCMC use Intl RL",
"calledPartyPrefixDigits": "+",
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupIntl-SLRG-RL",
"cgLinePresBit": "Default",
"connNamePresBit": "Default",
"callClassification": "OffNet",
"allowDeviceOverride": false,
"useCallingPartyExternalPhoneNumMask": false,
"cgNamePresBit": "Default",
"connLinePresBit": "Default",
"urgentPriority": true
},
{
"provideOutsideDialTone": false,
"reqClientMatterCode": true,
"reqForcedAuthCode": true,
"releaseClause": "No Error",
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"pattern": "**303.X!",
"patternPrecedence": "Default",
"routeOption": "Route this pattern",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-DBRteSel-PT",
"authLevel": "6",
"description": "AAM_Group CT=Mobl1yFACyCMC use Intl RL",
"calledPartyPrefixDigits": "+",
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupIntl-SLRG-RL",
"cgLinePresBit": "Default",
"connNamePresBit": "Default",
"callClassification": "OffNet",
"allowDeviceOverride": false,
"useCallingPartyExternalPhoneNumMask": false,
"cgNamePresBit": "Default",
"connLinePresBit": "Default",
"urgentPriority": true
},
{
"urgentPriority": true,
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "AAM_Group Block not in Country Service Call",
"cgLinePresBit": "Default",
"pattern": "**[0-3]05X.!",
"callClassification": "OffNet",
"patternPrecedence": "Default",
"allowDeviceOverride": false,
"authLevel": "0",
"cgNamePresBit": "Default",
"reqClientMatterCode": false,
"reqForcedAuthCode": false,
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-DBRteSel-PT",
"connNamePresBit": "Default",
"connLinePresBit": "Default",
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupServ-SLRG-RL",
"routeOption": "Block this pattern",
"releaseClause": "Call Rejected",
"useCallingPartyExternalPhoneNumMask": false
},
{
"provideOutsideDialTone": false,
"reqClientMatterCode": false,
"reqForcedAuthCode": false,
"releaseClause": "No Error",
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"pattern": "**006.X!",
"patternPrecedence": "Default",
"routeOption": "Route this pattern",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-DBRteSel-PT",
"authLevel": "0",
"description": "AAM_Group CT=LocalXnFACnCMC use Intl RL",
"calledPartyPrefixDigits": "+",
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupIntl-SLRG-RL",
"cgLinePresBit": "Default",
"connNamePresBit": "Default",
"callClassification": "OffNet",
"allowDeviceOverride": false,
"useCallingPartyExternalPhoneNumMask": false,
"cgNamePresBit": "Default",
"connLinePresBit": "Default",
"urgentPriority": true
},
{
"provideOutsideDialTone": false,
"reqClientMatterCode": false,
"reqForcedAuthCode": true,
"releaseClause": "No Error",
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"pattern": "**106.X!",
"patternPrecedence": "Default",
"routeOption": "Route this pattern",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-DBRteSel-PT",
"authLevel": "1",
"description": "AAM_Group CT=LocalXyFACnCMC use Intl RL",
"calledPartyPrefixDigits": "+",
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupIntl-SLRG-RL",
"cgLinePresBit": "Default",
"connNamePresBit": "Default",
"callClassification": "OffNet",
"allowDeviceOverride": false,
"useCallingPartyExternalPhoneNumMask": false,
"cgNamePresBit": "Default",
"connLinePresBit": "Default",
"urgentPriority": true
},
{
"provideOutsideDialTone": false,
"reqClientMatterCode": true,
"reqForcedAuthCode": false,
"releaseClause": "No Error",
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"pattern": "**206.X!",
"patternPrecedence": "Default",
"routeOption": "Route this pattern",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-DBRteSel-PT",
"authLevel": "0",
"description": "AAM_Group CT=LocalXnFACyCMC use Intl RL",
"calledPartyPrefixDigits": "+",
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupIntl-SLRG-RL",
"cgLinePresBit": "Default",
"connNamePresBit": "Default",
"callClassification": "OffNet",
"allowDeviceOverride": false,
"useCallingPartyExternalPhoneNumMask": false,
"cgNamePresBit": "Default",
"connLinePresBit": "Default",
"urgentPriority": true
},
{
"provideOutsideDialTone": false,
"reqClientMatterCode": true,
"reqForcedAuthCode": true,
"releaseClause": "No Error",
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"pattern": "**306.X!",
"patternPrecedence": "Default",
"routeOption": "Route this pattern",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-DBRteSel-PT",
"authLevel": "1",
"description": "AAM_Group CT=LocalXyFACyCMC use Intl RL",
"calledPartyPrefixDigits": "+",
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupIntl-SLRG-RL",
"cgLinePresBit": "Default",
"connNamePresBit": "Default",
"callClassification": "OffNet",
"allowDeviceOverride": false,
"useCallingPartyExternalPhoneNumMask": false,
"cgNamePresBit": "Default",
"connLinePresBit": "Default",
"urgentPriority": true
},
{
"provideOutsideDialTone": false,
"reqClientMatterCode": false,
"reqForcedAuthCode": false,
"releaseClause": "No Error",
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"pattern": "**007.X!",
"patternPrecedence": "Default",
"routeOption": "Route this pattern",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-DBRteSel-PT",
"authLevel": "0",
"description": "AAM_Group CT=PRSNXnFACnCMC use Intl RL",
"calledPartyPrefixDigits": "+",
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupIntl-SLRG-RL",
"cgLinePresBit": "Default",
"connNamePresBit": "Default",
"callClassification": "OffNet",
"allowDeviceOverride": false,
"useCallingPartyExternalPhoneNumMask": false,
"cgNamePresBit": "Default",
"connLinePresBit": "Default",
"urgentPriority": true
},
{
"provideOutsideDialTone": false,
"reqClientMatterCode": false,
"reqForcedAuthCode": true,
"releaseClause": "No Error",
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"pattern": "**107.X!",
"patternPrecedence": "Default",
"routeOption": "Route this pattern",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-DBRteSel-PT",
"authLevel": "9",
"description": "AAM_Group CT=PRSNXyFACnCMC use Intl RL",
"calledPartyPrefixDigits": "+",
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupIntl-SLRG-RL",
"cgLinePresBit": "Default",
"connNamePresBit": "Default",
"callClassification": "OffNet",
"allowDeviceOverride": false,
"useCallingPartyExternalPhoneNumMask": false,
"cgNamePresBit": "Default",
"connLinePresBit": "Default",
"urgentPriority": true
},
{
"provideOutsideDialTone": false,
"reqClientMatterCode": true,
"reqForcedAuthCode": false,
"releaseClause": "No Error",
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"pattern": "**207.X!",
"patternPrecedence": "Default",
"routeOption": "Route this pattern",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-DBRteSel-PT",
"authLevel": "0",
"description": "AAM_Group CT=PRSNXnFACyCMC use Intl RL",
"calledPartyPrefixDigits": "+",
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupIntl-SLRG-RL",
"cgLinePresBit": "Default",
"connNamePresBit": "Default",
"callClassification": "OffNet",
"allowDeviceOverride": false,
"useCallingPartyExternalPhoneNumMask": false,
"cgNamePresBit": "Default",
"connLinePresBit": "Default",
"urgentPriority": true
},
{
"provideOutsideDialTone": false,
"reqClientMatterCode": true,
"reqForcedAuthCode": true,
"releaseClause": "No Error",
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"pattern": "**307.X!",
"patternPrecedence": "Default",
"routeOption": "Route this pattern",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-DBRteSel-PT",
"authLevel": "9",
"description": "AAM_Group CT=PRSNXyFACyCMC use Intl RL",
"calledPartyPrefixDigits": "+",
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupIntl-SLRG-RL",
"cgLinePresBit": "Default",
"connNamePresBit": "Default",
"callClassification": "OffNet",
"allowDeviceOverride": false,
"useCallingPartyExternalPhoneNumMask": false,
"cgNamePresBit": "Default",
"connLinePresBit": "Default",
"urgentPriority": true
},
{
"provideOutsideDialTone": false,
"reqClientMatterCode": false,
"reqForcedAuthCode": false,
"releaseClause": "No Error",
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"pattern": "**008.X!",
"patternPrecedence": "Default",
"routeOption": "Route this pattern",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-DBRteSel-PT",
"authLevel": "0",
"description": "AAM_Group CT=FPHNXnFACnCMC use Intl RL",
"calledPartyPrefixDigits": "+",
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupIntl-SLRG-RL",
"cgLinePresBit": "Default",
"connNamePresBit": "Default",
"callClassification": "OffNet",
"allowDeviceOverride": false,
"useCallingPartyExternalPhoneNumMask": false,
"cgNamePresBit": "Default",
"connLinePresBit": "Default",
"urgentPriority": true
},
{
"provideOutsideDialTone": false,
"reqClientMatterCode": false,
"reqForcedAuthCode": true,
"releaseClause": "No Error",
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"pattern": "**108.X!",
"patternPrecedence": "Default",
"routeOption": "Route this pattern",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-DBRteSel-PT",
"authLevel": "6",
"description": "AAM_Group CT=FPHNXyFACnCMC use Intl RL",
"calledPartyPrefixDigits": "+",
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupIntl-SLRG-RL",
"cgLinePresBit": "Default",
"connNamePresBit": "Default",
"callClassification": "OffNet",
"allowDeviceOverride": false,
"useCallingPartyExternalPhoneNumMask": false,
"cgNamePresBit": "Default",
"connLinePresBit": "Default",
"urgentPriority": true
},
{
"provideOutsideDialTone": false,
"reqClientMatterCode": true,
"reqForcedAuthCode": false,
"releaseClause": "No Error",
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"pattern": "**208.X!",
"patternPrecedence": "Default",
"routeOption": "Route this pattern",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-DBRteSel-PT",
"authLevel": "0",
"description": "AAM_Group CT=FPHNXnFACyCMC use Intl RL",
"calledPartyPrefixDigits": "+",
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupIntl-SLRG-RL",
"cgLinePresBit": "Default",
"connNamePresBit": "Default",
"callClassification": "OffNet",
"allowDeviceOverride": false,
"useCallingPartyExternalPhoneNumMask": false,
"cgNamePresBit": "Default",
"connLinePresBit": "Default",
"urgentPriority": true
},
{
"provideOutsideDialTone": false,
"reqClientMatterCode": true,
"reqForcedAuthCode": true,
"releaseClause": "No Error",
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"pattern": "**308.X!",
"patternPrecedence": "Default",
"routeOption": "Route this pattern",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-DBRteSel-PT",
"authLevel": "6",
"description": "AAM_Group CT=FPHNXyFACyCMC use Intl RL",
"calledPartyPrefixDigits": "+",
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupIntl-SLRG-RL",
"cgLinePresBit": "Default",
"connNamePresBit": "Default",
"callClassification": "OffNet",
"allowDeviceOverride": false,
"useCallingPartyExternalPhoneNumMask": false,
"cgNamePresBit": "Default",
"connLinePresBit": "Default",
"urgentPriority": true
},
{
"provideOutsideDialTone": false,
"reqClientMatterCode": false,
"reqForcedAuthCode": false,
"releaseClause": "No Error",
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"pattern": "**009.X!",
"patternPrecedence": "Default",
"routeOption": "Route this pattern",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-DBRteSel-PT",
"authLevel": "0",
"description": "AAM_Group CT=PCSNXnFACnCMC use Intl RL",
"calledPartyPrefixDigits": "+",
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupIntl-SLRG-RL",
"cgLinePresBit": "Default",
"connNamePresBit": "Default",
"callClassification": "OffNet",
"allowDeviceOverride": false,
"useCallingPartyExternalPhoneNumMask": false,
"cgNamePresBit": "Default",
"connLinePresBit": "Default",
"urgentPriority": true
},
{
"provideOutsideDialTone": false,
"reqClientMatterCode": false,
"reqForcedAuthCode": true,
"releaseClause": "No Error",
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"pattern": "**109.X!",
"patternPrecedence": "Default",
"routeOption": "Route this pattern",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-DBRteSel-PT",
"authLevel": "6",
"description": "AAM_Group CT=PCSNXyFACnCMC use Intl RL",
"calledPartyPrefixDigits": "+",
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupIntl-SLRG-RL",
"cgLinePresBit": "Default",
"connNamePresBit": "Default",
"callClassification": "OffNet",
"allowDeviceOverride": false,
"useCallingPartyExternalPhoneNumMask": false,
"cgNamePresBit": "Default",
"connLinePresBit": "Default",
"urgentPriority": true
},
{
"provideOutsideDialTone": false,
"reqClientMatterCode": true,
"reqForcedAuthCode": false,
"releaseClause": "No Error",
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"pattern": "**209.X!",
"patternPrecedence": "Default",
"routeOption": "Route this pattern",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-DBRteSel-PT",
"authLevel": "0",
"description": "AAM_Group CT=PCSNXnFACyCMC use Intl RL",
"calledPartyPrefixDigits": "+",
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupIntl-SLRG-RL",
"cgLinePresBit": "Default",
"connNamePresBit": "Default",
"callClassification": "OffNet",
"allowDeviceOverride": false,
"useCallingPartyExternalPhoneNumMask": false,
"cgNamePresBit": "Default",
"connLinePresBit": "Default",
"urgentPriority": true
},
{
"provideOutsideDialTone": false,
"reqClientMatterCode": true,
"reqForcedAuthCode": true,
"releaseClause": "No Error",
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"pattern": "**309.X!",
"patternPrecedence": "Default",
"routeOption": "Route this pattern",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-DBRteSel-PT",
"authLevel": "6",
"description": "AAM_Group CT=PCSNXyFACyCMC use Intl RL",
"calledPartyPrefixDigits": "+",
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupIntl-SLRG-RL",
"cgLinePresBit": "Default",
"connNamePresBit": "Default",
"callClassification": "OffNet",
"allowDeviceOverride": false,
"useCallingPartyExternalPhoneNumMask": false,
"cgNamePresBit": "Default",
"connLinePresBit": "Default",
"urgentPriority": true
},
{
"provideOutsideDialTone": false,
"reqClientMatterCode": false,
"reqForcedAuthCode": false,
"releaseClause": "No Error",
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"pattern": "**010.X!",
"patternPrecedence": "Default",
"routeOption": "Route this pattern",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-DBRteSel-PT",
"authLevel": "0",
"description": "AAM_Group CT=SRSNXnFACnCMC use Intl RL",
"calledPartyPrefixDigits": "+",
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupIntl-SLRG-RL",
"cgLinePresBit": "Default",
"connNamePresBit": "Default",
"callClassification": "OffNet",
"allowDeviceOverride": false,
"useCallingPartyExternalPhoneNumMask": false,
"cgNamePresBit": "Default",
"connLinePresBit": "Default",
"urgentPriority": true
},
{
"provideOutsideDialTone": false,
"reqClientMatterCode": false,
"reqForcedAuthCode": true,
"releaseClause": "No Error",
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"pattern": "**110.X!",
"patternPrecedence": "Default",
"routeOption": "Route this pattern",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-DBRteSel-PT",
"authLevel": "6",
"description": "AAM_Group CT=SRSNXyFACnCMC use Intl RL",
"calledPartyPrefixDigits": "+",
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupIntl-SLRG-RL",
"cgLinePresBit": "Default",
"connNamePresBit": "Default",
"callClassification": "OffNet",
"allowDeviceOverride": false,
"useCallingPartyExternalPhoneNumMask": false,
"cgNamePresBit": "Default",
"connLinePresBit": "Default",
"urgentPriority": true
},
{
"provideOutsideDialTone": false,
"reqClientMatterCode": true,
"reqForcedAuthCode": false,
"releaseClause": "No Error",
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"pattern": "**210.X!",
"patternPrecedence": "Default",
"routeOption": "Route this pattern",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-DBRteSel-PT",
"authLevel": "0",
"description": "AAM_Group CT=SRSNXnFACnyMC use Intl RL",
"calledPartyPrefixDigits": "+",
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupIntl-SLRG-RL",
"cgLinePresBit": "Default",
"connNamePresBit": "Default",
"callClassification": "OffNet",
"allowDeviceOverride": false,
"useCallingPartyExternalPhoneNumMask": false,
"cgNamePresBit": "Default",
"connLinePresBit": "Default",
"urgentPriority": true
},
{
"provideOutsideDialTone": false,
"reqClientMatterCode": true,
"reqForcedAuthCode": true,
"releaseClause": "No Error",
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"pattern": "**310.X!",
"patternPrecedence": "Default",
"routeOption": "Route this pattern",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-DBRteSel-PT",
"authLevel": "6",
"description": "AAM_Group CT=SRSNXyFACyCMC use Intl RL",
"calledPartyPrefixDigits": "+",
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupIntl-SLRG-RL",
"cgLinePresBit": "Default",
"connNamePresBit": "Default",
"callClassification": "OffNet",
"allowDeviceOverride": false,
"useCallingPartyExternalPhoneNumMask": false,
"cgNamePresBit": "Default",
"connLinePresBit": "Default",
"urgentPriority": true
},
{
"urgentPriority": true,
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "AAM_GroupDP Non AAM_Group Operator Call Type",
"cgLinePresBit": "Default",
"pattern": "**[0-3]11X.!",
"callClassification": "OffNet",
"patternPrecedence": "Default",
"allowDeviceOverride": false,
"authLevel": "0",
"cgNamePresBit": "Default",
"reqClientMatterCode": false,
"reqForcedAuthCode": false,
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-DBRteSel-PT",
"connNamePresBit": "Default",
"connLinePresBit": "Default",
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupOper-SLRG-RL",
"routeOption": "Block this pattern",
"releaseClause": "Call Rejected",
"useCallingPartyExternalPhoneNumMask": false
},
{
"provideOutsideDialTone": false,
"reqClientMatterCode": false,
"reqForcedAuthCode": false,
"releaseClause": "No Error",
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"pattern": "**00127.!",
"patternPrecedence": "Default",
"routeOption": "Route this pattern",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-DBRteSel-PT",
"authLevel": "0",
"description": "AAM_Group CT=Intl1nFACnCMC use Natl RL",
"calledPartyPrefixDigits": "+27",
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupNatl-SLRG-RL",
"cgLinePresBit": "Default",
"connNamePresBit": "Default",
"callClassification": "OffNet",
"allowDeviceOverride": false,
"useCallingPartyExternalPhoneNumMask": false,
"cgNamePresBit": "Default",
"connLinePresBit": "Default",
"urgentPriority": true
},
{
"provideOutsideDialTone": false,
"reqClientMatterCode": false,
"reqForcedAuthCode": true,
"releaseClause": "No Error",
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"pattern": "**10127.!",
"patternPrecedence": "Default",
"routeOption": "Route this pattern",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-DBRteSel-PT",
"authLevel": "10",
"description": "AAM_Group CT=Intl1yFACnCMC use Natl RL",
"calledPartyPrefixDigits": "+27",
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupNatl-SLRG-RL",
"cgLinePresBit": "Default",
"connNamePresBit": "Default",
"callClassification": "OffNet",
"allowDeviceOverride": false,
"useCallingPartyExternalPhoneNumMask": false,
"cgNamePresBit": "Default",
"connLinePresBit": "Default",
"urgentPriority": true
},
{
"provideOutsideDialTone": false,
"reqClientMatterCode": true,
"reqForcedAuthCode": false,
"releaseClause": "No Error",
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"pattern": "**20127.!",
"patternPrecedence": "Default",
"routeOption": "Route this pattern",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-DBRteSel-PT",
"authLevel": "0",
"description": "AAM_Group CT=Intl1nFACyCMC use Natl RL",
"calledPartyPrefixDigits": "+27",
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupNatl-SLRG-RL",
"cgLinePresBit": "Default",
"connNamePresBit": "Default",
"callClassification": "OffNet",
"allowDeviceOverride": false,
"useCallingPartyExternalPhoneNumMask": false,
"cgNamePresBit": "Default",
"connLinePresBit": "Default",
"urgentPriority": true
},
{
"provideOutsideDialTone": false,
"reqClientMatterCode": true,
"reqForcedAuthCode": true,
"releaseClause": "No Error",
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"pattern": "**30127.!",
"patternPrecedence": "Default",
"routeOption": "Route this pattern",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-DBRteSel-PT",
"authLevel": "10",
"description": "AAM_Group CT=Intl1yFACyCMC use Natl RL",
"calledPartyPrefixDigits": "+27",
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupNatl-SLRG-RL",
"cgLinePresBit": "Default",
"connNamePresBit": "Default",
"callClassification": "OffNet",
"allowDeviceOverride": false,
"useCallingPartyExternalPhoneNumMask": false,
"cgNamePresBit": "Default",
"connLinePresBit": "Default",
"urgentPriority": true
},
{
"provideOutsideDialTone": false,
"reqClientMatterCode": false,
"reqForcedAuthCode": false,
"releaseClause": "No Error",
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"pattern": "**00227.!",
"patternPrecedence": "Default",
"routeOption": "Route this pattern",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-DBRteSel-PT",
"authLevel": "0",
"description": "AAM_Group CT=Natl1nFACnCMC use Natl RL",
"calledPartyPrefixDigits": "+27",
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupNatl-SLRG-RL",
"cgLinePresBit": "Default",
"connNamePresBit": "Default",
"callClassification": "OffNet",
"allowDeviceOverride": false,
"useCallingPartyExternalPhoneNumMask": false,
"cgNamePresBit": "Default",
"connLinePresBit": "Default",
"urgentPriority": true
},
{
"provideOutsideDialTone": false,
"reqClientMatterCode": false,
"reqForcedAuthCode": true,
"releaseClause": "No Error",
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"pattern": "**10227.!",
"patternPrecedence": "Default",
"routeOption": "Route this pattern",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-DBRteSel-PT",
"authLevel": "6",
"description": "AAM_Group CT=Natl1yFACnCMC use Natl RL",
"calledPartyPrefixDigits": "+27",
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupNatl-SLRG-RL",
"cgLinePresBit": "Default",
"connNamePresBit": "Default",
"callClassification": "OffNet",
"allowDeviceOverride": false,
"useCallingPartyExternalPhoneNumMask": false,
"cgNamePresBit": "Default",
"connLinePresBit": "Default",
"urgentPriority": true
},
{
"provideOutsideDialTone": false,
"reqClientMatterCode": true,
"reqForcedAuthCode": false,
"releaseClause": "No Error",
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"pattern": "**20227.!",
"patternPrecedence": "Default",
"routeOption": "Route this pattern",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-DBRteSel-PT",
"authLevel": "0",
"description": "AAM_Group CT=Natl1nFACyCMC use Natl RL",
"calledPartyPrefixDigits": "+27",
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupNatl-SLRG-RL",
"cgLinePresBit": "Default",
"connNamePresBit": "Default",
"callClassification": "OffNet",
"allowDeviceOverride": false,
"useCallingPartyExternalPhoneNumMask": false,
"cgNamePresBit": "Default",
"connLinePresBit": "Default",
"urgentPriority": true
},
{
"provideOutsideDialTone": false,
"reqClientMatterCode": true,
"reqForcedAuthCode": true,
"releaseClause": "No Error",
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"pattern": "**30227.!",
"patternPrecedence": "Default",
"routeOption": "Route this pattern",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-DBRteSel-PT",
"authLevel": "6",
"description": "AAM_Group CT=Natl1yFACyCMC use Natl RL",
"calledPartyPrefixDigits": "+27",
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupNatl-SLRG-RL",
"cgLinePresBit": "Default",
"connNamePresBit": "Default",
"callClassification": "OffNet",
"allowDeviceOverride": false,
"useCallingPartyExternalPhoneNumMask": false,
"cgNamePresBit": "Default",
"connLinePresBit": "Default",
"urgentPriority": true
},
{
"provideOutsideDialTone": false,
"reqClientMatterCode": false,
"reqForcedAuthCode": false,
"releaseClause": "No Error",
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"pattern": "**00327.!",
"patternPrecedence": "Default",
"routeOption": "Route this pattern",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-DBRteSel-PT",
"authLevel": "0",
"description": "AAM_Group CT=Mobl1nFACnCMC use Mobl RL",
"calledPartyPrefixDigits": "+27",
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupMobl-SLRG-RL",
"cgLinePresBit": "Default",
"connNamePresBit": "Default",
"callClassification": "OffNet",
"allowDeviceOverride": false,
"useCallingPartyExternalPhoneNumMask": false,
"cgNamePresBit": "Default",
"connLinePresBit": "Default",
"urgentPriority": true
},
{
"provideOutsideDialTone": false,
"reqClientMatterCode": false,
"reqForcedAuthCode": true,
"releaseClause": "No Error",
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"pattern": "**10327.!",
"patternPrecedence": "Default",
"routeOption": "Route this pattern",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-DBRteSel-PT",
"authLevel": "6",
"description": "AAM_Group CT=Mobl1yFACnCMC use Mobl RL",
"calledPartyPrefixDigits": "+27",
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupMobl-SLRG-RL",
"cgLinePresBit": "Default",
"connNamePresBit": "Default",
"callClassification": "OffNet",
"allowDeviceOverride": false,
"useCallingPartyExternalPhoneNumMask": false,
"cgNamePresBit": "Default",
"connLinePresBit": "Default",
"urgentPriority": true
},
{
"provideOutsideDialTone": false,
"reqClientMatterCode": true,
"reqForcedAuthCode": false,
"releaseClause": "No Error",
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"pattern": "**20327.!",
"patternPrecedence": "Default",
"routeOption": "Route this pattern",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-DBRteSel-PT",
"authLevel": "0",
"description": "AAM_Group CT=Mobl1nFACyCMC use Mobl RL",
"calledPartyPrefixDigits": "+27",
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupMobl-SLRG-RL",
"cgLinePresBit": "Default",
"connNamePresBit": "Default",
"callClassification": "OffNet",
"allowDeviceOverride": false,
"useCallingPartyExternalPhoneNumMask": false,
"cgNamePresBit": "Default",
"connLinePresBit": "Default",
"urgentPriority": true
},
{
"provideOutsideDialTone": false,
"reqClientMatterCode": true,
"reqForcedAuthCode": true,
"releaseClause": "No Error",
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"pattern": "**30327.!",
"patternPrecedence": "Default",
"routeOption": "Route this pattern",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-DBRteSel-PT",
"authLevel": "6",
"description": "AAM_Group CT=Mobl1yFACyCMC use Mobl RL",
"calledPartyPrefixDigits": "+27",
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupMobl-SLRG-RL",
"cgLinePresBit": "Default",
"connNamePresBit": "Default",
"callClassification": "OffNet",
"allowDeviceOverride": false,
"useCallingPartyExternalPhoneNumMask": false,
"cgNamePresBit": "Default",
"connLinePresBit": "Default",
"urgentPriority": true
},
{
"urgentPriority": true,
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "AAM_Group CT=SVC55nFACnCMC use SVC RL",
"cgLinePresBit": "Default",
"pattern": "**00527.!",
"callClassification": "OffNet",
"patternPrecedence": "Default",
"allowDeviceOverride": false,
"authLevel": "0",
"cgNamePresBit": "Default",
"reqClientMatterCode": false,
"reqForcedAuthCode": false,
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-DBRteSel-PT",
"connNamePresBit": "Default",
"connLinePresBit": "Default",
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupServ-SLRG-RL",
"routeOption": "Route this pattern",
"releaseClause": "No Error",
"useCallingPartyExternalPhoneNumMask": false
},
{
"urgentPriority": true,
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "AAM_Group CT=SVC1yFACnCMC use SVC RL",
"cgLinePresBit": "Default",
"pattern": "**10527.!",
"callClassification": "OffNet",
"patternPrecedence": "Default",
"allowDeviceOverride": false,
"authLevel": "6",
"cgNamePresBit": "Default",
"reqClientMatterCode": false,
"reqForcedAuthCode": true,
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-DBRteSel-PT",
"connNamePresBit": "Default",
"connLinePresBit": "Default",
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupServ-SLRG-RL",
"routeOption": "Route this pattern",
"releaseClause": "No Error",
"useCallingPartyExternalPhoneNumMask": false
},
{
"urgentPriority": true,
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "AAM_GroupDP CT=SVC1nFACyCMC use SVC RL",
"cgLinePresBit": "Default",
"pattern": "**20527.!",
"callClassification": "OffNet",
"patternPrecedence": "Default",
"allowDeviceOverride": false,
"authLevel": "0",
"cgNamePresBit": "Default",
"reqClientMatterCode": true,
"reqForcedAuthCode": false,
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-DBRteSel-PT",
"connNamePresBit": "Default",
"connLinePresBit": "Default",
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupServ-SLRG-RL",
"routeOption": "Block this pattern",
"releaseClause": "Call Rejected",
"useCallingPartyExternalPhoneNumMask": false
},
{
"urgentPriority": true,
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "AAM_Group CT=SVC1yFACyCMC use SVC RL",
"cgLinePresBit": "Default",
"pattern": "**30527.!",
"callClassification": "OffNet",
"patternPrecedence": "Default",
"allowDeviceOverride": false,
"authLevel": "6",
"cgNamePresBit": "Default",
"reqClientMatterCode": true,
"reqForcedAuthCode": true,
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-DBRteSel-PT",
"connNamePresBit": "Default",
"connLinePresBit": "Default",
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupServ-SLRG-RL",
"routeOption": "Route this pattern",
"releaseClause": "No Error",
"useCallingPartyExternalPhoneNumMask": false
},
{
"provideOutsideDialTone": false,
"reqClientMatterCode": false,
"reqForcedAuthCode": false,
"releaseClause": "No Error",
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"pattern": "**00627.!",
"patternPrecedence": "Default",
"routeOption": "Route this pattern",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-DBRteSel-PT",
"authLevel": "0",
"description": "AAM_Group CT=Local1nFACnCMC use Local RL",
"calledPartyPrefixDigits": "+27",
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupLocal-SLRG-RL",
"cgLinePresBit": "Default",
"connNamePresBit": "Default",
"callClassification": "OffNet",
"allowDeviceOverride": false,
"useCallingPartyExternalPhoneNumMask": false,
"cgNamePresBit": "Default",
"connLinePresBit": "Default",
"urgentPriority": true
},
{
"provideOutsideDialTone": false,
"reqClientMatterCode": false,
"reqForcedAuthCode": true,
"releaseClause": "No Error",
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"pattern": "**10627.!",
"patternPrecedence": "Default",
"routeOption": "Route this pattern",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-DBRteSel-PT",
"authLevel": "1",
"description": "AAM_Group CT=Local1yFACnCMC use Local RL",
"calledPartyPrefixDigits": "+27",
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupLocal-SLRG-RL",
"cgLinePresBit": "Default",
"connNamePresBit": "Default",
"callClassification": "OffNet",
"allowDeviceOverride": false,
"useCallingPartyExternalPhoneNumMask": false,
"cgNamePresBit": "Default",
"connLinePresBit": "Default",
"urgentPriority": true
},
{
"provideOutsideDialTone": false,
"reqClientMatterCode": true,
"reqForcedAuthCode": false,
"releaseClause": "No Error",
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"pattern": "**20627.!",
"patternPrecedence": "Default",
"routeOption": "Route this pattern",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-DBRteSel-PT",
"authLevel": "0",
"description": "AAM_Group CT=Local1nFACyCMC use Local RL",
"calledPartyPrefixDigits": "+27",
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupLocal-SLRG-RL",
"cgLinePresBit": "Default",
"connNamePresBit": "Default",
"callClassification": "OffNet",
"allowDeviceOverride": false,
"useCallingPartyExternalPhoneNumMask": false,
"cgNamePresBit": "Default",
"connLinePresBit": "Default",
"urgentPriority": true
},
{
"provideOutsideDialTone": false,
"reqClientMatterCode": true,
"reqForcedAuthCode": true,
"releaseClause": "No Error",
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"pattern": "**30627.!",
"patternPrecedence": "Default",
"routeOption": "Route this pattern",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-DBRteSel-PT",
"authLevel": "1",
"description": "AAM_Group CT=Local1yFACyCMC use Local RL",
"calledPartyPrefixDigits": "+27",
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupLocal-SLRG-RL",
"cgLinePresBit": "Default",
"connNamePresBit": "Default",
"callClassification": "OffNet",
"allowDeviceOverride": false,
"useCallingPartyExternalPhoneNumMask": false,
"cgNamePresBit": "Default",
"connLinePresBit": "Default",
"urgentPriority": true
},
{
"provideOutsideDialTone": false,
"reqClientMatterCode": false,
"reqForcedAuthCode": false,
"releaseClause": "No Error",
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"pattern": "**00727.!",
"patternPrecedence": "Default",
"routeOption": "Route this pattern",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-DBRteSel-PT",
"authLevel": "0",
"description": "AAM_Group CT=PRSN1nFACnCMC use PRSN RL",
"calledPartyPrefixDigits": "+27",
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupPRSN-SLRG-RL",
"cgLinePresBit": "Default",
"connNamePresBit": "Default",
"callClassification": "OffNet",
"allowDeviceOverride": false,
"useCallingPartyExternalPhoneNumMask": false,
"cgNamePresBit": "Default",
"connLinePresBit": "Default",
"urgentPriority": true
},
{
"provideOutsideDialTone": false,
"reqClientMatterCode": false,
"reqForcedAuthCode": true,
"releaseClause": "No Error",
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"pattern": "**10727.!",
"patternPrecedence": "Default",
"routeOption": "Route this pattern",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-DBRteSel-PT",
"authLevel": "9",
"description": "AAM_Group CT=PRSN1yFACnCMC use PRSN RL",
"calledPartyPrefixDigits": "+27",
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupPRSN-SLRG-RL",
"cgLinePresBit": "Default",
"connNamePresBit": "Default",
"callClassification": "OffNet",
"allowDeviceOverride": false,
"useCallingPartyExternalPhoneNumMask": false,
"cgNamePresBit": "Default",
"connLinePresBit": "Default",
"urgentPriority": true
},
{
"provideOutsideDialTone": false,
"reqClientMatterCode": true,
"reqForcedAuthCode": false,
"releaseClause": "No Error",
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"pattern": "**20727.!",
"patternPrecedence": "Default",
"routeOption": "Route this pattern",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-DBRteSel-PT",
"authLevel": "0",
"description": "AAM_Group CT=PRSN1nFACyCMC use PRSN RL",
"calledPartyPrefixDigits": "+27",
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupPRSN-SLRG-RL",
"cgLinePresBit": "Default",
"connNamePresBit": "Default",
"callClassification": "OffNet",
"allowDeviceOverride": false,
"useCallingPartyExternalPhoneNumMask": false,
"cgNamePresBit": "Default",
"connLinePresBit": "Default",
"urgentPriority": true
},
{
"provideOutsideDialTone": false,
"reqClientMatterCode": true,
"reqForcedAuthCode": true,
"releaseClause": "No Error",
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"pattern": "**30727.!",
"patternPrecedence": "Default",
"routeOption": "Route this pattern",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-DBRteSel-PT",
"authLevel": "9",
"description": "AAM_Group CT=PRSN1yFACyCMC use PRSN RL",
"calledPartyPrefixDigits": "+27",
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupPRSN-SLRG-RL",
"cgLinePresBit": "Default",
"connNamePresBit": "Default",
"callClassification": "OffNet",
"allowDeviceOverride": false,
"useCallingPartyExternalPhoneNumMask": false,
"cgNamePresBit": "Default",
"connLinePresBit": "Default",
"urgentPriority": true
},
{
"provideOutsideDialTone": false,
"reqClientMatterCode": false,
"reqForcedAuthCode": false,
"releaseClause": "No Error",
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"pattern": "**00827.!",
"patternPrecedence": "Default",
"routeOption": "Route this pattern",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-DBRteSel-PT",
"authLevel": "0",
"description": "AAM_Group CT=FPHN1nFACnCMC use FPHN RL",
"calledPartyPrefixDigits": "+27",
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupFPHN-SLRG-RL",
"cgLinePresBit": "Default",
"connNamePresBit": "Default",
"callClassification": "OffNet",
"allowDeviceOverride": false,
"useCallingPartyExternalPhoneNumMask": false,
"cgNamePresBit": "Default",
"connLinePresBit": "Default",
"urgentPriority": true
},
{
"provideOutsideDialTone": false,
"reqClientMatterCode": false,
"reqForcedAuthCode": true,
"releaseClause": "No Error",
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"pattern": "**10827.!",
"patternPrecedence": "Default",
"routeOption": "Route this pattern",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-DBRteSel-PT",
"authLevel": "6",
"description": "AAM_Group CT=FPHN1yFACnCMC use FPHN RL",
"calledPartyPrefixDigits": "+27",
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupFPHN-SLRG-RL",
"cgLinePresBit": "Default",
"connNamePresBit": "Default",
"callClassification": "OffNet",
"allowDeviceOverride": false,
"useCallingPartyExternalPhoneNumMask": false,
"cgNamePresBit": "Default",
"connLinePresBit": "Default",
"urgentPriority": true
},
{
"provideOutsideDialTone": false,
"reqClientMatterCode": true,
"reqForcedAuthCode": false,
"releaseClause": "No Error",
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"pattern": "**20827.!",
"patternPrecedence": "Default",
"routeOption": "Route this pattern",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-DBRteSel-PT",
"authLevel": "0",
"description": "AAM_Group CT=FPHN1nFACyCMC use FPHN RL",
"calledPartyPrefixDigits": "+27",
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupFPHN-SLRG-RL",
"cgLinePresBit": "Default",
"connNamePresBit": "Default",
"callClassification": "OffNet",
"allowDeviceOverride": false,
"useCallingPartyExternalPhoneNumMask": false,
"cgNamePresBit": "Default",
"connLinePresBit": "Default",
"urgentPriority": true
},
{
"provideOutsideDialTone": false,
"reqClientMatterCode": true,
"reqForcedAuthCode": true,
"releaseClause": "No Error",
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"pattern": "**30827.!",
"patternPrecedence": "Default",
"routeOption": "Route this pattern",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-DBRteSel-PT",
"authLevel": "6",
"description": "AAM_Group CT=FPHN1yFACyCMC use FPHN RL",
"calledPartyPrefixDigits": "+27",
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupFPHN-SLRG-RL",
"cgLinePresBit": "Default",
"connNamePresBit": "Default",
"callClassification": "OffNet",
"allowDeviceOverride": false,
"useCallingPartyExternalPhoneNumMask": false,
"cgNamePresBit": "Default",
"connLinePresBit": "Default",
"urgentPriority": true
},
{
"provideOutsideDialTone": false,
"reqClientMatterCode": false,
"reqForcedAuthCode": false,
"releaseClause": "No Error",
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"pattern": "**00927.!",
"patternPrecedence": "Default",
"routeOption": "Route this pattern",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-DBRteSel-PT",
"authLevel": "0",
"description": "AAM_Group CT=PCSN1nFACnCMC use PCSN RL",
"calledPartyPrefixDigits": "+27",
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupPCSN-SLRG-RL",
"cgLinePresBit": "Default",
"connNamePresBit": "Default",
"callClassification": "OffNet",
"allowDeviceOverride": false,
"useCallingPartyExternalPhoneNumMask": false,
"cgNamePresBit": "Default",
"connLinePresBit": "Default",
"urgentPriority": true
},
{
"provideOutsideDialTone": false,
"reqClientMatterCode": false,
"reqForcedAuthCode": true,
"releaseClause": "No Error",
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"pattern": "**10927.!",
"patternPrecedence": "Default",
"routeOption": "Route this pattern",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-DBRteSel-PT",
"authLevel": "6",
"description": "AAM_Group CT=PCSN1yFACnCMC use PCSN RL",
"calledPartyPrefixDigits": "+27",
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupPCSN-SLRG-RL",
"cgLinePresBit": "Default",
"connNamePresBit": "Default",
"callClassification": "OffNet",
"allowDeviceOverride": false,
"useCallingPartyExternalPhoneNumMask": false,
"cgNamePresBit": "Default",
"connLinePresBit": "Default",
"urgentPriority": true
},
{
"provideOutsideDialTone": false,
"reqClientMatterCode": true,
"reqForcedAuthCode": false,
"releaseClause": "No Error",
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"pattern": "**20927.!",
"patternPrecedence": "Default",
"routeOption": "Route this pattern",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-DBRteSel-PT",
"authLevel": "0",
"description": "AAM_Group CT=PCSN1nFACyCMC use PCSN RL",
"calledPartyPrefixDigits": "+27",
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupPCSN-SLRG-RL",
"cgLinePresBit": "Default",
"connNamePresBit": "Default",
"callClassification": "OffNet",
"allowDeviceOverride": false,
"useCallingPartyExternalPhoneNumMask": false,
"cgNamePresBit": "Default",
"connLinePresBit": "Default",
"urgentPriority": true
},
{
"provideOutsideDialTone": false,
"reqClientMatterCode": true,
"reqForcedAuthCode": true,
"releaseClause": "No Error",
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"pattern": "**30927.!",
"patternPrecedence": "Default",
"routeOption": "Route this pattern",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-DBRteSel-PT",
"authLevel": "6",
"description": "AAM_Group CT=PCSN1yFACyCMC use PCSN RL",
"calledPartyPrefixDigits": "+27",
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupPCSN-SLRG-RL",
"cgLinePresBit": "Default",
"connNamePresBit": "Default",
"callClassification": "OffNet",
"allowDeviceOverride": false,
"useCallingPartyExternalPhoneNumMask": false,
"cgNamePresBit": "Default",
"connLinePresBit": "Default",
"urgentPriority": true
},
{
"provideOutsideDialTone": false,
"reqClientMatterCode": false,
"reqForcedAuthCode": false,
"releaseClause": "No Error",
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"pattern": "**01027.!",
"patternPrecedence": "Default",
"routeOption": "Route this pattern",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-DBRteSel-PT",
"authLevel": "0",
"description": "AAM_Group CT=SRSN1nFACnCMC use SRSN RL",
"calledPartyPrefixDigits": "+27",
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupSRSN-RL",
"cgLinePresBit": "Default",
"connNamePresBit": "Default",
"callClassification": "OffNet",
"allowDeviceOverride": false,
"useCallingPartyExternalPhoneNumMask": false,
"cgNamePresBit": "Default",
"connLinePresBit": "Default",
"urgentPriority": true
},
{
"provideOutsideDialTone": false,
"reqClientMatterCode": false,
"reqForcedAuthCode": true,
"releaseClause": "No Error",
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"pattern": "**11027.!",
"patternPrecedence": "Default",
"routeOption": "Route this pattern",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-DBRteSel-PT",
"authLevel": "6",
"description": "AAM_Group CT=SRSN1yFACnCMC use SRSN RL",
"calledPartyPrefixDigits": "+27",
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupSRSN-SLRG-RL",
"cgLinePresBit": "Default",
"connNamePresBit": "Default",
"callClassification": "OffNet",
"allowDeviceOverride": false,
"useCallingPartyExternalPhoneNumMask": false,
"cgNamePresBit": "Default",
"connLinePresBit": "Default",
"urgentPriority": true
},
{
"provideOutsideDialTone": false,
"reqClientMatterCode": true,
"reqForcedAuthCode": false,
"releaseClause": "No Error",
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"pattern": "**21027.!",
"patternPrecedence": "Default",
"routeOption": "Route this pattern",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-DBRteSel-PT",
"authLevel": "0",
"description": "AAM_Group CT=SRSN1nFACyCMC use SRSN RL",
"calledPartyPrefixDigits": "+27",
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupSRSN-RL",
"cgLinePresBit": "Default",
"connNamePresBit": "Default",
"callClassification": "OffNet",
"allowDeviceOverride": false,
"useCallingPartyExternalPhoneNumMask": false,
"cgNamePresBit": "Default",
"connLinePresBit": "Default",
"urgentPriority": true
},
{
"provideOutsideDialTone": false,
"reqClientMatterCode": true,
"reqForcedAuthCode": true,
"releaseClause": "No Error",
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"pattern": "**31027.!",
"patternPrecedence": "Default",
"routeOption": "Route this pattern",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-DBRteSel-PT",
"authLevel": "6",
"description": "AAM_Group CT=SRSN1yFACyCMC use SRSN RL",
"calledPartyPrefixDigits": "+27",
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupSRSN-SLRG-RL",
"cgLinePresBit": "Default",
"connNamePresBit": "Default",
"callClassification": "OffNet",
"allowDeviceOverride": false,
"useCallingPartyExternalPhoneNumMask": false,
"cgNamePresBit": "Default",
"connLinePresBit": "Default",
"urgentPriority": true
},
{
"urgentPriority": true,
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "AAM_Group CT=Oper1nFACnCMC use Oper RL",
"cgLinePresBit": "Default",
"pattern": "**01127.!",
"callClassification": "OffNet",
"patternPrecedence": "Default",
"allowDeviceOverride": false,
"authLevel": "0",
"cgNamePresBit": "Default",
"reqClientMatterCode": false,
"reqForcedAuthCode": false,
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-DBRteSel-PT",
"connNamePresBit": "Default",
"connLinePresBit": "Default",
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupOper-SLRG-RL",
"routeOption": "Route this pattern",
"releaseClause": "No Error",
"useCallingPartyExternalPhoneNumMask": false
},
{
"urgentPriority": true,
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "AAM_Group CT=Oper1yFACnCMC use Oper RL",
"cgLinePresBit": "Default",
"pattern": "**11127.!",
"callClassification": "OffNet",
"patternPrecedence": "Default",
"allowDeviceOverride": false,
"authLevel": "6",
"cgNamePresBit": "Default",
"reqClientMatterCode": false,
"reqForcedAuthCode": true,
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-DBRteSel-PT",
"connNamePresBit": "Default",
"connLinePresBit": "Default",
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupOper-SLRG-RL",
"routeOption": "Route this pattern",
"releaseClause": "Call Rejected",
"useCallingPartyExternalPhoneNumMask": false
},
{
"urgentPriority": true,
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "AAM_Group CT=Oper1nFACyCMC use Oper RL",
"cgLinePresBit": "Default",
"pattern": "**21127.!",
"callClassification": "OffNet",
"patternPrecedence": "Default",
"allowDeviceOverride": false,
"authLevel": "0",
"cgNamePresBit": "Default",
"reqClientMatterCode": true,
"reqForcedAuthCode": false,
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-DBRteSel-PT",
"connNamePresBit": "Default",
"connLinePresBit": "Default",
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupOper-SLRG-RL",
"routeOption": "Route this pattern",
"releaseClause": "No Error",
"useCallingPartyExternalPhoneNumMask": false
},
{
"urgentPriority": true,
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "AAM_Group CT=Oper1yFACyCMC use Oper RL",
"cgLinePresBit": "Default",
"pattern": "**31127.!",
"callClassification": "OffNet",
"patternPrecedence": "Default",
"allowDeviceOverride": false,
"authLevel": "6",
"cgNamePresBit": "Default",
"reqClientMatterCode": true,
"reqForcedAuthCode": true,
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-DBRteSel-PT",
"connNamePresBit": "Default",
"connLinePresBit": "Default",
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupOper-SLRG-RL",
"routeOption": "Route this pattern",
"releaseClause": "Call Rejected",
"useCallingPartyExternalPhoneNumMask": false
}
],
"hierarchy_friendly_name": "CS-P (Provider)",
"hierarchy_path": "sys.hcs.CS-P"
},
"meta": {
"model_type": "data/HcsDpDialPlanSchemaDAT",
"summary_attrs": [
{
"name": "name",
"title": "Dial Plan Name"
},
{
"name": "hierarchy_friendly_name",
"title": "Located At",
"allow_filtering": true
}
],
"tagged_versions": [],
"tags": [],
"title": "title format",
"business_key": {
"hierarchy": true,
"unique": [
"name"
]
},
"api_version": "21.2",
"cached": true,
"references": {
"device": [
{
"href": "",
"pkid": ""
}
],
"owner": [
{
"pkid": ""
}
],
"parent": [
{
"pkid": "5df0b338ce894e001275535c",
"href": "/api/data/HierarchyNode/5df0b338ce894e001275535c"
}
],
"foreign_key": [],
"self": [
{
"href": "/api/data/HcsDpDialPlanSchemaDAT/5df0b5d1ce894e001275a184/",
"pkid": "5df0b5d1ce894e001275a184"
}
]
},
"path": [
"6t0ggef2c0deab00hb595101",
"5da4c643ce894e0012225c90",
"5df0b338ce894e001275535c",
"5df0b5d1ce894e001275a184"
],
"schema_version": "2.0",
"actions": [
{
"update": {
"method": "PUT",
"class": "update",
"href": "/api/data/HcsDpDialPlanSchemaDAT/5df0b5d1ce894e001275a184/",
"support_async": true,
"title": "Modify"
}
},
{
"remove": {
"method": "DELETE",
"class": "delete",
"href": "/api/data/HcsDpDialPlanSchemaDAT/5df0b5d1ce894e001275a184/",
"support_async": true,
"title": "Delete"
}
},
{
"clone": {
"method": "GET",
"class": "clone",
"href": "/api/data/HcsDpDialPlanSchemaDAT/5df0b5d1ce894e001275a184/clone/?schema=&schema_rules=true",
"support_async": false,
"title": "Clone"
}
},
{
"export": {
"method": "GET",
"class": "export",
"href": "/api/data/HcsDpDialPlanSchemaDAT/5df0b5d1ce894e001275a184/export/",
"support_async": false,
"title": "Export",
"view": "/api/view/ExportData/add/",
"submit": "payload"
}
},
{
"get": {
"method": "GET",
"class": "get",
"href": "/api/data/HcsDpDialPlanSchemaDAT/5df0b5d1ce894e001275a184/",
"support_async": false,
"title": "Get"
}
},
{
"help": {
"method": "GET",
"class": "help",
"href": "/api/data/HcsDpDialPlanSchemaDAT/5df0b5d1ce894e001275a184/help",
"support_async": false,
"title": "Help"
}
}
],
"summary": "false"
},
"pkid": "5df0b5d1ce894e001275a184"
},
{
"data": {
"cssArray": [
{
"usage": "General",
"isClassOfService": true,
"partitionMembers": [
{
"index": "1",
"partition": "{{macro.HcsDpUniqueSitePrefixMCR}}-AAM_GroupDP-Emer-PT"
}
],
"name": "{{macro.HcsDpUniqueSitePrefixMCR}}-AAM_GroupDP-Emer-CSS",
"description": "{{macro.HcsDpUniqueSitePrefixMCR}}AAM_Group Emerg Handling CSS"
},
{
"usage": "General",
"isClassOfService": true,
"partitionMembers": [
{
"index": "1",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-Defn-PT"
},
{
"index": "2",
"partition": "{{macro.HcsDpUniqueSitePrefixMCR}}-AAM_GroupDP-Local-PT"
},
{
"index": "20",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-FONet-PT"
},
{
"index": "21",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-BlkAll-PT"
},
{
"index": "22",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR }}-CustSCode-PT"
},
{
"index": "35",
"partition": "{{macro.DP_CUST_PRE_INTER_SITE_ROUTING_PT}}"
},
{
"index": "36",
"partition": "{{macro.DP_CUST_ALLOW_VM_PT}}"
},
{
"index": "37",
"partition": "{{macro.DP_SITE_ALLOW_INTERNAL_PT}}"
},
{
"index": "38",
"partition": "{{macro.DP_SITE_FEATURE_PT}}"
},
{
"index": "39",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-URILookUp-PT"
},
{
"index": "40",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR }}-GDPR-PT"
}
],
"name": "{{pwf.HcsDpUniqueSitePrefixMCR}}-InternalOnly-CSS-26",
"description": "{{pwf.HcsDpUniqueSitePrefixMCR}} Internal Only"
},
{
"usage": "General",
"isClassOfService": true,
"partitionMembers": [
{
"index": "1",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-Defn-PT"
},
{
"index": "2",
"partition": "{{macro.HcsDpUniqueSitePrefixMCR}}-AAM_GroupDP-Local-PT"
},
{
"index": "20",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-FONet-PT"
},
{
"index": "21",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-Allowed-PT"
},
{
"index": "22",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-24HrsCLIP-PT"
},
{
"index": "23",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-noFAC-PT"
},
{
"index": "24",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-noCMC-PT"
},
{
"index": "25",
"partition": "{{pwf.HcsDpUniqueSitePrefixMCR}}-LBOLBRtg-PT"
},
{
"index": "26",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-LBRtg-PT"
},
{
"index": "27",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR }}-CustSCode-PT"
},
{
"index": "35",
"partition": "{{macro.DP_CUST_PRE_INTER_SITE_ROUTING_PT}}"
},
{
"index": "36",
"partition": "{{macro.DP_CUST_ALLOW_VM_PT}}"
},
{
"index": "37",
"partition": "{{macro.DP_SITE_ALLOW_INTERNAL_PT}}"
},
{
"index": "38",
"partition": "{{macro.DP_SITE_FEATURE_PT}}"
},
{
"index": "39",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-URILookUp-PT"
},
{
"index": "40",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR }}-GDPR-PT"
}
],
"name": "{{pwf.HcsDpUniqueSitePrefixMCR}}-Intl24HrsEnh-CSS-21",
"description": "{{pwf.HcsDpUniqueSitePrefixMCR}} Intl 24Hrs Enhanced"
},
{
"usage": "General",
"isClassOfService": true,
"partitionMembers": [
{
"index": "1",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-Defn-PT"
},
{
"index": "2",
"partition": "{{macro.HcsDpUniqueSitePrefixMCR}}-AAM_GroupDP-Local-PT"
},
{
"index": "20",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-FONet-PT"
},
{
"index": "21",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-Allowed-PT"
},
{
"index": "22",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-WkHrsCLIP-PT"
},
{
"index": "23",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-noFAC-PT"
},
{
"index": "24",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-noCMC-PT"
},
{
"index": "25",
"partition": "{{pwf.HcsDpUniqueSitePrefixMCR}}-LBOLBRtg-PT"
},
{
"index": "26",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-LBRtg-PT"
},
{
"index": "27",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR }}-CustSCode-PT"
},
{
"index": "35",
"partition": "{{macro.DP_CUST_PRE_INTER_SITE_ROUTING_PT}}"
},
{
"index": "36",
"partition": "{{macro.DP_CUST_ALLOW_VM_PT}}"
},
{
"index": "37",
"partition": "{{macro.DP_SITE_ALLOW_INTERNAL_PT}}"
},
{
"index": "38",
"partition": "{{macro.DP_SITE_FEATURE_PT}}"
},
{
"index": "39",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-URILookUp-PT"
},
{
"index": "40",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR }}-GDPR-PT"
}
],
"name": "{{pwf.HcsDpUniqueSitePrefixMCR}}-IntlWorkHrsEnh-CSS-21W",
"description": "{{pwf.HcsDpUniqueSitePrefixMCR}} Intl Work Hours Enhanced"
},
{
"usage": "General",
"isClassOfService": true,
"partitionMembers": [
{
"index": "1",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-Defn-PT"
},
{
"index": "2",
"partition": "{{macro.HcsDpUniqueSitePrefixMCR}}-AAM_GroupDP-Local-PT"
},
{
"index": "20",
"partition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-FONet-PT"
},
{
"index": "21",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-Allowed-PT"
},
{
"index": "22",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-ExtHrsCLIP-PT"
},
{
"index": "23",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-noFAC-PT"
},
{
"index": "24",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-noCMC-PT"
},
{
"index": "25",
"partition": "{{pwf.HcsDpUniqueSitePrefixMCR}}-LBOLBRtg-PT"
},
{
"index": "26",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-LBRtg-PT"
},
{
"index": "27",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR }}-CustSCode-PT"
},
{
"index": "35",
"partition": "{{macro.DP_CUST_PRE_INTER_SITE_ROUTING_PT}}"
},
{
"index": "36",
"partition": "{{macro.DP_CUST_ALLOW_VM_PT}}"
},
{
"index": "37",
"partition": "{{macro.DP_SITE_ALLOW_INTERNAL_PT}}"
},
{
"index": "38",
"partition": "{{macro.DP_SITE_FEATURE_PT}}"
},
{
"index": "39",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-URILookUp-PT"
},
{
"index": "40",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR }}-GDPR-PT"
}
],
"name": "{{pwf.HcsDpUniqueSitePrefixMCR}}-IntlExtHrsEnh-CSS-21E",
"description": "{{pwf.HcsDpUniqueSitePrefixMCR}} Intl Extended Hrs Enhanced"
},
{
"usage": "General",
"isClassOfService": true,
"partitionMembers": [
{
"index": "1",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-Defn-PT"
},
{
"index": "2",
"partition": "{{macro.HcsDpUniqueSitePrefixMCR}}-AAM_GroupDP-Local-PT"
},
{
"index": "20",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-FONet-PT"
},
{
"index": "21",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-Allowed-PT"
},
{
"index": "22",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-24HrsCLIR-PT"
},
{
"index": "23",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-noFAC-PT"
},
{
"index": "24",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-noCMC-PT"
},
{
"index": "25",
"partition": "{{pwf.HcsDpUniqueSitePrefixMCR}}-LBOLBRtg-PT"
},
{
"index": "26",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-LBRtg-PT"
},
{
"index": "27",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR }}-CustSCode-PT"
},
{
"index": "35",
"partition": "{{macro.DP_CUST_PRE_INTER_SITE_ROUTING_PT}}"
},
{
"index": "36",
"partition": "{{macro.DP_CUST_ALLOW_VM_PT}}"
},
{
"index": "37",
"partition": "{{macro.DP_SITE_ALLOW_INTERNAL_PT}}"
},
{
"index": "38",
"partition": "{{macro.DP_SITE_FEATURE_PT}}"
},
{
"index": "39",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-URILookUp-PT"
},
{
"index": "40",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR }}-GDPR-PT"
}
],
"name": "{{pwf.HcsDpUniqueSitePrefixMCR}}-CLIRIntl24HrsEnh-CSS-21R",
"description": "{{pwf.HcsDpUniqueSitePrefixMCR}} CLIR Intl 24Hrs Enhanced"
},
{
"usage": "General",
"isClassOfService": true,
"partitionMembers": [
{
"index": "1",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-Defn-PT"
},
{
"index": "2",
"partition": "{{macro.HcsDpUniqueSitePrefixMCR}}-AAM_GroupDP-Local-PT"
},
{
"index": "20",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-FONet-PT"
},
{
"index": "21",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-Allowed-PT"
},
{
"index": "22",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-WkHrsCLIR-PT"
},
{
"index": "23",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-noFAC-PT"
},
{
"index": "24",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-noCMC-PT"
},
{
"index": "25",
"partition": "{{pwf.HcsDpUniqueSitePrefixMCR}}-LBOLBRtg-PT"
},
{
"index": "26",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-LBRtg-PT"
},
{
"index": "27",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR }}-CustSCode-PT"
},
{
"index": "35",
"partition": "{{macro.DP_CUST_PRE_INTER_SITE_ROUTING_PT}}"
},
{
"index": "36",
"partition": "{{macro.DP_CUST_ALLOW_VM_PT}}"
},
{
"index": "37",
"partition": "{{macro.DP_SITE_ALLOW_INTERNAL_PT}}"
},
{
"index": "38",
"partition": "{{macro.DP_SITE_FEATURE_PT}}"
},
{
"index": "39",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-URILookUp-PT"
},
{
"index": "40",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR }}-GDPR-PT"
}
],
"name": "{{pwf.HcsDpUniqueSitePrefixMCR}}-CLIRIntlWorkHrsEnh-CSS-21WR",
"description": "{{pwf.HcsDpUniqueSitePrefixMCR}} CLIR Intl Work Hours Enhanced"
},
{
"usage": "General",
"isClassOfService": true,
"partitionMembers": [
{
"index": "1",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-Defn-PT"
},
{
"index": "2",
"partition": "{{macro.HcsDpUniqueSitePrefixMCR}}-AAM_GroupDP-Local-PT"
},
{
"index": "20",
"partition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-FONet-PT"
},
{
"index": "21",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-Allowed-PT"
},
{
"index": "22",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-ExtHrsCLIR-PT"
},
{
"index": "23",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-noFAC-PT"
},
{
"index": "24",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-noCMC-PT"
},
{
"index": "25",
"partition": "{{pwf.HcsDpUniqueSitePrefixMCR}}-LBOLBRtg-PT"
},
{
"index": "26",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-LBRtg-PT"
},
{
"index": "27",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR }}-CustSCode-PT"
},
{
"index": "35",
"partition": "{{macro.DP_CUST_PRE_INTER_SITE_ROUTING_PT}}"
},
{
"index": "36",
"partition": "{{macro.DP_CUST_ALLOW_VM_PT}}"
},
{
"index": "37",
"partition": "{{macro.DP_SITE_ALLOW_INTERNAL_PT}}"
},
{
"index": "38",
"partition": "{{macro.DP_SITE_FEATURE_PT}}"
},
{
"index": "39",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-URILookUp-PT"
},
{
"index": "40",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR }}-GDPR-PT"
}
],
"name": "{{pwf.HcsDpUniqueSitePrefixMCR}}-CLIRIntlExtHrsEnh-CSS-21ER",
"description": "{{pwf.HcsDpUniqueSitePrefixMCR}} CLIR Intl Extended Hrs Enhanced"
},
{
"usage": "General",
"isClassOfService": true,
"partitionMembers": [
{
"index": "1",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-Defn-PT"
},
{
"index": "2",
"partition": "{{macro.HcsDpUniqueSitePrefixMCR}}-AAM_GroupDP-Local-PT"
},
{
"index": "20",
"partition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-FONet-PT"
},
{
"index": "21",
"partition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-BlkPRS-PT"
},
{
"index": "22",
"partition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-BlkPCS-PT"
},
{
"index": "23",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-Allowed-PT"
},
{
"index": "24",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-24HrsCLIP-PT"
},
{
"index": "25",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-noFAC-PT"
},
{
"index": "26",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-noCMC-PT"
},
{
"index": "27",
"partition": "{{pwf.HcsDpUniqueSitePrefixMCR}}-LBOLBRtg-PT"
},
{
"index": "28",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-LBRtg-PT"
},
{
"index": "29",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR }}-CustSCode-PT"
},
{
"index": "35",
"partition": "{{macro.DP_CUST_PRE_INTER_SITE_ROUTING_PT}}"
},
{
"index": "36",
"partition": "{{macro.DP_CUST_ALLOW_VM_PT}}"
},
{
"index": "37",
"partition": "{{macro.DP_SITE_ALLOW_INTERNAL_PT}}"
},
{
"index": "38",
"partition": "{{macro.DP_SITE_FEATURE_PT}}"
},
{
"index": "39",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-URILookUp-PT"
},
{
"index": "40",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR }}-GDPR-PT"
}
],
"name": "{{pwf.HcsDpUniqueSitePrefixMCR}}-Intl24HrsStd-CSS-22",
"description": "{{pwf.HcsDpUniqueSitePrefixMCR}} Intl 24Hrs Standard"
},
{
"usage": "General",
"isClassOfService": true,
"partitionMembers": [
{
"index": "1",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-Defn-PT"
},
{
"index": "2",
"partition": "{{macro.HcsDpUniqueSitePrefixMCR}}-AAM_GroupDP-Local-PT"
},
{
"index": "20",
"partition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-FONet-PT"
},
{
"index": "21",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-BlkPRS-PT"
},
{
"index": "22",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-BlkPCS-PT"
},
{
"index": "23",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-Allowed-PT"
},
{
"index": "24",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-WkHrsCLIP-PT"
},
{
"index": "25",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-noFAC-PT"
},
{
"index": "26",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-noCMC-PT"
},
{
"index": "27",
"partition": "{{pwf.HcsDpUniqueSitePrefixMCR}}-LBOLBRtg-PT"
},
{
"index": "28",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-LBRtg-PT"
},
{
"index": "29",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR }}-CustSCode-PT"
},
{
"index": "35",
"partition": "{{macro.DP_CUST_PRE_INTER_SITE_ROUTING_PT}}"
},
{
"index": "36",
"partition": "{{macro.DP_CUST_ALLOW_VM_PT}}"
},
{
"index": "37",
"partition": "{{macro.DP_SITE_ALLOW_INTERNAL_PT}}"
},
{
"index": "38",
"partition": "{{macro.DP_SITE_FEATURE_PT}}"
},
{
"index": "39",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-URILookUp-PT"
},
{
"index": "40",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR }}-GDPR-PT"
}
],
"name": "{{pwf.HcsDpUniqueSitePrefixMCR}}-IntlWorkHrsStd-CSS-22W",
"description": "{{pwf.HcsDpUniqueSitePrefixMCR}} Intl Work Hours Standard"
},
{
"usage": "General",
"isClassOfService": true,
"partitionMembers": [
{
"index": "1",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-Defn-PT"
},
{
"index": "2",
"partition": "{{macro.HcsDpUniqueSitePrefixMCR}}-AAM_GroupDP-Local-PT"
},
{
"index": "20",
"partition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-FONet-PT"
},
{
"index": "21",
"partition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-BlkPRS-PT"
},
{
"index": "22",
"partition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-BlkPCS-PT"
},
{
"index": "23",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-Allowed-PT"
},
{
"index": "24",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-ExtHrsCLIP-PT"
},
{
"index": "25",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-noFAC-PT"
},
{
"index": "26",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-noCMC-PT"
},
{
"index": "27",
"partition": "{{pwf.HcsDpUniqueSitePrefixMCR}}-LBOLBRtg-PT"
},
{
"index": "28",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-LBRtg-PT"
},
{
"index": "29",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR }}-CustSCode-PT"
},
{
"index": "35",
"partition": "{{macro.DP_CUST_PRE_INTER_SITE_ROUTING_PT}}"
},
{
"index": "36",
"partition": "{{macro.DP_CUST_ALLOW_VM_PT}}"
},
{
"index": "37",
"partition": "{{macro.DP_SITE_ALLOW_INTERNAL_PT}}"
},
{
"index": "38",
"partition": "{{macro.DP_SITE_FEATURE_PT}}"
},
{
"index": "39",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-URILookUp-PT"
},
{
"index": "40",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR }}-GDPR-PT"
}
],
"name": "{{pwf.HcsDpUniqueSitePrefixMCR}}-IntlExtHrsStd-CSS-22E",
"description": "{{pwf.HcsDpUniqueSitePrefixMCR}} Intl Extended Hrs Standard"
},
{
"usage": "General",
"isClassOfService": true,
"partitionMembers": [
{
"index": "1",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-Defn-PT"
},
{
"index": "2",
"partition": "{{macro.HcsDpUniqueSitePrefixMCR}}-AAM_GroupDP-Local-PT"
},
{
"index": "20",
"partition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-FONet-PT"
},
{
"index": "21",
"partition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-BlkPRS-PT"
},
{
"index": "22",
"partition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-BlkPCS-PT"
},
{
"index": "23",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-Allowed-PT"
},
{
"index": "24",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-24HrsCLIR-PT"
},
{
"index": "25",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-noFAC-PT"
},
{
"index": "26",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-noCMC-PT"
},
{
"index": "27",
"partition": "{{pwf.HcsDpUniqueSitePrefixMCR}}-LBOLBRtg-PT"
},
{
"index": "28",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-LBRtg-PT"
},
{
"index": "29",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR }}-CustSCode-PT"
},
{
"index": "35",
"partition": "{{macro.DP_CUST_PRE_INTER_SITE_ROUTING_PT}}"
},
{
"index": "36",
"partition": "{{macro.DP_CUST_ALLOW_VM_PT}}"
},
{
"index": "37",
"partition": "{{macro.DP_SITE_ALLOW_INTERNAL_PT}}"
},
{
"index": "38",
"partition": "{{macro.DP_SITE_FEATURE_PT}}"
},
{
"index": "39",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-URILookUp-PT"
},
{
"index": "40",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR }}-GDPR-PT"
}
],
"name": "{{pwf.HcsDpUniqueSitePrefixMCR}}-CLIRIntl24HrsStd-CSS-22R",
"description": "{{pwf.HcsDpUniqueSitePrefixMCR}} CLIR Intl 24Hrs Standard"
},
{
"usage": "General",
"isClassOfService": true,
"partitionMembers": [
{
"index": "1",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-Defn-PT"
},
{
"index": "2",
"partition": "{{macro.HcsDpUniqueSitePrefixMCR}}-AAM_GroupDP-Local-PT"
},
{
"index": "20",
"partition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-FONet-PT"
},
{
"index": "21",
"partition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-BlkPRS-PT"
},
{
"index": "22",
"partition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-BlkPCS-PT"
},
{
"index": "23",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-Allowed-PT"
},
{
"index": "24",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-WkHrsCLIR-PT"
},
{
"index": "25",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-noFAC-PT"
},
{
"index": "26",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-noCMC-PT"
},
{
"index": "27",
"partition": "{{pwf.HcsDpUniqueSitePrefixMCR}}-LBOLBRtg-PT"
},
{
"index": "28",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-LBRtg-PT"
},
{
"index": "29",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR }}-CustSCode-PT"
},
{
"index": "35",
"partition": "{{macro.DP_CUST_PRE_INTER_SITE_ROUTING_PT}}"
},
{
"index": "36",
"partition": "{{macro.DP_CUST_ALLOW_VM_PT}}"
},
{
"index": "37",
"partition": "{{macro.DP_SITE_ALLOW_INTERNAL_PT}}"
},
{
"index": "38",
"partition": "{{macro.DP_SITE_FEATURE_PT}}"
},
{
"index": "39",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-URILookUp-PT"
},
{
"index": "40",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR }}-GDPR-PT"
}
],
"name": "{{pwf.HcsDpUniqueSitePrefixMCR}}-CLIRIntlWorkHrsStd-CSS-22WR",
"description": "{{pwf.HcsDpUniqueSitePrefixMCR}} CLIR Intl Work Hours Standard"
},
{
"usage": "General",
"isClassOfService": true,
"partitionMembers": [
{
"index": "1",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-Defn-PT"
},
{
"index": "2",
"partition": "{{macro.HcsDpUniqueSitePrefixMCR}}-AAM_GroupDP-Local-PT"
},
{
"index": "20",
"partition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-FONet-PT"
},
{
"index": "21",
"partition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-BlkPRS-PT"
},
{
"index": "22",
"partition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-BlkPCS-PT"
},
{
"index": "23",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-Allowed-PT"
},
{
"index": "24",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-ExtHrsCLIR-PT"
},
{
"index": "25",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-noFAC-PT"
},
{
"index": "26",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-noCMC-PT"
},
{
"index": "27",
"partition": "{{pwf.HcsDpUniqueSitePrefixMCR}}-LBOLBRtg-PT"
},
{
"index": "28",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-LBRtg-PT"
},
{
"index": "29",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR }}-CustSCode-PT"
},
{
"index": "35",
"partition": "{{macro.DP_CUST_PRE_INTER_SITE_ROUTING_PT}}"
},
{
"index": "36",
"partition": "{{macro.DP_CUST_ALLOW_VM_PT}}"
},
{
"index": "37",
"partition": "{{macro.DP_SITE_ALLOW_INTERNAL_PT}}"
},
{
"index": "38",
"partition": "{{macro.DP_SITE_FEATURE_PT}}"
},
{
"index": "39",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-URILookUp-PT"
},
{
"index": "40",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR }}-GDPR-PT"
}
],
"name": "{{pwf.HcsDpUniqueSitePrefixMCR}}-CLIRIntlExtHrsStd-CSS-22ER",
"description": "{{pwf.HcsDpUniqueSitePrefixMCR}} CLIR Intl Extended Hrs Standard"
},
{
"usage": "General",
"isClassOfService": true,
"partitionMembers": [
{
"index": "1",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-Defn-PT"
},
{
"index": "2",
"partition": "{{macro.HcsDpUniqueSitePrefixMCR}}-AAM_GroupDP-Local-PT"
},
{
"index": "20",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-FONet-PT"
},
{
"index": "21",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-BlkIntl-PT"
},
{
"index": "22",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-Allowed-PT"
},
{
"index": "23",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-24HrsCLIP-PT"
},
{
"index": "24",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-noFAC-PT"
},
{
"index": "25",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-noCMC-PT"
},
{
"index": "26",
"partition": "{{pwf.HcsDpUniqueSitePrefixMCR}}-LBOLBRtg-PT"
},
{
"index": "27",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-LBRtg-PT"
},
{
"index": "28",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR }}-CustSCode-PT"
},
{
"index": "35",
"partition": "{{macro.DP_CUST_PRE_INTER_SITE_ROUTING_PT}}"
},
{
"index": "36",
"partition": "{{macro.DP_CUST_ALLOW_VM_PT}}"
},
{
"index": "37",
"partition": "{{macro.DP_SITE_ALLOW_INTERNAL_PT}}"
},
{
"index": "38",
"partition": "{{macro.DP_SITE_FEATURE_PT}}"
},
{
"index": "39",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-URILookUp-PT"
},
{
"index": "40",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR }}-GDPR-PT"
}
],
"name": "{{pwf.HcsDpUniqueSitePrefixMCR}}-Natl24HrsEnh-CSS-23",
"description": "{{pwf.HcsDpUniqueSitePrefixMCR}} Natl 24Hrs Enhanced"
},
{
"usage": "General",
"isClassOfService": true,
"partitionMembers": [
{
"index": "1",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-Defn-PT"
},
{
"index": "2",
"partition": "{{macro.HcsDpUniqueSitePrefixMCR}}-AAM_GroupDP-Local-PT"
},
{
"index": "20",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-FONet-PT"
},
{
"index": "21",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-BlkIntl-PT"
},
{
"index": "22",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-Allowed-PT"
},
{
"index": "23",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-WkHrsCLIP-PT"
},
{
"index": "24",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-noFAC-PT"
},
{
"index": "25",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-noCMC-PT"
},
{
"index": "26",
"partition": "{{pwf.HcsDpUniqueSitePrefixMCR}}-LBOLBRtg-PT"
},
{
"index": "27",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-LBRtg-PT"
},
{
"index": "28",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR }}-CustSCode-PT"
},
{
"index": "35",
"partition": "{{macro.DP_CUST_PRE_INTER_SITE_ROUTING_PT}}"
},
{
"index": "36",
"partition": "{{macro.DP_CUST_ALLOW_VM_PT}}"
},
{
"index": "37",
"partition": "{{macro.DP_SITE_ALLOW_INTERNAL_PT}}"
},
{
"index": "38",
"partition": "{{macro.DP_SITE_FEATURE_PT}}"
},
{
"index": "39",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-URILookUp-PT"
},
{
"index": "40",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR }}-GDPR-PT"
}
],
"name": "{{pwf.HcsDpUniqueSitePrefixMCR}}-NatlWorkHrsEnh-CSS-23W",
"description": "{{pwf.HcsDpUniqueSitePrefixMCR}} Natl Work Hrs Enhanced"
},
{
"usage": "General",
"isClassOfService": true,
"partitionMembers": [
{
"index": "1",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-Defn-PT"
},
{
"index": "2",
"partition": "{{macro.HcsDpUniqueSitePrefixMCR}}-AAM_GroupDP-Local-PT"
},
{
"index": "20",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-FONet-PT"
},
{
"index": "21",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-BlkIntl-PT"
},
{
"index": "22",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-Allowed-PT"
},
{
"index": "23",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-ExtHrsCLIP-PT"
},
{
"index": "24",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-noFAC-PT"
},
{
"index": "25",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-noCMC-PT"
},
{
"index": "26",
"partition": "{{pwf.HcsDpUniqueSitePrefixMCR}}-LBOLBRtg-PT"
},
{
"index": "27",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-LBRtg-PT"
},
{
"index": "28",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR }}-CustSCode-PT"
},
{
"index": "35",
"partition": "{{macro.DP_CUST_PRE_INTER_SITE_ROUTING_PT}}"
},
{
"index": "36",
"partition": "{{macro.DP_CUST_ALLOW_VM_PT}}"
},
{
"index": "37",
"partition": "{{macro.DP_SITE_ALLOW_INTERNAL_PT}}"
},
{
"index": "38",
"partition": "{{macro.DP_SITE_FEATURE_PT}}"
},
{
"index": "39",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-URILookUp-PT"
},
{
"index": "40",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR }}-GDPR-PT"
}
],
"name": "{{pwf.HcsDpUniqueSitePrefixMCR}}-NatlExtHrsEnh-CSS-23E",
"description": "{{pwf.HcsDpUniqueSitePrefixMCR}} Natl Extended Hrs Enhanced"
},
{
"usage": "General",
"isClassOfService": true,
"partitionMembers": [
{
"index": "1",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-Defn-PT"
},
{
"index": "2",
"partition": "{{macro.HcsDpUniqueSitePrefixMCR}}-AAM_GroupDP-Local-PT"
},
{
"index": "20",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-FONet-PT"
},
{
"index": "21",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-BlkIntl-PT"
},
{
"index": "22",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-Allowed-PT"
},
{
"index": "23",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-24HrsCLIR-PT"
},
{
"index": "24",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-noFAC-PT"
},
{
"index": "25",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-noCMC-PT"
},
{
"index": "26",
"partition": "{{pwf.HcsDpUniqueSitePrefixMCR}}-LBOLBRtg-PT"
},
{
"index": "27",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-LBRtg-PT"
},
{
"index": "28",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR }}-CustSCode-PT"
},
{
"index": "35",
"partition": "{{macro.DP_CUST_PRE_INTER_SITE_ROUTING_PT}}"
},
{
"index": "36",
"partition": "{{macro.DP_CUST_ALLOW_VM_PT}}"
},
{
"index": "37",
"partition": "{{macro.DP_SITE_ALLOW_INTERNAL_PT}}"
},
{
"index": "38",
"partition": "{{macro.DP_SITE_FEATURE_PT}}"
},
{
"index": "39",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-URILookUp-PT"
},
{
"index": "40",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR }}-GDPR-PT"
}
],
"name": "{{pwf.HcsDpUniqueSitePrefixMCR}}-CLIRNatl24HrsEnh-CSS-23R",
"description": "{{pwf.HcsDpUniqueSitePrefixMCR}} CLIR Natl 24Hrs Enhanced"
},
{
"usage": "General",
"isClassOfService": true,
"partitionMembers": [
{
"index": "1",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-Defn-PT"
},
{
"index": "2",
"partition": "{{macro.HcsDpUniqueSitePrefixMCR}}-AAM_GroupDP-Local-PT"
},
{
"index": "20",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-FONet-PT"
},
{
"index": "21",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-BlkIntl-PT"
},
{
"index": "22",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-Allowed-PT"
},
{
"index": "23",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-WkHrsCLIR-PT"
},
{
"index": "24",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-noFAC-PT"
},
{
"index": "25",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-noCMC-PT"
},
{
"index": "26",
"partition": "{{pwf.HcsDpUniqueSitePrefixMCR}}-LBOLBRtg-PT"
},
{
"index": "27",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-LBRtg-PT"
},
{
"index": "28",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR }}-CustSCode-PT"
},
{
"index": "35",
"partition": "{{macro.DP_CUST_PRE_INTER_SITE_ROUTING_PT}}"
},
{
"index": "36",
"partition": "{{macro.DP_CUST_ALLOW_VM_PT}}"
},
{
"index": "37",
"partition": "{{macro.DP_SITE_ALLOW_INTERNAL_PT}}"
},
{
"index": "38",
"partition": "{{macro.DP_SITE_FEATURE_PT}}"
},
{
"index": "39",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-URILookUp-PT"
},
{
"index": "40",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR }}-GDPR-PT"
}
],
"name": "{{pwf.HcsDpUniqueSitePrefixMCR}}-CLIRNatlWorkHrsEnh-CSS-23WR",
"description": "{{pwf.HcsDpUniqueSitePrefixMCR}} Natl Work Hrs Enhanced"
},
{
"usage": "General",
"isClassOfService": true,
"partitionMembers": [
{
"index": "1",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-Defn-PT"
},
{
"index": "2",
"partition": "{{macro.HcsDpUniqueSitePrefixMCR}}-AAM_GroupDP-Local-PT"
},
{
"index": "20",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-FONet-PT"
},
{
"index": "21",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-BlkIntl-PT"
},
{
"index": "22",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-Allowed-PT"
},
{
"index": "23",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-ExtHrsCLIR-PT"
},
{
"index": "24",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-noFAC-PT"
},
{
"index": "25",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-noCMC-PT"
},
{
"index": "26",
"partition": "{{pwf.HcsDpUniqueSitePrefixMCR}}-LBOLBRtg-PT"
},
{
"index": "27",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-LBRtg-PT"
},
{
"index": "28",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR }}-CustSCode-PT"
},
{
"index": "35",
"partition": "{{macro.DP_CUST_PRE_INTER_SITE_ROUTING_PT}}"
},
{
"index": "36",
"partition": "{{macro.DP_CUST_ALLOW_VM_PT}}"
},
{
"index": "37",
"partition": "{{macro.DP_SITE_ALLOW_INTERNAL_PT}}"
},
{
"index": "38",
"partition": "{{macro.DP_SITE_FEATURE_PT}}"
},
{
"index": "39",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-URILookUp-PT"
},
{
"index": "40",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR }}-GDPR-PT"
}
],
"name": "{{pwf.HcsDpUniqueSitePrefixMCR}}-CLIRNatlExtHrsEnh-CSS-23ER",
"description": "{{pwf.HcsDpUniqueSitePrefixMCR}} CLIR Natl Extended Hrs Enhanced"
},
{
"usage": "General",
"isClassOfService": true,
"partitionMembers": [
{
"index": "1",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-Defn-PT"
},
{
"index": "2",
"partition": "{{macro.HcsDpUniqueSitePrefixMCR}}-AAM_GroupDP-Local-PT"
},
{
"index": "20",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-FONet-PT"
},
{
"index": "21",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-BlkPRS-PT"
},
{
"index": "22",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-BlkIntl-PT"
},
{
"index": "23",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-Allowed-PT"
},
{
"index": "24",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-24HrsCLIP-PT"
},
{
"index": "25",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-noFAC-PT"
},
{
"index": "26",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-noCMC-PT"
},
{
"index": "27",
"partition": "{{pwf.HcsDpUniqueSitePrefixMCR}}-LBOLBRtg-PT"
},
{
"index": "28",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-LBRtg-PT"
},
{
"index": "29",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR }}-CustSCode-PT"
},
{
"index": "35",
"partition": "{{macro.DP_CUST_PRE_INTER_SITE_ROUTING_PT}}"
},
{
"index": "36",
"partition": "{{macro.DP_CUST_ALLOW_VM_PT}}"
},
{
"index": "37",
"partition": "{{macro.DP_SITE_ALLOW_INTERNAL_PT}}"
},
{
"index": "38",
"partition": "{{macro.DP_SITE_FEATURE_PT}}"
},
{
"index": "39",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-URILookUp-PT"
},
{
"index": "40",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR }}-GDPR-PT"
}
],
"name": "{{pwf.HcsDpUniqueSitePrefixMCR}}-Natl24HrsStd-CSS-24",
"description": "{{pwf.HcsDpUniqueSitePrefixMCR}} Natl 24Hrs Standard"
},
{
"usage": "General",
"isClassOfService": true,
"partitionMembers": [
{
"index": "1",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-Defn-PT"
},
{
"index": "2",
"partition": "{{macro.HcsDpUniqueSitePrefixMCR}}-AAM_GroupDP-Local-PT"
},
{
"index": "20",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-FONet-PT"
},
{
"index": "21",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-BlkPRS-PT"
},
{
"index": "22",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-BlkIntl-PT"
},
{
"index": "23",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-Allowed-PT"
},
{
"index": "24",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-WkHrsCLIP-PT"
},
{
"index": "25",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-noFAC-PT"
},
{
"index": "26",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-noCMC-PT"
},
{
"index": "27",
"partition": "{{pwf.HcsDpUniqueSitePrefixMCR}}-LBOLBRtg-PT"
},
{
"index": "28",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-LBRtg-PT"
},
{
"index": "29",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR }}-CustSCode-PT"
},
{
"index": "35",
"partition": "{{macro.DP_CUST_PRE_INTER_SITE_ROUTING_PT}}"
},
{
"index": "36",
"partition": "{{macro.DP_CUST_ALLOW_VM_PT}}"
},
{
"index": "37",
"partition": "{{macro.DP_SITE_ALLOW_INTERNAL_PT}}"
},
{
"index": "38",
"partition": "{{macro.DP_SITE_FEATURE_PT}}"
},
{
"index": "39",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-URILookUp-PT"
},
{
"index": "40",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR }}-GDPR-PT"
}
],
"name": "{{pwf.HcsDpUniqueSitePrefixMCR}}-NatlWorkHrsStd-CSS-24W",
"description": "{{pwf.HcsDpUniqueSitePrefixMCR}} Natl Work Hrs Standard"
},
{
"usage": "General",
"isClassOfService": true,
"partitionMembers": [
{
"index": "1",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-Defn-PT"
},
{
"index": "2",
"partition": "{{macro.HcsDpUniqueSitePrefixMCR}}-AAM_GroupDP-Local-PT"
},
{
"index": "20",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-FONet-PT"
},
{
"index": "21",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-BlkPRS-PT"
},
{
"index": "22",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-BlkIntl-PT"
},
{
"index": "23",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-Allowed-PT"
},
{
"index": "24",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-ExtHrsCLIP-PT"
},
{
"index": "25",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-noFAC-PT"
},
{
"index": "26",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-noCMC-PT"
},
{
"index": "27",
"partition": "{{pwf.HcsDpUniqueSitePrefixMCR}}-LBOLBRtg-PT"
},
{
"index": "28",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-LBRtg-PT"
},
{
"index": "29",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR }}-CustSCode-PT"
},
{
"index": "35",
"partition": "{{macro.DP_CUST_PRE_INTER_SITE_ROUTING_PT}}"
},
{
"index": "36",
"partition": "{{macro.DP_CUST_ALLOW_VM_PT}}"
},
{
"index": "37",
"partition": "{{macro.DP_SITE_ALLOW_INTERNAL_PT}}"
},
{
"index": "38",
"partition": "{{macro.DP_SITE_FEATURE_PT}}"
},
{
"index": "39",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-URILookUp-PT"
},
{
"index": "40",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR }}-GDPR-PT"
}
],
"name": "{{pwf.HcsDpUniqueSitePrefixMCR}}-NatlExtHrsStd-CSS-24E",
"description": "{{pwf.HcsDpUniqueSitePrefixMCR}} Natl Extended Hrs Standard"
},
{
"usage": "General",
"isClassOfService": true,
"partitionMembers": [
{
"index": "1",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-Defn-PT"
},
{
"index": "2",
"partition": "{{macro.HcsDpUniqueSitePrefixMCR}}-AAM_GroupDP-Local-PT"
},
{
"index": "20",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-FONet-PT"
},
{
"index": "21",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-BlkPRS-PT"
},
{
"index": "22",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-BlkIntl-PT"
},
{
"index": "23",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-Allowed-PT"
},
{
"index": "24",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-24HrsCLIR-PT"
},
{
"index": "25",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-noFAC-PT"
},
{
"index": "26",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-noCMC-PT"
},
{
"index": "27",
"partition": "{{pwf.HcsDpUniqueSitePrefixMCR}}-LBOLBRtg-PT"
},
{
"index": "28",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-LBRtg-PT"
},
{
"index": "29",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR }}-CustSCode-PT"
},
{
"index": "35",
"partition": "{{macro.DP_CUST_PRE_INTER_SITE_ROUTING_PT}}"
},
{
"index": "36",
"partition": "{{macro.DP_CUST_ALLOW_VM_PT}}"
},
{
"index": "37",
"partition": "{{macro.DP_SITE_ALLOW_INTERNAL_PT}}"
},
{
"index": "38",
"partition": "{{macro.DP_SITE_FEATURE_PT}}"
},
{
"index": "39",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-URILookUp-PT"
},
{
"index": "40",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR }}-GDPR-PT"
}
],
"name": "{{pwf.HcsDpUniqueSitePrefixMCR}}-CLIRNatl24HrsStd-CSS-24R",
"description": "{{pwf.HcsDpUniqueSitePrefixMCR}} CLIR Natl 24Hrs Standard"
},
{
"usage": "General",
"isClassOfService": true,
"partitionMembers": [
{
"index": "1",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-Defn-PT"
},
{
"index": "2",
"partition": "{{macro.HcsDpUniqueSitePrefixMCR}}-AAM_GroupDP-Local-PT"
},
{
"index": "20",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-FONet-PT"
},
{
"index": "21",
"partition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-BlkPRS-PT"
},
{
"index": "22",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-BlkIntl-PT"
},
{
"index": "23",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-Allowed-PT"
},
{
"index": "24",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-WkHrsCLIR-PT"
},
{
"index": "25",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-noFAC-PT"
},
{
"index": "26",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-noCMC-PT"
},
{
"index": "27",
"partition": "{{pwf.HcsDpUniqueSitePrefixMCR}}-LBOLBRtg-PT"
},
{
"index": "28",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-LBRtg-PT"
},
{
"index": "29",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR }}-CustSCode-PT"
},
{
"index": "35",
"partition": "{{macro.DP_CUST_PRE_INTER_SITE_ROUTING_PT}}"
},
{
"index": "36",
"partition": "{{macro.DP_CUST_ALLOW_VM_PT}}"
},
{
"index": "37",
"partition": "{{macro.DP_SITE_ALLOW_INTERNAL_PT}}"
},
{
"index": "38",
"partition": "{{macro.DP_SITE_FEATURE_PT}}"
},
{
"index": "39",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-URILookUp-PT"
},
{
"index": "40",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR }}-GDPR-PT"
}
],
"name": "{{pwf.HcsDpUniqueSitePrefixMCR}}-CLIRNatlWorkHrsStd-CSS-24WR",
"description": "{{pwf.HcsDpUniqueSitePrefixMCR}} CLIR Natl Work Hrs Standard"
},
{
"usage": "General",
"isClassOfService": true,
"partitionMembers": [
{
"index": "1",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-Defn-PT"
},
{
"index": "2",
"partition": "{{macro.HcsDpUniqueSitePrefixMCR}}-AAM_GroupDP-Local-PT"
},
{
"index": "20",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-FONet-PT"
},
{
"index": "21",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-BlkPRS-PT"
},
{
"index": "22",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-BlkIntl-PT"
},
{
"index": "23",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-Allowed-PT"
},
{
"index": "24",
"partition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ExtHrsCLIR-PT"
},
{
"index": "25",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-noFAC-PT"
},
{
"index": "26",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-noCMC-PT"
},
{
"index": "27",
"partition": "{{pwf.HcsDpUniqueSitePrefixMCR}}-LBOLBRtg-PT"
},
{
"index": "28",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-LBRtg-PT"
},
{
"index": "29",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR }}-CustSCode-PT"
},
{
"index": "35",
"partition": "{{macro.DP_CUST_PRE_INTER_SITE_ROUTING_PT}}"
},
{
"index": "36",
"partition": "{{macro.DP_CUST_ALLOW_VM_PT}}"
},
{
"index": "37",
"partition": "{{macro.DP_SITE_ALLOW_INTERNAL_PT}}"
},
{
"index": "38",
"partition": "{{macro.DP_SITE_FEATURE_PT}}"
},
{
"index": "39",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-URILookUp-PT"
},
{
"index": "40",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR }}-GDPR-PT"
}
],
"name": "{{pwf.HcsDpUniqueSitePrefixMCR}}-CLIRNatlExtHrsStd-CSS-24ER",
"description": "{{pwf.HcsDpUniqueSitePrefixMCR}} CLIR Natl Extended Hrs Standard"
},
{
"usage": "General",
"isClassOfService": true,
"partitionMembers": [
{
"index": "1",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-Defn-PT"
},
{
"index": "2",
"partition": "{{macro.HcsDpUniqueSitePrefixMCR}}-AAM_GroupDP-Local-PT"
},
{
"index": "20",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-FONet-PT"
},
{
"index": "21",
"partition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-BlkPRS-PT"
},
{
"index": "22",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-BlkIntl-PT"
},
{
"index": "23",
"partition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-BlkPCS-PT"
},
{
"index": "24",
"partition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-BlkMobl-PT"
},
{
"index": "25",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-Allowed-PT"
},
{
"index": "26",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-24HrsCLIP-PT"
},
{
"index": "27",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-noFAC-PT"
},
{
"index": "28",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-noCMC-PT"
},
{
"index": "29",
"partition": "{{pwf.HcsDpUniqueSitePrefixMCR}}-LBOLBRtg-PT"
},
{
"index": "30",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-LBRtg-PT"
},
{
"index": "31",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR }}-CustSCode-PT"
},
{
"index": "35",
"partition": "{{macro.DP_CUST_PRE_INTER_SITE_ROUTING_PT}}"
},
{
"index": "36",
"partition": "{{macro.DP_CUST_ALLOW_VM_PT}}"
},
{
"index": "37",
"partition": "{{macro.DP_SITE_ALLOW_INTERNAL_PT}}"
},
{
"index": "38",
"partition": "{{macro.DP_SITE_FEATURE_PT}}"
},
{
"index": "39",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-URILookUp-PT"
},
{
"index": "40",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR }}-GDPR-PT"
}
],
"name": "{{pwf.HcsDpUniqueSitePrefixMCR}}-Natl24HrsRst-CSS-25",
"description": "{{pwf.HcsDpUniqueSitePrefixMCR}} Natl 24Hrs Restricted"
},
{
"usage": "General",
"isClassOfService": true,
"partitionMembers": [
{
"index": "1",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-Defn-PT"
},
{
"index": "2",
"partition": "{{macro.HcsDpUniqueSitePrefixMCR}}-AAM_GroupDP-Local-PT"
},
{
"index": "20",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-FONet-PT"
},
{
"index": "21",
"partition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-BlkPRS-PT"
},
{
"index": "22",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-BlkIntl-PT"
},
{
"index": "23",
"partition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-BlkPCS-PT"
},
{
"index": "24",
"partition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-BlkMobl-PT"
},
{
"index": "25",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-Allowed-PT"
},
{
"index": "26",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-WkHrsCLIP-PT"
},
{
"index": "27",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-noFAC-PT"
},
{
"index": "28",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-noCMC-PT"
},
{
"index": "29",
"partition": "{{pwf.HcsDpUniqueSitePrefixMCR}}-LBOLBRtg-PT"
},
{
"index": "30",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-LBRtg-PT"
},
{
"index": "31",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR }}-CustSCode-PT"
},
{
"index": "35",
"partition": "{{macro.DP_CUST_PRE_INTER_SITE_ROUTING_PT}}"
},
{
"index": "36",
"partition": "{{macro.DP_CUST_ALLOW_VM_PT}}"
},
{
"index": "37",
"partition": "{{macro.DP_SITE_ALLOW_INTERNAL_PT}}"
},
{
"index": "38",
"partition": "{{macro.DP_SITE_FEATURE_PT}}"
},
{
"index": "39",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-URILookUp-PT"
},
{
"index": "40",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR }}-GDPR-PT"
}
],
"name": "{{pwf.HcsDpUniqueSitePrefixMCR}}-NatlWorkHrsRst-CSS-25W",
"description": "{{pwf.HcsDpUniqueSitePrefixMCR}} Natl Work Hrs Restricted"
},
{
"usage": "General",
"isClassOfService": true,
"partitionMembers": [
{
"index": "1",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-Defn-PT"
},
{
"index": "2",
"partition": "{{macro.HcsDpUniqueSitePrefixMCR}}-AAM_GroupDP-Local-PT"
},
{
"index": "20",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-FONet-PT"
},
{
"index": "21",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-BlkPRS-PT"
},
{
"index": "22",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-BlkIntl-PT"
},
{
"index": "23",
"partition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-BlkPCS-PT"
},
{
"index": "24",
"partition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-BlkMobl-PT"
},
{
"index": "25",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-Allowed-PT"
},
{
"index": "26",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-ExtHrsCLIP-PT"
},
{
"index": "27",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-noFAC-PT"
},
{
"index": "28",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-noCMC-PT"
},
{
"index": "29",
"partition": "{{pwf.HcsDpUniqueSitePrefixMCR}}-LBOLBRtg-PT"
},
{
"index": "30",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-LBRtg-PT"
},
{
"index": "31",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR }}-CustSCode-PT"
},
{
"index": "35",
"partition": "{{macro.DP_CUST_PRE_INTER_SITE_ROUTING_PT}}"
},
{
"index": "36",
"partition": "{{macro.DP_CUST_ALLOW_VM_PT}}"
},
{
"index": "37",
"partition": "{{macro.DP_SITE_ALLOW_INTERNAL_PT}}"
},
{
"index": "38",
"partition": "{{macro.DP_SITE_FEATURE_PT}}"
},
{
"index": "39",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-URILookUp-PT"
},
{
"index": "40",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR }}-GDPR-PT"
}
],
"name": "{{pwf.HcsDpUniqueSitePrefixMCR}}-NatlExtHrsRst-CSS-25E",
"description": "{{pwf.HcsDpUniqueSitePrefixMCR}} Natl Extended Hrs Restricted"
},
{
"usage": "General",
"isClassOfService": true,
"partitionMembers": [
{
"index": "1",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-Defn-PT"
},
{
"index": "2",
"partition": "{{macro.HcsDpUniqueSitePrefixMCR}}-AAM_GroupDP-Local-PT"
},
{
"index": "20",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-FONet-PT"
},
{
"index": "21",
"partition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-BlkPRS-PT"
},
{
"index": "22",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-BlkIntl-PT"
},
{
"index": "23",
"partition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-BlkPCS-PT"
},
{
"index": "24",
"partition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-BlkMobl-PT"
},
{
"index": "25",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-Allowed-PT"
},
{
"index": "26",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-24HrsCLIR-PT"
},
{
"index": "27",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-noFAC-PT"
},
{
"index": "28",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-noCMC-PT"
},
{
"index": "29",
"partition": "{{pwf.HcsDpUniqueSitePrefixMCR}}-LBOLBRtg-PT"
},
{
"index": "30",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-LBRtg-PT"
},
{
"index": "31",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR }}-CustSCode-PT"
},
{
"index": "35",
"partition": "{{macro.DP_CUST_PRE_INTER_SITE_ROUTING_PT}}"
},
{
"index": "36",
"partition": "{{macro.DP_CUST_ALLOW_VM_PT}}"
},
{
"index": "37",
"partition": "{{macro.DP_SITE_ALLOW_INTERNAL_PT}}"
},
{
"index": "38",
"partition": "{{macro.DP_SITE_FEATURE_PT}}"
},
{
"index": "39",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-URILookUp-PT"
},
{
"index": "40",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR }}-GDPR-PT"
}
],
"name": "{{pwf.HcsDpUniqueSitePrefixMCR}}-CLIRNatl24HrsRst-CSS-25R",
"description": "{{pwf.HcsDpUniqueSitePrefixMCR}} CLIR Natl 24Hrs Restricted"
},
{
"usage": "General",
"isClassOfService": true,
"partitionMembers": [
{
"index": "1",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-Defn-PT"
},
{
"index": "2",
"partition": "{{macro.HcsDpUniqueSitePrefixMCR}}-AAM_GroupDP-Local-PT"
},
{
"index": "20",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-FONet-PT"
},
{
"index": "21",
"partition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-BlkPRS-PT"
},
{
"index": "22",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-BlkIntl-PT"
},
{
"index": "23",
"partition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-BlkPCS-PT"
},
{
"index": "24",
"partition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-BlkMobl-PT"
},
{
"index": "25",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-Allowed-PT"
},
{
"index": "26",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-WkHrsCLIR-PT"
},
{
"index": "27",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-noFAC-PT"
},
{
"index": "28",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-noCMC-PT"
},
{
"index": "29",
"partition": "{{pwf.HcsDpUniqueSitePrefixMCR}}-LBOLBRtg-PT"
},
{
"index": "30",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-LBRtg-PT"
},
{
"index": "31",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR }}-CustSCode-PT"
},
{
"index": "35",
"partition": "{{macro.DP_CUST_PRE_INTER_SITE_ROUTING_PT}}"
},
{
"index": "36",
"partition": "{{macro.DP_CUST_ALLOW_VM_PT}}"
},
{
"index": "37",
"partition": "{{macro.DP_SITE_ALLOW_INTERNAL_PT}}"
},
{
"index": "38",
"partition": "{{macro.DP_SITE_FEATURE_PT}}"
},
{
"index": "39",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-URILookUp-PT"
},
{
"index": "40",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR }}-GDPR-PT"
}
],
"name": "{{pwf.HcsDpUniqueSitePrefixMCR}}-CLIRNatlWorkHrsRst-CSS-25WR",
"description": "{{pwf.HcsDpUniqueSitePrefixMCR}} CLIR Natl Work Hrs Restricted"
},
{
"usage": "General",
"isClassOfService": true,
"partitionMembers": [
{
"index": "1",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-Defn-PT"
},
{
"index": "2",
"partition": "{{macro.HcsDpUniqueSitePrefixMCR}}-AAM_GroupDP-Local-PT"
},
{
"index": "20",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-FONet-PT"
},
{
"index": "21",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-BlkPRS-PT"
},
{
"index": "22",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-BlkIntl-PT"
},
{
"index": "23",
"partition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-BlkPCS-PT"
},
{
"index": "24",
"partition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-BlkMobl-PT"
},
{
"index": "25",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-Allowed-PT"
},
{
"index": "26",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-ExtHrsCLIR-PT"
},
{
"index": "27",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-noFAC-PT"
},
{
"index": "28",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-noCMC-PT"
},
{
"index": "29",
"partition": "{{pwf.HcsDpUniqueSitePrefixMCR}}-LBOLBRtg-PT"
},
{
"index": "30",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-LBRtg-PT"
},
{
"index": "31",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR }}-CustSCode-PT"
},
{
"index": "35",
"partition": "{{macro.DP_CUST_PRE_INTER_SITE_ROUTING_PT}}"
},
{
"index": "36",
"partition": "{{macro.DP_CUST_ALLOW_VM_PT}}"
},
{
"index": "37",
"partition": "{{macro.DP_SITE_ALLOW_INTERNAL_PT}}"
},
{
"index": "38",
"partition": "{{macro.DP_SITE_FEATURE_PT}}"
},
{
"index": "39",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-URILookUp-PT"
},
{
"index": "40",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR }}-GDPR-PT"
}
],
"name": "{{pwf.HcsDpUniqueSitePrefixMCR}}-CLIRNatlExtHrsRst-CSS-25ER",
"description": "{{pwf.HcsDpUniqueSitePrefixMCR}} CLIR Natl Extended Hrs Restricted"
},
{
"usage": "General",
"isClassOfService": true,
"partitionMembers": [
{
"index": "1",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-Defn-PT"
},
{
"index": "2",
"partition": "{{macro.HcsDpUniqueSitePrefixMCR}}-AAM_GroupDP-Local-PT"
},
{
"index": "20",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-FONet-PT"
},
{
"index": "21",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-BlkIntl-PT"
},
{
"index": "22",
"partition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-BlkPCS-PT"
},
{
"index": "23",
"partition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-BlkMobl-PT"
},
{
"index": "24",
"partition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-BlkNatl-PT"
},
{
"index": "25",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-Allowed-PT"
},
{
"index": "26",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-24HrsCLIP-PT"
},
{
"index": "27",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-noFAC-PT"
},
{
"index": "28",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-noCMC-PT"
},
{
"index": "29",
"partition": "{{pwf.HcsDpUniqueSitePrefixMCR}}-LBOLBRtg-PT"
},
{
"index": "30",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-LBRtg-PT"
},
{
"index": "31",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR }}-CustSCode-PT"
},
{
"index": "35",
"partition": "{{macro.DP_CUST_PRE_INTER_SITE_ROUTING_PT}}"
},
{
"index": "36",
"partition": "{{macro.DP_CUST_ALLOW_VM_PT}}"
},
{
"index": "37",
"partition": "{{macro.DP_SITE_ALLOW_INTERNAL_PT}}"
},
{
"index": "38",
"partition": "{{macro.DP_SITE_FEATURE_PT}}"
},
{
"index": "39",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-URILookUp-PT"
},
{
"index": "40",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR }}-GDPR-PT"
}
],
"name": "{{pwf.HcsDpUniqueSitePrefixMCR}}-Local24HrsEnh-CSS-27",
"description": "{{pwf.HcsDpUniqueSitePrefixMCR}} Local 24Hrs Enhanced"
},
{
"usage": "General",
"isClassOfService": true,
"partitionMembers": [
{
"index": "1",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-Defn-PT"
},
{
"index": "2",
"partition": "{{macro.HcsDpUniqueSitePrefixMCR}}-AAM_GroupDP-Local-PT"
},
{
"index": "20",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-FONet-PT"
},
{
"index": "21",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-BlkIntl-PT"
},
{
"index": "22",
"partition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-BlkPCS-PT"
},
{
"index": "23",
"partition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-BlkMobl-PT"
},
{
"index": "24",
"partition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-BlkNatl-PT"
},
{
"index": "25",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-Allowed-PT"
},
{
"index": "26",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-24HrsCLIR-PT"
},
{
"index": "27",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-noFAC-PT"
},
{
"index": "28",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-noCMC-PT"
},
{
"index": "29",
"partition": "{{pwf.HcsDpUniqueSitePrefixMCR}}-LBOLBRtg-PT"
},
{
"index": "30",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-LBRtg-PT"
},
{
"index": "31",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR }}-CustSCode-PT"
},
{
"index": "35",
"partition": "{{macro.DP_CUST_PRE_INTER_SITE_ROUTING_PT}}"
},
{
"index": "36",
"partition": "{{macro.DP_CUST_ALLOW_VM_PT}}"
},
{
"index": "37",
"partition": "{{macro.DP_SITE_ALLOW_INTERNAL_PT}}"
},
{
"index": "38",
"partition": "{{macro.DP_SITE_FEATURE_PT}}"
},
{
"index": "39",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-URILookUp-PT"
},
{
"index": "40",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR }}-GDPR-PT"
}
],
"name": "{{pwf.HcsDpUniqueSitePrefixMCR}}-CLIRLocal24HrsEnh-CSS-27R",
"description": "{{pwf.HcsDpUniqueSitePrefixMCR}} CLIR Local 24Hrs Enhanced"
},
{
"usage": "General",
"isClassOfService": true,
"partitionMembers": [
{
"index": "1",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-Defn-PT"
},
{
"index": "2",
"partition": "{{macro.HcsDpUniqueSitePrefixMCR}}-AAM_GroupDP-Local-PT"
},
{
"index": "20",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-FONet-PT"
},
{
"index": "21",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-BlkPRS-PT"
},
{
"index": "22",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-BlkIntl-PT"
},
{
"index": "23",
"partition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-BlkPCS-PT"
},
{
"index": "24",
"partition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-BlkMobl-PT"
},
{
"index": "25",
"partition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-BlkNatl-PT"
},
{
"index": "26",
"partition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-BlkFPN-PT"
},
{
"index": "27",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-Allowed-PT"
},
{
"index": "28",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-24HrsCLIP-PT"
},
{
"index": "29",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-noFAC-PT"
},
{
"index": "30",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-noCMC-PT"
},
{
"index": "31",
"partition": "{{pwf.HcsDpUniqueSitePrefixMCR}}-LBOLBRtg-PT"
},
{
"index": "32",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-LBRtg-PT"
},
{
"index": "33",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR }}-CustSCode-PT"
},
{
"index": "35",
"partition": "{{macro.DP_CUST_PRE_INTER_SITE_ROUTING_PT}}"
},
{
"index": "36",
"partition": "{{macro.DP_CUST_ALLOW_VM_PT}}"
},
{
"index": "37",
"partition": "{{macro.DP_SITE_ALLOW_INTERNAL_PT}}"
},
{
"index": "38",
"partition": "{{macro.DP_SITE_FEATURE_PT}}"
},
{
"index": "39",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-URILookUp-PT"
},
{
"index": "40",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR }}-GDPR-PT"
}
],
"name": "{{pwf.HcsDpUniqueSitePrefixMCR}}-Local24HrsStd-CSS-28",
"description": "{{pwf.HcsDpUniqueSitePrefixMCR}} Local 24Hrs Standard"
},
{
"usage": "General",
"isClassOfService": true,
"partitionMembers": [
{
"index": "1",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-Defn-PT"
},
{
"index": "2",
"partition": "{{macro.HcsDpUniqueSitePrefixMCR}}-AAM_GroupDP-Local-PT"
},
{
"index": "20",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-FONet-PT"
},
{
"index": "21",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-BlkPRS-PT"
},
{
"index": "22",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-BlkIntl-PT"
},
{
"index": "23",
"partition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-BlkPCS-PT"
},
{
"index": "24",
"partition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-BlkMobl-PT"
},
{
"index": "25",
"partition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-BlkNatl-PT"
},
{
"index": "26",
"partition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-BlkFPN-PT"
},
{
"index": "27",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-Allowed-PT"
},
{
"index": "28",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-24HrsCLIR-PT"
},
{
"index": "29",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-noFAC-PT"
},
{
"index": "30",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-noCMC-PT"
},
{
"index": "31",
"partition": "{{pwf.HcsDpUniqueSitePrefixMCR}}-LBOLBRtg-PT"
},
{
"index": "32",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-LBRtg-PT"
},
{
"index": "33",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR }}-CustSCode-PT"
},
{
"index": "35",
"partition": "{{macro.DP_CUST_PRE_INTER_SITE_ROUTING_PT}}"
},
{
"index": "36",
"partition": "{{macro.DP_CUST_ALLOW_VM_PT}}"
},
{
"index": "37",
"partition": "{{macro.DP_SITE_ALLOW_INTERNAL_PT}}"
},
{
"index": "38",
"partition": "{{macro.DP_SITE_FEATURE_PT}}"
},
{
"index": "39",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-URILookUp-PT"
},
{
"index": "40",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR }}-GDPR-PT"
}
],
"name": "{{pwf.HcsDpUniqueSitePrefixMCR}}-CLIRLocal24HrsStd-CSS-28R",
"description": "{{pwf.HcsDpUniqueSitePrefixMCR}} CLIR Local 24Hrs Standard"
},
{
"usage": "General",
"isClassOfService": true,
"partitionMembers": [
{
"index": "1",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-Defn-PT"
},
{
"index": "2",
"partition": "{{macro.HcsDpUniqueSitePrefixMCR}}-AAM_GroupDP-Local-PT"
},
{
"index": "20",
"partition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-FONet-PT"
},
{
"index": "21",
"partition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-BlkPRS-PT"
},
{
"index": "22",
"partition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-BlkPCS-PT"
},
{
"index": "23",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-Allowed-PT"
},
{
"index": "24",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-24HrsCLIP-PT"
},
{
"index": "25",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-noFAC-PT"
},
{
"index": "26",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-noCMC-PT"
},
{
"index": "27",
"partition": "{{pwf.HcsDpUniqueSitePrefixMCR}}-LBOLBRtg-PT"
},
{
"index": "28",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-LBRtg-PT"
},
{
"index": "29",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR }}-CustSCode-PT"
},
{
"index": "35",
"partition": "{{macro.DP_CUST_PRE_INTER_SITE_ROUTING_PT}}"
},
{
"index": "36",
"partition": "{{macro.DP_CUST_ALLOW_VM_PT}}"
},
{
"index": "37",
"partition": "{{macro.DP_SITE_ALLOW_INTERNAL_PT}}"
},
{
"index": "38",
"partition": "{{macro.DP_SITE_FEATURE_PT}}"
},
{
"index": "39",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-URILookUp-PT"
},
{
"index": "40",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR }}-GDPR-PT"
}
],
"name": "{{pwf.HcsDpUniqueSitePrefixMCR}}-CF-Intl24HrsStd-CSS-32",
"description": "{{pwf.HcsDpUniqueSitePrefixMCR}} Call Fwd Intl 24Hrs Standard"
},
{
"usage": "General",
"isClassOfService": true,
"partitionMembers": [
{
"index": "1",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-Defn-PT"
},
{
"index": "2",
"partition": "{{macro.HcsDpUniqueSitePrefixMCR}}-AAM_GroupDP-Local-PT"
},
{
"index": "20",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-FONet-PT"
},
{
"index": "21",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-BlkPRS-PT"
},
{
"index": "22",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-BlkIntl-PT"
},
{
"index": "23",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-Allowed-PT"
},
{
"index": "24",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-24HrsCLIP-PT"
},
{
"index": "25",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-noFAC-PT"
},
{
"index": "26",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-noCMC-PT"
},
{
"index": "27",
"partition": "{{pwf.HcsDpUniqueSitePrefixMCR}}-LBOLBRtg-PT"
},
{
"index": "28",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-LBRtg-PT"
},
{
"index": "29",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR }}-CustSCode-PT"
},
{
"index": "35",
"partition": "{{macro.DP_CUST_PRE_INTER_SITE_ROUTING_PT}}"
},
{
"index": "36",
"partition": "{{macro.DP_CUST_ALLOW_VM_PT}}"
},
{
"index": "37",
"partition": "{{macro.DP_SITE_ALLOW_INTERNAL_PT}}"
},
{
"index": "38",
"partition": "{{macro.DP_SITE_FEATURE_PT}}"
},
{
"index": "39",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-URILookUp-PT"
},
{
"index": "40",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR }}-GDPR-PT"
}
],
"name": "{{pwf.HcsDpUniqueSitePrefixMCR}}-CF-Natl24HrsStd-CSS-34",
"description": "{{pwf.HcsDpUniqueSitePrefixMCR}} Call Fwd Natl 24Hrs Standard"
},
{
"usage": "General",
"isClassOfService": true,
"partitionMembers": [
{
"index": "1",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-Defn-PT"
},
{
"index": "2",
"partition": "{{macro.HcsDpUniqueSitePrefixMCR}}-AAM_GroupDP-Local-PT"
},
{
"index": "20",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-FONet-PT"
},
{
"index": "21",
"partition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-BlkPRS-PT"
},
{
"index": "22",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-BlkIntl-PT"
},
{
"index": "23",
"partition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-BlkPCS-PT"
},
{
"index": "24",
"partition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-BlkMobl-PT"
},
{
"index": "25",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-Allowed-PT"
},
{
"index": "26",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-24HrsCLIP-PT"
},
{
"index": "27",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-noFAC-PT"
},
{
"index": "28",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-noCMC-PT"
},
{
"index": "29",
"partition": "{{pwf.HcsDpUniqueSitePrefixMCR}}-LBOLBRtg-PT"
},
{
"index": "30",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-LBRtg-PT"
},
{
"index": "31",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR }}-CustSCode-PT"
},
{
"index": "35",
"partition": "{{macro.DP_CUST_PRE_INTER_SITE_ROUTING_PT}}"
},
{
"index": "36",
"partition": "{{macro.DP_CUST_ALLOW_VM_PT}}"
},
{
"index": "37",
"partition": "{{macro.DP_SITE_ALLOW_INTERNAL_PT}}"
},
{
"index": "38",
"partition": "{{macro.DP_SITE_FEATURE_PT}}"
},
{
"index": "39",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-URILookUp-PT"
},
{
"index": "40",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR }}-GDPR-PT"
}
],
"name": "{{pwf.HcsDpUniqueSitePrefixMCR}}-CF-Natl24HrsRst-CSS-35",
"description": "{{pwf.HcsDpUniqueSitePrefixMCR}} Call Fwd Natl 24Hrs Restricted"
},
{
"usage": "General",
"isClassOfService": true,
"partitionMembers": [
{
"index": "1",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-Defn-PT"
},
{
"index": "2",
"partition": "{{macro.HcsDpUniqueSitePrefixMCR}}-AAM_GroupDP-Local-PT"
},
{
"index": "20",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-FONet-PT"
},
{
"index": "21",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-BlkAll-PT"
},
{
"index": "22",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR }}-CustSCode-PT"
},
{
"index": "35",
"partition": "{{macro.DP_CUST_PRE_INTER_SITE_ROUTING_PT}}"
},
{
"index": "36",
"partition": "{{macro.DP_CUST_ALLOW_VM_PT}}"
},
{
"index": "37",
"partition": "{{macro.DP_SITE_ALLOW_INTERNAL_PT}}"
},
{
"index": "38",
"partition": "{{macro.DP_SITE_FEATURE_PT}}"
},
{
"index": "39",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-URILookUp-PT"
},
{
"index": "40",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR }}-GDPR-PT"
}
],
"name": "{{pwf.HcsDpUniqueSitePrefixMCR}}-CF-Internal-Only-CSS-36",
"description": "{{pwf.HcsDpUniqueSitePrefixMCR}} Call Fwd Internal Only"
},
{
"usage": "General",
"isClassOfService": true,
"partitionMembers": [
{
"index": "1",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-Defn-PT"
},
{
"index": "2",
"partition": "{{macro.HcsDpUniqueSitePrefixMCR}}-AAM_GroupDP-Local-PT"
},
{
"index": "20",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-FONet-PT"
},
{
"index": "21",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-BlkIntl-PT"
},
{
"index": "22",
"partition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-BlkPCS-PT"
},
{
"index": "23",
"partition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-BlkMobl-PT"
},
{
"index": "24",
"partition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-BlkNatl-PT"
},
{
"index": "25",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-Allowed-PT"
},
{
"index": "26",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-24HrsCLIP-PT"
},
{
"index": "27",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-noFAC-PT"
},
{
"index": "28",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-noCMC-PT"
},
{
"index": "29",
"partition": "{{pwf.HcsDpUniqueSitePrefixMCR}}-LBOLBRtg-PT"
},
{
"index": "30",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-LBRtg-PT"
},
{
"index": "31",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR }}-CustSCode-PT"
},
{
"index": "35",
"partition": "{{macro.DP_CUST_PRE_INTER_SITE_ROUTING_PT}}"
},
{
"index": "36",
"partition": "{{macro.DP_CUST_ALLOW_VM_PT}}"
},
{
"index": "37",
"partition": "{{macro.DP_SITE_ALLOW_INTERNAL_PT}}"
},
{
"index": "38",
"partition": "{{macro.DP_SITE_FEATURE_PT}}"
},
{
"index": "39",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-URILookUp-PT"
},
{
"index": "40",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR }}-GDPR-PT"
}
],
"name": "{{pwf.HcsDpUniqueSitePrefixMCR}}-CF-Local24HrsEnh-CSS-37",
"description": "{{pwf.HcsDpUniqueSitePrefixMCR}} Call Fwd Local 24Hrs Enhanced"
},
{
"usage": "General",
"isClassOfService": true,
"partitionMembers": [
{
"index": "1",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-Defn-PT"
},
{
"index": "2",
"partition": "{{macro.HcsDpUniqueSitePrefixMCR}}-AAM_GroupDP-Local-PT"
},
{
"index": "20",
"partition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-FONet-PT"
},
{
"index": "21",
"partition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-BlkPRS-PT"
},
{
"index": "22",
"partition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-BlkPCS-PT"
},
{
"index": "23",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-Allowed-PT"
},
{
"index": "24",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-24HrsCLIR-PT"
},
{
"index": "25",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-noFAC-PT"
},
{
"index": "26",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-noCMC-PT"
},
{
"index": "27",
"partition": "{{pwf.HcsDpUniqueSitePrefixMCR}}-LBOLBRtg-PT"
},
{
"index": "28",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-LBRtg-PT"
},
{
"index": "29",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR }}-CustSCode-PT"
},
{
"index": "35",
"partition": "{{macro.DP_CUST_PRE_INTER_SITE_ROUTING_PT}}"
},
{
"index": "36",
"partition": "{{macro.DP_CUST_ALLOW_VM_PT}}"
},
{
"index": "37",
"partition": "{{macro.DP_SITE_ALLOW_INTERNAL_PT}}"
},
{
"index": "38",
"partition": "{{macro.DP_SITE_FEATURE_PT}}"
},
{
"index": "39",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-URILookUp-PT"
},
{
"index": "40",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR }}-GDPR-PT"
}
],
"name": "{{pwf.HcsDpUniqueSitePrefixMCR}}-CF-CLIRIntl24HrsStd-CSS-42",
"description": "{{pwf.HcsDpUniqueSitePrefixMCR}} Call Fwd CLIR Intl 24Hrs Standard"
},
{
"usage": "General",
"isClassOfService": true,
"partitionMembers": [
{
"index": "1",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-Defn-PT"
},
{
"index": "2",
"partition": "{{macro.HcsDpUniqueSitePrefixMCR}}-AAM_GroupDP-Local-PT"
},
{
"index": "20",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-FONet-PT"
},
{
"index": "21",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-BlkIntl-PT"
},
{
"index": "22",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-BlkPRS-PT"
},
{
"index": "23",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-Allowed-PT"
},
{
"index": "24",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-24HrsCLIR-PT"
},
{
"index": "25",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-noFAC-PT"
},
{
"index": "26",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-noCMC-PT"
},
{
"index": "27",
"partition": "{{pwf.HcsDpUniqueSitePrefixMCR}}-LBOLBRtg-PT"
},
{
"index": "28",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-LBRtg-PT"
},
{
"index": "29",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR }}-CustSCode-PT"
},
{
"index": "35",
"partition": "{{macro.DP_CUST_PRE_INTER_SITE_ROUTING_PT}}"
},
{
"index": "36",
"partition": "{{macro.DP_CUST_ALLOW_VM_PT}}"
},
{
"index": "37",
"partition": "{{macro.DP_SITE_ALLOW_INTERNAL_PT}}"
},
{
"index": "38",
"partition": "{{macro.DP_SITE_FEATURE_PT}}"
},
{
"index": "39",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-URILookUp-PT"
},
{
"index": "40",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR }}-GDPR-PT"
}
],
"name": "{{pwf.HcsDpUniqueSitePrefixMCR}}-CF-CLIRNatl24HrsStd-CSS-44",
"description": "{{pwf.HcsDpUniqueSitePrefixMCR}} Call Fwd CLIR Natl 24Hrs Standard"
},
{
"usage": "General",
"isClassOfService": true,
"partitionMembers": [
{
"index": "1",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-Defn-PT"
},
{
"index": "2",
"partition": "{{macro.HcsDpUniqueSitePrefixMCR}}-AAM_GroupDP-Local-PT"
},
{
"index": "20",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-FONet-PT"
},
{
"index": "21",
"partition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-BlkPRS-PT"
},
{
"index": "22",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-BlkIntl-PT"
},
{
"index": "23",
"partition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-BlkPCS-PT"
},
{
"index": "24",
"partition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-BlkMobl-PT"
},
{
"index": "25",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-Allowed-PT"
},
{
"index": "26",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-24HrsCLIR-PT"
},
{
"index": "27",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-noFAC-PT"
},
{
"index": "28",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-noCMC-PT"
},
{
"index": "29",
"partition": "{{pwf.HcsDpUniqueSitePrefixMCR}}-LBOLBRtg-PT"
},
{
"index": "30",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-LBRtg-PT"
},
{
"index": "31",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR }}-CustSCode-PT"
},
{
"index": "35",
"partition": "{{macro.DP_CUST_PRE_INTER_SITE_ROUTING_PT}}"
},
{
"index": "36",
"partition": "{{macro.DP_CUST_ALLOW_VM_PT}}"
},
{
"index": "37",
"partition": "{{macro.DP_SITE_ALLOW_INTERNAL_PT}}"
},
{
"index": "38",
"partition": "{{macro.DP_SITE_FEATURE_PT}}"
},
{
"index": "39",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-URILookUp-PT"
},
{
"index": "40",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR }}-GDPR-PT"
}
],
"name": "{{pwf.HcsDpUniqueSitePrefixMCR}}-CF-CLIRNatl24HrsRst-CSS-45",
"description": "{{pwf.HcsDpUniqueSitePrefixMCR}} Call Fwd CLIR Natl 24Hrs Restricted"
},
{
"usage": "General",
"isClassOfService": true,
"partitionMembers": [
{
"index": "1",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-Defn-PT"
},
{
"index": "2",
"partition": "{{macro.HcsDpUniqueSitePrefixMCR}}-AAM_GroupDP-Local-PT"
},
{
"index": "20",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-FONet-PT"
},
{
"index": "21",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-BlkIntl-PT"
},
{
"index": "22",
"partition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-BlkPCS-PT"
},
{
"index": "23",
"partition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-BlkMobl-PT"
},
{
"index": "24",
"partition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-BlkNatl-PT"
},
{
"index": "25",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-Allowed-PT"
},
{
"index": "26",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-24HrsCLIR-PT"
},
{
"index": "27",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-noFAC-PT"
},
{
"index": "28",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-noCMC-PT"
},
{
"index": "29",
"partition": "{{pwf.HcsDpUniqueSitePrefixMCR}}-LBOLBRtg-PT"
},
{
"index": "30",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-LBRtg-PT"
},
{
"index": "31",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR }}-CustSCode-PT"
},
{
"index": "35",
"partition": "{{macro.DP_CUST_PRE_INTER_SITE_ROUTING_PT}}"
},
{
"index": "36",
"partition": "{{macro.DP_CUST_ALLOW_VM_PT}}"
},
{
"index": "37",
"partition": "{{macro.DP_SITE_ALLOW_INTERNAL_PT}}"
},
{
"index": "38",
"partition": "{{macro.DP_SITE_FEATURE_PT}}"
},
{
"index": "39",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-URILookUp-PT"
},
{
"index": "40",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR }}-GDPR-PT"
}
],
"name": "{{pwf.HcsDpUniqueSitePrefixMCR}}-CF-CLIRLocal24HrsEnh-CSS-47",
"description": "{{pwf.HcsDpUniqueSitePrefixMCR}} Call Fwd CLIR Local 24Hrs Enhanced"
},
{
"usage": "General",
"isClassOfService": true,
"partitionMembers": [
{
"index": "1",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-Defn-PT"
},
{
"index": "2",
"partition": "{{macro.HcsDpUniqueSitePrefixMCR}}-AAM_GroupDP-Local-PT"
},
{
"index": "20",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-FONet-PT"
},
{
"index": "21",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-Allowed-PT"
},
{
"index": "22",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-24HrsCLIP-PT"
},
{
"index": "23",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-FAC-PT"
},
{
"index": "24",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-noCMC-PT"
},
{
"index": "25",
"partition": "{{pwf.HcsDpUniqueSitePrefixMCR}}-LBOLBRtg-PT"
},
{
"index": "26",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-LBRtg-PT"
},
{
"index": "27",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR }}-CustSCode-PT"
},
{
"index": "35",
"partition": "{{macro.DP_CUST_PRE_INTER_SITE_ROUTING_PT}}"
},
{
"index": "36",
"partition": "{{macro.DP_CUST_ALLOW_VM_PT}}"
},
{
"index": "37",
"partition": "{{macro.DP_SITE_ALLOW_INTERNAL_PT}}"
},
{
"index": "38",
"partition": "{{macro.DP_SITE_FEATURE_PT}}"
},
{
"index": "39",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-URILookUp-PT"
},
{
"index": "40",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR }}-GDPR-PT"
}
],
"name": "{{pwf.HcsDpUniqueSitePrefixMCR}}-FAC-Intl24HrsEnh-CSS-51",
"description": "{{pwf.HcsDpUniqueSitePrefixMCR}} FAC Intl 24Hrs Enhanced"
},
{
"usage": "General",
"isClassOfService": true,
"partitionMembers": [
{
"index": "1",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-Defn-PT"
},
{
"index": "2",
"partition": "{{macro.HcsDpUniqueSitePrefixMCR}}-AAM_GroupDP-Local-PT"
},
{
"index": "20",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-FONet-PT"
},
{
"index": "21",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-Allowed-PT"
},
{
"index": "22",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-24HrsCLIR-PT"
},
{
"index": "23",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-FAC-PT"
},
{
"index": "24",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-noCMC-PT"
},
{
"index": "25",
"partition": "{{pwf.HcsDpUniqueSitePrefixMCR}}-LBOLBRtg-PT"
},
{
"index": "26",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-LBRtg-PT"
},
{
"index": "27",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR }}-CustSCode-PT"
},
{
"index": "35",
"partition": "{{macro.DP_CUST_PRE_INTER_SITE_ROUTING_PT}}"
},
{
"index": "36",
"partition": "{{macro.DP_CUST_ALLOW_VM_PT}}"
},
{
"index": "37",
"partition": "{{macro.DP_SITE_ALLOW_INTERNAL_PT}}"
},
{
"index": "38",
"partition": "{{macro.DP_SITE_FEATURE_PT}}"
},
{
"index": "39",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-URILookUp-PT"
},
{
"index": "40",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR }}-GDPR-PT"
}
],
"name": "{{pwf.HcsDpUniqueSitePrefixMCR}}-FAC-CLIRIntl24HrsEnh-CSS-51R",
"description": "{{pwf.HcsDpUniqueSitePrefixMCR}} CLIR FAC Intl 24Hrs Enhanced"
},
{
"usage": "General",
"isClassOfService": true,
"partitionMembers": [
{
"index": "1",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-Defn-PT"
},
{
"index": "2",
"partition": "{{macro.HcsDpUniqueSitePrefixMCR}}-AAM_GroupDP-Local-PT"
},
{
"index": "20",
"partition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-FONet-PT"
},
{
"index": "21",
"partition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-BlkPRS-PT"
},
{
"index": "22",
"partition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-BlkPCS-PT"
},
{
"index": "23",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-Allowed-PT"
},
{
"index": "24",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-24HrsCLIP-PT"
},
{
"index": "25",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-FAC-PT"
},
{
"index": "26",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-noCMC-PT"
},
{
"index": "27",
"partition": "{{pwf.HcsDpUniqueSitePrefixMCR}}-LBOLBRtg-PT"
},
{
"index": "28",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-LBRtg-PT"
},
{
"index": "29",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR }}-CustSCode-PT"
},
{
"index": "35",
"partition": "{{macro.DP_CUST_PRE_INTER_SITE_ROUTING_PT}}"
},
{
"index": "36",
"partition": "{{macro.DP_CUST_ALLOW_VM_PT}}"
},
{
"index": "37",
"partition": "{{macro.DP_SITE_ALLOW_INTERNAL_PT}}"
},
{
"index": "38",
"partition": "{{macro.DP_SITE_FEATURE_PT}}"
},
{
"index": "39",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-URILookUp-PT"
},
{
"index": "40",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR }}-GDPR-PT"
}
],
"name": "{{pwf.HcsDpUniqueSitePrefixMCR}}-FAC-Intl24HrsStd-CSS-52",
"description": "{{pwf.HcsDpUniqueSitePrefixMCR}} FAC Intl 24Hrs Standard"
},
{
"usage": "General",
"isClassOfService": true,
"partitionMembers": [
{
"index": "1",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-Defn-PT"
},
{
"index": "2",
"partition": "{{macro.HcsDpUniqueSitePrefixMCR}}-AAM_GroupDP-Local-PT"
},
{
"index": "20",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-FONet-PT"
},
{
"index": "21",
"partition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-BlkPRS-PT"
},
{
"index": "22",
"partition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-BlkPCS-PT"
},
{
"index": "23",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-Allowed-PT"
},
{
"index": "24",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-24HrsCLIR-PT"
},
{
"index": "25",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-FAC-PT"
},
{
"index": "26",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-noCMC-PT"
},
{
"index": "27",
"partition": "{{pwf.HcsDpUniqueSitePrefixMCR}}-LBOLBRtg-PT"
},
{
"index": "28",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-LBRtg-PT"
},
{
"index": "29",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR }}-CustSCode-PT"
},
{
"index": "35",
"partition": "{{macro.DP_CUST_PRE_INTER_SITE_ROUTING_PT}}"
},
{
"index": "36",
"partition": "{{macro.DP_CUST_ALLOW_VM_PT}}"
},
{
"index": "37",
"partition": "{{macro.DP_SITE_ALLOW_INTERNAL_PT}}"
},
{
"index": "38",
"partition": "{{macro.DP_SITE_FEATURE_PT}}"
},
{
"index": "39",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-URILookUp-PT"
},
{
"index": "40",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR }}-GDPR-PT"
}
],
"name": "{{pwf.HcsDpUniqueSitePrefixMCR}}-FAC-CLIRIntl24HrsStd-CSS-52R",
"description": "{{pwf.HcsDpUniqueSitePrefixMCR}} CLIR FAC Intl 24Hrs Standard"
},
{
"usage": "General",
"isClassOfService": true,
"partitionMembers": [
{
"index": "1",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-Defn-PT"
},
{
"index": "2",
"partition": "{{macro.HcsDpUniqueSitePrefixMCR}}-AAM_GroupDP-Local-PT"
},
{
"index": "20",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-FONet-PT"
},
{
"index": "21",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-BlkIntl-PT"
},
{
"index": "22",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-Allowed-PT"
},
{
"index": "23",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-24HrsCLIP-PT"
},
{
"index": "24",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-FAC-PT"
},
{
"index": "25",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-noCMC-PT"
},
{
"index": "26",
"partition": "{{pwf.HcsDpUniqueSitePrefixMCR}}-LBOLBRtg-PT"
},
{
"index": "27",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-LBRtg-PT"
},
{
"index": "28",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR }}-CustSCode-PT"
},
{
"index": "35",
"partition": "{{macro.DP_CUST_PRE_INTER_SITE_ROUTING_PT}}"
},
{
"index": "36",
"partition": "{{macro.DP_CUST_ALLOW_VM_PT}}"
},
{
"index": "37",
"partition": "{{macro.DP_SITE_ALLOW_INTERNAL_PT}}"
},
{
"index": "38",
"partition": "{{macro.DP_SITE_FEATURE_PT}}"
},
{
"index": "39",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-URILookUp-PT"
},
{
"index": "40",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR }}-GDPR-PT"
}
],
"name": "{{pwf.HcsDpUniqueSitePrefixMCR}}-FAC-Natl24HrsEnh-CSS-53",
"description": "{{pwf.HcsDpUniqueSitePrefixMCR}} FAC Natl 24Hrs Enhanced"
},
{
"usage": "General",
"isClassOfService": true,
"partitionMembers": [
{
"index": "1",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-Defn-PT"
},
{
"index": "2",
"partition": "{{macro.HcsDpUniqueSitePrefixMCR}}-AAM_GroupDP-Local-PT"
},
{
"index": "20",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-FONet-PT"
},
{
"index": "21",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-BlkIntl-PT"
},
{
"index": "22",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-Allowed-PT"
},
{
"index": "23",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-24HrsCLIR-PT"
},
{
"index": "24",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-FAC-PT"
},
{
"index": "25",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-noCMC-PT"
},
{
"index": "26",
"partition": "{{pwf.HcsDpUniqueSitePrefixMCR}}-LBOLBRtg-PT"
},
{
"index": "27",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-LBRtg-PT"
},
{
"index": "28",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR }}-CustSCode-PT"
},
{
"index": "35",
"partition": "{{macro.DP_CUST_PRE_INTER_SITE_ROUTING_PT}}"
},
{
"index": "36",
"partition": "{{macro.DP_CUST_ALLOW_VM_PT}}"
},
{
"index": "37",
"partition": "{{macro.DP_SITE_ALLOW_INTERNAL_PT}}"
},
{
"index": "38",
"partition": "{{macro.DP_SITE_FEATURE_PT}}"
},
{
"index": "39",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-URILookUp-PT"
},
{
"index": "40",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR }}-GDPR-PT"
}
],
"name": "{{pwf.HcsDpUniqueSitePrefixMCR}}-FAC-CLIRNatl24HrsEnh-CSS-53R",
"description": "{{pwf.HcsDpUniqueSitePrefixMCR}} CLIR FAC Natl 24Hrs Enhanced"
},
{
"usage": "General",
"isClassOfService": true,
"partitionMembers": [
{
"index": "1",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-Defn-PT"
},
{
"index": "2",
"partition": "{{macro.HcsDpUniqueSitePrefixMCR}}-AAM_GroupDP-Local-PT"
},
{
"index": "20",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-FONet-PT"
},
{
"index": "21",
"partition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-BlkPRS-PT"
},
{
"index": "22",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-BlkIntl-PT"
},
{
"index": "23",
"partition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-BlkPCS-PT"
},
{
"index": "24",
"partition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-BlkMobl-PT"
},
{
"index": "25",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-Allowed-PT"
},
{
"index": "26",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-24HrsCLIP-PT"
},
{
"index": "27",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-FAC-PT"
},
{
"index": "28",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-noCMC-PT"
},
{
"index": "29",
"partition": "{{pwf.HcsDpUniqueSitePrefixMCR}}-LBOLBRtg-PT"
},
{
"index": "30",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-LBRtg-PT"
},
{
"index": "31",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR }}-CustSCode-PT"
},
{
"index": "35",
"partition": "{{macro.DP_CUST_PRE_INTER_SITE_ROUTING_PT}}"
},
{
"index": "36",
"partition": "{{macro.DP_CUST_ALLOW_VM_PT}}"
},
{
"index": "37",
"partition": "{{macro.DP_SITE_ALLOW_INTERNAL_PT}}"
},
{
"index": "38",
"partition": "{{macro.DP_SITE_FEATURE_PT}}"
},
{
"index": "39",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-URILookUp-PT"
},
{
"index": "40",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR }}-GDPR-PT"
}
],
"name": "{{pwf.HcsDpUniqueSitePrefixMCR}}-FAC-Natl24HrsRst-CSS-54",
"description": "{{pwf.HcsDpUniqueSitePrefixMCR}} FAC Natl 24Hrs Restricted"
},
{
"usage": "General",
"isClassOfService": true,
"partitionMembers": [
{
"index": "1",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-Defn-PT"
},
{
"index": "2",
"partition": "{{macro.HcsDpUniqueSitePrefixMCR}}-AAM_GroupDP-Local-PT"
},
{
"index": "20",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-FONet-PT"
},
{
"index": "21",
"partition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-BlkPRS-PT"
},
{
"index": "22",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-BlkIntl-PT"
},
{
"index": "23",
"partition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-BlkPCS-PT"
},
{
"index": "24",
"partition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-BlkMobl-PT"
},
{
"index": "25",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-Allowed-PT"
},
{
"index": "26",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-24HrsCLIR-PT"
},
{
"index": "27",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-FAC-PT"
},
{
"index": "28",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-noCMC-PT"
},
{
"index": "29",
"partition": "{{pwf.HcsDpUniqueSitePrefixMCR}}-LBOLBRtg-PT"
},
{
"index": "30",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-LBRtg-PT"
},
{
"index": "31",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR }}-CustSCode-PT"
},
{
"index": "35",
"partition": "{{macro.DP_CUST_PRE_INTER_SITE_ROUTING_PT}}"
},
{
"index": "36",
"partition": "{{macro.DP_CUST_ALLOW_VM_PT}}"
},
{
"index": "37",
"partition": "{{macro.DP_SITE_ALLOW_INTERNAL_PT}}"
},
{
"index": "38",
"partition": "{{macro.DP_SITE_FEATURE_PT}}"
},
{
"index": "39",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-URILookUp-PT"
},
{
"index": "40",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR }}-GDPR-PT"
}
],
"name": "{{pwf.HcsDpUniqueSitePrefixMCR}}-FAC-CLIRNatl24HrsRst-CSS-54R",
"description": "{{pwf.HcsDpUniqueSitePrefixMCR}} CLIR FAC Natl 24Hrs Restricted"
},
{
"usage": "General",
"isClassOfService": true,
"partitionMembers": [
{
"index": "1",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-Defn-PT"
},
{
"index": "2",
"partition": "{{macro.HcsDpUniqueSitePrefixMCR}}-AAM_GroupDP-Local-PT"
},
{
"index": "20",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-FONet-PT"
},
{
"index": "21",
"partition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-BlkPRS-PT"
},
{
"index": "22",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-BlkIntl-PT"
},
{
"index": "23",
"partition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-BlkPCS-PT"
},
{
"index": "24",
"partition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-BlkMobl-PT"
},
{
"index": "25",
"partition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-BlkNatl-PT"
},
{
"index": "26",
"partition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-BlkFPN-PT"
},
{
"index": "27",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-Allowed-PT"
},
{
"index": "28",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-24HrsCLIP-PT"
},
{
"index": "29",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-FAC-PT"
},
{
"index": "30",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-noCMC-PT"
},
{
"index": "31",
"partition": "{{pwf.HcsDpUniqueSitePrefixMCR}}-LBOLBRtg-PT"
},
{
"index": "32",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-LBRtg-PT"
},
{
"index": "33",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR }}-CustSCode-PT"
},
{
"index": "35",
"partition": "{{macro.DP_CUST_PRE_INTER_SITE_ROUTING_PT}}"
},
{
"index": "36",
"partition": "{{macro.DP_CUST_ALLOW_VM_PT}}"
},
{
"index": "37",
"partition": "{{macro.DP_SITE_ALLOW_INTERNAL_PT}}"
},
{
"index": "38",
"partition": "{{macro.DP_SITE_FEATURE_PT}}"
},
{
"index": "39",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-URILookUp-PT"
},
{
"index": "40",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR }}-GDPR-PT"
}
],
"name": "{{pwf.HcsDpUniqueSitePrefixMCR}}-FAC-Local24HrsStd-CSS-56",
"description": "{{pwf.HcsDpUniqueSitePrefixMCR}} FAC Local 24Hrs Standard"
},
{
"usage": "General",
"isClassOfService": true,
"partitionMembers": [
{
"index": "1",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-Defn-PT"
},
{
"index": "2",
"partition": "{{macro.HcsDpUniqueSitePrefixMCR}}-AAM_GroupDP-Local-PT"
},
{
"index": "20",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-FONet-PT"
},
{
"index": "21",
"partition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-BlkPRS-PT"
},
{
"index": "22",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-BlkIntl-PT"
},
{
"index": "23",
"partition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-BlkPCS-PT"
},
{
"index": "24",
"partition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-BlkMobl-PT"
},
{
"index": "25",
"partition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-BlkNatl-PT"
},
{
"index": "26",
"partition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-BlkFPN-PT"
},
{
"index": "27",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-Allowed-PT"
},
{
"index": "28",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-24HrsCLIR-PT"
},
{
"index": "29",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-FAC-PT"
},
{
"index": "30",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-noCMC-PT"
},
{
"index": "31",
"partition": "{{pwf.HcsDpUniqueSitePrefixMCR}}-LBOLBRtg-PT"
},
{
"index": "32",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-LBRtg-PT"
},
{
"index": "33",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR }}-CustSCode-PT"
},
{
"index": "35",
"partition": "{{macro.DP_CUST_PRE_INTER_SITE_ROUTING_PT}}"
},
{
"index": "36",
"partition": "{{macro.DP_CUST_ALLOW_VM_PT}}"
},
{
"index": "37",
"partition": "{{macro.DP_SITE_ALLOW_INTERNAL_PT}}"
},
{
"index": "38",
"partition": "{{macro.DP_SITE_FEATURE_PT}}"
},
{
"index": "39",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-URILookUp-PT"
},
{
"index": "40",
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR }}-GDPR-PT"
}
],
"name": "{{pwf.HcsDpUniqueSitePrefixMCR}}-FAC-CLIRLocal24HrsStd-CSS-56R",
"description": "{{pwf.HcsDpUniqueSitePrefixMCR}} CLIR FAC Local 24Hrs Standard"
}
],
"description": "AAM_Group DP per Site including CoS",
"pkid": "5df0b5d2ce894e001275a193",
"partitionArray": [
{
"timeSchedule": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AllDay-TSchd",
"name": "{{macro.HcsDpUniqueSitePrefixMCR}}-AAM_GroupDP-Local-PT",
"description": "{{macro.HcsDpUniqueSitePrefixMCR}} AAM_GroupDP Local Call PT"
},
{
"timeSchedule": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AllDay-TSchd",
"name": "{{macro.HcsDpUniqueSitePrefixMCR}}-AAM_GroupDP-Emer-PT",
"description": "{{macro.HcsDpUniqueSitePrefixMCR}} AAM_Group Emerg Handling PT"
},
{
"timeSchedule": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AllDay-TSchd",
"name": "{{macro.HcsDpUniqueSitePrefixMCR}}-LBOLBRtg-PT",
"description": "{{macro.HcsDpUniqueSitePrefixMCR}}-LBOLBRtg-PT"
}
],
"name": "AAM_Group Site DP-V01",
"callingPartyTransPatternArray": [
{
"discardDigits": "None",
"description": "DN wo DDI or from other site",
"cgPtyNumPlan": "Cisco CallManager",
"cgLineIdPres": "Default",
"partition": "{{ macro.HcsDpUniqueCustomerPrefixMCR }}-DN2DDI4Emer-PT",
"useCallingPartyExternalPhoneNumMask": false,
"cgPtyNumType": "Cisco CallManager",
"pattern": "*{{macro.HcsDpSiteId}}*!",
"transformMask": "{{macro.HcsDpSiteEmergencyNumberMCR}}"
},
{
"discardDigits": "None",
"description": "DN wo DDI or from other site",
"cgPtyNumPlan": "Cisco CallManager",
"cgLineIdPres": "Default",
"partition": "{{ macro.HcsDpUniqueCustomerPrefixMCR }}-DN2DDI4Emer-PT",
"useCallingPartyExternalPhoneNumMask": false,
"cgPtyNumType": "Cisco CallManager",
"pattern": "*{{macro.HcsDpSiteId}}*\\+!",
"transformMask": "{{macro.HcsDpSiteEmergencyNumberMCR}}"
}
],
"translationPatternArray": [
{
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "Calling party pays local rate",
"cgLinePresBit": "Default",
"useOrigCss": true,
"connNamePresBit": "Default",
"routeOption": "Route this pattern",
"connLinePresBit": "Default",
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyPrefixDigits": "++0100627",
"routePartition": "{{macro.HcsDpUniqueSitePrefixMCR}}-AAM_GroupDP-Local-PT",
"cgNamePresBit": "Default",
"nextHopByCallingPtyNum": false,
"pattern": "{{macro.HcsDpPstnBreakout}}0.860XXXXXX",
"noWaitInterdigitTimeoutSubseqHops": true,
"urgentPriority": false,
"releaseClause": "No Error"
},
{
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "Local Numbers INCLUDE Area Code",
"cgLinePresBit": "Default",
"useOrigCss": true,
"connNamePresBit": "Default",
"routeOption": "Route this pattern",
"connLinePresBit": "Default",
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyPrefixDigits": "++0100627",
"routePartition": "{{macro.HcsDpUniqueSitePrefixMCR}}-AAM_GroupDP-Local-PT",
"cgNamePresBit": "Default",
"nextHopByCallingPtyNum": false,
"pattern": "{{macro.HcsDpPstnBreakout}}0.{{macro.HcsDpSiteAreaCodeItem_AreaCodeMCR}}XXXXXXX",
"noWaitInterdigitTimeoutSubseqHops": true,
"urgentPriority": false,
"releaseClause": "No Error",
"forEach": "{{ macro.HcsDpSiteAreaCodeMCR }}"
},
{
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "Local Numbers INCLUDE Area Code",
"cgLinePresBit": "Default",
"useOrigCss": true,
"connNamePresBit": "Default",
"routeOption": "Route this pattern",
"connLinePresBit": "Default",
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyPrefixDigits": "++0100627",
"routePartition": "{{macro.HcsDpUniqueSitePrefixMCR}}-AAM_GroupDP-Local-PT",
"cgNamePresBit": "Default",
"nextHopByCallingPtyNum": false,
"pattern": "\\+27.{{macro.HcsDpSiteAreaCodeItem_AreaCodeMCR}}XXXXXXX",
"noWaitInterdigitTimeoutSubseqHops": true,
"urgentPriority": false,
"releaseClause": "No Error",
"forEach": "{{ macro.HcsDpSiteAreaCodeMCR }}"
},
{
"calledPartyDiscardDigits": "None",
"provideOutsideDialTone": false,
"description": "Police",
"callingPartyPrefixDigits": "*{{macro.HcsDpSiteId}}*",
"useOrigCss": false,
"connNamePresBit": "Default",
"routeOption": "Route this pattern",
"connLinePresBit": "Default",
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyPrefixDigits": "**004",
"cgLinePresBit": "Default",
"cgNamePresBit": "Default",
"nextHopByCallingPtyNum": false,
"pattern": "10111",
"noWaitInterdigitTimeoutSubseqHops": true,
"urgentPriority": true,
"releaseClause": "No Error",
"css": "{{macro.HcsDpUniqueSitePrefixMCR}}-AAM_GroupDP-Emer-CSS",
"routePartition": "{{macro.HcsDpUniqueSitePrefixMCR}}-AAM_GroupDP-Emer-PT"
},
{
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "Police",
"callingPartyPrefixDigits": "*{{macro.HcsDpSiteId}}*",
"useOrigCss": false,
"connNamePresBit": "Default",
"routeOption": "Route this pattern",
"connLinePresBit": "Default",
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyPrefixDigits": "**004",
"cgLinePresBit": "Default",
"cgNamePresBit": "Default",
"nextHopByCallingPtyNum": false,
"pattern": "{{macro.HcsDpPstnBreakout}}.10111",
"noWaitInterdigitTimeoutSubseqHops": true,
"urgentPriority": true,
"releaseClause": "No Error",
"css": "{{macro.HcsDpUniqueSitePrefixMCR}}-AAM_GroupDP-Emer-CSS",
"routePartition": "{{macro.HcsDpUniqueSitePrefixMCR}}-AAM_GroupDP-Emer-PT"
},
{
"calledPartyDiscardDigits": "None",
"provideOutsideDialTone": false,
"description": "Fire and Ambulance",
"callingPartyPrefixDigits": "*{{macro.HcsDpSiteId}}*",
"useOrigCss": false,
"connNamePresBit": "Default",
"routeOption": "Route this pattern",
"connLinePresBit": "Default",
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyPrefixDigits": "**004",
"cgLinePresBit": "Default",
"cgNamePresBit": "Default",
"nextHopByCallingPtyNum": false,
"pattern": "10177",
"noWaitInterdigitTimeoutSubseqHops": true,
"urgentPriority": true,
"releaseClause": "No Error",
"css": "{{macro.HcsDpUniqueSitePrefixMCR}}-AAM_GroupDP-Emer-CSS",
"routePartition": "{{macro.HcsDpUniqueSitePrefixMCR}}-AAM_GroupDP-Emer-PT"
},
{
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "Fire and Ambulance",
"callingPartyPrefixDigits": "*{{macro.HcsDpSiteId}}*",
"useOrigCss": false,
"connNamePresBit": "Default",
"routeOption": "Route this pattern",
"connLinePresBit": "Default",
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyPrefixDigits": "**004",
"cgLinePresBit": "Default",
"cgNamePresBit": "Default",
"nextHopByCallingPtyNum": false,
"pattern": "{{macro.HcsDpPstnBreakout}}.10177",
"noWaitInterdigitTimeoutSubseqHops": true,
"urgentPriority": true,
"releaseClause": "No Error",
"css": "{{macro.HcsDpUniqueSitePrefixMCR}}-AAM_GroupDP-Emer-CSS",
"routePartition": "{{macro.HcsDpUniqueSitePrefixMCR}}-AAM_GroupDP-Emer-PT"
},
{
"calledPartyDiscardDigits": "None",
"provideOutsideDialTone": false,
"description": "Emergency Numbers",
"callingPartyPrefixDigits": "*{{macro.HcsDpSiteId}}*",
"useOrigCss": false,
"connNamePresBit": "Default",
"routeOption": "Route this pattern",
"connLinePresBit": "Default",
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyPrefixDigits": "**004",
"cgLinePresBit": "Default",
"cgNamePresBit": "Default",
"nextHopByCallingPtyNum": false,
"pattern": "107",
"noWaitInterdigitTimeoutSubseqHops": true,
"urgentPriority": true,
"releaseClause": "No Error",
"css": "{{macro.HcsDpUniqueSitePrefixMCR}}-AAM_GroupDP-Emer-CSS",
"routePartition": "{{macro.HcsDpUniqueSitePrefixMCR}}-AAM_GroupDP-Emer-PT"
},
{
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "Emergency Numbers",
"callingPartyPrefixDigits": "*{{macro.HcsDpSiteId}}*",
"useOrigCss": false,
"connNamePresBit": "Default",
"routeOption": "Route this pattern",
"connLinePresBit": "Default",
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyPrefixDigits": "**004",
"cgLinePresBit": "Default",
"cgNamePresBit": "Default",
"nextHopByCallingPtyNum": false,
"pattern": "{{macro.HcsDpPstnBreakout}}.107",
"noWaitInterdigitTimeoutSubseqHops": true,
"urgentPriority": true,
"releaseClause": "No Error",
"css": "{{macro.HcsDpUniqueSitePrefixMCR}}-AAM_GroupDP-Emer-CSS",
"routePartition": "{{macro.HcsDpUniqueSitePrefixMCR}}-AAM_GroupDP-Emer-PT"
},
{
"calledPartyDiscardDigits": "None",
"provideOutsideDialTone": false,
"description": "Emergency Numbers",
"callingPartyPrefixDigits": "*{{macro.HcsDpSiteId}}*",
"useOrigCss": false,
"connNamePresBit": "Default",
"routeOption": "Route this pattern",
"connLinePresBit": "Default",
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyPrefixDigits": "**004",
"cgLinePresBit": "Default",
"cgNamePresBit": "Default",
"nextHopByCallingPtyNum": false,
"pattern": "112",
"noWaitInterdigitTimeoutSubseqHops": true,
"urgentPriority": true,
"releaseClause": "No Error",
"css": "{{macro.HcsDpUniqueSitePrefixMCR}}-AAM_GroupDP-Emer-CSS",
"routePartition": "{{macro.HcsDpUniqueSitePrefixMCR}}-AAM_GroupDP-Emer-PT"
},
{
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "Emergency Numbers",
"callingPartyPrefixDigits": "*{{macro.HcsDpSiteId}}*",
"useOrigCss": false,
"connNamePresBit": "Default",
"routeOption": "Route this pattern",
"connLinePresBit": "Default",
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyPrefixDigits": "**004",
"cgLinePresBit": "Default",
"cgNamePresBit": "Default",
"nextHopByCallingPtyNum": false,
"pattern": "{{macro.HcsDpPstnBreakout}}.112",
"noWaitInterdigitTimeoutSubseqHops": true,
"urgentPriority": true,
"releaseClause": "No Error",
"css": "{{macro.HcsDpUniqueSitePrefixMCR}}-AAM_GroupDP-Emer-CSS",
"routePartition": "{{macro.HcsDpUniqueSitePrefixMCR}}-AAM_GroupDP-Emer-PT"
}
],
"routePatternArray": [
{
"urgentPriority": true,
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "AAM_GroupDP RPattern for Emergency Call Type",
"cgLinePresBit": "Default",
"pattern": "**004.!",
"callClassification": "OffNet",
"patternPrecedence": "Default",
"allowDeviceOverride": false,
"authLevel": "0",
"cgNamePresBit": "Default",
"reqClientMatterCode": false,
"reqForcedAuthCode": false,
"routePartition": "{{macro.HcsDpUniqueSitePrefixMCR}}-AAM_GroupDP-Emer-PT",
"connNamePresBit": "Default",
"connLinePresBit": "Default",
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupEmer-SLRG-RL",
"routeOption": "Route this pattern",
"releaseClause": "No Error",
"useCallingPartyExternalPhoneNumMask": false
}
],
"hierarchy_friendly_name": "CS-P (Provider)",
"hierarchy_path": "sys.hcs.CS-P"
},
"meta": {
"model_type": "data/HcsDpDialPlanSchemaDAT",
"summary_attrs": [
{
"name": "name",
"title": "Dial Plan Name"
},
{
"name": "hierarchy_friendly_name",
"title": "Located At",
"allow_filtering": true
}
],
"tagged_versions": [],
"tags": [],
"title": "title format",
"business_key": {
"hierarchy": true,
"unique": [
"name"
]
},
"api_version": "21.2",
"cached": true,
"references": {
"device": [
{
"href": "",
"pkid": ""
}
],
"owner": [
{
"pkid": ""
}
],
"parent": [
{
"pkid": "5df0b338ce894e001275535c",
"href": "/api/data/HierarchyNode/5df0b338ce894e001275535c"
}
],
"foreign_key": [],
"self": [
{
"href": "/api/data/HcsDpDialPlanSchemaDAT/5df0b5d2ce894e001275a192/",
"pkid": "5df0b5d2ce894e001275a192"
}
]
},
"path": [
"6t0ggef2c0deab00hb595101",
"5da4c643ce894e0012225c90",
"5df0b338ce894e001275535c",
"5df0b5d2ce894e001275a192"
],
"schema_version": "2.0",
"actions": [
{
"update": {
"method": "PUT",
"class": "update",
"href": "/api/data/HcsDpDialPlanSchemaDAT/5df0b5d2ce894e001275a192/",
"support_async": true,
"title": "Modify"
}
},
{
"remove": {
"method": "DELETE",
"class": "delete",
"href": "/api/data/HcsDpDialPlanSchemaDAT/5df0b5d2ce894e001275a192/",
"support_async": true,
"title": "Delete"
}
},
{
"clone": {
"method": "GET",
"class": "clone",
"href": "/api/data/HcsDpDialPlanSchemaDAT/5df0b5d2ce894e001275a192/clone/?schema=&schema_rules=true",
"support_async": false,
"title": "Clone"
}
},
{
"export": {
"method": "GET",
"class": "export",
"href": "/api/data/HcsDpDialPlanSchemaDAT/5df0b5d2ce894e001275a192/export/",
"support_async": false,
"title": "Export",
"view": "/api/view/ExportData/add/",
"submit": "payload"
}
},
{
"get": {
"method": "GET",
"class": "get",
"href": "/api/data/HcsDpDialPlanSchemaDAT/5df0b5d2ce894e001275a192/",
"support_async": false,
"title": "Get"
}
},
{
"help": {
"method": "GET",
"class": "help",
"href": "/api/data/HcsDpDialPlanSchemaDAT/5df0b5d2ce894e001275a192/help",
"support_async": false,
"title": "Help"
}
}
],
"summary": "false"
},
"pkid": "5df0b5d2ce894e001275a192"
},
{
"data": {
"cssArray": [
{
"usage": "General",
"isClassOfService": false,
"partitionMembers": [
{
"index": "1",
"partition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFDP-LBRteSel-PT"
}
],
"name": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFDP-LBRteSel-CSS",
"description": "{{macro.HcsDpUniqueCustomerPrefixMCR}} ZAF LB RteSel CSS"
},
{
"usage": "General",
"isClassOfService": false,
"partitionMembers": [
{
"index": "1",
"partition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFDP-PreLBRteSel-PT"
}
],
"name": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFDP-PreLBRteSel-CSS",
"description": "{{macro.HcsDpUniqueCustomerPrefixMCR}} ZAF PreLB RteSel CSS"
},
{
"usage": "General",
"isClassOfService": false,
"partitionMembers": [
{
"index": "1",
"partition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFDP-DBRteSel-PT"
}
],
"name": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFDP-DBRteSel-CSS",
"description": "{{macro.HcsDpUniqueCustomerPrefixMCR}} ZAF DB RteSel CSS"
}
],
"description": "ZAFDP for per Customer per Country per Cluster",
"routeListArray": [
{
"callManagerGroup": "{{ macro.DEFAULT_CUCM_GROUP }}",
"runOnEveryNode": true,
"description": " ZAFDP International Route List",
"routeListEnabled": true,
"name": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFIntl-RL"
},
{
"callManagerGroup": "{{ macro.DEFAULT_CUCM_GROUP }}",
"runOnEveryNode": true,
"description": " ZAFDP National Route List",
"routeListEnabled": true,
"name": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFNatl-RL"
},
{
"callManagerGroup": "{{ macro.DEFAULT_CUCM_GROUP }}",
"runOnEveryNode": true,
"description": " ZAFDP Mobile Route List",
"routeListEnabled": true,
"name": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFMobl-RL"
},
{
"callManagerGroup": "{{ macro.DEFAULT_CUCM_GROUP }}",
"runOnEveryNode": true,
"description": " ZAFDP Emergency Route List",
"routeListEnabled": true,
"name": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFEmer-RL"
},
{
"callManagerGroup": "{{ macro.DEFAULT_CUCM_GROUP }}",
"runOnEveryNode": true,
"description": " ZAFDP Service Route List",
"routeListEnabled": true,
"name": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFServ-RL"
},
{
"callManagerGroup": "{{ macro.DEFAULT_CUCM_GROUP }}",
"runOnEveryNode": true,
"description": " ZAFDP Local Route List",
"routeListEnabled": true,
"name": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFLocal-RL"
},
{
"callManagerGroup": "{{ macro.DEFAULT_CUCM_GROUP }}",
"runOnEveryNode": true,
"description": " ZAFDP Premium Rate Service Route List",
"routeListEnabled": true,
"name": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFPRSN-RL"
},
{
"callManagerGroup": "{{ macro.DEFAULT_CUCM_GROUP }}",
"runOnEveryNode": true,
"description": " ZAFDP TollFree Route List",
"routeListEnabled": true,
"name": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFFPHN-RL"
},
{
"callManagerGroup": "{{ macro.DEFAULT_CUCM_GROUP }}",
"runOnEveryNode": true,
"description": " ZAFDP Personal Comm Service Route List",
"routeListEnabled": true,
"name": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFPCSN-RL"
},
{
"callManagerGroup": "{{ macro.DEFAULT_CUCM_GROUP }}",
"runOnEveryNode": true,
"description": " ZAFDP Special Rate Service Route List",
"routeListEnabled": true,
"name": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFSRSN-RL"
},
{
"callManagerGroup": "{{ macro.DEFAULT_CUCM_GROUP }}",
"runOnEveryNode": true,
"description": " ZAFDP Operator Service Route List",
"routeListEnabled": true,
"name": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFOper-RL"
},
{
"name": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFIntl-SLRG-RL",
"routeListEnabled": true,
"runOnEveryNode": true,
"callManagerGroup": "{{ macro.DEFAULT_CUCM_GROUP }}",
"members": [
{
"routeGroupName": "SLRG-Intl",
"selectionOrder": "0"
}
],
"description": " ZAFDP International Route List"
},
{
"name": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFNatl-SLRG-RL",
"routeListEnabled": true,
"runOnEveryNode": true,
"callManagerGroup": "{{ macro.DEFAULT_CUCM_GROUP }}",
"members": [
{
"routeGroupName": "SLRG-Natl",
"selectionOrder": "0"
}
],
"description": " ZAFDP National Route List"
},
{
"name": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFMobl-SLRG-RL",
"routeListEnabled": true,
"runOnEveryNode": true,
"callManagerGroup": "{{ macro.DEFAULT_CUCM_GROUP }}",
"members": [
{
"routeGroupName": "SLRG-Mobl",
"selectionOrder": "0"
}
],
"description": " ZAFDP Mobile Route List"
},
{
"name": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFEmer-SLRG-RL",
"routeListEnabled": true,
"runOnEveryNode": true,
"callManagerGroup": "{{ macro.DEFAULT_CUCM_GROUP }}",
"members": [
{
"routeGroupName": "SLRG-Emer",
"selectionOrder": "0"
}
],
"description": " ZAFDP Emergency Route List"
},
{
"name": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFServ-SLRG-RL",
"routeListEnabled": true,
"runOnEveryNode": true,
"callManagerGroup": "{{ macro.DEFAULT_CUCM_GROUP }}",
"members": [
{
"routeGroupName": "SLRG-Serv",
"selectionOrder": "0"
}
],
"description": " ZAFDP Service Route List"
},
{
"name": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFLocal-SLRG-RL",
"routeListEnabled": true,
"runOnEveryNode": true,
"callManagerGroup": "{{ macro.DEFAULT_CUCM_GROUP }}",
"members": [
{
"routeGroupName": "SLRG-Local",
"selectionOrder": "0"
}
],
"description": " ZAFDP Local Route List"
},
{
"name": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFPRSN-SLRG-RL",
"routeListEnabled": true,
"runOnEveryNode": true,
"callManagerGroup": "{{ macro.DEFAULT_CUCM_GROUP }}",
"members": [
{
"routeGroupName": "SLRG-PRSN",
"selectionOrder": "0"
}
],
"description": " ZAFDP Premium Rate Service Route List"
},
{
"name": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFFPHN-SLRG-RL",
"routeListEnabled": true,
"runOnEveryNode": true,
"callManagerGroup": "{{ macro.DEFAULT_CUCM_GROUP }}",
"members": [
{
"routeGroupName": "SLRG-FPHN",
"selectionOrder": "0"
}
],
"description": " ZAFDP TollFree Route List"
},
{
"name": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFPCSN-SLRG-RL",
"routeListEnabled": true,
"runOnEveryNode": true,
"callManagerGroup": "{{ macro.DEFAULT_CUCM_GROUP }}",
"members": [
{
"routeGroupName": "SLRG-PCSN",
"selectionOrder": "0"
}
],
"description": " ZAFDP Personal Comm Service Route List"
},
{
"name": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFSRSN-SLRG-RL",
"routeListEnabled": true,
"runOnEveryNode": true,
"callManagerGroup": "{{ macro.DEFAULT_CUCM_GROUP }}",
"members": [
{
"routeGroupName": "SLRG-SRSN",
"selectionOrder": "0"
}
],
"description": " ZAFDP Special Rate Service Route List"
},
{
"name": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFOper-SLRG-RL",
"routeListEnabled": true,
"runOnEveryNode": true,
"callManagerGroup": "{{ macro.DEFAULT_CUCM_GROUP }}",
"members": [
{
"routeGroupName": "SLRG-Oper",
"selectionOrder": "0"
}
],
"description": " ZAFDP Operator Service Route List"
}
],
"partitionArray": [
{
"timeSchedule": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AllDay-TSchd",
"name": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFDP-Defn-PT",
"description": "{{macro.HcsDpUniqueCustomerPrefixMCR}} ZAFDP Definition PT"
},
{
"timeSchedule": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AllDay-TSchd",
"name": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFDP-LBRtg-PT",
"description": "{{macro.HcsDpUniqueCustomerPrefixMCR}} ZAF LB Rtg PT"
},
{
"timeSchedule": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AllDay-TSchd",
"name": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFDP-PreLBRteSel-PT",
"description": "{{macro.HcsDpUniqueCustomerPrefixMCR}} ZAF PreLB RteSel PT"
},
{
"timeSchedule": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AllDay-TSchd",
"name": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFDP-LBRteSel-PT",
"description": "{{macro.HcsDpUniqueCustomerPrefixMCR}} ZAF LB RteSel PT"
},
{
"timeSchedule": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AllDay-TSchd",
"name": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFDP-DBRtg-PT",
"description": "{{macro.HcsDpUniqueCustomerPrefixMCR}} ZAF DB Rtg PT"
},
{
"timeSchedule": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AllDay-TSchd",
"name": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFDP-PreDBRteSel-PT",
"description": "{{macro.HcsDpUniqueCustomerPrefixMCR}} ZAF PreDB RteSel PT"
},
{
"timeSchedule": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AllDay-TSchd",
"name": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFDP-DBRteSel-PT",
"description": "{{macro.HcsDpUniqueCustomerPrefixMCR}} ZAF DB RteSel PT"
}
],
"name": "BT ZAF Customer DP-V01",
"pkid": "5df0b5d3ce894e001275a1a1",
"translationPatternArray": [
{
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "ZAF LBRtg non LBO : no FAC no CMC",
"pattern": "\\+\\+06X0.!",
"routeOption": "Route this pattern",
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyPrefixDigits": "**0",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFDP-LBRtg-PT",
"nextHopByCallingPtyNum": true,
"useOrigCss": false,
"noWaitInterdigitTimeoutSubseqHops": true,
"urgentPriority": true,
"css": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFDP-PreLBRteSel-CSS"
},
{
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "ZAF LBRtg non LBO : FAC no CMC",
"pattern": "\\+\\+06X1.!",
"routeOption": "Route this pattern",
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyPrefixDigits": "**1",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFDP-LBRtg-PT",
"nextHopByCallingPtyNum": true,
"useOrigCss": false,
"noWaitInterdigitTimeoutSubseqHops": true,
"urgentPriority": true,
"css": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFDP-PreLBRteSel-CSS"
},
{
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "ZAF LBRtg non LBO : no FAC CMC",
"pattern": "\\+\\+06X2.!",
"routeOption": "Route this pattern",
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyPrefixDigits": "**2",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFDP-LBRtg-PT",
"nextHopByCallingPtyNum": true,
"useOrigCss": false,
"noWaitInterdigitTimeoutSubseqHops": true,
"urgentPriority": true,
"css": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFDP-PreLBRteSel-CSS"
},
{
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "ZAF LBRtg non LBO : FAC CMC",
"pattern": "\\+\\+06X3.!",
"routeOption": "Route this pattern",
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyPrefixDigits": "**3",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFDP-LBRtg-PT",
"nextHopByCallingPtyNum": true,
"useOrigCss": false,
"noWaitInterdigitTimeoutSubseqHops": true,
"urgentPriority": true,
"css": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFDP-PreLBRteSel-CSS"
},
{
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "ZAF DBRtg nonLBO : no FAC no CMC",
"pattern": "\\+\\+06X0.!",
"routeOption": "Route this pattern",
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyPrefixDigits": "**0",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFDP-DBRtg-PT",
"nextHopByCallingPtyNum": true,
"useOrigCss": true,
"noWaitInterdigitTimeoutSubseqHops": true,
"urgentPriority": true
},
{
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "ZAF DBRtg nonLBO : FAC no CMC",
"pattern": "\\+\\+06X1.!",
"routeOption": "Route this pattern",
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyPrefixDigits": "**1",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFDP-DBRtg-PT",
"nextHopByCallingPtyNum": true,
"useOrigCss": true,
"noWaitInterdigitTimeoutSubseqHops": true,
"urgentPriority": true
},
{
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "ZAF DBRtg nonLBO : CMC no FAC",
"pattern": "\\+\\+06X2.!",
"routeOption": "Route this pattern",
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyPrefixDigits": "**2",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFDP-DBRtg-PT",
"nextHopByCallingPtyNum": true,
"useOrigCss": true,
"noWaitInterdigitTimeoutSubseqHops": true,
"urgentPriority": true
},
{
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "ZAF DBRtg nonLBO : CMC FAC",
"pattern": "\\+\\+06X3.!",
"routeOption": "Route this pattern",
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyPrefixDigits": "**3",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFDP-DBRtg-PT",
"nextHopByCallingPtyNum": true,
"useOrigCss": true,
"noWaitInterdigitTimeoutSubseqHops": true,
"urgentPriority": true
},
{
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "ZAF DBRtg nonLBO SVC Call - no FAC no CMC",
"pattern": "\\+\\+06X005.!",
"routeOption": "Route this pattern",
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyPrefixDigits": "**00527",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFDP-DBRtg-PT",
"nextHopByCallingPtyNum": true,
"useOrigCss": true,
"noWaitInterdigitTimeoutSubseqHops": true,
"urgentPriority": true
},
{
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "ZAF DBRtg nonLBO SVC Call - FAC no CMC",
"pattern": "\\+\\+06X105.!",
"routeOption": "Route this pattern",
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyPrefixDigits": "**10527",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFDP-DBRtg-PT",
"nextHopByCallingPtyNum": true,
"useOrigCss": true,
"noWaitInterdigitTimeoutSubseqHops": true,
"urgentPriority": true
},
{
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "ZAF DBRtg nonLBO SVC Call - CMC no FAC",
"pattern": "\\+\\+06X205.!",
"routeOption": "Route this pattern",
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyPrefixDigits": "**20527",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFDP-DBRtg-PT",
"nextHopByCallingPtyNum": true,
"useOrigCss": true,
"noWaitInterdigitTimeoutSubseqHops": true,
"urgentPriority": true
},
{
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "ZAF DBRtg nonLBO SVC Call - CMC FAC",
"pattern": "\\+\\+06X305.!",
"routeOption": "Route this pattern",
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyPrefixDigits": "**30527",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFDP-DBRtg-PT",
"nextHopByCallingPtyNum": true,
"useOrigCss": true,
"noWaitInterdigitTimeoutSubseqHops": true,
"urgentPriority": true
},
{
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "ZAF DBRtg non LBO Oper Call - no FAC no CMC",
"pattern": "\\+\\+06X011.!",
"routeOption": "Route this pattern",
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyPrefixDigits": "**01127",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFDP-DBRtg-PT",
"nextHopByCallingPtyNum": true,
"useOrigCss": true,
"noWaitInterdigitTimeoutSubseqHops": true,
"urgentPriority": true
},
{
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "ZAF DBRtg non LBO Oper Call - FAC no CMC",
"pattern": "\\+\\+06X111.!",
"routeOption": "Route this pattern",
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyPrefixDigits": "**11127",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFDP-DBRtg-PT",
"nextHopByCallingPtyNum": true,
"useOrigCss": true,
"noWaitInterdigitTimeoutSubseqHops": true,
"urgentPriority": true
},
{
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "Cntr DBRtg non LBO Oper Call - CMC no FAC",
"pattern": "\\+\\+06X211.!",
"routeOption": "Route this pattern",
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyPrefixDigits": "**21127",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFDP-DBRtg-PT",
"nextHopByCallingPtyNum": true,
"useOrigCss": true,
"noWaitInterdigitTimeoutSubseqHops": true,
"urgentPriority": true
},
{
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "ZAF DBRtg non LBO Oper Call - CMC no FAC",
"pattern": "\\+\\+06X311.!",
"routeOption": "Route this pattern",
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyPrefixDigits": "**31127",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFDP-DBRtg-PT",
"nextHopByCallingPtyNum": true,
"useOrigCss": true,
"noWaitInterdigitTimeoutSubseqHops": true,
"urgentPriority": true
},
{
"provideOutsideDialTone": false,
"description": "ZAF - FE Security for LBRteSel",
"pattern": "\\+*\\+*!",
"routeOption": "Route this pattern",
"useCallingPartyExternalPhoneNumMask": false,
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFDP-PreLBRteSel-PT",
"nextHopByCallingPtyNum": false,
"useOrigCss": false,
"noWaitInterdigitTimeoutSubseqHops": true,
"urgentPriority": true,
"css": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFDP-LBRteSel-CSS"
},
{
"provideOutsideDialTone": false,
"description": "ZAF - FE Security for DBRteSel",
"pattern": "\\+*\\+*!",
"routeOption": "Route this pattern",
"useCallingPartyExternalPhoneNumMask": false,
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFDP-PreDBRteSel-PT",
"nextHopByCallingPtyNum": false,
"useOrigCss": false,
"noWaitInterdigitTimeoutSubseqHops": true,
"urgentPriority": true,
"css": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFDP-DBRteSel-CSS"
},
{
"provideOutsideDialTone": false,
"description": "ZAF - FE Security for LBRteSel",
"pattern": "\\+*\\+*\\+!",
"routeOption": "Route this pattern",
"useCallingPartyExternalPhoneNumMask": false,
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFDP-PreLBRteSel-PT",
"nextHopByCallingPtyNum": false,
"useOrigCss": false,
"noWaitInterdigitTimeoutSubseqHops": true,
"urgentPriority": true,
"css": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFDP-LBRteSel-CSS"
},
{
"provideOutsideDialTone": false,
"description": "ZAF - FE Security for DBRteSel",
"pattern": "\\+*\\+*\\+!",
"routeOption": "Route this pattern",
"useCallingPartyExternalPhoneNumMask": false,
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFDP-PreDBRteSel-PT",
"nextHopByCallingPtyNum": false,
"useOrigCss": false,
"noWaitInterdigitTimeoutSubseqHops": true,
"urgentPriority": true,
"css": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFDP-DBRteSel-CSS"
},
{
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "Intl Dialing",
"pattern": "{{macro.HcsDpPstnBreakout}}00.[^0]!",
"routeOption": "Route this pattern",
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyPrefixDigits": "++01001",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFDP-Defn-PT",
"nextHopByCallingPtyNum": false,
"useOrigCss": true,
"noWaitInterdigitTimeoutSubseqHops": true,
"urgentPriority": false
},
{
"calledPartyDiscardDigits": "PreDot Trailing-#",
"provideOutsideDialTone": false,
"description": "Intl Dialing",
"pattern": "{{macro.HcsDpPstnBreakout}}00.[^0]!#",
"routeOption": "Route this pattern",
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyPrefixDigits": "++01001",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFDP-Defn-PT",
"nextHopByCallingPtyNum": false,
"useOrigCss": true,
"noWaitInterdigitTimeoutSubseqHops": true,
"urgentPriority": false
},
{
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "Intl Dialing",
"pattern": "{{macro.HcsDpPstnBreakout}}0027.[^0]!",
"routeOption": "Route this pattern",
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyPrefixDigits": "{{macro.HcsDpPstnBreakout}}0",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFDP-Defn-PT",
"nextHopByCallingPtyNum": false,
"useOrigCss": true,
"noWaitInterdigitTimeoutSubseqHops": true,
"urgentPriority": false
},
{
"calledPartyDiscardDigits": "PreDot Trailing-#",
"provideOutsideDialTone": false,
"description": "Intl Dialing",
"pattern": "{{macro.HcsDpPstnBreakout}}0027.[^0]!#",
"routeOption": "Route this pattern",
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyPrefixDigits": "{{macro.HcsDpPstnBreakout}}0",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFDP-Defn-PT",
"nextHopByCallingPtyNum": false,
"useOrigCss": true,
"noWaitInterdigitTimeoutSubseqHops": true,
"urgentPriority": false
},
{
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "Intl dialing without #",
"pattern": "\\+.[^02]!",
"routeOption": "Route this pattern",
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyPrefixDigits": "++01001",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFDP-Defn-PT",
"nextHopByCallingPtyNum": false,
"useOrigCss": true,
"noWaitInterdigitTimeoutSubseqHops": true,
"urgentPriority": false
},
{
"calledPartyDiscardDigits": "PreDot Trailing-#",
"provideOutsideDialTone": false,
"description": "Intl dialing with #",
"pattern": "\\+.[^02]!#",
"routeOption": "Route this pattern",
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyPrefixDigits": "++01001",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFDP-Defn-PT",
"nextHopByCallingPtyNum": false,
"useOrigCss": true,
"noWaitInterdigitTimeoutSubseqHops": true,
"urgentPriority": false
},
{
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "Intl dialing without #",
"pattern": "\\+.2[^7]!",
"routeOption": "Route this pattern",
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyPrefixDigits": "++01001",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFDP-Defn-PT",
"nextHopByCallingPtyNum": false,
"useOrigCss": true,
"noWaitInterdigitTimeoutSubseqHops": true,
"urgentPriority": false
},
{
"calledPartyDiscardDigits": "PreDot Trailing-#",
"provideOutsideDialTone": false,
"description": "Intl dialing with #",
"pattern": "\\+.2[^7]!#",
"routeOption": "Route this pattern",
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyPrefixDigits": "++01001",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFDP-Defn-PT",
"nextHopByCallingPtyNum": false,
"useOrigCss": true,
"noWaitInterdigitTimeoutSubseqHops": true,
"urgentPriority": false
},
{
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "National Dialing",
"pattern": "{{macro.HcsDpPstnBreakout}}0.[1-5]XXXXXXXX",
"routeOption": "Route this pattern",
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyPrefixDigits": "++0100227",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFDP-Defn-PT",
"nextHopByCallingPtyNum": false,
"useOrigCss": true,
"noWaitInterdigitTimeoutSubseqHops": true,
"urgentPriority": false
},
{
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "Inbound, VoIP and Pagers",
"pattern": "{{macro.HcsDpPstnBreakout}}0.8[6-8]XXXXXXX",
"routeOption": "Route this pattern",
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyPrefixDigits": "++0100227",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFDP-Defn-PT",
"nextHopByCallingPtyNum": false,
"useOrigCss": true,
"noWaitInterdigitTimeoutSubseqHops": true,
"urgentPriority": false
},
{
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "National Plus Dialing",
"pattern": "\\+27.[1-5]XXXXXXXX",
"routeOption": "Route this pattern",
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyPrefixDigits": "++0100227",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFDP-Defn-PT",
"nextHopByCallingPtyNum": false,
"useOrigCss": true,
"noWaitInterdigitTimeoutSubseqHops": true,
"urgentPriority": false
},
{
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "Inbound, VoIP and Pagers",
"pattern": "\\+27.8[6-8]XXXXXXX",
"routeOption": "Route this pattern",
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyPrefixDigits": "++0100227",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFDP-Defn-PT",
"nextHopByCallingPtyNum": false,
"useOrigCss": true,
"noWaitInterdigitTimeoutSubseqHops": true,
"urgentPriority": false
},
{
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "Mobile Numbers",
"pattern": "{{macro.HcsDpPstnBreakout}}0.6[0-5]XXXXXXX",
"routeOption": "Route this pattern",
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyPrefixDigits": "++0100327",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFDP-Defn-PT",
"nextHopByCallingPtyNum": false,
"useOrigCss": true,
"noWaitInterdigitTimeoutSubseqHops": true,
"urgentPriority": false
},
{
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "Mobile Numbers",
"pattern": "{{macro.HcsDpPstnBreakout}}0.7[^5]XXXXXXX",
"routeOption": "Route this pattern",
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyPrefixDigits": "++0100327",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFDP-Defn-PT",
"nextHopByCallingPtyNum": false,
"useOrigCss": true,
"noWaitInterdigitTimeoutSubseqHops": true,
"urgentPriority": false
},
{
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "Mobile Numbers",
"pattern": "{{macro.HcsDpPstnBreakout}}0.8[1-4]XXXXXXX",
"routeOption": "Route this pattern",
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyPrefixDigits": "++0100327",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFDP-Defn-PT",
"nextHopByCallingPtyNum": false,
"useOrigCss": true,
"noWaitInterdigitTimeoutSubseqHops": true,
"urgentPriority": false
},
{
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "14D M2M Mobile Numbers",
"pattern": "{{macro.HcsDpPstnBreakout}}0.9[6-8]XXXXXXXXXXX",
"routeOption": "Route this pattern",
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyPrefixDigits": "++0100327",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFDP-Defn-PT",
"nextHopByCallingPtyNum": false,
"useOrigCss": true,
"noWaitInterdigitTimeoutSubseqHops": true,
"urgentPriority": false
},
{
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "Mobile Plus Dialing",
"pattern": "\\+27.6[0-5]XXXXXXX",
"routeOption": "Route this pattern",
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyPrefixDigits": "++0100327",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFDP-Defn-PT",
"nextHopByCallingPtyNum": false,
"useOrigCss": true,
"noWaitInterdigitTimeoutSubseqHops": true,
"urgentPriority": false
},
{
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "Mobile Plus Dialing",
"pattern": "\\+27.7[^5]XXXXXXX",
"routeOption": "Route this pattern",
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyPrefixDigits": "++0100327",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFDP-Defn-PT",
"nextHopByCallingPtyNum": false,
"useOrigCss": true,
"noWaitInterdigitTimeoutSubseqHops": true,
"urgentPriority": false
},
{
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "Mobile Plus Dialing",
"pattern": "\\+27.8[1-4]XXXXXXX",
"routeOption": "Route this pattern",
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyPrefixDigits": "++0100327",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFDP-Defn-PT",
"nextHopByCallingPtyNum": false,
"useOrigCss": true,
"noWaitInterdigitTimeoutSubseqHops": true,
"urgentPriority": false
},
{
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "Mobile Plus Dialing",
"pattern": "\\+27.9[6-8]XXXXXXXXXXX",
"routeOption": "Route this pattern",
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyPrefixDigits": "++0100327",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFDP-Defn-PT",
"nextHopByCallingPtyNum": false,
"useOrigCss": true,
"noWaitInterdigitTimeoutSubseqHops": true,
"urgentPriority": false
},
{
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "Service Numbers",
"pattern": "{{macro.HcsDpPstnBreakout}}.10XX",
"routeOption": "Route this pattern",
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyPrefixDigits": "++01005",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFDP-Defn-PT",
"nextHopByCallingPtyNum": false,
"useOrigCss": true,
"noWaitInterdigitTimeoutSubseqHops": true,
"urgentPriority": false
},
{
"calledPartyDiscardDigits": "PreDot Trailing-#",
"provideOutsideDialTone": false,
"description": "Service Numbers",
"pattern": "{{macro.HcsDpPstnBreakout}}.10XX#",
"routeOption": "Route this pattern",
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyPrefixDigits": "++01005",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFDP-Defn-PT",
"nextHopByCallingPtyNum": false,
"useOrigCss": true,
"noWaitInterdigitTimeoutSubseqHops": true,
"urgentPriority": false
},
{
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "Service Numbers",
"pattern": "{{macro.HcsDpPstnBreakout}}.10XXX",
"routeOption": "Route this pattern",
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyPrefixDigits": "++01005",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFDP-Defn-PT",
"nextHopByCallingPtyNum": false,
"useOrigCss": true,
"noWaitInterdigitTimeoutSubseqHops": true,
"urgentPriority": false
},
{
"calledPartyDiscardDigits": "PreDot Trailing-#",
"provideOutsideDialTone": false,
"description": "Service Numbers",
"pattern": "{{macro.HcsDpPstnBreakout}}.10XXX#",
"routeOption": "Route this pattern",
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyPrefixDigits": "++01005",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFDP-Defn-PT",
"nextHopByCallingPtyNum": false,
"useOrigCss": true,
"noWaitInterdigitTimeoutSubseqHops": true,
"urgentPriority": false
},
{
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "Government services - Provincial offices",
"pattern": "{{macro.HcsDpPstnBreakout}}.17737",
"routeOption": "Route this pattern",
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyPrefixDigits": "++01005",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFDP-Defn-PT",
"nextHopByCallingPtyNum": false,
"useOrigCss": true,
"noWaitInterdigitTimeoutSubseqHops": true,
"urgentPriority": false
},
{
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "Service Numbers",
"pattern": "{{macro.HcsDpPstnBreakout}}.1[0-4]!",
"routeOption": "Route this pattern",
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyPrefixDigits": "++01005",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFDP-Defn-PT",
"nextHopByCallingPtyNum": false,
"useOrigCss": true,
"noWaitInterdigitTimeoutSubseqHops": true,
"urgentPriority": false
},
{
"calledPartyDiscardDigits": "PreDot Trailing-#",
"provideOutsideDialTone": false,
"description": "Service Numbers",
"pattern": "{{macro.HcsDpPstnBreakout}}.1[0-4]!#",
"routeOption": "Route this pattern",
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyPrefixDigits": "++01005",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFDP-Defn-PT",
"nextHopByCallingPtyNum": false,
"useOrigCss": true,
"noWaitInterdigitTimeoutSubseqHops": true,
"urgentPriority": false
},
{
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "Service Numbers",
"pattern": "{{macro.HcsDpPstnBreakout}}.8[1-4]!",
"routeOption": "Route this pattern",
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyPrefixDigits": "++01005",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFDP-Defn-PT",
"nextHopByCallingPtyNum": false,
"useOrigCss": true,
"noWaitInterdigitTimeoutSubseqHops": true,
"urgentPriority": false
},
{
"calledPartyDiscardDigits": "PreDot Trailing-#",
"provideOutsideDialTone": false,
"description": "Service Numbers",
"pattern": "{{macro.HcsDpPstnBreakout}}.8[1-4]!#",
"routeOption": "Route this pattern",
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyPrefixDigits": "++01005",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFDP-Defn-PT",
"nextHopByCallingPtyNum": false,
"useOrigCss": true,
"noWaitInterdigitTimeoutSubseqHops": true,
"urgentPriority": false
},
{
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "Service Numbers",
"pattern": "{{macro.HcsDpPstnBreakout}}.[34]XXXX!",
"routeOption": "Route this pattern",
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyPrefixDigits": "++01005",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFDP-Defn-PT",
"nextHopByCallingPtyNum": false,
"useOrigCss": true,
"noWaitInterdigitTimeoutSubseqHops": true,
"urgentPriority": false
},
{
"calledPartyDiscardDigits": "PreDot Trailing-#",
"provideOutsideDialTone": false,
"description": "Service Numbers",
"pattern": "{{macro.HcsDpPstnBreakout}}.[34]XXXX!#",
"routeOption": "Route this pattern",
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyPrefixDigits": "++01005",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFDP-Defn-PT",
"nextHopByCallingPtyNum": false,
"useOrigCss": true,
"noWaitInterdigitTimeoutSubseqHops": true,
"urgentPriority": false
},
{
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "Premium Rate",
"pattern": "{{macro.HcsDpPstnBreakout}}0.9[0-5]XXXXXXX",
"routeOption": "Route this pattern",
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyPrefixDigits": "++0100727",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFDP-Defn-PT",
"nextHopByCallingPtyNum": false,
"useOrigCss": true,
"noWaitInterdigitTimeoutSubseqHops": true,
"urgentPriority": false
},
{
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "Premium Rate",
"pattern": "{{macro.HcsDpPstnBreakout}}0.86[2-9]XXXXXX",
"routeOption": "Route this pattern",
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyPrefixDigits": "++0100727",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFDP-Defn-PT",
"nextHopByCallingPtyNum": false,
"useOrigCss": true,
"noWaitInterdigitTimeoutSubseqHops": true,
"urgentPriority": false
},
{
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "Premium Rate",
"pattern": "{{macro.HcsDpPstnBreakout}}0.89XXXXXXX",
"routeOption": "Route this pattern",
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyPrefixDigits": "++0100727",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFDP-Defn-PT",
"nextHopByCallingPtyNum": false,
"useOrigCss": true,
"noWaitInterdigitTimeoutSubseqHops": true,
"urgentPriority": false
},
{
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "Premium Rate",
"pattern": "\\+27.9[0-5]XXXXXXX",
"routeOption": "Route this pattern",
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyPrefixDigits": "++0100727",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFDP-Defn-PT",
"nextHopByCallingPtyNum": false,
"useOrigCss": true,
"noWaitInterdigitTimeoutSubseqHops": true,
"urgentPriority": false
},
{
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "Premium Rate",
"pattern": "\\+27.86[2-9]XXXXXX",
"routeOption": "Route this pattern",
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyPrefixDigits": "++0100727",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFDP-Defn-PT",
"nextHopByCallingPtyNum": false,
"useOrigCss": true,
"noWaitInterdigitTimeoutSubseqHops": true,
"urgentPriority": false
},
{
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "Premium Rate",
"pattern": "\\+27.89XXXXXXX",
"routeOption": "Route this pattern",
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyPrefixDigits": "++0100727",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFDP-Defn-PT",
"nextHopByCallingPtyNum": false,
"useOrigCss": true,
"noWaitInterdigitTimeoutSubseqHops": true,
"urgentPriority": false
},
{
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "Freephone Pattern",
"pattern": "{{macro.HcsDpPstnBreakout}}0.80XXXXXXX",
"routeOption": "Route this pattern",
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyPrefixDigits": "++0100827",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFDP-Defn-PT",
"nextHopByCallingPtyNum": false,
"useOrigCss": true,
"noWaitInterdigitTimeoutSubseqHops": true,
"urgentPriority": false
},
{
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "Freephone Pattern",
"pattern": "\\+27.80XXXXXXX",
"routeOption": "Route this pattern",
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyPrefixDigits": "++0100827",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFDP-Defn-PT",
"nextHopByCallingPtyNum": false,
"useOrigCss": true,
"noWaitInterdigitTimeoutSubseqHops": true,
"urgentPriority": false
}
],
"routePatternArray": [
{
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "ZAF Intl Call Type - no FAC no CMC",
"pattern": "**001.!",
"callClassification": "OffNet",
"authLevel": "0",
"allowDeviceOverride": false,
"routeOption": "Route this pattern",
"reqClientMatterCode": false,
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyPrefixDigits": "+",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFDP-LBRteSel-PT",
"reqForcedAuthCode": false,
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFIntl-RL",
"urgentPriority": true
},
{
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "ZAF Intl Call Type - FAC no CMC",
"pattern": "**101.!",
"callClassification": "OffNet",
"authLevel": "10",
"allowDeviceOverride": false,
"routeOption": "Route this pattern",
"reqClientMatterCode": false,
"useCallingPartyExternalPhoneNumMask": true,
"calledPartyPrefixDigits": "+",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFDP-LBRteSel-PT",
"reqForcedAuthCode": true,
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFIntl-RL",
"urgentPriority": true
},
{
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "ZAF Intl Call Type - CMC no FAC",
"pattern": "**201.!",
"callClassification": "OffNet",
"authLevel": "0",
"allowDeviceOverride": false,
"routeOption": "Route this pattern",
"reqClientMatterCode": true,
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyPrefixDigits": "+",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFDP-LBRteSel-PT",
"reqForcedAuthCode": false,
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFIntl-RL",
"urgentPriority": true
},
{
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "ZAF Intl Call Type - CMC FAC",
"pattern": "**301.!",
"callClassification": "OffNet",
"authLevel": "10",
"allowDeviceOverride": false,
"routeOption": "Route this pattern",
"reqClientMatterCode": true,
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyPrefixDigits": "+",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFDP-LBRteSel-PT",
"reqForcedAuthCode": true,
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFIntl-RL",
"urgentPriority": true
},
{
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "ZAF Natl Call Type - no FAC no CMC",
"pattern": "**00227.!",
"callClassification": "OffNet",
"authLevel": "0",
"allowDeviceOverride": false,
"routeOption": "Route this pattern",
"reqClientMatterCode": false,
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyPrefixDigits": "+27",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFDP-LBRteSel-PT",
"reqForcedAuthCode": false,
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFNatl-RL",
"urgentPriority": true
},
{
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "ZAF Natl Call Type - FAC no CMC",
"pattern": "**10227.!",
"callClassification": "OffNet",
"authLevel": "6",
"allowDeviceOverride": false,
"routeOption": "Route this pattern",
"reqClientMatterCode": false,
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyPrefixDigits": "+27",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFDP-LBRteSel-PT",
"reqForcedAuthCode": true,
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFNatl-RL",
"urgentPriority": true
},
{
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "ZAF Natl Call Type - CMC no FAC",
"pattern": "**20227.!",
"callClassification": "OffNet",
"authLevel": "0",
"allowDeviceOverride": false,
"routeOption": "Route this pattern",
"reqClientMatterCode": true,
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyPrefixDigits": "+27",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFDP-LBRteSel-PT",
"reqForcedAuthCode": false,
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFNatl-RL",
"urgentPriority": true
},
{
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "ZAF RP for Natl Call Type - FAC CMC",
"pattern": "**30227.!",
"callClassification": "OffNet",
"authLevel": "6",
"allowDeviceOverride": false,
"routeOption": "Route this pattern",
"reqClientMatterCode": true,
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyPrefixDigits": "+27",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFDP-LBRteSel-PT",
"reqForcedAuthCode": true,
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFNatl-RL",
"urgentPriority": true
},
{
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "ZAF Mobl Call Type - no FAC no CMC",
"pattern": "**00327.!",
"callClassification": "OffNet",
"authLevel": "0",
"allowDeviceOverride": false,
"routeOption": "Route this pattern",
"reqClientMatterCode": false,
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyPrefixDigits": "+27",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFDP-LBRteSel-PT",
"reqForcedAuthCode": false,
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFMobl-RL",
"urgentPriority": true
},
{
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "ZAF Mobl Call Type - FAC no CMC",
"pattern": "**10327.!",
"callClassification": "OffNet",
"authLevel": "8",
"allowDeviceOverride": false,
"routeOption": "Route this pattern",
"reqClientMatterCode": false,
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyPrefixDigits": "+27",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFDP-LBRteSel-PT",
"reqForcedAuthCode": true,
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFMobl-RL",
"urgentPriority": true
},
{
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "ZAF Mobl Call Type - CMC no FAC",
"pattern": "**20327.!",
"callClassification": "OffNet",
"authLevel": "0",
"allowDeviceOverride": false,
"routeOption": "Route this pattern",
"reqClientMatterCode": true,
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyPrefixDigits": "+27",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFDP-LBRteSel-PT",
"reqForcedAuthCode": false,
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFMobl-RL",
"urgentPriority": true
},
{
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "ZAF Mobl Call Type - FAC CMC",
"pattern": "**30327.!",
"callClassification": "OffNet",
"authLevel": "8",
"allowDeviceOverride": false,
"routeOption": "Route this pattern",
"reqClientMatterCode": true,
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyPrefixDigits": "+27",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFDP-LBRteSel-PT",
"reqForcedAuthCode": true,
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFMobl-RL",
"urgentPriority": true
},
{
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "ZAF SVC Call Type - no FAC no CMC",
"pattern": "**005.!",
"callClassification": "OffNet",
"authLevel": "0",
"allowDeviceOverride": false,
"routeOption": "Route this pattern",
"reqClientMatterCode": false,
"useCallingPartyExternalPhoneNumMask": false,
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFDP-LBRteSel-PT",
"reqForcedAuthCode": false,
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFServ-RL",
"urgentPriority": true
},
{
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "ZAF RP for Service Call Type - FAC no CMC",
"pattern": "**105.!",
"callClassification": "OffNet",
"authLevel": "6",
"allowDeviceOverride": false,
"routeOption": "Route this pattern",
"reqClientMatterCode": false,
"useCallingPartyExternalPhoneNumMask": false,
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFDP-LBRteSel-PT",
"reqForcedAuthCode": true,
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFServ-RL",
"urgentPriority": true
},
{
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "ZAF SVC Call Type - CMC no FAC",
"pattern": "**205.!",
"callClassification": "OffNet",
"authLevel": "0",
"allowDeviceOverride": false,
"routeOption": "Route this pattern",
"reqClientMatterCode": true,
"useCallingPartyExternalPhoneNumMask": false,
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFDP-LBRteSel-PT",
"reqForcedAuthCode": false,
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFServ-RL",
"urgentPriority": true
},
{
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "ZAF SVC Call Type - CMC FAC",
"pattern": "**305.!",
"callClassification": "OffNet",
"authLevel": "6",
"allowDeviceOverride": false,
"routeOption": "Route this pattern",
"reqClientMatterCode": true,
"useCallingPartyExternalPhoneNumMask": false,
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFDP-LBRteSel-PT",
"reqForcedAuthCode": true,
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFServ-RL",
"urgentPriority": true
},
{
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "ZAF Local Call Type - no FAC no CMC",
"pattern": "**00627.!",
"callClassification": "OffNet",
"authLevel": "0",
"allowDeviceOverride": false,
"routeOption": "Route this pattern",
"reqClientMatterCode": false,
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyPrefixDigits": "+27",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFDP-LBRteSel-PT",
"reqForcedAuthCode": false,
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFLocal-RL",
"urgentPriority": true
},
{
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "ZAF Local Call Type - FAC no CMC",
"pattern": "**10627.!",
"callClassification": "OffNet",
"authLevel": "1",
"allowDeviceOverride": false,
"routeOption": "Route this pattern",
"reqClientMatterCode": false,
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyPrefixDigits": "+27",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFDP-LBRteSel-PT",
"reqForcedAuthCode": true,
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFLocal-RL",
"urgentPriority": true
},
{
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "ZAF Local Call Type - CMC no FAC",
"pattern": "**20627.!",
"callClassification": "OffNet",
"authLevel": "0",
"allowDeviceOverride": false,
"routeOption": "Route this pattern",
"reqClientMatterCode": true,
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyPrefixDigits": "+27",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFDP-LBRteSel-PT",
"reqForcedAuthCode": false,
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFLocal-RL",
"urgentPriority": true
},
{
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "ZAF Local Call Type - CMC FAC",
"pattern": "**30627.!",
"callClassification": "OffNet",
"authLevel": "1",
"allowDeviceOverride": false,
"routeOption": "Route this pattern",
"reqClientMatterCode": true,
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyPrefixDigits": "+27",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFDP-LBRteSel-PT",
"reqForcedAuthCode": true,
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFLocal-RL",
"urgentPriority": true
},
{
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "ZAF PRS Call Type - no FAC no CMC",
"pattern": "**00727.!",
"callClassification": "OffNet",
"authLevel": "0",
"allowDeviceOverride": false,
"routeOption": "Route this pattern",
"reqClientMatterCode": false,
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyPrefixDigits": "+27",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFDP-LBRteSel-PT",
"reqForcedAuthCode": false,
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFPRSN-RL",
"urgentPriority": true
},
{
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "ZAF PRS Call Type - FAC no CMC",
"pattern": "**10727.!",
"callClassification": "OffNet",
"authLevel": "10",
"allowDeviceOverride": false,
"routeOption": "Route this pattern",
"reqClientMatterCode": false,
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyPrefixDigits": "+27",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFDP-LBRteSel-PT",
"reqForcedAuthCode": true,
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFPRSN-RL",
"urgentPriority": true
},
{
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "ZAF PRS Call Type - CMC no FAC",
"pattern": "**20727.!",
"callClassification": "OffNet",
"authLevel": "0",
"allowDeviceOverride": false,
"routeOption": "Route this pattern",
"reqClientMatterCode": true,
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyPrefixDigits": "+27",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFDP-LBRteSel-PT",
"reqForcedAuthCode": false,
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFPRSN-RL",
"urgentPriority": true
},
{
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "ZAF PRS Call Type - CMC FAC",
"pattern": "**30727.!",
"callClassification": "OffNet",
"authLevel": "10",
"allowDeviceOverride": false,
"routeOption": "Route this pattern",
"reqClientMatterCode": true,
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyPrefixDigits": "+27",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFDP-LBRteSel-PT",
"reqForcedAuthCode": true,
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFPRSN-RL",
"urgentPriority": true
},
{
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "ZAF FPH Call Type - no FAC no CMC",
"pattern": "**00827.!",
"callClassification": "OffNet",
"authLevel": "0",
"allowDeviceOverride": false,
"routeOption": "Route this pattern",
"reqClientMatterCode": false,
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyPrefixDigits": "+27",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFDP-LBRteSel-PT",
"reqForcedAuthCode": false,
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFFPHN-RL",
"urgentPriority": true
},
{
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "ZAF FPH Call Type - FAC no CMC",
"pattern": "**10827.!",
"callClassification": "OffNet",
"authLevel": "6",
"allowDeviceOverride": false,
"routeOption": "Route this pattern",
"reqClientMatterCode": false,
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyPrefixDigits": "+27",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFDP-LBRteSel-PT",
"reqForcedAuthCode": true,
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFFPHN-RL",
"urgentPriority": true
},
{
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "ZAF FPH Call Type - CMC no FAC",
"pattern": "**20827.!",
"callClassification": "OffNet",
"authLevel": "0",
"allowDeviceOverride": false,
"routeOption": "Route this pattern",
"reqClientMatterCode": true,
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyPrefixDigits": "+27",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFDP-LBRteSel-PT",
"reqForcedAuthCode": false,
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFFPHN-RL",
"urgentPriority": true
},
{
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "ZAF FPH Call Type - CMC FAC",
"pattern": "**30827.!",
"callClassification": "OffNet",
"authLevel": "6",
"allowDeviceOverride": false,
"routeOption": "Route this pattern",
"reqClientMatterCode": true,
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyPrefixDigits": "+27",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFDP-LBRteSel-PT",
"reqForcedAuthCode": true,
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFFPHN-RL",
"urgentPriority": true
},
{
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "ZAF PCS Call Type - no FAC no CMC",
"pattern": "**00927.!",
"callClassification": "OffNet",
"authLevel": "0",
"allowDeviceOverride": false,
"routeOption": "Route this pattern",
"reqClientMatterCode": false,
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyPrefixDigits": "+27",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFDP-LBRteSel-PT",
"reqForcedAuthCode": false,
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFPCSN-RL",
"urgentPriority": true
},
{
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "ZAF PCS Call Type - FAC no CMC",
"pattern": "**10927.!",
"callClassification": "OffNet",
"authLevel": "6",
"allowDeviceOverride": false,
"routeOption": "Route this pattern",
"reqClientMatterCode": false,
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyPrefixDigits": "+27",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFDP-LBRteSel-PT",
"reqForcedAuthCode": true,
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFPCSN-RL",
"urgentPriority": true
},
{
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "ZAF PCS Call Type - CMC no FAC",
"pattern": "**20927.!",
"callClassification": "OffNet",
"authLevel": "0",
"allowDeviceOverride": false,
"routeOption": "Route this pattern",
"reqClientMatterCode": true,
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyPrefixDigits": "+27",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFDP-LBRteSel-PT",
"reqForcedAuthCode": false,
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFPCSN-RL",
"urgentPriority": true
},
{
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "ZAF PCS Call Type -CMC FAC",
"pattern": "**30927.!",
"callClassification": "OffNet",
"authLevel": "6",
"allowDeviceOverride": false,
"routeOption": "Route this pattern",
"reqClientMatterCode": true,
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyPrefixDigits": "+27",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFDP-LBRteSel-PT",
"reqForcedAuthCode": true,
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFPCSN-RL",
"urgentPriority": true
},
{
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "ZAF SRS Call Type - no FAC no CMC",
"pattern": "**01027.!",
"callClassification": "OffNet",
"authLevel": "0",
"allowDeviceOverride": false,
"routeOption": "Route this pattern",
"reqClientMatterCode": false,
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyPrefixDigits": "+27",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFDP-LBRteSel-PT",
"reqForcedAuthCode": false,
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFSRSN-RL",
"urgentPriority": true
},
{
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "ZAF SRS Call Type - FAC no CMC",
"pattern": "**11027.!",
"callClassification": "OffNet",
"authLevel": "6",
"allowDeviceOverride": false,
"routeOption": "Route this pattern",
"reqClientMatterCode": false,
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyPrefixDigits": "+27",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFDP-LBRteSel-PT",
"reqForcedAuthCode": true,
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFSRSN-RL",
"urgentPriority": true
},
{
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "ZAF SRS Call Type - CMC no FAC",
"pattern": "**21027.!",
"callClassification": "OffNet",
"authLevel": "0",
"allowDeviceOverride": false,
"routeOption": "Route this pattern",
"reqClientMatterCode": true,
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyPrefixDigits": "+27",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFDP-LBRteSel-PT",
"reqForcedAuthCode": false,
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFSRSN-RL",
"urgentPriority": true
},
{
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "ZAF SRS Call Type - cmc FAC",
"pattern": "**31027.!",
"callClassification": "OffNet",
"authLevel": "6",
"allowDeviceOverride": false,
"routeOption": "Route this pattern",
"reqClientMatterCode": true,
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyPrefixDigits": "+27",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFDP-LBRteSel-PT",
"reqForcedAuthCode": true,
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFSRSN-RL",
"urgentPriority": true
},
{
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "ZAF OPR Call Type - no FAC no CMC",
"pattern": "**011.!",
"callClassification": "OffNet",
"authLevel": "0",
"allowDeviceOverride": false,
"routeOption": "Route this pattern",
"reqClientMatterCode": false,
"useCallingPartyExternalPhoneNumMask": false,
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFDP-LBRteSel-PT",
"reqForcedAuthCode": false,
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFOper-RL",
"urgentPriority": true
},
{
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "ZAF OPR Call Type - FAC no CMC",
"pattern": "**111.!",
"callClassification": "OffNet",
"authLevel": "6",
"allowDeviceOverride": false,
"routeOption": "Route this pattern",
"reqClientMatterCode": false,
"useCallingPartyExternalPhoneNumMask": false,
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFDP-LBRteSel-PT",
"reqForcedAuthCode": true,
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFOper-RL",
"urgentPriority": true
},
{
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "ZAF OPR Call Type - CMC no FAC",
"pattern": "**211.!",
"callClassification": "OffNet",
"authLevel": "0",
"allowDeviceOverride": false,
"routeOption": "Route this pattern",
"reqClientMatterCode": true,
"useCallingPartyExternalPhoneNumMask": false,
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFDP-LBRteSel-PT",
"reqForcedAuthCode": false,
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFOper-RL",
"urgentPriority": true
},
{
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "ZAF OPR Call Type - CMC FAC",
"pattern": "**311.!",
"callClassification": "OffNet",
"authLevel": "6",
"allowDeviceOverride": false,
"routeOption": "Route this pattern",
"reqClientMatterCode": true,
"useCallingPartyExternalPhoneNumMask": false,
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFDP-LBRteSel-PT",
"reqForcedAuthCode": true,
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFOper-RL",
"urgentPriority": true
},
{
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "ZAF CT=IntlXnFACnCMC use Intl RL",
"pattern": "**001.X!",
"callClassification": "OffNet",
"authLevel": "0",
"allowDeviceOverride": false,
"routeOption": "Route this pattern",
"reqClientMatterCode": false,
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyPrefixDigits": "+",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFDP-DBRteSel-PT",
"reqForcedAuthCode": false,
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFIntl-SLRG-RL",
"urgentPriority": true
},
{
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "ZAF CT=IntlXyFACnCMC use Intl RL",
"pattern": "**101.X!",
"callClassification": "OffNet",
"authLevel": "10",
"allowDeviceOverride": false,
"routeOption": "Route this pattern",
"reqClientMatterCode": false,
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyPrefixDigits": "+",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFDP-DBRteSel-PT",
"reqForcedAuthCode": true,
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFIntl-SLRG-RL",
"urgentPriority": true
},
{
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "ZAF CT=IntlXnFACyCMC use Intl RL",
"pattern": "**201.X!",
"callClassification": "OffNet",
"authLevel": "0",
"allowDeviceOverride": false,
"routeOption": "Route this pattern",
"reqClientMatterCode": true,
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyPrefixDigits": "+",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFDP-DBRteSel-PT",
"reqForcedAuthCode": false,
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFIntl-SLRG-RL",
"urgentPriority": true
},
{
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "ZAF CT=IntlXyFACyCMC use Intl RL",
"pattern": "**301.X!",
"callClassification": "OffNet",
"authLevel": "10",
"allowDeviceOverride": false,
"routeOption": "Route this pattern",
"reqClientMatterCode": true,
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyPrefixDigits": "+",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFDP-DBRteSel-PT",
"reqForcedAuthCode": true,
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFIntl-SLRG-RL",
"urgentPriority": true
},
{
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "ZAF CT=NatlXnFACnCMC use Intl RL",
"pattern": "**002.X!",
"callClassification": "OffNet",
"authLevel": "0",
"allowDeviceOverride": false,
"routeOption": "Route this pattern",
"reqClientMatterCode": false,
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyPrefixDigits": "+",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFDP-DBRteSel-PT",
"reqForcedAuthCode": false,
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFIntl-SLRG-RL",
"urgentPriority": true
},
{
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "ZAF CT=NatlXyFACnCMC use Intl RL",
"pattern": "**102.X!",
"callClassification": "OffNet",
"authLevel": "6",
"allowDeviceOverride": false,
"routeOption": "Route this pattern",
"reqClientMatterCode": false,
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyPrefixDigits": "+",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFDP-DBRteSel-PT",
"reqForcedAuthCode": true,
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFIntl-SLRG-RL",
"urgentPriority": true
},
{
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "ZAF CT=NatlXnFACyCMC use Intl RL",
"pattern": "**202.X!",
"callClassification": "OffNet",
"authLevel": "0",
"allowDeviceOverride": false,
"routeOption": "Route this pattern",
"reqClientMatterCode": true,
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyPrefixDigits": "+",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFDP-DBRteSel-PT",
"reqForcedAuthCode": false,
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFIntl-SLRG-RL",
"urgentPriority": true
},
{
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "ZAF CT=NatlXyFACyCMC use Intl RL",
"pattern": "**302.X!",
"callClassification": "OffNet",
"authLevel": "6",
"allowDeviceOverride": false,
"routeOption": "Route this pattern",
"reqClientMatterCode": true,
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyPrefixDigits": "+",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFDP-DBRteSel-PT",
"reqForcedAuthCode": true,
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFIntl-SLRG-RL",
"urgentPriority": true
},
{
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "ZAF CT=MoblXnFACnCMC use Intl RL",
"pattern": "**003.X!",
"callClassification": "OffNet",
"authLevel": "0",
"allowDeviceOverride": false,
"routeOption": "Route this pattern",
"reqClientMatterCode": false,
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyPrefixDigits": "+",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFDP-DBRteSel-PT",
"reqForcedAuthCode": false,
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFIntl-SLRG-RL",
"urgentPriority": true
},
{
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "ZAF CT=Mobl1yFACnCMC use Intl RL",
"pattern": "**103.X!",
"callClassification": "OffNet",
"authLevel": "6",
"allowDeviceOverride": false,
"routeOption": "Route this pattern",
"reqClientMatterCode": false,
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyPrefixDigits": "+",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFDP-DBRteSel-PT",
"reqForcedAuthCode": true,
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFIntl-SLRG-RL",
"urgentPriority": true
},
{
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "ZAF CT=MoblXnFACyCMC use Intl RL",
"pattern": "**203.X!",
"callClassification": "OffNet",
"authLevel": "0",
"allowDeviceOverride": false,
"routeOption": "Route this pattern",
"reqClientMatterCode": true,
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyPrefixDigits": "+",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFDP-DBRteSel-PT",
"reqForcedAuthCode": false,
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFIntl-SLRG-RL",
"urgentPriority": true
},
{
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "ZAF CT=Mobl1yFACyCMC use Intl RL",
"pattern": "**303.X!",
"callClassification": "OffNet",
"authLevel": "6",
"allowDeviceOverride": false,
"routeOption": "Route this pattern",
"reqClientMatterCode": true,
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyPrefixDigits": "+",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFDP-DBRteSel-PT",
"reqForcedAuthCode": true,
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFIntl-SLRG-RL",
"urgentPriority": true
},
{
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "ZAF Block not in Country Service Call",
"pattern": "**[0-3]05X.!",
"callClassification": "OffNet",
"authLevel": "0",
"allowDeviceOverride": false,
"routeOption": "Block this pattern",
"reqClientMatterCode": false,
"useCallingPartyExternalPhoneNumMask": false,
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFDP-DBRteSel-PT",
"reqForcedAuthCode": false,
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFServ-SLRG-RL",
"urgentPriority": true,
"releaseClause": "Call Rejected"
},
{
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "ZAF CT=LocalXnFACnCMC use Intl RL",
"pattern": "**006.X!",
"callClassification": "OffNet",
"authLevel": "0",
"allowDeviceOverride": false,
"routeOption": "Route this pattern",
"reqClientMatterCode": false,
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyPrefixDigits": "+",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFDP-DBRteSel-PT",
"reqForcedAuthCode": false,
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFIntl-SLRG-RL",
"urgentPriority": true
},
{
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "ZAF CT=LocalXyFACnCMC use Intl RL",
"pattern": "**106.X!",
"callClassification": "OffNet",
"authLevel": "1",
"allowDeviceOverride": false,
"routeOption": "Route this pattern",
"reqClientMatterCode": false,
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyPrefixDigits": "+",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFDP-DBRteSel-PT",
"reqForcedAuthCode": true,
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFIntl-SLRG-RL",
"urgentPriority": true
},
{
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "ZAF CT=LocalXnFACyCMC use Intl RL",
"pattern": "**206.X!",
"callClassification": "OffNet",
"authLevel": "0",
"allowDeviceOverride": false,
"routeOption": "Route this pattern",
"reqClientMatterCode": true,
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyPrefixDigits": "+",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFDP-DBRteSel-PT",
"reqForcedAuthCode": false,
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFIntl-SLRG-RL",
"urgentPriority": true
},
{
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "ZAF CT=LocalXyFACyCMC use Intl RL",
"pattern": "**306.X!",
"callClassification": "OffNet",
"authLevel": "1",
"allowDeviceOverride": false,
"routeOption": "Route this pattern",
"reqClientMatterCode": true,
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyPrefixDigits": "+",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFDP-DBRteSel-PT",
"reqForcedAuthCode": true,
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFIntl-SLRG-RL",
"urgentPriority": true
},
{
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "ZAF CT=PRSNXnFACnCMC use Intl RL",
"pattern": "**007.X!",
"callClassification": "OffNet",
"authLevel": "0",
"allowDeviceOverride": false,
"routeOption": "Route this pattern",
"reqClientMatterCode": false,
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyPrefixDigits": "+",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFDP-DBRteSel-PT",
"reqForcedAuthCode": false,
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFIntl-SLRG-RL",
"urgentPriority": true
},
{
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "ZAF CT=PRSNXyFACnCMC use Intl RL",
"pattern": "**107.X!",
"callClassification": "OffNet",
"authLevel": "9",
"allowDeviceOverride": false,
"routeOption": "Route this pattern",
"reqClientMatterCode": false,
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyPrefixDigits": "+",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFDP-DBRteSel-PT",
"reqForcedAuthCode": true,
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFIntl-SLRG-RL",
"urgentPriority": true
},
{
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "ZAF CT=PRSNXnFACyCMC use Intl RL",
"pattern": "**207.X!",
"callClassification": "OffNet",
"authLevel": "0",
"allowDeviceOverride": false,
"routeOption": "Route this pattern",
"reqClientMatterCode": true,
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyPrefixDigits": "+",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFDP-DBRteSel-PT",
"reqForcedAuthCode": false,
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFIntl-SLRG-RL",
"urgentPriority": true
},
{
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "ZAF CT=PRSNXyFACyCMC use Intl RL",
"pattern": "**307.X!",
"callClassification": "OffNet",
"authLevel": "9",
"allowDeviceOverride": false,
"routeOption": "Route this pattern",
"reqClientMatterCode": true,
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyPrefixDigits": "+",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFDP-DBRteSel-PT",
"reqForcedAuthCode": true,
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFIntl-SLRG-RL",
"urgentPriority": true
},
{
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "ZAF CT=FPHNXnFACnCMC use Intl RL",
"pattern": "**008.X!",
"callClassification": "OffNet",
"authLevel": "0",
"allowDeviceOverride": false,
"routeOption": "Route this pattern",
"reqClientMatterCode": false,
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyPrefixDigits": "+",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFDP-DBRteSel-PT",
"reqForcedAuthCode": false,
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFIntl-SLRG-RL",
"urgentPriority": true
},
{
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "ZAF CT=FPHNXyFACnCMC use Intl RL",
"pattern": "**108.X!",
"callClassification": "OffNet",
"authLevel": "6",
"allowDeviceOverride": false,
"routeOption": "Route this pattern",
"reqClientMatterCode": false,
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyPrefixDigits": "+",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFDP-DBRteSel-PT",
"reqForcedAuthCode": true,
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFIntl-SLRG-RL",
"urgentPriority": true
},
{
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "ZAF CT=FPHNXnFACyCMC use Intl RL",
"pattern": "**208.X!",
"callClassification": "OffNet",
"authLevel": "0",
"allowDeviceOverride": false,
"routeOption": "Route this pattern",
"reqClientMatterCode": true,
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyPrefixDigits": "+",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFDP-DBRteSel-PT",
"reqForcedAuthCode": false,
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFIntl-SLRG-RL",
"urgentPriority": true
},
{
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "ZAF CT=FPHNXyFACyCMC use Intl RL",
"pattern": "**308.X!",
"callClassification": "OffNet",
"authLevel": "6",
"allowDeviceOverride": false,
"routeOption": "Route this pattern",
"reqClientMatterCode": true,
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyPrefixDigits": "+",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFDP-DBRteSel-PT",
"reqForcedAuthCode": true,
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFIntl-SLRG-RL",
"urgentPriority": true
},
{
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "ZAF CT=PCSNXnFACnCMC use Intl RL",
"pattern": "**009.X!",
"callClassification": "OffNet",
"authLevel": "0",
"allowDeviceOverride": false,
"routeOption": "Route this pattern",
"reqClientMatterCode": false,
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyPrefixDigits": "+",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFDP-DBRteSel-PT",
"reqForcedAuthCode": false,
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFIntl-SLRG-RL",
"urgentPriority": true
},
{
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "ZAF CT=PCSNXyFACnCMC use Intl RL",
"pattern": "**109.X!",
"callClassification": "OffNet",
"authLevel": "6",
"allowDeviceOverride": false,
"routeOption": "Route this pattern",
"reqClientMatterCode": false,
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyPrefixDigits": "+",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFDP-DBRteSel-PT",
"reqForcedAuthCode": true,
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFIntl-SLRG-RL",
"urgentPriority": true
},
{
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "ZAF CT=PCSNXnFACyCMC use Intl RL",
"pattern": "**209.X!",
"callClassification": "OffNet",
"authLevel": "0",
"allowDeviceOverride": false,
"routeOption": "Route this pattern",
"reqClientMatterCode": true,
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyPrefixDigits": "+",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFDP-DBRteSel-PT",
"reqForcedAuthCode": false,
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFIntl-SLRG-RL",
"urgentPriority": true
},
{
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "ZAF CT=PCSNXyFACyCMC use Intl RL",
"pattern": "**309.X!",
"callClassification": "OffNet",
"authLevel": "6",
"allowDeviceOverride": false,
"routeOption": "Route this pattern",
"reqClientMatterCode": true,
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyPrefixDigits": "+",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFDP-DBRteSel-PT",
"reqForcedAuthCode": true,
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFIntl-SLRG-RL",
"urgentPriority": true
},
{
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "ZAF CT=SRSNXnFACnCMC use Intl RL",
"pattern": "**010.X!",
"callClassification": "OffNet",
"authLevel": "0",
"allowDeviceOverride": false,
"routeOption": "Route this pattern",
"reqClientMatterCode": false,
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyPrefixDigits": "+",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFDP-DBRteSel-PT",
"reqForcedAuthCode": false,
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFIntl-SLRG-RL",
"urgentPriority": true
},
{
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "ZAF CT=SRSNXyFACnCMC use Intl RL",
"pattern": "**110.X!",
"callClassification": "OffNet",
"authLevel": "6",
"allowDeviceOverride": false,
"routeOption": "Route this pattern",
"reqClientMatterCode": false,
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyPrefixDigits": "+",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFDP-DBRteSel-PT",
"reqForcedAuthCode": true,
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFIntl-SLRG-RL",
"urgentPriority": true
},
{
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "ZAF CT=SRSNXnFACnyMC use Intl RL",
"pattern": "**210.X!",
"callClassification": "OffNet",
"authLevel": "0",
"allowDeviceOverride": false,
"routeOption": "Route this pattern",
"reqClientMatterCode": true,
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyPrefixDigits": "+",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFDP-DBRteSel-PT",
"reqForcedAuthCode": false,
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFIntl-SLRG-RL",
"urgentPriority": true
},
{
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "ZAF CT=SRSNXyFACyCMC use Intl RL",
"pattern": "**310.X!",
"callClassification": "OffNet",
"authLevel": "6",
"allowDeviceOverride": false,
"routeOption": "Route this pattern",
"reqClientMatterCode": true,
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyPrefixDigits": "+",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFDP-DBRteSel-PT",
"reqForcedAuthCode": true,
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFIntl-SLRG-RL",
"urgentPriority": true
},
{
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "ZAFDP Non ZAF Operator Call Type",
"pattern": "**[0-3]11X.!",
"callClassification": "OffNet",
"authLevel": "0",
"allowDeviceOverride": false,
"routeOption": "Block this pattern",
"reqClientMatterCode": false,
"useCallingPartyExternalPhoneNumMask": false,
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFDP-DBRteSel-PT",
"reqForcedAuthCode": false,
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFOper-SLRG-RL",
"urgentPriority": true,
"releaseClause": "Call Rejected"
},
{
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "ZAF CT=Intl1nFACnCMC use Natl RL",
"pattern": "**00127.!",
"callClassification": "OffNet",
"authLevel": "0",
"allowDeviceOverride": false,
"routeOption": "Route this pattern",
"reqClientMatterCode": false,
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyPrefixDigits": "+27",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFDP-DBRteSel-PT",
"reqForcedAuthCode": false,
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFNatl-SLRG-RL",
"urgentPriority": true
},
{
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "ZAF CT=Intl1yFACnCMC use Natl RL",
"pattern": "**10127.!",
"callClassification": "OffNet",
"authLevel": "10",
"allowDeviceOverride": false,
"routeOption": "Route this pattern",
"reqClientMatterCode": false,
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyPrefixDigits": "+27",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFDP-DBRteSel-PT",
"reqForcedAuthCode": true,
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFNatl-SLRG-RL",
"urgentPriority": true
},
{
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "ZAF CT=Intl1nFACyCMC use Natl RL",
"pattern": "**20127.!",
"callClassification": "OffNet",
"authLevel": "0",
"allowDeviceOverride": false,
"routeOption": "Route this pattern",
"reqClientMatterCode": true,
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyPrefixDigits": "+27",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFDP-DBRteSel-PT",
"reqForcedAuthCode": false,
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFNatl-SLRG-RL",
"urgentPriority": true
},
{
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "ZAF CT=Intl1yFACyCMC use Natl RL",
"pattern": "**30127.!",
"callClassification": "OffNet",
"authLevel": "10",
"allowDeviceOverride": false,
"routeOption": "Route this pattern",
"reqClientMatterCode": true,
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyPrefixDigits": "+27",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFDP-DBRteSel-PT",
"reqForcedAuthCode": true,
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFNatl-SLRG-RL",
"urgentPriority": true
},
{
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "ZAF CT=Natl1nFACnCMC use Natl RL",
"pattern": "**00227.!",
"callClassification": "OffNet",
"authLevel": "0",
"allowDeviceOverride": false,
"routeOption": "Route this pattern",
"reqClientMatterCode": false,
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyPrefixDigits": "+27",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFDP-DBRteSel-PT",
"reqForcedAuthCode": false,
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFNatl-SLRG-RL",
"urgentPriority": true
},
{
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "ZAF CT=Natl1yFACnCMC use Natl RL",
"pattern": "**10227.!",
"callClassification": "OffNet",
"authLevel": "6",
"allowDeviceOverride": false,
"routeOption": "Route this pattern",
"reqClientMatterCode": false,
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyPrefixDigits": "+27",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFDP-DBRteSel-PT",
"reqForcedAuthCode": true,
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFNatl-SLRG-RL",
"urgentPriority": true
},
{
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "ZAF CT=Natl1nFACyCMC use Natl RL",
"pattern": "**20227.!",
"callClassification": "OffNet",
"authLevel": "0",
"allowDeviceOverride": false,
"routeOption": "Route this pattern",
"reqClientMatterCode": true,
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyPrefixDigits": "+27",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFDP-DBRteSel-PT",
"reqForcedAuthCode": false,
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFNatl-SLRG-RL",
"urgentPriority": true
},
{
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "ZAF CT=Natl1yFACyCMC use Natl RL",
"pattern": "**30227.!",
"callClassification": "OffNet",
"authLevel": "6",
"allowDeviceOverride": false,
"routeOption": "Route this pattern",
"reqClientMatterCode": true,
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyPrefixDigits": "+27",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFDP-DBRteSel-PT",
"reqForcedAuthCode": true,
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFNatl-SLRG-RL",
"urgentPriority": true
},
{
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "ZAF CT=Mobl1nFACnCMC use Mobl RL",
"pattern": "**00327.!",
"callClassification": "OffNet",
"authLevel": "0",
"allowDeviceOverride": false,
"routeOption": "Route this pattern",
"reqClientMatterCode": false,
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyPrefixDigits": "+27",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFDP-DBRteSel-PT",
"reqForcedAuthCode": false,
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFMobl-SLRG-RL",
"urgentPriority": true
},
{
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "ZAF CT=Mobl1yFACnCMC use Mobl RL",
"pattern": "**10327.!",
"callClassification": "OffNet",
"authLevel": "6",
"allowDeviceOverride": false,
"routeOption": "Route this pattern",
"reqClientMatterCode": false,
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyPrefixDigits": "+27",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFDP-DBRteSel-PT",
"reqForcedAuthCode": true,
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFMobl-SLRG-RL",
"urgentPriority": true
},
{
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "ZAF CT=Mobl1nFACyCMC use Mobl RL",
"pattern": "**20327.!",
"callClassification": "OffNet",
"authLevel": "0",
"allowDeviceOverride": false,
"routeOption": "Route this pattern",
"reqClientMatterCode": true,
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyPrefixDigits": "+27",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFDP-DBRteSel-PT",
"reqForcedAuthCode": false,
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFMobl-SLRG-RL",
"urgentPriority": true
},
{
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "ZAF CT=Mobl1yFACyCMC use Mobl RL",
"pattern": "**30327.!",
"callClassification": "OffNet",
"authLevel": "6",
"allowDeviceOverride": false,
"routeOption": "Route this pattern",
"reqClientMatterCode": true,
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyPrefixDigits": "+27",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFDP-DBRteSel-PT",
"reqForcedAuthCode": true,
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFMobl-SLRG-RL",
"urgentPriority": true
},
{
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "ZAF CT=SVC55nFACnCMC use SVC RL",
"pattern": "**00527.!",
"callClassification": "OffNet",
"authLevel": "0",
"allowDeviceOverride": false,
"routeOption": "Route this pattern",
"reqClientMatterCode": false,
"useCallingPartyExternalPhoneNumMask": false,
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFDP-DBRteSel-PT",
"reqForcedAuthCode": false,
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFServ-SLRG-RL",
"urgentPriority": true
},
{
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "ZAF CT=SVC1yFACnCMC use SVC RL",
"pattern": "**10527.!",
"callClassification": "OffNet",
"authLevel": "6",
"allowDeviceOverride": false,
"routeOption": "Route this pattern",
"reqClientMatterCode": false,
"useCallingPartyExternalPhoneNumMask": false,
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFDP-DBRteSel-PT",
"reqForcedAuthCode": true,
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFServ-SLRG-RL",
"urgentPriority": true
},
{
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "ZAFDP CT=SVC1nFACyCMC use SVC RL",
"pattern": "**20527.!",
"callClassification": "OffNet",
"authLevel": "0",
"allowDeviceOverride": false,
"routeOption": "Block this pattern",
"reqClientMatterCode": true,
"useCallingPartyExternalPhoneNumMask": false,
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFDP-DBRteSel-PT",
"reqForcedAuthCode": false,
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFServ-SLRG-RL",
"urgentPriority": true,
"releaseClause": "Call Rejected"
},
{
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "ZAF CT=SVC1yFACyCMC use SVC RL",
"pattern": "**30527.!",
"callClassification": "OffNet",
"authLevel": "6",
"allowDeviceOverride": false,
"routeOption": "Route this pattern",
"reqClientMatterCode": true,
"useCallingPartyExternalPhoneNumMask": false,
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFDP-DBRteSel-PT",
"reqForcedAuthCode": true,
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFServ-SLRG-RL",
"urgentPriority": true
},
{
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "ZAF CT=Local1nFACnCMC use Local RL",
"pattern": "**00627.!",
"callClassification": "OffNet",
"authLevel": "0",
"allowDeviceOverride": false,
"routeOption": "Route this pattern",
"reqClientMatterCode": false,
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyPrefixDigits": "+27",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFDP-DBRteSel-PT",
"reqForcedAuthCode": false,
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFLocal-SLRG-RL",
"urgentPriority": true
},
{
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "ZAF CT=Local1yFACnCMC use Local RL",
"pattern": "**10627.!",
"callClassification": "OffNet",
"authLevel": "1",
"allowDeviceOverride": false,
"routeOption": "Route this pattern",
"reqClientMatterCode": false,
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyPrefixDigits": "+27",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFDP-DBRteSel-PT",
"reqForcedAuthCode": true,
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFLocal-SLRG-RL",
"urgentPriority": true
},
{
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "ZAF CT=Local1nFACyCMC use Local RL",
"pattern": "**20627.!",
"callClassification": "OffNet",
"authLevel": "0",
"allowDeviceOverride": false,
"routeOption": "Route this pattern",
"reqClientMatterCode": true,
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyPrefixDigits": "+27",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFDP-DBRteSel-PT",
"reqForcedAuthCode": false,
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFLocal-SLRG-RL",
"urgentPriority": true
},
{
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "ZAF CT=Local1yFACyCMC use Local RL",
"pattern": "**30627.!",
"callClassification": "OffNet",
"authLevel": "1",
"allowDeviceOverride": false,
"routeOption": "Route this pattern",
"reqClientMatterCode": true,
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyPrefixDigits": "+27",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFDP-DBRteSel-PT",
"reqForcedAuthCode": true,
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFLocal-SLRG-RL",
"urgentPriority": true
},
{
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "ZAF CT=PRSN1nFACnCMC use PRSN RL",
"pattern": "**00727.!",
"callClassification": "OffNet",
"authLevel": "0",
"allowDeviceOverride": false,
"routeOption": "Route this pattern",
"reqClientMatterCode": false,
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyPrefixDigits": "+27",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFDP-DBRteSel-PT",
"reqForcedAuthCode": false,
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFPRSN-SLRG-RL",
"urgentPriority": true
},
{
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "ZAF CT=PRSN1yFACnCMC use PRSN RL",
"pattern": "**10727.!",
"callClassification": "OffNet",
"authLevel": "9",
"allowDeviceOverride": false,
"routeOption": "Route this pattern",
"reqClientMatterCode": false,
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyPrefixDigits": "+27",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFDP-DBRteSel-PT",
"reqForcedAuthCode": true,
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFPRSN-SLRG-RL",
"urgentPriority": true
},
{
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "ZAF CT=PRSN1nFACyCMC use PRSN RL",
"pattern": "**20727.!",
"callClassification": "OffNet",
"authLevel": "0",
"allowDeviceOverride": false,
"routeOption": "Route this pattern",
"reqClientMatterCode": true,
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyPrefixDigits": "+27",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFDP-DBRteSel-PT",
"reqForcedAuthCode": false,
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFPRSN-SLRG-RL",
"urgentPriority": true
},
{
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "ZAF CT=PRSN1yFACyCMC use PRSN RL",
"pattern": "**30727.!",
"callClassification": "OffNet",
"authLevel": "9",
"allowDeviceOverride": false,
"routeOption": "Route this pattern",
"reqClientMatterCode": true,
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyPrefixDigits": "+27",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFDP-DBRteSel-PT",
"reqForcedAuthCode": true,
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFPRSN-SLRG-RL",
"urgentPriority": true
},
{
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "ZAF CT=FPHN1nFACnCMC use FPHN RL",
"pattern": "**00827.!",
"callClassification": "OffNet",
"authLevel": "0",
"allowDeviceOverride": false,
"routeOption": "Route this pattern",
"reqClientMatterCode": false,
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyPrefixDigits": "+27",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFDP-DBRteSel-PT",
"reqForcedAuthCode": false,
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFFPHN-SLRG-RL",
"urgentPriority": true
},
{
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "ZAF CT=FPHN1yFACnCMC use FPHN RL",
"pattern": "**10827.!",
"callClassification": "OffNet",
"authLevel": "6",
"allowDeviceOverride": false,
"routeOption": "Route this pattern",
"reqClientMatterCode": false,
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyPrefixDigits": "+27",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFDP-DBRteSel-PT",
"reqForcedAuthCode": true,
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFFPHN-SLRG-RL",
"urgentPriority": true
},
{
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "ZAF CT=FPHN1nFACyCMC use FPHN RL",
"pattern": "**20827.!",
"callClassification": "OffNet",
"authLevel": "0",
"allowDeviceOverride": false,
"routeOption": "Route this pattern",
"reqClientMatterCode": true,
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyPrefixDigits": "+27",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFDP-DBRteSel-PT",
"reqForcedAuthCode": false,
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFFPHN-SLRG-RL",
"urgentPriority": true
},
{
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "ZAF CT=FPHN1yFACyCMC use FPHN RL",
"pattern": "**30827.!",
"callClassification": "OffNet",
"authLevel": "6",
"allowDeviceOverride": false,
"routeOption": "Route this pattern",
"reqClientMatterCode": true,
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyPrefixDigits": "+27",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFDP-DBRteSel-PT",
"reqForcedAuthCode": true,
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFFPHN-SLRG-RL",
"urgentPriority": true
},
{
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "ZAF CT=PCSN1nFACnCMC use PCSN RL",
"pattern": "**00927.!",
"callClassification": "OffNet",
"authLevel": "0",
"allowDeviceOverride": false,
"routeOption": "Route this pattern",
"reqClientMatterCode": false,
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyPrefixDigits": "+27",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFDP-DBRteSel-PT",
"reqForcedAuthCode": false,
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFPCSN-SLRG-RL",
"urgentPriority": true
},
{
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "ZAF CT=PCSN1yFACnCMC use PCSN RL",
"pattern": "**10927.!",
"callClassification": "OffNet",
"authLevel": "6",
"allowDeviceOverride": false,
"routeOption": "Route this pattern",
"reqClientMatterCode": false,
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyPrefixDigits": "+27",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFDP-DBRteSel-PT",
"reqForcedAuthCode": true,
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFPCSN-SLRG-RL",
"urgentPriority": true
},
{
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "ZAF CT=PCSN1nFACyCMC use PCSN RL",
"pattern": "**20927.!",
"callClassification": "OffNet",
"authLevel": "0",
"allowDeviceOverride": false,
"routeOption": "Route this pattern",
"reqClientMatterCode": true,
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyPrefixDigits": "+27",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFDP-DBRteSel-PT",
"reqForcedAuthCode": false,
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFPCSN-SLRG-RL",
"urgentPriority": true
},
{
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "ZAF CT=PCSN1yFACyCMC use PCSN RL",
"pattern": "**30927.!",
"callClassification": "OffNet",
"authLevel": "6",
"allowDeviceOverride": false,
"routeOption": "Route this pattern",
"reqClientMatterCode": true,
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyPrefixDigits": "+27",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFDP-DBRteSel-PT",
"reqForcedAuthCode": true,
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFPCSN-SLRG-RL",
"urgentPriority": true
},
{
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "ZAF CT=SRSN1nFACnCMC use SRSN RL",
"pattern": "**01027.!",
"callClassification": "OffNet",
"authLevel": "0",
"allowDeviceOverride": false,
"routeOption": "Route this pattern",
"reqClientMatterCode": false,
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyPrefixDigits": "+27",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFDP-DBRteSel-PT",
"reqForcedAuthCode": false,
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFSRSN-RL",
"urgentPriority": true
},
{
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "ZAF CT=SRSN1yFACnCMC use SRSN RL",
"pattern": "**11027.!",
"callClassification": "OffNet",
"authLevel": "6",
"allowDeviceOverride": false,
"routeOption": "Route this pattern",
"reqClientMatterCode": false,
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyPrefixDigits": "+27",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFDP-DBRteSel-PT",
"reqForcedAuthCode": true,
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFSRSN-SLRG-RL",
"urgentPriority": true
},
{
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "ZAF CT=SRSN1nFACyCMC use SRSN RL",
"pattern": "**21027.!",
"callClassification": "OffNet",
"authLevel": "0",
"allowDeviceOverride": false,
"routeOption": "Route this pattern",
"reqClientMatterCode": true,
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyPrefixDigits": "+27",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFDP-DBRteSel-PT",
"reqForcedAuthCode": false,
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFSRSN-RL",
"urgentPriority": true
},
{
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "ZAF CT=SRSN1yFACyCMC use SRSN RL",
"pattern": "**31027.!",
"callClassification": "OffNet",
"authLevel": "6",
"allowDeviceOverride": false,
"routeOption": "Route this pattern",
"reqClientMatterCode": true,
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyPrefixDigits": "+27",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFDP-DBRteSel-PT",
"reqForcedAuthCode": true,
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFSRSN-SLRG-RL",
"urgentPriority": true
},
{
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "ZAF CT=Oper1nFACnCMC use Oper RL",
"pattern": "**01127.!",
"callClassification": "OffNet",
"authLevel": "0",
"allowDeviceOverride": false,
"routeOption": "Route this pattern",
"reqClientMatterCode": false,
"useCallingPartyExternalPhoneNumMask": false,
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFDP-DBRteSel-PT",
"reqForcedAuthCode": false,
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFOper-SLRG-RL",
"urgentPriority": true
},
{
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "ZAF CT=Oper1yFACnCMC use Oper RL",
"pattern": "**11127.!",
"callClassification": "OffNet",
"authLevel": "6",
"allowDeviceOverride": false,
"routeOption": "Route this pattern",
"reqClientMatterCode": false,
"useCallingPartyExternalPhoneNumMask": false,
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFDP-DBRteSel-PT",
"reqForcedAuthCode": true,
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFOper-SLRG-RL",
"urgentPriority": true,
"releaseClause": "Call Rejected"
},
{
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "ZAF CT=Oper1nFACyCMC use Oper RL",
"pattern": "**21127.!",
"callClassification": "OffNet",
"authLevel": "0",
"allowDeviceOverride": false,
"routeOption": "Route this pattern",
"reqClientMatterCode": true,
"useCallingPartyExternalPhoneNumMask": false,
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFDP-DBRteSel-PT",
"reqForcedAuthCode": false,
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFOper-SLRG-RL",
"urgentPriority": true
},
{
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "ZAF CT=Oper1yFACyCMC use Oper RL",
"pattern": "**31127.!",
"callClassification": "OffNet",
"authLevel": "6",
"allowDeviceOverride": false,
"routeOption": "Route this pattern",
"reqClientMatterCode": true,
"useCallingPartyExternalPhoneNumMask": false,
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFDP-DBRteSel-PT",
"reqForcedAuthCode": true,
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ZAFOper-SLRG-RL",
"urgentPriority": true,
"releaseClause": "Call Rejected"
}
],
"hierarchy_friendly_name": "CS-P (Provider)",
"hierarchy_path": "sys.hcs.CS-P"
},
"meta": {
"model_type": "data/HcsDpDialPlanSchemaDAT",
"summary_attrs": [
{
"name": "name",
"title": "Dial Plan Name"
},
{
"name": "hierarchy_friendly_name",
"title": "Located At",
"allow_filtering": true
}
],
"tagged_versions": [
{
"pkid": "5df0b5d4ce894e001275a1a2",
"version": "0.8.0.2",
"href": "/api/v0/data/HcsDpDialPlanSchemaDAT/5df0b5d3ce894e001275a1a0/?cached=5df0b5d4ce894e001275a1a2"
}
],
"tags": [
"hcsbase",
"HcsDialPlanZaf"
],
"title": "title format",
"business_key": {
"hierarchy": true,
"unique": [
"name"
]
},
"api_version": "21.2",
"cached": true,
"references": {
"device": [
{
"href": "",
"pkid": ""
}
],
"owner": [
{
"pkid": ""
}
],
"parent": [
{
"pkid": "5df0b338ce894e001275535c",
"href": "/api/data/HierarchyNode/5df0b338ce894e001275535c"
}
],
"foreign_key": [],
"self": [
{
"href": "/api/data/HcsDpDialPlanSchemaDAT/5df0b5d3ce894e001275a1a0/",
"pkid": "5df0b5d3ce894e001275a1a0"
}
]
},
"path": [
"6t0ggef2c0deab00hb595101",
"5da4c643ce894e0012225c90",
"5df0b338ce894e001275535c",
"5df0b5d3ce894e001275a1a0"
],
"version_tag": "0.8.0.2",
"schema_version": "2.0",
"actions": [
{
"update": {
"method": "PUT",
"class": "update",
"href": "/api/data/HcsDpDialPlanSchemaDAT/5df0b5d3ce894e001275a1a0/",
"support_async": true,
"title": "Modify"
}
},
{
"remove": {
"method": "DELETE",
"class": "delete",
"href": "/api/data/HcsDpDialPlanSchemaDAT/5df0b5d3ce894e001275a1a0/",
"support_async": true,
"title": "Delete"
}
},
{
"clone": {
"method": "GET",
"class": "clone",
"href": "/api/data/HcsDpDialPlanSchemaDAT/5df0b5d3ce894e001275a1a0/clone/?schema=&schema_rules=true",
"support_async": false,
"title": "Clone"
}
},
{
"export": {
"method": "GET",
"class": "export",
"href": "/api/data/HcsDpDialPlanSchemaDAT/5df0b5d3ce894e001275a1a0/export/",
"support_async": false,
"title": "Export",
"view": "/api/view/ExportData/add/",
"submit": "payload"
}
},
{
"get": {
"method": "GET",
"class": "get",
"href": "/api/data/HcsDpDialPlanSchemaDAT/5df0b5d3ce894e001275a1a0/",
"support_async": false,
"title": "Get"
}
},
{
"help": {
"method": "GET",
"class": "help",
"href": "/api/data/HcsDpDialPlanSchemaDAT/5df0b5d3ce894e001275a1a0/help",
"support_async": false,
"title": "Help"
}
}
],
"summary": "false"
},
"pkid": "5df0b5d3ce894e001275a1a0"
}
]
}
(Show the first instance)
{
"data": {
"cssArray": [
{
"usage": "General",
"isClassOfService": false,
"partitionMembers": [
{
"index": "1",
"partition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-LBRteSel-PT"
}
],
"name": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-LBRteSel-CSS",
"description": "{{macro.HcsDpUniqueCustomerPrefixMCR}} AAM_Group LB RteSel CSS"
},
{
"usage": "General",
"isClassOfService": false,
"partitionMembers": [
{
"index": "1",
"partition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-PreLBRteSel-PT"
}
],
"name": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-PreLBRteSel-CSS",
"description": "{{macro.HcsDpUniqueCustomerPrefixMCR}} AAM_Group PreLB RteSel CSS"
},
{
"usage": "General",
"isClassOfService": false,
"partitionMembers": [
{
"index": "1",
"partition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-DBRteSel-PT"
}
],
"name": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-DBRteSel-CSS",
"description": "{{macro.HcsDpUniqueCustomerPrefixMCR}} AAM_Group DB RteSel CSS"
}
],
"description": "AAM_Group DP for per Customer per Country per Cluster",
"routeListArray": [
{
"callManagerGroup": "{{ macro.DEFAULT_CUCM_GROUP }}",
"runOnEveryNode": true,
"description": "AAM_GroupDP International Route List",
"routeListEnabled": true,
"name": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupIntl-RL"
},
{
"callManagerGroup": "{{ macro.DEFAULT_CUCM_GROUP }}",
"runOnEveryNode": true,
"description": "AAM_GroupDP National Route List",
"routeListEnabled": true,
"name": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupNatl-RL"
},
{
"callManagerGroup": "{{ macro.DEFAULT_CUCM_GROUP }}",
"runOnEveryNode": true,
"description": "AAM_GroupDP Mobile Route List",
"routeListEnabled": true,
"name": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupMobl-RL"
},
{
"callManagerGroup": "{{ macro.DEFAULT_CUCM_GROUP }}",
"runOnEveryNode": true,
"description": "AAM_GroupDP Emergency Route List",
"routeListEnabled": true,
"name": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupEmer-RL"
},
{
"callManagerGroup": "{{ macro.DEFAULT_CUCM_GROUP }}",
"runOnEveryNode": true,
"description": "AAM_GroupDP Service Route List",
"routeListEnabled": true,
"name": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupServ-RL"
},
{
"callManagerGroup": "{{ macro.DEFAULT_CUCM_GROUP }}",
"runOnEveryNode": true,
"description": "AAM_GroupDP Local Route List",
"routeListEnabled": true,
"name": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupLocal-RL"
},
{
"callManagerGroup": "{{ macro.DEFAULT_CUCM_GROUP }}",
"runOnEveryNode": true,
"description": "AAM_GroupDP Premium Rate Service Route List",
"routeListEnabled": true,
"name": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupPRSN-RL"
},
{
"callManagerGroup": "{{ macro.DEFAULT_CUCM_GROUP }}",
"runOnEveryNode": true,
"description": "AAM_GroupDP TollFree Route List",
"routeListEnabled": true,
"name": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupFPHN-RL"
},
{
"callManagerGroup": "{{ macro.DEFAULT_CUCM_GROUP }}",
"runOnEveryNode": true,
"description": "AAM_GroupDP Personal Comm Service Route List",
"routeListEnabled": true,
"name": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupPCSN-RL"
},
{
"callManagerGroup": "{{ macro.DEFAULT_CUCM_GROUP }}",
"runOnEveryNode": true,
"description": "AAM_GroupDP Special Rate Service Route List",
"routeListEnabled": true,
"name": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupSRSN-RL"
},
{
"callManagerGroup": "{{ macro.DEFAULT_CUCM_GROUP }}",
"runOnEveryNode": true,
"description": "AAM_GroupDP Operator Service Route List",
"routeListEnabled": true,
"name": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupOper-RL"
},
{
"name": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupIntl-SLRG-RL",
"routeListEnabled": true,
"runOnEveryNode": true,
"callManagerGroup": "{{ macro.DEFAULT_CUCM_GROUP }}",
"members": [
{
"calledPartyDiscardDigits": "None",
"selectionOrder": "0",
"routeGroupName": "SLRG-Intl",
"useCallingPartyExternalPhoneNumMask": "Default"
}
],
"description": "AAM_GroupDP International Route List"
},
{
"name": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupNatl-SLRG-RL",
"routeListEnabled": true,
"runOnEveryNode": true,
"callManagerGroup": "{{ macro.DEFAULT_CUCM_GROUP }}",
"members": [
{
"calledPartyDiscardDigits": "None",
"selectionOrder": "0",
"routeGroupName": "SLRG-Natl",
"useCallingPartyExternalPhoneNumMask": "Default"
}
],
"description": "AAM_GroupDP National Route List"
},
{
"name": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupMobl-SLRG-RL",
"routeListEnabled": true,
"runOnEveryNode": true,
"callManagerGroup": "{{ macro.DEFAULT_CUCM_GROUP }}",
"members": [
{
"calledPartyDiscardDigits": "None",
"selectionOrder": "0",
"routeGroupName": "SLRG-Mobl",
"useCallingPartyExternalPhoneNumMask": "Default"
}
],
"description": "AAM_GroupDP Mobile Route List"
},
{
"name": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupEmer-SLRG-RL",
"routeListEnabled": true,
"runOnEveryNode": true,
"callManagerGroup": "{{ macro.DEFAULT_CUCM_GROUP }}",
"members": [
{
"calledPartyDiscardDigits": "None",
"selectionOrder": "0",
"routeGroupName": "SLRG-Emer",
"useCallingPartyExternalPhoneNumMask": "Default"
}
],
"description": "AAM_GroupDP Emergency Route List"
},
{
"name": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupServ-SLRG-RL",
"routeListEnabled": true,
"runOnEveryNode": true,
"callManagerGroup": "{{ macro.DEFAULT_CUCM_GROUP }}",
"members": [
{
"calledPartyDiscardDigits": "None",
"selectionOrder": "0",
"routeGroupName": "SLRG-Serv",
"useCallingPartyExternalPhoneNumMask": "Default"
}
],
"description": "AAM_GroupDP Service Route List"
},
{
"name": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupLocal-SLRG-RL",
"routeListEnabled": true,
"runOnEveryNode": true,
"callManagerGroup": "{{ macro.DEFAULT_CUCM_GROUP }}",
"members": [
{
"calledPartyDiscardDigits": "None",
"selectionOrder": "0",
"routeGroupName": "SLRG-Local",
"useCallingPartyExternalPhoneNumMask": "Default"
}
],
"description": "AAM_GroupDP Local Route List"
},
{
"name": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupPRSN-SLRG-RL",
"routeListEnabled": true,
"runOnEveryNode": true,
"callManagerGroup": "{{ macro.DEFAULT_CUCM_GROUP }}",
"members": [
{
"calledPartyDiscardDigits": "None",
"selectionOrder": "0",
"routeGroupName": "SLRG-PRSN",
"useCallingPartyExternalPhoneNumMask": "Default"
}
],
"description": "AAM_GroupDP Premium Rate Service Route List"
},
{
"name": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupFPHN-SLRG-RL",
"routeListEnabled": true,
"runOnEveryNode": true,
"callManagerGroup": "{{ macro.DEFAULT_CUCM_GROUP }}",
"members": [
{
"calledPartyDiscardDigits": "None",
"selectionOrder": "0",
"routeGroupName": "SLRG-FPHN",
"useCallingPartyExternalPhoneNumMask": "Default"
}
],
"description": "AAM_GroupDP TollFree Route List"
},
{
"name": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupPCSN-SLRG-RL",
"routeListEnabled": true,
"runOnEveryNode": true,
"callManagerGroup": "{{ macro.DEFAULT_CUCM_GROUP }}",
"members": [
{
"calledPartyDiscardDigits": "None",
"selectionOrder": "0",
"routeGroupName": "SLRG-PCSN",
"useCallingPartyExternalPhoneNumMask": "Default"
}
],
"description": "AAM_GroupDP Personal Comm Service Route List"
},
{
"name": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupSRSN-SLRG-RL",
"routeListEnabled": true,
"runOnEveryNode": true,
"callManagerGroup": "{{ macro.DEFAULT_CUCM_GROUP }}",
"members": [
{
"calledPartyDiscardDigits": "None",
"selectionOrder": "0",
"routeGroupName": "SLRG-SRSN",
"useCallingPartyExternalPhoneNumMask": "Default"
}
],
"description": "AAM_GroupDP Special Rate Service Route List"
},
{
"name": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupOper-SLRG-RL",
"routeListEnabled": true,
"runOnEveryNode": true,
"callManagerGroup": "{{ macro.DEFAULT_CUCM_GROUP }}",
"members": [
{
"calledPartyDiscardDigits": "None",
"selectionOrder": "0",
"routeGroupName": "SLRG-Oper",
"useCallingPartyExternalPhoneNumMask": "Default"
}
],
"description": "AAM_GroupDP Operator Service Route List"
}
],
"partitionArray": [
{
"timeSchedule": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AllDay-TSchd",
"name": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-Defn-PT",
"description": "{{macro.HcsDpUniqueCustomerPrefixMCR}} AAM_GroupDP Definition PT"
},
{
"timeSchedule": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AllDay-TSchd",
"name": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-LBRtg-PT",
"description": "{{macro.HcsDpUniqueCustomerPrefixMCR}} AAM_Group LB Rtg PT"
},
{
"timeSchedule": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AllDay-TSchd",
"name": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-PreLBRteSel-PT",
"description": "{{macro.HcsDpUniqueCustomerPrefixMCR}} AAM_Group PreLB RteSel PT"
},
{
"timeSchedule": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AllDay-TSchd",
"name": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-LBRteSel-PT",
"description": "{{macro.HcsDpUniqueCustomerPrefixMCR}} AAM_Group LB RteSel PT"
},
{
"timeSchedule": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AllDay-TSchd",
"name": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-DBRtg-PT",
"description": "{{macro.HcsDpUniqueCustomerPrefixMCR}} AAM_Group DB Rtg PT"
},
{
"timeSchedule": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AllDay-TSchd",
"name": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-PreDBRteSel-PT",
"description": "{{macro.HcsDpUniqueCustomerPrefixMCR}} AAM_Group PreDB RteSel PT"
},
{
"timeSchedule": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AllDay-TSchd",
"name": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-DBRteSel-PT",
"description": "{{macro.HcsDpUniqueCustomerPrefixMCR}} AAM_Group DB RteSel PT"
},
{
"timeSchedule": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AllDay-TSchd",
"name": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-CustSCode-PT",
"description": "{{macro.HcsDpUniqueCustomerPrefixMCR}} CustSCode-PT"
},
{
"timeSchedule": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AllDay-TSchd",
"name": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-GDPR-PT",
"description": "{{macro.HcsDpUniqueCustomerPrefixMCR}} GDPR-PT"
},
{
"timeSchedule": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AllDay-TSchd",
"name": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-Defn-PT",
"description": "{{macro.HcsDpUniqueCustomerPrefixMCR}} DP-Defn-PT"
},
{
"timeSchedule": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AllDay-TSchd",
"name": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ExtHrsCLIP-PT",
"description": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ExtHrsCLIP-PT"
},
{
"timeSchedule": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AllDay-TSchd",
"name": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ExtHrsCLIR-PT",
"description": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-ExtHrsCLIR-PT"
}
],
"name": "AAM_Group Customer DP-V01",
"translationPatternArray": [
{
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "AAM_Group LBRtg non LBO : no FAC no CMC",
"cgLinePresBit": "Default",
"useOrigCss": false,
"connNamePresBit": "Default",
"routeOption": "Route this pattern",
"connLinePresBit": "Default",
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyPrefixDigits": "**0",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-LBRtg-PT",
"cgNamePresBit": "Default",
"nextHopByCallingPtyNum": true,
"pattern": "\\+\\+06X0.!",
"noWaitInterdigitTimeoutSubseqHops": true,
"urgentPriority": true,
"releaseClause": "No Error",
"css": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-PreLBRteSel-CSS"
},
{
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "AAM_Group LBRtg non LBO : FAC no CMC",
"cgLinePresBit": "Default",
"useOrigCss": false,
"connNamePresBit": "Default",
"routeOption": "Route this pattern",
"connLinePresBit": "Default",
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyPrefixDigits": "**1",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-LBRtg-PT",
"cgNamePresBit": "Default",
"nextHopByCallingPtyNum": true,
"pattern": "\\+\\+06X1.!",
"noWaitInterdigitTimeoutSubseqHops": true,
"urgentPriority": true,
"releaseClause": "No Error",
"css": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-PreLBRteSel-CSS"
},
{
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "AAM_Group LBRtg non LBO : no FAC CMC",
"cgLinePresBit": "Default",
"useOrigCss": false,
"connNamePresBit": "Default",
"routeOption": "Route this pattern",
"connLinePresBit": "Default",
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyPrefixDigits": "**2",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-LBRtg-PT",
"cgNamePresBit": "Default",
"nextHopByCallingPtyNum": true,
"pattern": "\\+\\+06X2.!",
"noWaitInterdigitTimeoutSubseqHops": true,
"urgentPriority": true,
"releaseClause": "No Error",
"css": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-PreLBRteSel-CSS"
},
{
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "AAM_Group LBRtg non LBO : FAC CMC",
"cgLinePresBit": "Default",
"useOrigCss": false,
"connNamePresBit": "Default",
"routeOption": "Route this pattern",
"connLinePresBit": "Default",
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyPrefixDigits": "**3",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-LBRtg-PT",
"cgNamePresBit": "Default",
"nextHopByCallingPtyNum": true,
"pattern": "\\+\\+06X3.!",
"noWaitInterdigitTimeoutSubseqHops": true,
"urgentPriority": true,
"releaseClause": "No Error",
"css": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-PreLBRteSel-CSS"
},
{
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "AAM_Group DBRtg nonLBO : no FAC no CMC",
"cgLinePresBit": "Default",
"useOrigCss": true,
"connNamePresBit": "Default",
"routeOption": "Route this pattern",
"connLinePresBit": "Default",
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyPrefixDigits": "**0",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-DBRtg-PT",
"cgNamePresBit": "Default",
"nextHopByCallingPtyNum": true,
"pattern": "\\+\\+06X0.!",
"noWaitInterdigitTimeoutSubseqHops": true,
"urgentPriority": true,
"releaseClause": "No Error"
},
{
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "AAM_Group DBRtg nonLBO : FAC no CMC",
"cgLinePresBit": "Default",
"useOrigCss": true,
"connNamePresBit": "Default",
"routeOption": "Route this pattern",
"connLinePresBit": "Default",
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyPrefixDigits": "**1",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-DBRtg-PT",
"cgNamePresBit": "Default",
"nextHopByCallingPtyNum": true,
"pattern": "\\+\\+06X1.!",
"noWaitInterdigitTimeoutSubseqHops": true,
"urgentPriority": true,
"releaseClause": "No Error"
},
{
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "AAM_Group DBRtg nonLBO : CMC no FAC",
"cgLinePresBit": "Default",
"useOrigCss": true,
"connNamePresBit": "Default",
"routeOption": "Route this pattern",
"connLinePresBit": "Default",
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyPrefixDigits": "**2",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-DBRtg-PT",
"cgNamePresBit": "Default",
"nextHopByCallingPtyNum": true,
"pattern": "\\+\\+06X2.!",
"noWaitInterdigitTimeoutSubseqHops": true,
"urgentPriority": true,
"releaseClause": "No Error"
},
{
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "AAM_Group DBRtg nonLBO : CMC FAC",
"cgLinePresBit": "Default",
"useOrigCss": true,
"connNamePresBit": "Default",
"routeOption": "Route this pattern",
"connLinePresBit": "Default",
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyPrefixDigits": "**3",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-DBRtg-PT",
"cgNamePresBit": "Default",
"nextHopByCallingPtyNum": true,
"pattern": "\\+\\+06X3.!",
"noWaitInterdigitTimeoutSubseqHops": true,
"urgentPriority": true,
"releaseClause": "No Error"
},
{
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "AAM_Group DBRtg nonLBO SVC Call - no FAC no CMC",
"cgLinePresBit": "Default",
"useOrigCss": true,
"connNamePresBit": "Default",
"routeOption": "Route this pattern",
"connLinePresBit": "Default",
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyPrefixDigits": "**00527",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-DBRtg-PT",
"cgNamePresBit": "Default",
"nextHopByCallingPtyNum": true,
"pattern": "\\+\\+06X005.!",
"noWaitInterdigitTimeoutSubseqHops": true,
"urgentPriority": true,
"releaseClause": "No Error"
},
{
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "AAM_Group DBRtg nonLBO SVC Call - FAC no CMC",
"cgLinePresBit": "Default",
"useOrigCss": true,
"connNamePresBit": "Default",
"routeOption": "Route this pattern",
"connLinePresBit": "Default",
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyPrefixDigits": "**10527",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-DBRtg-PT",
"cgNamePresBit": "Default",
"nextHopByCallingPtyNum": true,
"pattern": "\\+\\+06X105.!",
"noWaitInterdigitTimeoutSubseqHops": true,
"urgentPriority": true,
"releaseClause": "No Error"
},
{
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "AAM_Group DBRtg nonLBO SVC Call - CMC no FAC",
"cgLinePresBit": "Default",
"useOrigCss": true,
"connNamePresBit": "Default",
"routeOption": "Route this pattern",
"connLinePresBit": "Default",
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyPrefixDigits": "**20527",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-DBRtg-PT",
"cgNamePresBit": "Default",
"nextHopByCallingPtyNum": true,
"pattern": "\\+\\+06X205.!",
"noWaitInterdigitTimeoutSubseqHops": true,
"urgentPriority": true,
"releaseClause": "No Error"
},
{
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "AAM_Group DBRtg nonLBO SVC Call - CMC FAC",
"cgLinePresBit": "Default",
"useOrigCss": true,
"connNamePresBit": "Default",
"routeOption": "Route this pattern",
"connLinePresBit": "Default",
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyPrefixDigits": "**30527",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-DBRtg-PT",
"cgNamePresBit": "Default",
"nextHopByCallingPtyNum": true,
"pattern": "\\+\\+06X305.!",
"noWaitInterdigitTimeoutSubseqHops": true,
"urgentPriority": true,
"releaseClause": "No Error"
},
{
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "AAM_Group DBRtg non LBO Oper Call - no FAC no CMC",
"cgLinePresBit": "Default",
"useOrigCss": true,
"connNamePresBit": "Default",
"routeOption": "Route this pattern",
"connLinePresBit": "Default",
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyPrefixDigits": "**01127",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-DBRtg-PT",
"cgNamePresBit": "Default",
"nextHopByCallingPtyNum": true,
"pattern": "\\+\\+06X011.!",
"noWaitInterdigitTimeoutSubseqHops": true,
"urgentPriority": true,
"releaseClause": "No Error"
},
{
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "AAM_Group DBRtg non LBO Oper Call - FAC no CMC",
"cgLinePresBit": "Default",
"useOrigCss": true,
"connNamePresBit": "Default",
"routeOption": "Route this pattern",
"connLinePresBit": "Default",
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyPrefixDigits": "**11127",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-DBRtg-PT",
"cgNamePresBit": "Default",
"nextHopByCallingPtyNum": true,
"pattern": "\\+\\+06X111.!",
"noWaitInterdigitTimeoutSubseqHops": true,
"urgentPriority": true,
"releaseClause": "No Error"
},
{
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "Cntr DBRtg non LBO Oper Call - CMC no FAC",
"cgLinePresBit": "Default",
"useOrigCss": true,
"connNamePresBit": "Default",
"routeOption": "Route this pattern",
"connLinePresBit": "Default",
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyPrefixDigits": "**21127",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-DBRtg-PT",
"cgNamePresBit": "Default",
"nextHopByCallingPtyNum": true,
"pattern": "\\+\\+06X211.!",
"noWaitInterdigitTimeoutSubseqHops": true,
"urgentPriority": true,
"releaseClause": "No Error"
},
{
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "AAM_Group DBRtg non LBO Oper Call - CMC no FAC",
"cgLinePresBit": "Default",
"useOrigCss": true,
"connNamePresBit": "Default",
"routeOption": "Route this pattern",
"connLinePresBit": "Default",
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyPrefixDigits": "**31127",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-DBRtg-PT",
"cgNamePresBit": "Default",
"nextHopByCallingPtyNum": true,
"pattern": "\\+\\+06X311.!",
"noWaitInterdigitTimeoutSubseqHops": true,
"urgentPriority": true,
"releaseClause": "No Error"
},
{
"calledPartyDiscardDigits": "None",
"provideOutsideDialTone": false,
"description": "AAM_Group - FE Security for LBRteSel",
"cgLinePresBit": "Default",
"connNamePresBit": "Default",
"cgNamePresBit": "Default",
"routeOption": "Route this pattern",
"connLinePresBit": "Default",
"useCallingPartyExternalPhoneNumMask": false,
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-PreLBRteSel-PT",
"pattern": "\\+*\\+*!",
"nextHopByCallingPtyNum": false,
"useOrigCss": false,
"noWaitInterdigitTimeoutSubseqHops": true,
"urgentPriority": true,
"releaseClause": "No Error",
"css": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-LBRteSel-CSS"
},
{
"calledPartyDiscardDigits": "None",
"provideOutsideDialTone": false,
"description": "AAM_Group - FE Security for DBRteSel",
"cgLinePresBit": "Default",
"connNamePresBit": "Default",
"cgNamePresBit": "Default",
"routeOption": "Route this pattern",
"connLinePresBit": "Default",
"useCallingPartyExternalPhoneNumMask": false,
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-PreDBRteSel-PT",
"pattern": "\\+*\\+*!",
"nextHopByCallingPtyNum": false,
"useOrigCss": false,
"noWaitInterdigitTimeoutSubseqHops": true,
"urgentPriority": true,
"releaseClause": "No Error",
"css": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-DBRteSel-CSS"
},
{
"calledPartyDiscardDigits": "None",
"provideOutsideDialTone": false,
"description": "AAM_Group - FE Security for LBRteSel",
"cgLinePresBit": "Default",
"connNamePresBit": "Default",
"cgNamePresBit": "Default",
"routeOption": "Route this pattern",
"connLinePresBit": "Default",
"useCallingPartyExternalPhoneNumMask": false,
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-PreLBRteSel-PT",
"pattern": "\\+*\\+*\\+!",
"nextHopByCallingPtyNum": false,
"useOrigCss": false,
"noWaitInterdigitTimeoutSubseqHops": true,
"urgentPriority": true,
"releaseClause": "No Error",
"css": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-LBRteSel-CSS"
},
{
"calledPartyDiscardDigits": "None",
"provideOutsideDialTone": false,
"description": "AAM_Group - FE Security for DBRteSel",
"cgLinePresBit": "Default",
"connNamePresBit": "Default",
"cgNamePresBit": "Default",
"routeOption": "Route this pattern",
"connLinePresBit": "Default",
"useCallingPartyExternalPhoneNumMask": false,
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-PreDBRteSel-PT",
"pattern": "\\+*\\+*\\+!",
"nextHopByCallingPtyNum": false,
"useOrigCss": false,
"noWaitInterdigitTimeoutSubseqHops": true,
"urgentPriority": true,
"releaseClause": "No Error",
"css": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-DBRteSel-CSS"
},
{
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "Intl Dialing",
"cgLinePresBit": "Default",
"useOrigCss": true,
"connNamePresBit": "Default",
"routeOption": "Route this pattern",
"connLinePresBit": "Default",
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyPrefixDigits": "++01001",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-Defn-PT",
"cgNamePresBit": "Default",
"nextHopByCallingPtyNum": false,
"pattern": "{{macro.HcsDpPstnBreakout}}00.[^0]!",
"noWaitInterdigitTimeoutSubseqHops": true,
"urgentPriority": false,
"releaseClause": "No Error"
},
{
"calledPartyDiscardDigits": "PreDot Trailing-#",
"provideOutsideDialTone": false,
"description": "Intl Dialing",
"cgLinePresBit": "Default",
"useOrigCss": true,
"connNamePresBit": "Default",
"routeOption": "Route this pattern",
"connLinePresBit": "Default",
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyPrefixDigits": "++01001",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-Defn-PT",
"cgNamePresBit": "Default",
"nextHopByCallingPtyNum": false,
"pattern": "{{macro.HcsDpPstnBreakout}}00.[^0]!#",
"noWaitInterdigitTimeoutSubseqHops": true,
"urgentPriority": false,
"releaseClause": "No Error"
},
{
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "Intl Dialing",
"cgLinePresBit": "Default",
"useOrigCss": true,
"connNamePresBit": "Default",
"routeOption": "Route this pattern",
"connLinePresBit": "Default",
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyPrefixDigits": "{{macro.HcsDpPstnBreakout}}0",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-Defn-PT",
"cgNamePresBit": "Default",
"nextHopByCallingPtyNum": false,
"pattern": "{{macro.HcsDpPstnBreakout}}0027.[^0]!",
"noWaitInterdigitTimeoutSubseqHops": true,
"urgentPriority": false,
"releaseClause": "No Error"
},
{
"calledPartyDiscardDigits": "PreDot Trailing-#",
"provideOutsideDialTone": false,
"description": "Intl Dialing",
"cgLinePresBit": "Default",
"useOrigCss": true,
"connNamePresBit": "Default",
"routeOption": "Route this pattern",
"connLinePresBit": "Default",
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyPrefixDigits": "{{macro.HcsDpPstnBreakout}}0",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-Defn-PT",
"cgNamePresBit": "Default",
"nextHopByCallingPtyNum": false,
"pattern": "{{macro.HcsDpPstnBreakout}}0027.[^0]!#",
"noWaitInterdigitTimeoutSubseqHops": true,
"urgentPriority": false,
"releaseClause": "No Error"
},
{
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "Intl dialing without #",
"cgLinePresBit": "Default",
"useOrigCss": true,
"connNamePresBit": "Default",
"routeOption": "Route this pattern",
"connLinePresBit": "Default",
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyPrefixDigits": "++01001",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-Defn-PT",
"cgNamePresBit": "Default",
"nextHopByCallingPtyNum": false,
"pattern": "\\+.[^02]!",
"noWaitInterdigitTimeoutSubseqHops": true,
"urgentPriority": false,
"releaseClause": "No Error"
},
{
"calledPartyDiscardDigits": "PreDot Trailing-#",
"provideOutsideDialTone": false,
"description": "Intl dialing with #",
"cgLinePresBit": "Default",
"useOrigCss": true,
"connNamePresBit": "Default",
"routeOption": "Route this pattern",
"connLinePresBit": "Default",
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyPrefixDigits": "++01001",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-Defn-PT",
"cgNamePresBit": "Default",
"nextHopByCallingPtyNum": false,
"pattern": "\\+.[^02]!#",
"noWaitInterdigitTimeoutSubseqHops": true,
"urgentPriority": false,
"releaseClause": "No Error"
},
{
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "Intl dialing without #",
"cgLinePresBit": "Default",
"useOrigCss": true,
"connNamePresBit": "Default",
"routeOption": "Route this pattern",
"connLinePresBit": "Default",
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyPrefixDigits": "++01001",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-Defn-PT",
"cgNamePresBit": "Default",
"nextHopByCallingPtyNum": false,
"pattern": "\\+.2[^7]!",
"noWaitInterdigitTimeoutSubseqHops": true,
"urgentPriority": false,
"releaseClause": "No Error"
},
{
"calledPartyDiscardDigits": "PreDot Trailing-#",
"provideOutsideDialTone": false,
"description": "Intl dialing with #",
"cgLinePresBit": "Default",
"useOrigCss": true,
"connNamePresBit": "Default",
"routeOption": "Route this pattern",
"connLinePresBit": "Default",
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyPrefixDigits": "++01001",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-Defn-PT",
"cgNamePresBit": "Default",
"nextHopByCallingPtyNum": false,
"pattern": "\\+.2[^7]!#",
"noWaitInterdigitTimeoutSubseqHops": true,
"urgentPriority": false,
"releaseClause": "No Error"
},
{
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "National Dialing",
"cgLinePresBit": "Default",
"useOrigCss": true,
"connNamePresBit": "Default",
"routeOption": "Route this pattern",
"connLinePresBit": "Default",
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyPrefixDigits": "++0100227",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-Defn-PT",
"cgNamePresBit": "Default",
"nextHopByCallingPtyNum": false,
"pattern": "{{macro.HcsDpPstnBreakout}}0.[1-5]XXXXXXXX",
"noWaitInterdigitTimeoutSubseqHops": true,
"urgentPriority": false,
"releaseClause": "No Error"
},
{
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "Inbound, VoIP and Pagers",
"cgLinePresBit": "Default",
"useOrigCss": true,
"connNamePresBit": "Default",
"routeOption": "Route this pattern",
"connLinePresBit": "Default",
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyPrefixDigits": "++0100227",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-Defn-PT",
"cgNamePresBit": "Default",
"nextHopByCallingPtyNum": false,
"pattern": "{{macro.HcsDpPstnBreakout}}0.8[6-8]XXXXXXX",
"noWaitInterdigitTimeoutSubseqHops": true,
"urgentPriority": false,
"releaseClause": "No Error"
},
{
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "National Plus Dialing",
"cgLinePresBit": "Default",
"useOrigCss": true,
"connNamePresBit": "Default",
"routeOption": "Route this pattern",
"connLinePresBit": "Default",
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyPrefixDigits": "++0100227",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-Defn-PT",
"cgNamePresBit": "Default",
"nextHopByCallingPtyNum": false,
"pattern": "\\+27.[1-5]XXXXXXXX",
"noWaitInterdigitTimeoutSubseqHops": true,
"urgentPriority": false,
"releaseClause": "No Error"
},
{
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "Inbound, VoIP and Pagers",
"cgLinePresBit": "Default",
"useOrigCss": true,
"connNamePresBit": "Default",
"routeOption": "Route this pattern",
"connLinePresBit": "Default",
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyPrefixDigits": "++0100227",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-Defn-PT",
"cgNamePresBit": "Default",
"nextHopByCallingPtyNum": false,
"pattern": "\\+27.8[6-8]XXXXXXX",
"noWaitInterdigitTimeoutSubseqHops": true,
"urgentPriority": false,
"releaseClause": "No Error"
},
{
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "Mobile Numbers",
"cgLinePresBit": "Default",
"useOrigCss": true,
"connNamePresBit": "Default",
"routeOption": "Route this pattern",
"connLinePresBit": "Default",
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyPrefixDigits": "++0100327",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-Defn-PT",
"cgNamePresBit": "Default",
"nextHopByCallingPtyNum": false,
"pattern": "{{macro.HcsDpPstnBreakout}}0.6[0-5]XXXXXXX",
"noWaitInterdigitTimeoutSubseqHops": true,
"urgentPriority": false,
"releaseClause": "No Error"
},
{
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "Mobile Numbers",
"cgLinePresBit": "Default",
"useOrigCss": true,
"connNamePresBit": "Default",
"routeOption": "Route this pattern",
"connLinePresBit": "Default",
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyPrefixDigits": "++0100327",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-Defn-PT",
"cgNamePresBit": "Default",
"nextHopByCallingPtyNum": false,
"pattern": "{{macro.HcsDpPstnBreakout}}0.7[^5]XXXXXXX",
"noWaitInterdigitTimeoutSubseqHops": true,
"urgentPriority": false,
"releaseClause": "No Error"
},
{
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "Mobile Numbers",
"cgLinePresBit": "Default",
"useOrigCss": true,
"connNamePresBit": "Default",
"routeOption": "Route this pattern",
"connLinePresBit": "Default",
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyPrefixDigits": "++0100327",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-Defn-PT",
"cgNamePresBit": "Default",
"nextHopByCallingPtyNum": false,
"pattern": "{{macro.HcsDpPstnBreakout}}0.8[1-4]XXXXXXX",
"noWaitInterdigitTimeoutSubseqHops": true,
"urgentPriority": false,
"releaseClause": "No Error"
},
{
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "14D M2M Mobile Numbers",
"cgLinePresBit": "Default",
"useOrigCss": true,
"connNamePresBit": "Default",
"routeOption": "Route this pattern",
"connLinePresBit": "Default",
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyPrefixDigits": "++0100327",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-Defn-PT",
"cgNamePresBit": "Default",
"nextHopByCallingPtyNum": false,
"pattern": "{{macro.HcsDpPstnBreakout}}0.9[6-8]XXXXXXXXXXX",
"noWaitInterdigitTimeoutSubseqHops": true,
"urgentPriority": false,
"releaseClause": "No Error"
},
{
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "Mobile Plus Dialing",
"cgLinePresBit": "Default",
"useOrigCss": true,
"connNamePresBit": "Default",
"routeOption": "Route this pattern",
"connLinePresBit": "Default",
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyPrefixDigits": "++0100327",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-Defn-PT",
"cgNamePresBit": "Default",
"nextHopByCallingPtyNum": false,
"pattern": "\\+27.6[0-5]XXXXXXX",
"noWaitInterdigitTimeoutSubseqHops": true,
"urgentPriority": false,
"releaseClause": "No Error"
},
{
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "Mobile Plus Dialing",
"cgLinePresBit": "Default",
"useOrigCss": true,
"connNamePresBit": "Default",
"routeOption": "Route this pattern",
"connLinePresBit": "Default",
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyPrefixDigits": "++0100327",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-Defn-PT",
"cgNamePresBit": "Default",
"nextHopByCallingPtyNum": false,
"pattern": "\\+27.7[^5]XXXXXXX",
"noWaitInterdigitTimeoutSubseqHops": true,
"urgentPriority": false,
"releaseClause": "No Error"
},
{
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "Mobile Plus Dialing",
"cgLinePresBit": "Default",
"useOrigCss": true,
"connNamePresBit": "Default",
"routeOption": "Route this pattern",
"connLinePresBit": "Default",
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyPrefixDigits": "++0100327",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-Defn-PT",
"cgNamePresBit": "Default",
"nextHopByCallingPtyNum": false,
"pattern": "\\+27.8[1-4]XXXXXXX",
"noWaitInterdigitTimeoutSubseqHops": true,
"urgentPriority": false,
"releaseClause": "No Error"
},
{
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "Mobile Plus Dialing",
"cgLinePresBit": "Default",
"useOrigCss": true,
"connNamePresBit": "Default",
"routeOption": "Route this pattern",
"connLinePresBit": "Default",
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyPrefixDigits": "++0100327",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-Defn-PT",
"cgNamePresBit": "Default",
"nextHopByCallingPtyNum": false,
"pattern": "\\+27.9[6-8]XXXXXXXXXXX",
"noWaitInterdigitTimeoutSubseqHops": true,
"urgentPriority": false,
"releaseClause": "No Error"
},
{
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "Service Numbers",
"cgLinePresBit": "Default",
"useOrigCss": true,
"connNamePresBit": "Default",
"routeOption": "Route this pattern",
"connLinePresBit": "Default",
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyPrefixDigits": "++01005",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-Defn-PT",
"cgNamePresBit": "Default",
"nextHopByCallingPtyNum": false,
"pattern": "{{macro.HcsDpPstnBreakout}}.10XX",
"noWaitInterdigitTimeoutSubseqHops": true,
"urgentPriority": false,
"releaseClause": "No Error"
},
{
"calledPartyDiscardDigits": "PreDot Trailing-#",
"provideOutsideDialTone": false,
"description": "Service Numbers",
"cgLinePresBit": "Default",
"useOrigCss": true,
"connNamePresBit": "Default",
"routeOption": "Route this pattern",
"connLinePresBit": "Default",
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyPrefixDigits": "++01005",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-Defn-PT",
"cgNamePresBit": "Default",
"nextHopByCallingPtyNum": false,
"pattern": "{{macro.HcsDpPstnBreakout}}.10XX#",
"noWaitInterdigitTimeoutSubseqHops": true,
"urgentPriority": false,
"releaseClause": "No Error"
},
{
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "Service Numbers",
"cgLinePresBit": "Default",
"useOrigCss": true,
"connNamePresBit": "Default",
"routeOption": "Route this pattern",
"connLinePresBit": "Default",
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyPrefixDigits": "++01005",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-Defn-PT",
"cgNamePresBit": "Default",
"nextHopByCallingPtyNum": false,
"pattern": "{{macro.HcsDpPstnBreakout}}.10XXX",
"noWaitInterdigitTimeoutSubseqHops": true,
"urgentPriority": false,
"releaseClause": "No Error"
},
{
"calledPartyDiscardDigits": "PreDot Trailing-#",
"provideOutsideDialTone": false,
"description": "Service Numbers",
"cgLinePresBit": "Default",
"useOrigCss": true,
"connNamePresBit": "Default",
"routeOption": "Route this pattern",
"connLinePresBit": "Default",
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyPrefixDigits": "++01005",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-Defn-PT",
"cgNamePresBit": "Default",
"nextHopByCallingPtyNum": false,
"pattern": "{{macro.HcsDpPstnBreakout}}.10XXX#",
"noWaitInterdigitTimeoutSubseqHops": true,
"urgentPriority": false,
"releaseClause": "No Error"
},
{
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "Government services - Provincial offices",
"cgLinePresBit": "Default",
"useOrigCss": true,
"connNamePresBit": "Default",
"routeOption": "Route this pattern",
"connLinePresBit": "Default",
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyPrefixDigits": "++01005",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-Defn-PT",
"cgNamePresBit": "Default",
"nextHopByCallingPtyNum": false,
"pattern": "{{macro.HcsDpPstnBreakout}}.17737",
"noWaitInterdigitTimeoutSubseqHops": true,
"urgentPriority": false,
"releaseClause": "No Error"
},
{
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "Service Numbers",
"cgLinePresBit": "Default",
"useOrigCss": true,
"connNamePresBit": "Default",
"routeOption": "Route this pattern",
"connLinePresBit": "Default",
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyPrefixDigits": "++01005",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-Defn-PT",
"cgNamePresBit": "Default",
"nextHopByCallingPtyNum": false,
"pattern": "{{macro.HcsDpPstnBreakout}}.1[0-4]!",
"noWaitInterdigitTimeoutSubseqHops": true,
"urgentPriority": false,
"releaseClause": "No Error"
},
{
"calledPartyDiscardDigits": "PreDot Trailing-#",
"provideOutsideDialTone": false,
"description": "Service Numbers",
"cgLinePresBit": "Default",
"useOrigCss": true,
"connNamePresBit": "Default",
"routeOption": "Route this pattern",
"connLinePresBit": "Default",
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyPrefixDigits": "++01005",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-Defn-PT",
"cgNamePresBit": "Default",
"nextHopByCallingPtyNum": false,
"pattern": "{{macro.HcsDpPstnBreakout}}.1[0-4]!#",
"noWaitInterdigitTimeoutSubseqHops": true,
"urgentPriority": false,
"releaseClause": "No Error"
},
{
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "Service Numbers",
"cgLinePresBit": "Default",
"useOrigCss": true,
"connNamePresBit": "Default",
"routeOption": "Route this pattern",
"connLinePresBit": "Default",
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyPrefixDigits": "++01005",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-Defn-PT",
"cgNamePresBit": "Default",
"nextHopByCallingPtyNum": false,
"pattern": "{{macro.HcsDpPstnBreakout}}.8[1-4]!",
"noWaitInterdigitTimeoutSubseqHops": true,
"urgentPriority": false,
"releaseClause": "No Error"
},
{
"calledPartyDiscardDigits": "PreDot Trailing-#",
"provideOutsideDialTone": false,
"description": "Service Numbers",
"cgLinePresBit": "Default",
"useOrigCss": true,
"connNamePresBit": "Default",
"routeOption": "Route this pattern",
"connLinePresBit": "Default",
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyPrefixDigits": "++01005",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-Defn-PT",
"cgNamePresBit": "Default",
"nextHopByCallingPtyNum": false,
"pattern": "{{macro.HcsDpPstnBreakout}}.8[1-4]!#",
"noWaitInterdigitTimeoutSubseqHops": true,
"urgentPriority": false,
"releaseClause": "No Error"
},
{
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "Service Numbers",
"cgLinePresBit": "Default",
"useOrigCss": true,
"connNamePresBit": "Default",
"routeOption": "Route this pattern",
"connLinePresBit": "Default",
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyPrefixDigits": "++01005",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-Defn-PT",
"cgNamePresBit": "Default",
"nextHopByCallingPtyNum": false,
"pattern": "{{macro.HcsDpPstnBreakout}}.[34]XXXX!",
"noWaitInterdigitTimeoutSubseqHops": true,
"urgentPriority": false,
"releaseClause": "No Error"
},
{
"calledPartyDiscardDigits": "PreDot Trailing-#",
"provideOutsideDialTone": false,
"description": "Service Numbers",
"cgLinePresBit": "Default",
"useOrigCss": true,
"connNamePresBit": "Default",
"routeOption": "Route this pattern",
"connLinePresBit": "Default",
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyPrefixDigits": "++01005",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-Defn-PT",
"cgNamePresBit": "Default",
"nextHopByCallingPtyNum": false,
"pattern": "{{macro.HcsDpPstnBreakout}}.[34]XXXX!#",
"noWaitInterdigitTimeoutSubseqHops": true,
"urgentPriority": false,
"releaseClause": "No Error"
},
{
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "Premium Rate",
"cgLinePresBit": "Default",
"useOrigCss": true,
"connNamePresBit": "Default",
"routeOption": "Route this pattern",
"connLinePresBit": "Default",
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyPrefixDigits": "++0100727",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-Defn-PT",
"cgNamePresBit": "Default",
"nextHopByCallingPtyNum": false,
"pattern": "{{macro.HcsDpPstnBreakout}}0.9[0-5]XXXXXXX",
"noWaitInterdigitTimeoutSubseqHops": true,
"urgentPriority": false,
"releaseClause": "No Error"
},
{
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "Premium Rate",
"cgLinePresBit": "Default",
"useOrigCss": true,
"connNamePresBit": "Default",
"routeOption": "Route this pattern",
"connLinePresBit": "Default",
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyPrefixDigits": "++0100727",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-Defn-PT",
"cgNamePresBit": "Default",
"nextHopByCallingPtyNum": false,
"pattern": "{{macro.HcsDpPstnBreakout}}0.86[2-9]XXXXXX",
"noWaitInterdigitTimeoutSubseqHops": true,
"urgentPriority": false,
"releaseClause": "No Error"
},
{
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "Premium Rate",
"cgLinePresBit": "Default",
"useOrigCss": true,
"connNamePresBit": "Default",
"routeOption": "Route this pattern",
"connLinePresBit": "Default",
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyPrefixDigits": "++0100727",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-Defn-PT",
"cgNamePresBit": "Default",
"nextHopByCallingPtyNum": false,
"pattern": "{{macro.HcsDpPstnBreakout}}0.89XXXXXXX",
"noWaitInterdigitTimeoutSubseqHops": true,
"urgentPriority": false,
"releaseClause": "No Error"
},
{
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "Premium Rate",
"cgLinePresBit": "Default",
"useOrigCss": true,
"connNamePresBit": "Default",
"routeOption": "Route this pattern",
"connLinePresBit": "Default",
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyPrefixDigits": "++0100727",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-Defn-PT",
"cgNamePresBit": "Default",
"nextHopByCallingPtyNum": false,
"pattern": "\\+27.9[0-5]XXXXXXX",
"noWaitInterdigitTimeoutSubseqHops": true,
"urgentPriority": false,
"releaseClause": "No Error"
},
{
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "Premium Rate",
"cgLinePresBit": "Default",
"useOrigCss": true,
"connNamePresBit": "Default",
"routeOption": "Route this pattern",
"connLinePresBit": "Default",
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyPrefixDigits": "++0100727",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-Defn-PT",
"cgNamePresBit": "Default",
"nextHopByCallingPtyNum": false,
"pattern": "\\+27.86[2-9]XXXXXX",
"noWaitInterdigitTimeoutSubseqHops": true,
"urgentPriority": false,
"releaseClause": "No Error"
},
{
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "Premium Rate",
"cgLinePresBit": "Default",
"useOrigCss": true,
"connNamePresBit": "Default",
"routeOption": "Route this pattern",
"connLinePresBit": "Default",
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyPrefixDigits": "++0100727",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-Defn-PT",
"cgNamePresBit": "Default",
"nextHopByCallingPtyNum": false,
"pattern": "\\+27.89XXXXXXX",
"noWaitInterdigitTimeoutSubseqHops": true,
"urgentPriority": false,
"releaseClause": "No Error"
},
{
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "Freephone Pattern",
"cgLinePresBit": "Default",
"useOrigCss": true,
"connNamePresBit": "Default",
"routeOption": "Route this pattern",
"connLinePresBit": "Default",
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyPrefixDigits": "++0100827",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-Defn-PT",
"cgNamePresBit": "Default",
"nextHopByCallingPtyNum": false,
"pattern": "{{macro.HcsDpPstnBreakout}}0.80XXXXXXX",
"noWaitInterdigitTimeoutSubseqHops": true,
"urgentPriority": false,
"releaseClause": "No Error"
},
{
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "Freephone Pattern",
"cgLinePresBit": "Default",
"useOrigCss": true,
"connNamePresBit": "Default",
"routeOption": "Route this pattern",
"connLinePresBit": "Default",
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyPrefixDigits": "++0100827",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-Defn-PT",
"cgNamePresBit": "Default",
"nextHopByCallingPtyNum": false,
"pattern": "\\+27.80XXXXXXX",
"noWaitInterdigitTimeoutSubseqHops": true,
"urgentPriority": false,
"releaseClause": "No Error"
}
],
"routePatternArray": [
{
"provideOutsideDialTone": false,
"reqClientMatterCode": false,
"reqForcedAuthCode": false,
"releaseClause": "No Error",
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"pattern": "**001.!",
"patternPrecedence": "Default",
"routeOption": "Route this pattern",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-LBRteSel-PT",
"authLevel": "0",
"description": "AAM_Group Intl Call Type - no FAC no CMC",
"calledPartyPrefixDigits": "+",
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupIntl-RL",
"cgLinePresBit": "Default",
"connNamePresBit": "Default",
"callClassification": "OffNet",
"allowDeviceOverride": false,
"useCallingPartyExternalPhoneNumMask": false,
"cgNamePresBit": "Default",
"connLinePresBit": "Default",
"urgentPriority": true
},
{
"provideOutsideDialTone": false,
"reqClientMatterCode": false,
"reqForcedAuthCode": true,
"releaseClause": "No Error",
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"pattern": "**101.!",
"patternPrecedence": "Default",
"routeOption": "Route this pattern",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-LBRteSel-PT",
"authLevel": "10",
"description": "AAM_Group Intl Call Type - FAC no CMC",
"calledPartyPrefixDigits": "+",
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupIntl-RL",
"cgLinePresBit": "Default",
"connNamePresBit": "Default",
"callClassification": "OffNet",
"allowDeviceOverride": false,
"useCallingPartyExternalPhoneNumMask": true,
"cgNamePresBit": "Default",
"connLinePresBit": "Default",
"urgentPriority": true
},
{
"provideOutsideDialTone": false,
"reqClientMatterCode": true,
"reqForcedAuthCode": false,
"releaseClause": "No Error",
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"pattern": "**201.!",
"patternPrecedence": "Default",
"routeOption": "Route this pattern",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-LBRteSel-PT",
"authLevel": "0",
"description": "AAM_Group Intl Call Type - CMC no FAC",
"calledPartyPrefixDigits": "+",
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupIntl-RL",
"cgLinePresBit": "Default",
"connNamePresBit": "Default",
"callClassification": "OffNet",
"allowDeviceOverride": false,
"useCallingPartyExternalPhoneNumMask": false,
"cgNamePresBit": "Default",
"connLinePresBit": "Default",
"urgentPriority": true
},
{
"provideOutsideDialTone": false,
"reqClientMatterCode": true,
"reqForcedAuthCode": true,
"releaseClause": "No Error",
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"pattern": "**301.!",
"patternPrecedence": "Default",
"routeOption": "Route this pattern",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-LBRteSel-PT",
"authLevel": "10",
"description": "AAM_Group Intl Call Type - CMC FAC",
"calledPartyPrefixDigits": "+",
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupIntl-RL",
"cgLinePresBit": "Default",
"connNamePresBit": "Default",
"callClassification": "OffNet",
"allowDeviceOverride": false,
"useCallingPartyExternalPhoneNumMask": false,
"cgNamePresBit": "Default",
"connLinePresBit": "Default",
"urgentPriority": true
},
{
"provideOutsideDialTone": false,
"reqClientMatterCode": false,
"reqForcedAuthCode": false,
"releaseClause": "No Error",
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"pattern": "**00227.!",
"patternPrecedence": "Default",
"routeOption": "Route this pattern",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-LBRteSel-PT",
"authLevel": "0",
"description": "AAM_Group Natl Call Type - no FAC no CMC",
"calledPartyPrefixDigits": "+27",
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupNatl-RL",
"cgLinePresBit": "Default",
"connNamePresBit": "Default",
"callClassification": "OffNet",
"allowDeviceOverride": false,
"useCallingPartyExternalPhoneNumMask": false,
"cgNamePresBit": "Default",
"connLinePresBit": "Default",
"urgentPriority": true
},
{
"provideOutsideDialTone": false,
"reqClientMatterCode": false,
"reqForcedAuthCode": true,
"releaseClause": "No Error",
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"pattern": "**10227.!",
"patternPrecedence": "Default",
"routeOption": "Route this pattern",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-LBRteSel-PT",
"authLevel": "6",
"description": "AAM_Group Natl Call Type - FAC no CMC",
"calledPartyPrefixDigits": "+27",
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupNatl-RL",
"cgLinePresBit": "Default",
"connNamePresBit": "Default",
"callClassification": "OffNet",
"allowDeviceOverride": false,
"useCallingPartyExternalPhoneNumMask": false,
"cgNamePresBit": "Default",
"connLinePresBit": "Default",
"urgentPriority": true
},
{
"provideOutsideDialTone": false,
"reqClientMatterCode": true,
"reqForcedAuthCode": false,
"releaseClause": "No Error",
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"pattern": "**20227.!",
"patternPrecedence": "Default",
"routeOption": "Route this pattern",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-LBRteSel-PT",
"authLevel": "0",
"description": "AAM_Group Natl Call Type - CMC no FAC",
"calledPartyPrefixDigits": "+27",
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupNatl-RL",
"cgLinePresBit": "Default",
"connNamePresBit": "Default",
"callClassification": "OffNet",
"allowDeviceOverride": false,
"useCallingPartyExternalPhoneNumMask": false,
"cgNamePresBit": "Default",
"connLinePresBit": "Default",
"urgentPriority": true
},
{
"provideOutsideDialTone": false,
"reqClientMatterCode": true,
"reqForcedAuthCode": true,
"releaseClause": "No Error",
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"pattern": "**30227.!",
"patternPrecedence": "Default",
"routeOption": "Route this pattern",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-LBRteSel-PT",
"authLevel": "6",
"description": "AAM_Group RP for Natl Call Type - FAC CMC",
"calledPartyPrefixDigits": "+27",
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupNatl-RL",
"cgLinePresBit": "Default",
"connNamePresBit": "Default",
"callClassification": "OffNet",
"allowDeviceOverride": false,
"useCallingPartyExternalPhoneNumMask": false,
"cgNamePresBit": "Default",
"connLinePresBit": "Default",
"urgentPriority": true
},
{
"provideOutsideDialTone": false,
"reqClientMatterCode": false,
"reqForcedAuthCode": false,
"releaseClause": "No Error",
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"pattern": "**00327.!",
"patternPrecedence": "Default",
"routeOption": "Route this pattern",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-LBRteSel-PT",
"authLevel": "0",
"description": "AAM_Group Mobl Call Type - no FAC no CMC",
"calledPartyPrefixDigits": "+27",
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupMobl-RL",
"cgLinePresBit": "Default",
"connNamePresBit": "Default",
"callClassification": "OffNet",
"allowDeviceOverride": false,
"useCallingPartyExternalPhoneNumMask": false,
"cgNamePresBit": "Default",
"connLinePresBit": "Default",
"urgentPriority": true
},
{
"provideOutsideDialTone": false,
"reqClientMatterCode": false,
"reqForcedAuthCode": true,
"releaseClause": "No Error",
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"pattern": "**10327.!",
"patternPrecedence": "Default",
"routeOption": "Route this pattern",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-LBRteSel-PT",
"authLevel": "8",
"description": "AAM_Group Mobl Call Type - FAC no CMC",
"calledPartyPrefixDigits": "+27",
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupMobl-RL",
"cgLinePresBit": "Default",
"connNamePresBit": "Default",
"callClassification": "OffNet",
"allowDeviceOverride": false,
"useCallingPartyExternalPhoneNumMask": false,
"cgNamePresBit": "Default",
"connLinePresBit": "Default",
"urgentPriority": true
},
{
"provideOutsideDialTone": false,
"reqClientMatterCode": true,
"reqForcedAuthCode": false,
"releaseClause": "No Error",
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"pattern": "**20327.!",
"patternPrecedence": "Default",
"routeOption": "Route this pattern",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-LBRteSel-PT",
"authLevel": "0",
"description": "AAM_Group Mobl Call Type - CMC no FAC",
"calledPartyPrefixDigits": "+27",
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupMobl-RL",
"cgLinePresBit": "Default",
"connNamePresBit": "Default",
"callClassification": "OffNet",
"allowDeviceOverride": false,
"useCallingPartyExternalPhoneNumMask": false,
"cgNamePresBit": "Default",
"connLinePresBit": "Default",
"urgentPriority": true
},
{
"provideOutsideDialTone": false,
"reqClientMatterCode": true,
"reqForcedAuthCode": true,
"releaseClause": "No Error",
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"pattern": "**30327.!",
"patternPrecedence": "Default",
"routeOption": "Route this pattern",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-LBRteSel-PT",
"authLevel": "8",
"description": "AAM_Group Mobl Call Type - FAC CMC",
"calledPartyPrefixDigits": "+27",
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupMobl-RL",
"cgLinePresBit": "Default",
"connNamePresBit": "Default",
"callClassification": "OffNet",
"allowDeviceOverride": false,
"useCallingPartyExternalPhoneNumMask": false,
"cgNamePresBit": "Default",
"connLinePresBit": "Default",
"urgentPriority": true
},
{
"urgentPriority": true,
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "AAM_Group SVC Call Type - no FAC no CMC",
"cgLinePresBit": "Default",
"pattern": "**005.!",
"callClassification": "OffNet",
"patternPrecedence": "Default",
"allowDeviceOverride": false,
"authLevel": "0",
"cgNamePresBit": "Default",
"reqClientMatterCode": false,
"reqForcedAuthCode": false,
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-LBRteSel-PT",
"connNamePresBit": "Default",
"connLinePresBit": "Default",
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupServ-RL",
"routeOption": "Route this pattern",
"releaseClause": "No Error",
"useCallingPartyExternalPhoneNumMask": false
},
{
"urgentPriority": true,
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "AAM_Group RP for Service Call Type - FAC no CMC",
"cgLinePresBit": "Default",
"pattern": "**105.!",
"callClassification": "OffNet",
"patternPrecedence": "Default",
"allowDeviceOverride": false,
"authLevel": "6",
"cgNamePresBit": "Default",
"reqClientMatterCode": false,
"reqForcedAuthCode": true,
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-LBRteSel-PT",
"connNamePresBit": "Default",
"connLinePresBit": "Default",
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupServ-RL",
"routeOption": "Route this pattern",
"releaseClause": "No Error",
"useCallingPartyExternalPhoneNumMask": false
},
{
"urgentPriority": true,
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "AAM_Group SVC Call Type - CMC no FAC",
"cgLinePresBit": "Default",
"pattern": "**205.!",
"callClassification": "OffNet",
"patternPrecedence": "Default",
"allowDeviceOverride": false,
"authLevel": "0",
"cgNamePresBit": "Default",
"reqClientMatterCode": true,
"reqForcedAuthCode": false,
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-LBRteSel-PT",
"connNamePresBit": "Default",
"connLinePresBit": "Default",
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupServ-RL",
"routeOption": "Route this pattern",
"releaseClause": "No Error",
"useCallingPartyExternalPhoneNumMask": false
},
{
"urgentPriority": true,
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "AAM_Group SVC Call Type - CMC FAC",
"cgLinePresBit": "Default",
"pattern": "**305.!",
"callClassification": "OffNet",
"patternPrecedence": "Default",
"allowDeviceOverride": false,
"authLevel": "6",
"cgNamePresBit": "Default",
"reqClientMatterCode": true,
"reqForcedAuthCode": true,
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-LBRteSel-PT",
"connNamePresBit": "Default",
"connLinePresBit": "Default",
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupServ-RL",
"routeOption": "Route this pattern",
"releaseClause": "No Error",
"useCallingPartyExternalPhoneNumMask": false
},
{
"provideOutsideDialTone": false,
"reqClientMatterCode": false,
"reqForcedAuthCode": false,
"releaseClause": "No Error",
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"pattern": "**00627.!",
"patternPrecedence": "Default",
"routeOption": "Route this pattern",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-LBRteSel-PT",
"authLevel": "0",
"description": "AAM_Group Local Call Type - no FAC no CMC",
"calledPartyPrefixDigits": "+27",
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupLocal-RL",
"cgLinePresBit": "Default",
"connNamePresBit": "Default",
"callClassification": "OffNet",
"allowDeviceOverride": false,
"useCallingPartyExternalPhoneNumMask": false,
"cgNamePresBit": "Default",
"connLinePresBit": "Default",
"urgentPriority": true
},
{
"provideOutsideDialTone": false,
"reqClientMatterCode": false,
"reqForcedAuthCode": true,
"releaseClause": "No Error",
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"pattern": "**10627.!",
"patternPrecedence": "Default",
"routeOption": "Route this pattern",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-LBRteSel-PT",
"authLevel": "1",
"description": "AAM_Group Local Call Type - FAC no CMC",
"calledPartyPrefixDigits": "+27",
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupLocal-RL",
"cgLinePresBit": "Default",
"connNamePresBit": "Default",
"callClassification": "OffNet",
"allowDeviceOverride": false,
"useCallingPartyExternalPhoneNumMask": false,
"cgNamePresBit": "Default",
"connLinePresBit": "Default",
"urgentPriority": true
},
{
"provideOutsideDialTone": false,
"reqClientMatterCode": true,
"reqForcedAuthCode": false,
"releaseClause": "No Error",
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"pattern": "**20627.!",
"patternPrecedence": "Default",
"routeOption": "Route this pattern",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-LBRteSel-PT",
"authLevel": "0",
"description": "AAM_Group Local Call Type - CMC no FAC",
"calledPartyPrefixDigits": "+27",
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupLocal-RL",
"cgLinePresBit": "Default",
"connNamePresBit": "Default",
"callClassification": "OffNet",
"allowDeviceOverride": false,
"useCallingPartyExternalPhoneNumMask": false,
"cgNamePresBit": "Default",
"connLinePresBit": "Default",
"urgentPriority": true
},
{
"provideOutsideDialTone": false,
"reqClientMatterCode": true,
"reqForcedAuthCode": true,
"releaseClause": "No Error",
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"pattern": "**30627.!",
"patternPrecedence": "Default",
"routeOption": "Route this pattern",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-LBRteSel-PT",
"authLevel": "1",
"description": "AAM_Group Local Call Type - CMC FAC",
"calledPartyPrefixDigits": "+27",
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupLocal-RL",
"cgLinePresBit": "Default",
"connNamePresBit": "Default",
"callClassification": "OffNet",
"allowDeviceOverride": false,
"useCallingPartyExternalPhoneNumMask": false,
"cgNamePresBit": "Default",
"connLinePresBit": "Default",
"urgentPriority": true
},
{
"provideOutsideDialTone": false,
"reqClientMatterCode": false,
"reqForcedAuthCode": false,
"releaseClause": "No Error",
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"pattern": "**00727.!",
"patternPrecedence": "Default",
"routeOption": "Route this pattern",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-LBRteSel-PT",
"authLevel": "0",
"description": "AAM_Group PRS Call Type - no FAC no CMC",
"calledPartyPrefixDigits": "+27",
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupPRSN-RL",
"cgLinePresBit": "Default",
"connNamePresBit": "Default",
"callClassification": "OffNet",
"allowDeviceOverride": false,
"useCallingPartyExternalPhoneNumMask": false,
"cgNamePresBit": "Default",
"connLinePresBit": "Default",
"urgentPriority": true
},
{
"provideOutsideDialTone": false,
"reqClientMatterCode": false,
"reqForcedAuthCode": true,
"releaseClause": "No Error",
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"pattern": "**10727.!",
"patternPrecedence": "Default",
"routeOption": "Route this pattern",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-LBRteSel-PT",
"authLevel": "10",
"description": "AAM_Group PRS Call Type - FAC no CMC",
"calledPartyPrefixDigits": "+27",
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupPRSN-RL",
"cgLinePresBit": "Default",
"connNamePresBit": "Default",
"callClassification": "OffNet",
"allowDeviceOverride": false,
"useCallingPartyExternalPhoneNumMask": false,
"cgNamePresBit": "Default",
"connLinePresBit": "Default",
"urgentPriority": true
},
{
"provideOutsideDialTone": false,
"reqClientMatterCode": true,
"reqForcedAuthCode": false,
"releaseClause": "No Error",
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"pattern": "**20727.!",
"patternPrecedence": "Default",
"routeOption": "Route this pattern",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-LBRteSel-PT",
"authLevel": "0",
"description": "AAM_Group PRS Call Type - CMC no FAC",
"calledPartyPrefixDigits": "+27",
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupPRSN-RL",
"cgLinePresBit": "Default",
"connNamePresBit": "Default",
"callClassification": "OffNet",
"allowDeviceOverride": false,
"useCallingPartyExternalPhoneNumMask": false,
"cgNamePresBit": "Default",
"connLinePresBit": "Default",
"urgentPriority": true
},
{
"provideOutsideDialTone": false,
"reqClientMatterCode": true,
"reqForcedAuthCode": true,
"releaseClause": "No Error",
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"pattern": "**30727.!",
"patternPrecedence": "Default",
"routeOption": "Route this pattern",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-LBRteSel-PT",
"authLevel": "10",
"description": "AAM_Group PRS Call Type - CMC FAC",
"calledPartyPrefixDigits": "+27",
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupPRSN-RL",
"cgLinePresBit": "Default",
"connNamePresBit": "Default",
"callClassification": "OffNet",
"allowDeviceOverride": false,
"useCallingPartyExternalPhoneNumMask": false,
"cgNamePresBit": "Default",
"connLinePresBit": "Default",
"urgentPriority": true
},
{
"provideOutsideDialTone": false,
"reqClientMatterCode": false,
"reqForcedAuthCode": false,
"releaseClause": "No Error",
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"pattern": "**00827.!",
"patternPrecedence": "Default",
"routeOption": "Route this pattern",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-LBRteSel-PT",
"authLevel": "0",
"description": "AAM_Group FPH Call Type - no FAC no CMC",
"calledPartyPrefixDigits": "+27",
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupFPHN-RL",
"cgLinePresBit": "Default",
"connNamePresBit": "Default",
"callClassification": "OffNet",
"allowDeviceOverride": false,
"useCallingPartyExternalPhoneNumMask": false,
"cgNamePresBit": "Default",
"connLinePresBit": "Default",
"urgentPriority": true
},
{
"provideOutsideDialTone": false,
"reqClientMatterCode": false,
"reqForcedAuthCode": true,
"releaseClause": "No Error",
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"pattern": "**10827.!",
"patternPrecedence": "Default",
"routeOption": "Route this pattern",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-LBRteSel-PT",
"authLevel": "6",
"description": "AAM_Group FPH Call Type - FAC no CMC",
"calledPartyPrefixDigits": "+27",
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupFPHN-RL",
"cgLinePresBit": "Default",
"connNamePresBit": "Default",
"callClassification": "OffNet",
"allowDeviceOverride": false,
"useCallingPartyExternalPhoneNumMask": false,
"cgNamePresBit": "Default",
"connLinePresBit": "Default",
"urgentPriority": true
},
{
"provideOutsideDialTone": false,
"reqClientMatterCode": true,
"reqForcedAuthCode": false,
"releaseClause": "No Error",
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"pattern": "**20827.!",
"patternPrecedence": "Default",
"routeOption": "Route this pattern",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-LBRteSel-PT",
"authLevel": "0",
"description": "AAM_Group FPH Call Type - CMC no FAC",
"calledPartyPrefixDigits": "+27",
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupFPHN-RL",
"cgLinePresBit": "Default",
"connNamePresBit": "Default",
"callClassification": "OffNet",
"allowDeviceOverride": false,
"useCallingPartyExternalPhoneNumMask": false,
"cgNamePresBit": "Default",
"connLinePresBit": "Default",
"urgentPriority": true
},
{
"provideOutsideDialTone": false,
"reqClientMatterCode": true,
"reqForcedAuthCode": true,
"releaseClause": "No Error",
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"pattern": "**30827.!",
"patternPrecedence": "Default",
"routeOption": "Route this pattern",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-LBRteSel-PT",
"authLevel": "6",
"description": "AAM_Group FPH Call Type - CMC FAC",
"calledPartyPrefixDigits": "+27",
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupFPHN-RL",
"cgLinePresBit": "Default",
"connNamePresBit": "Default",
"callClassification": "OffNet",
"allowDeviceOverride": false,
"useCallingPartyExternalPhoneNumMask": false,
"cgNamePresBit": "Default",
"connLinePresBit": "Default",
"urgentPriority": true
},
{
"provideOutsideDialTone": false,
"reqClientMatterCode": false,
"reqForcedAuthCode": false,
"releaseClause": "No Error",
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"pattern": "**00927.!",
"patternPrecedence": "Default",
"routeOption": "Route this pattern",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-LBRteSel-PT",
"authLevel": "0",
"description": "AAM_Group PCS Call Type - no FAC no CMC",
"calledPartyPrefixDigits": "+27",
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupPCSN-RL",
"cgLinePresBit": "Default",
"connNamePresBit": "Default",
"callClassification": "OffNet",
"allowDeviceOverride": false,
"useCallingPartyExternalPhoneNumMask": false,
"cgNamePresBit": "Default",
"connLinePresBit": "Default",
"urgentPriority": true
},
{
"provideOutsideDialTone": false,
"reqClientMatterCode": false,
"reqForcedAuthCode": true,
"releaseClause": "No Error",
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"pattern": "**10927.!",
"patternPrecedence": "Default",
"routeOption": "Route this pattern",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-LBRteSel-PT",
"authLevel": "6",
"description": "AAM_Group PCS Call Type - FAC no CMC",
"calledPartyPrefixDigits": "+27",
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupPCSN-RL",
"cgLinePresBit": "Default",
"connNamePresBit": "Default",
"callClassification": "OffNet",
"allowDeviceOverride": false,
"useCallingPartyExternalPhoneNumMask": false,
"cgNamePresBit": "Default",
"connLinePresBit": "Default",
"urgentPriority": true
},
{
"provideOutsideDialTone": false,
"reqClientMatterCode": true,
"reqForcedAuthCode": false,
"releaseClause": "No Error",
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"pattern": "**20927.!",
"patternPrecedence": "Default",
"routeOption": "Route this pattern",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-LBRteSel-PT",
"authLevel": "0",
"description": "AAM_Group PCS Call Type - CMC no FAC",
"calledPartyPrefixDigits": "+27",
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupPCSN-RL",
"cgLinePresBit": "Default",
"connNamePresBit": "Default",
"callClassification": "OffNet",
"allowDeviceOverride": false,
"useCallingPartyExternalPhoneNumMask": false,
"cgNamePresBit": "Default",
"connLinePresBit": "Default",
"urgentPriority": true
},
{
"provideOutsideDialTone": false,
"reqClientMatterCode": true,
"reqForcedAuthCode": true,
"releaseClause": "No Error",
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"pattern": "**30927.!",
"patternPrecedence": "Default",
"routeOption": "Route this pattern",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-LBRteSel-PT",
"authLevel": "6",
"description": "AAM_Group PCS Call Type -CMC FAC",
"calledPartyPrefixDigits": "+27",
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupPCSN-RL",
"cgLinePresBit": "Default",
"connNamePresBit": "Default",
"callClassification": "OffNet",
"allowDeviceOverride": false,
"useCallingPartyExternalPhoneNumMask": false,
"cgNamePresBit": "Default",
"connLinePresBit": "Default",
"urgentPriority": true
},
{
"provideOutsideDialTone": false,
"reqClientMatterCode": false,
"reqForcedAuthCode": false,
"releaseClause": "No Error",
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"pattern": "**01027.!",
"patternPrecedence": "Default",
"routeOption": "Route this pattern",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-LBRteSel-PT",
"authLevel": "0",
"description": "AAM_Group SRS Call Type - no FAC no CMC",
"calledPartyPrefixDigits": "+27",
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupSRSN-RL",
"cgLinePresBit": "Default",
"connNamePresBit": "Default",
"callClassification": "OffNet",
"allowDeviceOverride": false,
"useCallingPartyExternalPhoneNumMask": false,
"cgNamePresBit": "Default",
"connLinePresBit": "Default",
"urgentPriority": true
},
{
"provideOutsideDialTone": false,
"reqClientMatterCode": false,
"reqForcedAuthCode": true,
"releaseClause": "No Error",
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"pattern": "**11027.!",
"patternPrecedence": "Default",
"routeOption": "Route this pattern",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-LBRteSel-PT",
"authLevel": "6",
"description": "AAM_Group SRS Call Type - FAC no CMC",
"calledPartyPrefixDigits": "+27",
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupSRSN-RL",
"cgLinePresBit": "Default",
"connNamePresBit": "Default",
"callClassification": "OffNet",
"allowDeviceOverride": false,
"useCallingPartyExternalPhoneNumMask": false,
"cgNamePresBit": "Default",
"connLinePresBit": "Default",
"urgentPriority": true
},
{
"provideOutsideDialTone": false,
"reqClientMatterCode": true,
"reqForcedAuthCode": false,
"releaseClause": "No Error",
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"pattern": "**21027.!",
"patternPrecedence": "Default",
"routeOption": "Route this pattern",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-LBRteSel-PT",
"authLevel": "0",
"description": "AAM_Group SRS Call Type - CMC no FAC",
"calledPartyPrefixDigits": "+27",
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupSRSN-RL",
"cgLinePresBit": "Default",
"connNamePresBit": "Default",
"callClassification": "OffNet",
"allowDeviceOverride": false,
"useCallingPartyExternalPhoneNumMask": false,
"cgNamePresBit": "Default",
"connLinePresBit": "Default",
"urgentPriority": true
},
{
"provideOutsideDialTone": false,
"reqClientMatterCode": true,
"reqForcedAuthCode": true,
"releaseClause": "No Error",
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"pattern": "**31027.!",
"patternPrecedence": "Default",
"routeOption": "Route this pattern",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-LBRteSel-PT",
"authLevel": "6",
"description": "AAM_Group SRS Call Type - cmc FAC",
"calledPartyPrefixDigits": "+27",
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupSRSN-RL",
"cgLinePresBit": "Default",
"connNamePresBit": "Default",
"callClassification": "OffNet",
"allowDeviceOverride": false,
"useCallingPartyExternalPhoneNumMask": false,
"cgNamePresBit": "Default",
"connLinePresBit": "Default",
"urgentPriority": true
},
{
"urgentPriority": true,
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "AAM_Group OPR Call Type - no FAC no CMC",
"cgLinePresBit": "Default",
"pattern": "**011.!",
"callClassification": "OffNet",
"patternPrecedence": "Default",
"allowDeviceOverride": false,
"authLevel": "0",
"cgNamePresBit": "Default",
"reqClientMatterCode": false,
"reqForcedAuthCode": false,
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-LBRteSel-PT",
"connNamePresBit": "Default",
"connLinePresBit": "Default",
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupOper-RL",
"routeOption": "Route this pattern",
"releaseClause": "No Error",
"useCallingPartyExternalPhoneNumMask": false
},
{
"urgentPriority": true,
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "AAM_Group OPR Call Type - FAC no CMC",
"cgLinePresBit": "Default",
"pattern": "**111.!",
"callClassification": "OffNet",
"patternPrecedence": "Default",
"allowDeviceOverride": false,
"authLevel": "6",
"cgNamePresBit": "Default",
"reqClientMatterCode": false,
"reqForcedAuthCode": true,
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-LBRteSel-PT",
"connNamePresBit": "Default",
"connLinePresBit": "Default",
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupOper-RL",
"routeOption": "Route this pattern",
"releaseClause": "No Error",
"useCallingPartyExternalPhoneNumMask": false
},
{
"urgentPriority": true,
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "AAM_Group OPR Call Type - CMC no FAC",
"cgLinePresBit": "Default",
"pattern": "**211.!",
"callClassification": "OffNet",
"patternPrecedence": "Default",
"allowDeviceOverride": false,
"authLevel": "0",
"cgNamePresBit": "Default",
"reqClientMatterCode": true,
"reqForcedAuthCode": false,
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-LBRteSel-PT",
"connNamePresBit": "Default",
"connLinePresBit": "Default",
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupOper-RL",
"routeOption": "Route this pattern",
"releaseClause": "No Error",
"useCallingPartyExternalPhoneNumMask": false
},
{
"urgentPriority": true,
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "AAM_Group OPR Call Type - CMC FAC",
"cgLinePresBit": "Default",
"pattern": "**311.!",
"callClassification": "OffNet",
"patternPrecedence": "Default",
"allowDeviceOverride": false,
"authLevel": "6",
"cgNamePresBit": "Default",
"reqClientMatterCode": true,
"reqForcedAuthCode": true,
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-LBRteSel-PT",
"connNamePresBit": "Default",
"connLinePresBit": "Default",
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupOper-RL",
"routeOption": "Route this pattern",
"releaseClause": "No Error",
"useCallingPartyExternalPhoneNumMask": false
},
{
"provideOutsideDialTone": false,
"reqClientMatterCode": false,
"reqForcedAuthCode": false,
"releaseClause": "No Error",
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"pattern": "**001.X!",
"patternPrecedence": "Default",
"routeOption": "Route this pattern",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-DBRteSel-PT",
"authLevel": "0",
"description": "AAM_Group CT=IntlXnFACnCMC use Intl RL",
"calledPartyPrefixDigits": "+",
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupIntl-SLRG-RL",
"cgLinePresBit": "Default",
"connNamePresBit": "Default",
"callClassification": "OffNet",
"allowDeviceOverride": false,
"useCallingPartyExternalPhoneNumMask": false,
"cgNamePresBit": "Default",
"connLinePresBit": "Default",
"urgentPriority": true
},
{
"provideOutsideDialTone": false,
"reqClientMatterCode": false,
"reqForcedAuthCode": true,
"releaseClause": "No Error",
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"pattern": "**101.X!",
"patternPrecedence": "Default",
"routeOption": "Route this pattern",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-DBRteSel-PT",
"authLevel": "10",
"description": "AAM_Group CT=IntlXyFACnCMC use Intl RL",
"calledPartyPrefixDigits": "+",
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupIntl-SLRG-RL",
"cgLinePresBit": "Default",
"connNamePresBit": "Default",
"callClassification": "OffNet",
"allowDeviceOverride": false,
"useCallingPartyExternalPhoneNumMask": false,
"cgNamePresBit": "Default",
"connLinePresBit": "Default",
"urgentPriority": true
},
{
"provideOutsideDialTone": false,
"reqClientMatterCode": true,
"reqForcedAuthCode": false,
"releaseClause": "No Error",
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"pattern": "**201.X!",
"patternPrecedence": "Default",
"routeOption": "Route this pattern",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-DBRteSel-PT",
"authLevel": "0",
"description": "AAM_Group CT=IntlXnFACyCMC use Intl RL",
"calledPartyPrefixDigits": "+",
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupIntl-SLRG-RL",
"cgLinePresBit": "Default",
"connNamePresBit": "Default",
"callClassification": "OffNet",
"allowDeviceOverride": false,
"useCallingPartyExternalPhoneNumMask": false,
"cgNamePresBit": "Default",
"connLinePresBit": "Default",
"urgentPriority": true
},
{
"provideOutsideDialTone": false,
"reqClientMatterCode": true,
"reqForcedAuthCode": true,
"releaseClause": "No Error",
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"pattern": "**301.X!",
"patternPrecedence": "Default",
"routeOption": "Route this pattern",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-DBRteSel-PT",
"authLevel": "10",
"description": "AAM_Group CT=IntlXyFACyCMC use Intl RL",
"calledPartyPrefixDigits": "+",
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupIntl-SLRG-RL",
"cgLinePresBit": "Default",
"connNamePresBit": "Default",
"callClassification": "OffNet",
"allowDeviceOverride": false,
"useCallingPartyExternalPhoneNumMask": false,
"cgNamePresBit": "Default",
"connLinePresBit": "Default",
"urgentPriority": true
},
{
"provideOutsideDialTone": false,
"reqClientMatterCode": false,
"reqForcedAuthCode": false,
"releaseClause": "No Error",
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"pattern": "**002.X!",
"patternPrecedence": "Default",
"routeOption": "Route this pattern",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-DBRteSel-PT",
"authLevel": "0",
"description": "AAM_Group CT=NatlXnFACnCMC use Intl RL",
"calledPartyPrefixDigits": "+",
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupIntl-SLRG-RL",
"cgLinePresBit": "Default",
"connNamePresBit": "Default",
"callClassification": "OffNet",
"allowDeviceOverride": false,
"useCallingPartyExternalPhoneNumMask": false,
"cgNamePresBit": "Default",
"connLinePresBit": "Default",
"urgentPriority": true
},
{
"provideOutsideDialTone": false,
"reqClientMatterCode": false,
"reqForcedAuthCode": true,
"releaseClause": "No Error",
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"pattern": "**102.X!",
"patternPrecedence": "Default",
"routeOption": "Route this pattern",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-DBRteSel-PT",
"authLevel": "6",
"description": "AAM_Group CT=NatlXyFACnCMC use Intl RL",
"calledPartyPrefixDigits": "+",
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupIntl-SLRG-RL",
"cgLinePresBit": "Default",
"connNamePresBit": "Default",
"callClassification": "OffNet",
"allowDeviceOverride": false,
"useCallingPartyExternalPhoneNumMask": false,
"cgNamePresBit": "Default",
"connLinePresBit": "Default",
"urgentPriority": true
},
{
"provideOutsideDialTone": false,
"reqClientMatterCode": true,
"reqForcedAuthCode": false,
"releaseClause": "No Error",
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"pattern": "**202.X!",
"patternPrecedence": "Default",
"routeOption": "Route this pattern",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-DBRteSel-PT",
"authLevel": "0",
"description": "AAM_Group CT=NatlXnFACyCMC use Intl RL",
"calledPartyPrefixDigits": "+",
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupIntl-SLRG-RL",
"cgLinePresBit": "Default",
"connNamePresBit": "Default",
"callClassification": "OffNet",
"allowDeviceOverride": false,
"useCallingPartyExternalPhoneNumMask": false,
"cgNamePresBit": "Default",
"connLinePresBit": "Default",
"urgentPriority": true
},
{
"provideOutsideDialTone": false,
"reqClientMatterCode": true,
"reqForcedAuthCode": true,
"releaseClause": "No Error",
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"pattern": "**302.X!",
"patternPrecedence": "Default",
"routeOption": "Route this pattern",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-DBRteSel-PT",
"authLevel": "6",
"description": "AAM_Group CT=NatlXyFACyCMC use Intl RL",
"calledPartyPrefixDigits": "+",
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupIntl-SLRG-RL",
"cgLinePresBit": "Default",
"connNamePresBit": "Default",
"callClassification": "OffNet",
"allowDeviceOverride": false,
"useCallingPartyExternalPhoneNumMask": false,
"cgNamePresBit": "Default",
"connLinePresBit": "Default",
"urgentPriority": true
},
{
"provideOutsideDialTone": false,
"reqClientMatterCode": false,
"reqForcedAuthCode": false,
"releaseClause": "No Error",
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"pattern": "**003.X!",
"patternPrecedence": "Default",
"routeOption": "Route this pattern",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-DBRteSel-PT",
"authLevel": "0",
"description": "AAM_Group CT=MoblXnFACnCMC use Intl RL",
"calledPartyPrefixDigits": "+",
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupIntl-SLRG-RL",
"cgLinePresBit": "Default",
"connNamePresBit": "Default",
"callClassification": "OffNet",
"allowDeviceOverride": false,
"useCallingPartyExternalPhoneNumMask": false,
"cgNamePresBit": "Default",
"connLinePresBit": "Default",
"urgentPriority": true
},
{
"provideOutsideDialTone": false,
"reqClientMatterCode": false,
"reqForcedAuthCode": true,
"releaseClause": "No Error",
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"pattern": "**103.X!",
"patternPrecedence": "Default",
"routeOption": "Route this pattern",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-DBRteSel-PT",
"authLevel": "6",
"description": "AAM_Group CT=Mobl1yFACnCMC use Intl RL",
"calledPartyPrefixDigits": "+",
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupIntl-SLRG-RL",
"cgLinePresBit": "Default",
"connNamePresBit": "Default",
"callClassification": "OffNet",
"allowDeviceOverride": false,
"useCallingPartyExternalPhoneNumMask": false,
"cgNamePresBit": "Default",
"connLinePresBit": "Default",
"urgentPriority": true
},
{
"provideOutsideDialTone": false,
"reqClientMatterCode": true,
"reqForcedAuthCode": false,
"releaseClause": "No Error",
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"pattern": "**203.X!",
"patternPrecedence": "Default",
"routeOption": "Route this pattern",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-DBRteSel-PT",
"authLevel": "0",
"description": "AAM_Group CT=MoblXnFACyCMC use Intl RL",
"calledPartyPrefixDigits": "+",
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupIntl-SLRG-RL",
"cgLinePresBit": "Default",
"connNamePresBit": "Default",
"callClassification": "OffNet",
"allowDeviceOverride": false,
"useCallingPartyExternalPhoneNumMask": false,
"cgNamePresBit": "Default",
"connLinePresBit": "Default",
"urgentPriority": true
},
{
"provideOutsideDialTone": false,
"reqClientMatterCode": true,
"reqForcedAuthCode": true,
"releaseClause": "No Error",
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"pattern": "**303.X!",
"patternPrecedence": "Default",
"routeOption": "Route this pattern",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-DBRteSel-PT",
"authLevel": "6",
"description": "AAM_Group CT=Mobl1yFACyCMC use Intl RL",
"calledPartyPrefixDigits": "+",
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupIntl-SLRG-RL",
"cgLinePresBit": "Default",
"connNamePresBit": "Default",
"callClassification": "OffNet",
"allowDeviceOverride": false,
"useCallingPartyExternalPhoneNumMask": false,
"cgNamePresBit": "Default",
"connLinePresBit": "Default",
"urgentPriority": true
},
{
"urgentPriority": true,
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "AAM_Group Block not in Country Service Call",
"cgLinePresBit": "Default",
"pattern": "**[0-3]05X.!",
"callClassification": "OffNet",
"patternPrecedence": "Default",
"allowDeviceOverride": false,
"authLevel": "0",
"cgNamePresBit": "Default",
"reqClientMatterCode": false,
"reqForcedAuthCode": false,
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-DBRteSel-PT",
"connNamePresBit": "Default",
"connLinePresBit": "Default",
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupServ-SLRG-RL",
"routeOption": "Block this pattern",
"releaseClause": "Call Rejected",
"useCallingPartyExternalPhoneNumMask": false
},
{
"provideOutsideDialTone": false,
"reqClientMatterCode": false,
"reqForcedAuthCode": false,
"releaseClause": "No Error",
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"pattern": "**006.X!",
"patternPrecedence": "Default",
"routeOption": "Route this pattern",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-DBRteSel-PT",
"authLevel": "0",
"description": "AAM_Group CT=LocalXnFACnCMC use Intl RL",
"calledPartyPrefixDigits": "+",
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupIntl-SLRG-RL",
"cgLinePresBit": "Default",
"connNamePresBit": "Default",
"callClassification": "OffNet",
"allowDeviceOverride": false,
"useCallingPartyExternalPhoneNumMask": false,
"cgNamePresBit": "Default",
"connLinePresBit": "Default",
"urgentPriority": true
},
{
"provideOutsideDialTone": false,
"reqClientMatterCode": false,
"reqForcedAuthCode": true,
"releaseClause": "No Error",
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"pattern": "**106.X!",
"patternPrecedence": "Default",
"routeOption": "Route this pattern",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-DBRteSel-PT",
"authLevel": "1",
"description": "AAM_Group CT=LocalXyFACnCMC use Intl RL",
"calledPartyPrefixDigits": "+",
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupIntl-SLRG-RL",
"cgLinePresBit": "Default",
"connNamePresBit": "Default",
"callClassification": "OffNet",
"allowDeviceOverride": false,
"useCallingPartyExternalPhoneNumMask": false,
"cgNamePresBit": "Default",
"connLinePresBit": "Default",
"urgentPriority": true
},
{
"provideOutsideDialTone": false,
"reqClientMatterCode": true,
"reqForcedAuthCode": false,
"releaseClause": "No Error",
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"pattern": "**206.X!",
"patternPrecedence": "Default",
"routeOption": "Route this pattern",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-DBRteSel-PT",
"authLevel": "0",
"description": "AAM_Group CT=LocalXnFACyCMC use Intl RL",
"calledPartyPrefixDigits": "+",
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupIntl-SLRG-RL",
"cgLinePresBit": "Default",
"connNamePresBit": "Default",
"callClassification": "OffNet",
"allowDeviceOverride": false,
"useCallingPartyExternalPhoneNumMask": false,
"cgNamePresBit": "Default",
"connLinePresBit": "Default",
"urgentPriority": true
},
{
"provideOutsideDialTone": false,
"reqClientMatterCode": true,
"reqForcedAuthCode": true,
"releaseClause": "No Error",
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"pattern": "**306.X!",
"patternPrecedence": "Default",
"routeOption": "Route this pattern",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-DBRteSel-PT",
"authLevel": "1",
"description": "AAM_Group CT=LocalXyFACyCMC use Intl RL",
"calledPartyPrefixDigits": "+",
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupIntl-SLRG-RL",
"cgLinePresBit": "Default",
"connNamePresBit": "Default",
"callClassification": "OffNet",
"allowDeviceOverride": false,
"useCallingPartyExternalPhoneNumMask": false,
"cgNamePresBit": "Default",
"connLinePresBit": "Default",
"urgentPriority": true
},
{
"provideOutsideDialTone": false,
"reqClientMatterCode": false,
"reqForcedAuthCode": false,
"releaseClause": "No Error",
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"pattern": "**007.X!",
"patternPrecedence": "Default",
"routeOption": "Route this pattern",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-DBRteSel-PT",
"authLevel": "0",
"description": "AAM_Group CT=PRSNXnFACnCMC use Intl RL",
"calledPartyPrefixDigits": "+",
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupIntl-SLRG-RL",
"cgLinePresBit": "Default",
"connNamePresBit": "Default",
"callClassification": "OffNet",
"allowDeviceOverride": false,
"useCallingPartyExternalPhoneNumMask": false,
"cgNamePresBit": "Default",
"connLinePresBit": "Default",
"urgentPriority": true
},
{
"provideOutsideDialTone": false,
"reqClientMatterCode": false,
"reqForcedAuthCode": true,
"releaseClause": "No Error",
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"pattern": "**107.X!",
"patternPrecedence": "Default",
"routeOption": "Route this pattern",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-DBRteSel-PT",
"authLevel": "9",
"description": "AAM_Group CT=PRSNXyFACnCMC use Intl RL",
"calledPartyPrefixDigits": "+",
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupIntl-SLRG-RL",
"cgLinePresBit": "Default",
"connNamePresBit": "Default",
"callClassification": "OffNet",
"allowDeviceOverride": false,
"useCallingPartyExternalPhoneNumMask": false,
"cgNamePresBit": "Default",
"connLinePresBit": "Default",
"urgentPriority": true
},
{
"provideOutsideDialTone": false,
"reqClientMatterCode": true,
"reqForcedAuthCode": false,
"releaseClause": "No Error",
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"pattern": "**207.X!",
"patternPrecedence": "Default",
"routeOption": "Route this pattern",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-DBRteSel-PT",
"authLevel": "0",
"description": "AAM_Group CT=PRSNXnFACyCMC use Intl RL",
"calledPartyPrefixDigits": "+",
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupIntl-SLRG-RL",
"cgLinePresBit": "Default",
"connNamePresBit": "Default",
"callClassification": "OffNet",
"allowDeviceOverride": false,
"useCallingPartyExternalPhoneNumMask": false,
"cgNamePresBit": "Default",
"connLinePresBit": "Default",
"urgentPriority": true
},
{
"provideOutsideDialTone": false,
"reqClientMatterCode": true,
"reqForcedAuthCode": true,
"releaseClause": "No Error",
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"pattern": "**307.X!",
"patternPrecedence": "Default",
"routeOption": "Route this pattern",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-DBRteSel-PT",
"authLevel": "9",
"description": "AAM_Group CT=PRSNXyFACyCMC use Intl RL",
"calledPartyPrefixDigits": "+",
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupIntl-SLRG-RL",
"cgLinePresBit": "Default",
"connNamePresBit": "Default",
"callClassification": "OffNet",
"allowDeviceOverride": false,
"useCallingPartyExternalPhoneNumMask": false,
"cgNamePresBit": "Default",
"connLinePresBit": "Default",
"urgentPriority": true
},
{
"provideOutsideDialTone": false,
"reqClientMatterCode": false,
"reqForcedAuthCode": false,
"releaseClause": "No Error",
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"pattern": "**008.X!",
"patternPrecedence": "Default",
"routeOption": "Route this pattern",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-DBRteSel-PT",
"authLevel": "0",
"description": "AAM_Group CT=FPHNXnFACnCMC use Intl RL",
"calledPartyPrefixDigits": "+",
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupIntl-SLRG-RL",
"cgLinePresBit": "Default",
"connNamePresBit": "Default",
"callClassification": "OffNet",
"allowDeviceOverride": false,
"useCallingPartyExternalPhoneNumMask": false,
"cgNamePresBit": "Default",
"connLinePresBit": "Default",
"urgentPriority": true
},
{
"provideOutsideDialTone": false,
"reqClientMatterCode": false,
"reqForcedAuthCode": true,
"releaseClause": "No Error",
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"pattern": "**108.X!",
"patternPrecedence": "Default",
"routeOption": "Route this pattern",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-DBRteSel-PT",
"authLevel": "6",
"description": "AAM_Group CT=FPHNXyFACnCMC use Intl RL",
"calledPartyPrefixDigits": "+",
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupIntl-SLRG-RL",
"cgLinePresBit": "Default",
"connNamePresBit": "Default",
"callClassification": "OffNet",
"allowDeviceOverride": false,
"useCallingPartyExternalPhoneNumMask": false,
"cgNamePresBit": "Default",
"connLinePresBit": "Default",
"urgentPriority": true
},
{
"provideOutsideDialTone": false,
"reqClientMatterCode": true,
"reqForcedAuthCode": false,
"releaseClause": "No Error",
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"pattern": "**208.X!",
"patternPrecedence": "Default",
"routeOption": "Route this pattern",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-DBRteSel-PT",
"authLevel": "0",
"description": "AAM_Group CT=FPHNXnFACyCMC use Intl RL",
"calledPartyPrefixDigits": "+",
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupIntl-SLRG-RL",
"cgLinePresBit": "Default",
"connNamePresBit": "Default",
"callClassification": "OffNet",
"allowDeviceOverride": false,
"useCallingPartyExternalPhoneNumMask": false,
"cgNamePresBit": "Default",
"connLinePresBit": "Default",
"urgentPriority": true
},
{
"provideOutsideDialTone": false,
"reqClientMatterCode": true,
"reqForcedAuthCode": true,
"releaseClause": "No Error",
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"pattern": "**308.X!",
"patternPrecedence": "Default",
"routeOption": "Route this pattern",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-DBRteSel-PT",
"authLevel": "6",
"description": "AAM_Group CT=FPHNXyFACyCMC use Intl RL",
"calledPartyPrefixDigits": "+",
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupIntl-SLRG-RL",
"cgLinePresBit": "Default",
"connNamePresBit": "Default",
"callClassification": "OffNet",
"allowDeviceOverride": false,
"useCallingPartyExternalPhoneNumMask": false,
"cgNamePresBit": "Default",
"connLinePresBit": "Default",
"urgentPriority": true
},
{
"provideOutsideDialTone": false,
"reqClientMatterCode": false,
"reqForcedAuthCode": false,
"releaseClause": "No Error",
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"pattern": "**009.X!",
"patternPrecedence": "Default",
"routeOption": "Route this pattern",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-DBRteSel-PT",
"authLevel": "0",
"description": "AAM_Group CT=PCSNXnFACnCMC use Intl RL",
"calledPartyPrefixDigits": "+",
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupIntl-SLRG-RL",
"cgLinePresBit": "Default",
"connNamePresBit": "Default",
"callClassification": "OffNet",
"allowDeviceOverride": false,
"useCallingPartyExternalPhoneNumMask": false,
"cgNamePresBit": "Default",
"connLinePresBit": "Default",
"urgentPriority": true
},
{
"provideOutsideDialTone": false,
"reqClientMatterCode": false,
"reqForcedAuthCode": true,
"releaseClause": "No Error",
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"pattern": "**109.X!",
"patternPrecedence": "Default",
"routeOption": "Route this pattern",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-DBRteSel-PT",
"authLevel": "6",
"description": "AAM_Group CT=PCSNXyFACnCMC use Intl RL",
"calledPartyPrefixDigits": "+",
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupIntl-SLRG-RL",
"cgLinePresBit": "Default",
"connNamePresBit": "Default",
"callClassification": "OffNet",
"allowDeviceOverride": false,
"useCallingPartyExternalPhoneNumMask": false,
"cgNamePresBit": "Default",
"connLinePresBit": "Default",
"urgentPriority": true
},
{
"provideOutsideDialTone": false,
"reqClientMatterCode": true,
"reqForcedAuthCode": false,
"releaseClause": "No Error",
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"pattern": "**209.X!",
"patternPrecedence": "Default",
"routeOption": "Route this pattern",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-DBRteSel-PT",
"authLevel": "0",
"description": "AAM_Group CT=PCSNXnFACyCMC use Intl RL",
"calledPartyPrefixDigits": "+",
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupIntl-SLRG-RL",
"cgLinePresBit": "Default",
"connNamePresBit": "Default",
"callClassification": "OffNet",
"allowDeviceOverride": false,
"useCallingPartyExternalPhoneNumMask": false,
"cgNamePresBit": "Default",
"connLinePresBit": "Default",
"urgentPriority": true
},
{
"provideOutsideDialTone": false,
"reqClientMatterCode": true,
"reqForcedAuthCode": true,
"releaseClause": "No Error",
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"pattern": "**309.X!",
"patternPrecedence": "Default",
"routeOption": "Route this pattern",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-DBRteSel-PT",
"authLevel": "6",
"description": "AAM_Group CT=PCSNXyFACyCMC use Intl RL",
"calledPartyPrefixDigits": "+",
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupIntl-SLRG-RL",
"cgLinePresBit": "Default",
"connNamePresBit": "Default",
"callClassification": "OffNet",
"allowDeviceOverride": false,
"useCallingPartyExternalPhoneNumMask": false,
"cgNamePresBit": "Default",
"connLinePresBit": "Default",
"urgentPriority": true
},
{
"provideOutsideDialTone": false,
"reqClientMatterCode": false,
"reqForcedAuthCode": false,
"releaseClause": "No Error",
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"pattern": "**010.X!",
"patternPrecedence": "Default",
"routeOption": "Route this pattern",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-DBRteSel-PT",
"authLevel": "0",
"description": "AAM_Group CT=SRSNXnFACnCMC use Intl RL",
"calledPartyPrefixDigits": "+",
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupIntl-SLRG-RL",
"cgLinePresBit": "Default",
"connNamePresBit": "Default",
"callClassification": "OffNet",
"allowDeviceOverride": false,
"useCallingPartyExternalPhoneNumMask": false,
"cgNamePresBit": "Default",
"connLinePresBit": "Default",
"urgentPriority": true
},
{
"provideOutsideDialTone": false,
"reqClientMatterCode": false,
"reqForcedAuthCode": true,
"releaseClause": "No Error",
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"pattern": "**110.X!",
"patternPrecedence": "Default",
"routeOption": "Route this pattern",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-DBRteSel-PT",
"authLevel": "6",
"description": "AAM_Group CT=SRSNXyFACnCMC use Intl RL",
"calledPartyPrefixDigits": "+",
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupIntl-SLRG-RL",
"cgLinePresBit": "Default",
"connNamePresBit": "Default",
"callClassification": "OffNet",
"allowDeviceOverride": false,
"useCallingPartyExternalPhoneNumMask": false,
"cgNamePresBit": "Default",
"connLinePresBit": "Default",
"urgentPriority": true
},
{
"provideOutsideDialTone": false,
"reqClientMatterCode": true,
"reqForcedAuthCode": false,
"releaseClause": "No Error",
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"pattern": "**210.X!",
"patternPrecedence": "Default",
"routeOption": "Route this pattern",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-DBRteSel-PT",
"authLevel": "0",
"description": "AAM_Group CT=SRSNXnFACnyMC use Intl RL",
"calledPartyPrefixDigits": "+",
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupIntl-SLRG-RL",
"cgLinePresBit": "Default",
"connNamePresBit": "Default",
"callClassification": "OffNet",
"allowDeviceOverride": false,
"useCallingPartyExternalPhoneNumMask": false,
"cgNamePresBit": "Default",
"connLinePresBit": "Default",
"urgentPriority": true
},
{
"provideOutsideDialTone": false,
"reqClientMatterCode": true,
"reqForcedAuthCode": true,
"releaseClause": "No Error",
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"pattern": "**310.X!",
"patternPrecedence": "Default",
"routeOption": "Route this pattern",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-DBRteSel-PT",
"authLevel": "6",
"description": "AAM_Group CT=SRSNXyFACyCMC use Intl RL",
"calledPartyPrefixDigits": "+",
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupIntl-SLRG-RL",
"cgLinePresBit": "Default",
"connNamePresBit": "Default",
"callClassification": "OffNet",
"allowDeviceOverride": false,
"useCallingPartyExternalPhoneNumMask": false,
"cgNamePresBit": "Default",
"connLinePresBit": "Default",
"urgentPriority": true
},
{
"urgentPriority": true,
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "AAM_GroupDP Non AAM_Group Operator Call Type",
"cgLinePresBit": "Default",
"pattern": "**[0-3]11X.!",
"callClassification": "OffNet",
"patternPrecedence": "Default",
"allowDeviceOverride": false,
"authLevel": "0",
"cgNamePresBit": "Default",
"reqClientMatterCode": false,
"reqForcedAuthCode": false,
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-DBRteSel-PT",
"connNamePresBit": "Default",
"connLinePresBit": "Default",
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupOper-SLRG-RL",
"routeOption": "Block this pattern",
"releaseClause": "Call Rejected",
"useCallingPartyExternalPhoneNumMask": false
},
{
"provideOutsideDialTone": false,
"reqClientMatterCode": false,
"reqForcedAuthCode": false,
"releaseClause": "No Error",
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"pattern": "**00127.!",
"patternPrecedence": "Default",
"routeOption": "Route this pattern",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-DBRteSel-PT",
"authLevel": "0",
"description": "AAM_Group CT=Intl1nFACnCMC use Natl RL",
"calledPartyPrefixDigits": "+27",
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupNatl-SLRG-RL",
"cgLinePresBit": "Default",
"connNamePresBit": "Default",
"callClassification": "OffNet",
"allowDeviceOverride": false,
"useCallingPartyExternalPhoneNumMask": false,
"cgNamePresBit": "Default",
"connLinePresBit": "Default",
"urgentPriority": true
},
{
"provideOutsideDialTone": false,
"reqClientMatterCode": false,
"reqForcedAuthCode": true,
"releaseClause": "No Error",
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"pattern": "**10127.!",
"patternPrecedence": "Default",
"routeOption": "Route this pattern",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-DBRteSel-PT",
"authLevel": "10",
"description": "AAM_Group CT=Intl1yFACnCMC use Natl RL",
"calledPartyPrefixDigits": "+27",
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupNatl-SLRG-RL",
"cgLinePresBit": "Default",
"connNamePresBit": "Default",
"callClassification": "OffNet",
"allowDeviceOverride": false,
"useCallingPartyExternalPhoneNumMask": false,
"cgNamePresBit": "Default",
"connLinePresBit": "Default",
"urgentPriority": true
},
{
"provideOutsideDialTone": false,
"reqClientMatterCode": true,
"reqForcedAuthCode": false,
"releaseClause": "No Error",
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"pattern": "**20127.!",
"patternPrecedence": "Default",
"routeOption": "Route this pattern",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-DBRteSel-PT",
"authLevel": "0",
"description": "AAM_Group CT=Intl1nFACyCMC use Natl RL",
"calledPartyPrefixDigits": "+27",
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupNatl-SLRG-RL",
"cgLinePresBit": "Default",
"connNamePresBit": "Default",
"callClassification": "OffNet",
"allowDeviceOverride": false,
"useCallingPartyExternalPhoneNumMask": false,
"cgNamePresBit": "Default",
"connLinePresBit": "Default",
"urgentPriority": true
},
{
"provideOutsideDialTone": false,
"reqClientMatterCode": true,
"reqForcedAuthCode": true,
"releaseClause": "No Error",
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"pattern": "**30127.!",
"patternPrecedence": "Default",
"routeOption": "Route this pattern",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-DBRteSel-PT",
"authLevel": "10",
"description": "AAM_Group CT=Intl1yFACyCMC use Natl RL",
"calledPartyPrefixDigits": "+27",
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupNatl-SLRG-RL",
"cgLinePresBit": "Default",
"connNamePresBit": "Default",
"callClassification": "OffNet",
"allowDeviceOverride": false,
"useCallingPartyExternalPhoneNumMask": false,
"cgNamePresBit": "Default",
"connLinePresBit": "Default",
"urgentPriority": true
},
{
"provideOutsideDialTone": false,
"reqClientMatterCode": false,
"reqForcedAuthCode": false,
"releaseClause": "No Error",
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"pattern": "**00227.!",
"patternPrecedence": "Default",
"routeOption": "Route this pattern",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-DBRteSel-PT",
"authLevel": "0",
"description": "AAM_Group CT=Natl1nFACnCMC use Natl RL",
"calledPartyPrefixDigits": "+27",
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupNatl-SLRG-RL",
"cgLinePresBit": "Default",
"connNamePresBit": "Default",
"callClassification": "OffNet",
"allowDeviceOverride": false,
"useCallingPartyExternalPhoneNumMask": false,
"cgNamePresBit": "Default",
"connLinePresBit": "Default",
"urgentPriority": true
},
{
"provideOutsideDialTone": false,
"reqClientMatterCode": false,
"reqForcedAuthCode": true,
"releaseClause": "No Error",
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"pattern": "**10227.!",
"patternPrecedence": "Default",
"routeOption": "Route this pattern",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-DBRteSel-PT",
"authLevel": "6",
"description": "AAM_Group CT=Natl1yFACnCMC use Natl RL",
"calledPartyPrefixDigits": "+27",
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupNatl-SLRG-RL",
"cgLinePresBit": "Default",
"connNamePresBit": "Default",
"callClassification": "OffNet",
"allowDeviceOverride": false,
"useCallingPartyExternalPhoneNumMask": false,
"cgNamePresBit": "Default",
"connLinePresBit": "Default",
"urgentPriority": true
},
{
"provideOutsideDialTone": false,
"reqClientMatterCode": true,
"reqForcedAuthCode": false,
"releaseClause": "No Error",
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"pattern": "**20227.!",
"patternPrecedence": "Default",
"routeOption": "Route this pattern",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-DBRteSel-PT",
"authLevel": "0",
"description": "AAM_Group CT=Natl1nFACyCMC use Natl RL",
"calledPartyPrefixDigits": "+27",
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupNatl-SLRG-RL",
"cgLinePresBit": "Default",
"connNamePresBit": "Default",
"callClassification": "OffNet",
"allowDeviceOverride": false,
"useCallingPartyExternalPhoneNumMask": false,
"cgNamePresBit": "Default",
"connLinePresBit": "Default",
"urgentPriority": true
},
{
"provideOutsideDialTone": false,
"reqClientMatterCode": true,
"reqForcedAuthCode": true,
"releaseClause": "No Error",
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"pattern": "**30227.!",
"patternPrecedence": "Default",
"routeOption": "Route this pattern",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-DBRteSel-PT",
"authLevel": "6",
"description": "AAM_Group CT=Natl1yFACyCMC use Natl RL",
"calledPartyPrefixDigits": "+27",
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupNatl-SLRG-RL",
"cgLinePresBit": "Default",
"connNamePresBit": "Default",
"callClassification": "OffNet",
"allowDeviceOverride": false,
"useCallingPartyExternalPhoneNumMask": false,
"cgNamePresBit": "Default",
"connLinePresBit": "Default",
"urgentPriority": true
},
{
"provideOutsideDialTone": false,
"reqClientMatterCode": false,
"reqForcedAuthCode": false,
"releaseClause": "No Error",
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"pattern": "**00327.!",
"patternPrecedence": "Default",
"routeOption": "Route this pattern",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-DBRteSel-PT",
"authLevel": "0",
"description": "AAM_Group CT=Mobl1nFACnCMC use Mobl RL",
"calledPartyPrefixDigits": "+27",
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupMobl-SLRG-RL",
"cgLinePresBit": "Default",
"connNamePresBit": "Default",
"callClassification": "OffNet",
"allowDeviceOverride": false,
"useCallingPartyExternalPhoneNumMask": false,
"cgNamePresBit": "Default",
"connLinePresBit": "Default",
"urgentPriority": true
},
{
"provideOutsideDialTone": false,
"reqClientMatterCode": false,
"reqForcedAuthCode": true,
"releaseClause": "No Error",
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"pattern": "**10327.!",
"patternPrecedence": "Default",
"routeOption": "Route this pattern",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-DBRteSel-PT",
"authLevel": "6",
"description": "AAM_Group CT=Mobl1yFACnCMC use Mobl RL",
"calledPartyPrefixDigits": "+27",
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupMobl-SLRG-RL",
"cgLinePresBit": "Default",
"connNamePresBit": "Default",
"callClassification": "OffNet",
"allowDeviceOverride": false,
"useCallingPartyExternalPhoneNumMask": false,
"cgNamePresBit": "Default",
"connLinePresBit": "Default",
"urgentPriority": true
},
{
"provideOutsideDialTone": false,
"reqClientMatterCode": true,
"reqForcedAuthCode": false,
"releaseClause": "No Error",
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"pattern": "**20327.!",
"patternPrecedence": "Default",
"routeOption": "Route this pattern",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-DBRteSel-PT",
"authLevel": "0",
"description": "AAM_Group CT=Mobl1nFACyCMC use Mobl RL",
"calledPartyPrefixDigits": "+27",
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupMobl-SLRG-RL",
"cgLinePresBit": "Default",
"connNamePresBit": "Default",
"callClassification": "OffNet",
"allowDeviceOverride": false,
"useCallingPartyExternalPhoneNumMask": false,
"cgNamePresBit": "Default",
"connLinePresBit": "Default",
"urgentPriority": true
},
{
"provideOutsideDialTone": false,
"reqClientMatterCode": true,
"reqForcedAuthCode": true,
"releaseClause": "No Error",
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"pattern": "**30327.!",
"patternPrecedence": "Default",
"routeOption": "Route this pattern",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-DBRteSel-PT",
"authLevel": "6",
"description": "AAM_Group CT=Mobl1yFACyCMC use Mobl RL",
"calledPartyPrefixDigits": "+27",
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupMobl-SLRG-RL",
"cgLinePresBit": "Default",
"connNamePresBit": "Default",
"callClassification": "OffNet",
"allowDeviceOverride": false,
"useCallingPartyExternalPhoneNumMask": false,
"cgNamePresBit": "Default",
"connLinePresBit": "Default",
"urgentPriority": true
},
{
"urgentPriority": true,
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "AAM_Group CT=SVC55nFACnCMC use SVC RL",
"cgLinePresBit": "Default",
"pattern": "**00527.!",
"callClassification": "OffNet",
"patternPrecedence": "Default",
"allowDeviceOverride": false,
"authLevel": "0",
"cgNamePresBit": "Default",
"reqClientMatterCode": false,
"reqForcedAuthCode": false,
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-DBRteSel-PT",
"connNamePresBit": "Default",
"connLinePresBit": "Default",
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupServ-SLRG-RL",
"routeOption": "Route this pattern",
"releaseClause": "No Error",
"useCallingPartyExternalPhoneNumMask": false
},
{
"urgentPriority": true,
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "AAM_Group CT=SVC1yFACnCMC use SVC RL",
"cgLinePresBit": "Default",
"pattern": "**10527.!",
"callClassification": "OffNet",
"patternPrecedence": "Default",
"allowDeviceOverride": false,
"authLevel": "6",
"cgNamePresBit": "Default",
"reqClientMatterCode": false,
"reqForcedAuthCode": true,
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-DBRteSel-PT",
"connNamePresBit": "Default",
"connLinePresBit": "Default",
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupServ-SLRG-RL",
"routeOption": "Route this pattern",
"releaseClause": "No Error",
"useCallingPartyExternalPhoneNumMask": false
},
{
"urgentPriority": true,
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "AAM_GroupDP CT=SVC1nFACyCMC use SVC RL",
"cgLinePresBit": "Default",
"pattern": "**20527.!",
"callClassification": "OffNet",
"patternPrecedence": "Default",
"allowDeviceOverride": false,
"authLevel": "0",
"cgNamePresBit": "Default",
"reqClientMatterCode": true,
"reqForcedAuthCode": false,
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-DBRteSel-PT",
"connNamePresBit": "Default",
"connLinePresBit": "Default",
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupServ-SLRG-RL",
"routeOption": "Block this pattern",
"releaseClause": "Call Rejected",
"useCallingPartyExternalPhoneNumMask": false
},
{
"urgentPriority": true,
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "AAM_Group CT=SVC1yFACyCMC use SVC RL",
"cgLinePresBit": "Default",
"pattern": "**30527.!",
"callClassification": "OffNet",
"patternPrecedence": "Default",
"allowDeviceOverride": false,
"authLevel": "6",
"cgNamePresBit": "Default",
"reqClientMatterCode": true,
"reqForcedAuthCode": true,
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-DBRteSel-PT",
"connNamePresBit": "Default",
"connLinePresBit": "Default",
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupServ-SLRG-RL",
"routeOption": "Route this pattern",
"releaseClause": "No Error",
"useCallingPartyExternalPhoneNumMask": false
},
{
"provideOutsideDialTone": false,
"reqClientMatterCode": false,
"reqForcedAuthCode": false,
"releaseClause": "No Error",
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"pattern": "**00627.!",
"patternPrecedence": "Default",
"routeOption": "Route this pattern",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-DBRteSel-PT",
"authLevel": "0",
"description": "AAM_Group CT=Local1nFACnCMC use Local RL",
"calledPartyPrefixDigits": "+27",
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupLocal-SLRG-RL",
"cgLinePresBit": "Default",
"connNamePresBit": "Default",
"callClassification": "OffNet",
"allowDeviceOverride": false,
"useCallingPartyExternalPhoneNumMask": false,
"cgNamePresBit": "Default",
"connLinePresBit": "Default",
"urgentPriority": true
},
{
"provideOutsideDialTone": false,
"reqClientMatterCode": false,
"reqForcedAuthCode": true,
"releaseClause": "No Error",
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"pattern": "**10627.!",
"patternPrecedence": "Default",
"routeOption": "Route this pattern",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-DBRteSel-PT",
"authLevel": "1",
"description": "AAM_Group CT=Local1yFACnCMC use Local RL",
"calledPartyPrefixDigits": "+27",
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupLocal-SLRG-RL",
"cgLinePresBit": "Default",
"connNamePresBit": "Default",
"callClassification": "OffNet",
"allowDeviceOverride": false,
"useCallingPartyExternalPhoneNumMask": false,
"cgNamePresBit": "Default",
"connLinePresBit": "Default",
"urgentPriority": true
},
{
"provideOutsideDialTone": false,
"reqClientMatterCode": true,
"reqForcedAuthCode": false,
"releaseClause": "No Error",
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"pattern": "**20627.!",
"patternPrecedence": "Default",
"routeOption": "Route this pattern",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-DBRteSel-PT",
"authLevel": "0",
"description": "AAM_Group CT=Local1nFACyCMC use Local RL",
"calledPartyPrefixDigits": "+27",
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupLocal-SLRG-RL",
"cgLinePresBit": "Default",
"connNamePresBit": "Default",
"callClassification": "OffNet",
"allowDeviceOverride": false,
"useCallingPartyExternalPhoneNumMask": false,
"cgNamePresBit": "Default",
"connLinePresBit": "Default",
"urgentPriority": true
},
{
"provideOutsideDialTone": false,
"reqClientMatterCode": true,
"reqForcedAuthCode": true,
"releaseClause": "No Error",
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"pattern": "**30627.!",
"patternPrecedence": "Default",
"routeOption": "Route this pattern",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-DBRteSel-PT",
"authLevel": "1",
"description": "AAM_Group CT=Local1yFACyCMC use Local RL",
"calledPartyPrefixDigits": "+27",
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupLocal-SLRG-RL",
"cgLinePresBit": "Default",
"connNamePresBit": "Default",
"callClassification": "OffNet",
"allowDeviceOverride": false,
"useCallingPartyExternalPhoneNumMask": false,
"cgNamePresBit": "Default",
"connLinePresBit": "Default",
"urgentPriority": true
},
{
"provideOutsideDialTone": false,
"reqClientMatterCode": false,
"reqForcedAuthCode": false,
"releaseClause": "No Error",
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"pattern": "**00727.!",
"patternPrecedence": "Default",
"routeOption": "Route this pattern",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-DBRteSel-PT",
"authLevel": "0",
"description": "AAM_Group CT=PRSN1nFACnCMC use PRSN RL",
"calledPartyPrefixDigits": "+27",
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupPRSN-SLRG-RL",
"cgLinePresBit": "Default",
"connNamePresBit": "Default",
"callClassification": "OffNet",
"allowDeviceOverride": false,
"useCallingPartyExternalPhoneNumMask": false,
"cgNamePresBit": "Default",
"connLinePresBit": "Default",
"urgentPriority": true
},
{
"provideOutsideDialTone": false,
"reqClientMatterCode": false,
"reqForcedAuthCode": true,
"releaseClause": "No Error",
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"pattern": "**10727.!",
"patternPrecedence": "Default",
"routeOption": "Route this pattern",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-DBRteSel-PT",
"authLevel": "9",
"description": "AAM_Group CT=PRSN1yFACnCMC use PRSN RL",
"calledPartyPrefixDigits": "+27",
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupPRSN-SLRG-RL",
"cgLinePresBit": "Default",
"connNamePresBit": "Default",
"callClassification": "OffNet",
"allowDeviceOverride": false,
"useCallingPartyExternalPhoneNumMask": false,
"cgNamePresBit": "Default",
"connLinePresBit": "Default",
"urgentPriority": true
},
{
"provideOutsideDialTone": false,
"reqClientMatterCode": true,
"reqForcedAuthCode": false,
"releaseClause": "No Error",
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"pattern": "**20727.!",
"patternPrecedence": "Default",
"routeOption": "Route this pattern",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-DBRteSel-PT",
"authLevel": "0",
"description": "AAM_Group CT=PRSN1nFACyCMC use PRSN RL",
"calledPartyPrefixDigits": "+27",
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupPRSN-SLRG-RL",
"cgLinePresBit": "Default",
"connNamePresBit": "Default",
"callClassification": "OffNet",
"allowDeviceOverride": false,
"useCallingPartyExternalPhoneNumMask": false,
"cgNamePresBit": "Default",
"connLinePresBit": "Default",
"urgentPriority": true
},
{
"provideOutsideDialTone": false,
"reqClientMatterCode": true,
"reqForcedAuthCode": true,
"releaseClause": "No Error",
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"pattern": "**30727.!",
"patternPrecedence": "Default",
"routeOption": "Route this pattern",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-DBRteSel-PT",
"authLevel": "9",
"description": "AAM_Group CT=PRSN1yFACyCMC use PRSN RL",
"calledPartyPrefixDigits": "+27",
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupPRSN-SLRG-RL",
"cgLinePresBit": "Default",
"connNamePresBit": "Default",
"callClassification": "OffNet",
"allowDeviceOverride": false,
"useCallingPartyExternalPhoneNumMask": false,
"cgNamePresBit": "Default",
"connLinePresBit": "Default",
"urgentPriority": true
},
{
"provideOutsideDialTone": false,
"reqClientMatterCode": false,
"reqForcedAuthCode": false,
"releaseClause": "No Error",
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"pattern": "**00827.!",
"patternPrecedence": "Default",
"routeOption": "Route this pattern",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-DBRteSel-PT",
"authLevel": "0",
"description": "AAM_Group CT=FPHN1nFACnCMC use FPHN RL",
"calledPartyPrefixDigits": "+27",
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupFPHN-SLRG-RL",
"cgLinePresBit": "Default",
"connNamePresBit": "Default",
"callClassification": "OffNet",
"allowDeviceOverride": false,
"useCallingPartyExternalPhoneNumMask": false,
"cgNamePresBit": "Default",
"connLinePresBit": "Default",
"urgentPriority": true
},
{
"provideOutsideDialTone": false,
"reqClientMatterCode": false,
"reqForcedAuthCode": true,
"releaseClause": "No Error",
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"pattern": "**10827.!",
"patternPrecedence": "Default",
"routeOption": "Route this pattern",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-DBRteSel-PT",
"authLevel": "6",
"description": "AAM_Group CT=FPHN1yFACnCMC use FPHN RL",
"calledPartyPrefixDigits": "+27",
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupFPHN-SLRG-RL",
"cgLinePresBit": "Default",
"connNamePresBit": "Default",
"callClassification": "OffNet",
"allowDeviceOverride": false,
"useCallingPartyExternalPhoneNumMask": false,
"cgNamePresBit": "Default",
"connLinePresBit": "Default",
"urgentPriority": true
},
{
"provideOutsideDialTone": false,
"reqClientMatterCode": true,
"reqForcedAuthCode": false,
"releaseClause": "No Error",
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"pattern": "**20827.!",
"patternPrecedence": "Default",
"routeOption": "Route this pattern",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-DBRteSel-PT",
"authLevel": "0",
"description": "AAM_Group CT=FPHN1nFACyCMC use FPHN RL",
"calledPartyPrefixDigits": "+27",
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupFPHN-SLRG-RL",
"cgLinePresBit": "Default",
"connNamePresBit": "Default",
"callClassification": "OffNet",
"allowDeviceOverride": false,
"useCallingPartyExternalPhoneNumMask": false,
"cgNamePresBit": "Default",
"connLinePresBit": "Default",
"urgentPriority": true
},
{
"provideOutsideDialTone": false,
"reqClientMatterCode": true,
"reqForcedAuthCode": true,
"releaseClause": "No Error",
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"pattern": "**30827.!",
"patternPrecedence": "Default",
"routeOption": "Route this pattern",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-DBRteSel-PT",
"authLevel": "6",
"description": "AAM_Group CT=FPHN1yFACyCMC use FPHN RL",
"calledPartyPrefixDigits": "+27",
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupFPHN-SLRG-RL",
"cgLinePresBit": "Default",
"connNamePresBit": "Default",
"callClassification": "OffNet",
"allowDeviceOverride": false,
"useCallingPartyExternalPhoneNumMask": false,
"cgNamePresBit": "Default",
"connLinePresBit": "Default",
"urgentPriority": true
},
{
"provideOutsideDialTone": false,
"reqClientMatterCode": false,
"reqForcedAuthCode": false,
"releaseClause": "No Error",
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"pattern": "**00927.!",
"patternPrecedence": "Default",
"routeOption": "Route this pattern",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-DBRteSel-PT",
"authLevel": "0",
"description": "AAM_Group CT=PCSN1nFACnCMC use PCSN RL",
"calledPartyPrefixDigits": "+27",
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupPCSN-SLRG-RL",
"cgLinePresBit": "Default",
"connNamePresBit": "Default",
"callClassification": "OffNet",
"allowDeviceOverride": false,
"useCallingPartyExternalPhoneNumMask": false,
"cgNamePresBit": "Default",
"connLinePresBit": "Default",
"urgentPriority": true
},
{
"provideOutsideDialTone": false,
"reqClientMatterCode": false,
"reqForcedAuthCode": true,
"releaseClause": "No Error",
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"pattern": "**10927.!",
"patternPrecedence": "Default",
"routeOption": "Route this pattern",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-DBRteSel-PT",
"authLevel": "6",
"description": "AAM_Group CT=PCSN1yFACnCMC use PCSN RL",
"calledPartyPrefixDigits": "+27",
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupPCSN-SLRG-RL",
"cgLinePresBit": "Default",
"connNamePresBit": "Default",
"callClassification": "OffNet",
"allowDeviceOverride": false,
"useCallingPartyExternalPhoneNumMask": false,
"cgNamePresBit": "Default",
"connLinePresBit": "Default",
"urgentPriority": true
},
{
"provideOutsideDialTone": false,
"reqClientMatterCode": true,
"reqForcedAuthCode": false,
"releaseClause": "No Error",
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"pattern": "**20927.!",
"patternPrecedence": "Default",
"routeOption": "Route this pattern",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-DBRteSel-PT",
"authLevel": "0",
"description": "AAM_Group CT=PCSN1nFACyCMC use PCSN RL",
"calledPartyPrefixDigits": "+27",
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupPCSN-SLRG-RL",
"cgLinePresBit": "Default",
"connNamePresBit": "Default",
"callClassification": "OffNet",
"allowDeviceOverride": false,
"useCallingPartyExternalPhoneNumMask": false,
"cgNamePresBit": "Default",
"connLinePresBit": "Default",
"urgentPriority": true
},
{
"provideOutsideDialTone": false,
"reqClientMatterCode": true,
"reqForcedAuthCode": true,
"releaseClause": "No Error",
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"pattern": "**30927.!",
"patternPrecedence": "Default",
"routeOption": "Route this pattern",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-DBRteSel-PT",
"authLevel": "6",
"description": "AAM_Group CT=PCSN1yFACyCMC use PCSN RL",
"calledPartyPrefixDigits": "+27",
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupPCSN-SLRG-RL",
"cgLinePresBit": "Default",
"connNamePresBit": "Default",
"callClassification": "OffNet",
"allowDeviceOverride": false,
"useCallingPartyExternalPhoneNumMask": false,
"cgNamePresBit": "Default",
"connLinePresBit": "Default",
"urgentPriority": true
},
{
"provideOutsideDialTone": false,
"reqClientMatterCode": false,
"reqForcedAuthCode": false,
"releaseClause": "No Error",
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"pattern": "**01027.!",
"patternPrecedence": "Default",
"routeOption": "Route this pattern",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-DBRteSel-PT",
"authLevel": "0",
"description": "AAM_Group CT=SRSN1nFACnCMC use SRSN RL",
"calledPartyPrefixDigits": "+27",
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupSRSN-RL",
"cgLinePresBit": "Default",
"connNamePresBit": "Default",
"callClassification": "OffNet",
"allowDeviceOverride": false,
"useCallingPartyExternalPhoneNumMask": false,
"cgNamePresBit": "Default",
"connLinePresBit": "Default",
"urgentPriority": true
},
{
"provideOutsideDialTone": false,
"reqClientMatterCode": false,
"reqForcedAuthCode": true,
"releaseClause": "No Error",
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"pattern": "**11027.!",
"patternPrecedence": "Default",
"routeOption": "Route this pattern",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-DBRteSel-PT",
"authLevel": "6",
"description": "AAM_Group CT=SRSN1yFACnCMC use SRSN RL",
"calledPartyPrefixDigits": "+27",
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupSRSN-SLRG-RL",
"cgLinePresBit": "Default",
"connNamePresBit": "Default",
"callClassification": "OffNet",
"allowDeviceOverride": false,
"useCallingPartyExternalPhoneNumMask": false,
"cgNamePresBit": "Default",
"connLinePresBit": "Default",
"urgentPriority": true
},
{
"provideOutsideDialTone": false,
"reqClientMatterCode": true,
"reqForcedAuthCode": false,
"releaseClause": "No Error",
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"pattern": "**21027.!",
"patternPrecedence": "Default",
"routeOption": "Route this pattern",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-DBRteSel-PT",
"authLevel": "0",
"description": "AAM_Group CT=SRSN1nFACyCMC use SRSN RL",
"calledPartyPrefixDigits": "+27",
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupSRSN-RL",
"cgLinePresBit": "Default",
"connNamePresBit": "Default",
"callClassification": "OffNet",
"allowDeviceOverride": false,
"useCallingPartyExternalPhoneNumMask": false,
"cgNamePresBit": "Default",
"connLinePresBit": "Default",
"urgentPriority": true
},
{
"provideOutsideDialTone": false,
"reqClientMatterCode": true,
"reqForcedAuthCode": true,
"releaseClause": "No Error",
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"pattern": "**31027.!",
"patternPrecedence": "Default",
"routeOption": "Route this pattern",
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-DBRteSel-PT",
"authLevel": "6",
"description": "AAM_Group CT=SRSN1yFACyCMC use SRSN RL",
"calledPartyPrefixDigits": "+27",
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupSRSN-SLRG-RL",
"cgLinePresBit": "Default",
"connNamePresBit": "Default",
"callClassification": "OffNet",
"allowDeviceOverride": false,
"useCallingPartyExternalPhoneNumMask": false,
"cgNamePresBit": "Default",
"connLinePresBit": "Default",
"urgentPriority": true
},
{
"urgentPriority": true,
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "AAM_Group CT=Oper1nFACnCMC use Oper RL",
"cgLinePresBit": "Default",
"pattern": "**01127.!",
"callClassification": "OffNet",
"patternPrecedence": "Default",
"allowDeviceOverride": false,
"authLevel": "0",
"cgNamePresBit": "Default",
"reqClientMatterCode": false,
"reqForcedAuthCode": false,
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-DBRteSel-PT",
"connNamePresBit": "Default",
"connLinePresBit": "Default",
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupOper-SLRG-RL",
"routeOption": "Route this pattern",
"releaseClause": "No Error",
"useCallingPartyExternalPhoneNumMask": false
},
{
"urgentPriority": true,
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "AAM_Group CT=Oper1yFACnCMC use Oper RL",
"cgLinePresBit": "Default",
"pattern": "**11127.!",
"callClassification": "OffNet",
"patternPrecedence": "Default",
"allowDeviceOverride": false,
"authLevel": "6",
"cgNamePresBit": "Default",
"reqClientMatterCode": false,
"reqForcedAuthCode": true,
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-DBRteSel-PT",
"connNamePresBit": "Default",
"connLinePresBit": "Default",
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupOper-SLRG-RL",
"routeOption": "Route this pattern",
"releaseClause": "Call Rejected",
"useCallingPartyExternalPhoneNumMask": false
},
{
"urgentPriority": true,
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "AAM_Group CT=Oper1nFACyCMC use Oper RL",
"cgLinePresBit": "Default",
"pattern": "**21127.!",
"callClassification": "OffNet",
"patternPrecedence": "Default",
"allowDeviceOverride": false,
"authLevel": "0",
"cgNamePresBit": "Default",
"reqClientMatterCode": true,
"reqForcedAuthCode": false,
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-DBRteSel-PT",
"connNamePresBit": "Default",
"connLinePresBit": "Default",
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupOper-SLRG-RL",
"routeOption": "Route this pattern",
"releaseClause": "No Error",
"useCallingPartyExternalPhoneNumMask": false
},
{
"urgentPriority": true,
"allowOverlapSending": false,
"calledPartyDiscardDigits": "PreDot",
"provideOutsideDialTone": false,
"description": "AAM_Group CT=Oper1yFACyCMC use Oper RL",
"cgLinePresBit": "Default",
"pattern": "**31127.!",
"callClassification": "OffNet",
"patternPrecedence": "Default",
"allowDeviceOverride": false,
"authLevel": "6",
"cgNamePresBit": "Default",
"reqClientMatterCode": true,
"reqForcedAuthCode": true,
"routePartition": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupDP-DBRteSel-PT",
"connNamePresBit": "Default",
"connLinePresBit": "Default",
"routeList": "{{macro.HcsDpUniqueCustomerPrefixMCR}}-AAM_GroupOper-SLRG-RL",
"routeOption": "Route this pattern",
"releaseClause": "Call Rejected",
"useCallingPartyExternalPhoneNumMask": false
}
],
"pkid": "5df0b5d1ce894e001275a185"
},
"meta": {
"model_type": "data/HcsDpDialPlanSchemaDAT",
"summary_attrs": [
{
"name": "name",
"title": "Dial Plan Name"
},
{
"name": "hierarchy_friendly_name",
"title": "Located At",
"allow_filtering": true
}
],
"tagged_versions": [],
"tags": [],
"title": "title format",
"business_key": {
"unique": [
"name"
],
"hierarchy": true
},
"api_version": "21.2",
"cached": false,
"references": {
"device": [
{
"href": "",
"pkid": ""
}
],
"owner": [
{
"pkid": ""
}
],
"parent": [
{
"href": "/api/data/HierarchyNode/5df0b338ce894e001275535c",
"pkid": "5df0b338ce894e001275535c"
}
],
"foreign_key": [],
"children": [],
"self": [
{
"href": "/api/data/HcsDpDialPlanSchemaDAT/5df0b5d1ce894e001275a184/",
"pkid": "5df0b5d1ce894e001275a184"
}
]
},
"path": [
"6t0ggef2c0deab00hb595101",
"5da4c643ce894e0012225c90",
"5df0b338ce894e001275535c",
"5df0b5d1ce894e001275a184"
],
"schema_version": "2.0",
"actions": [
{
"update": {
"method": "PUT",
"class": "update",
"href": "/api/data/HcsDpDialPlanSchemaDAT/5df0b5d1ce894e001275a184/?hierarchy=[hierarchy]",
"support_async": true,
"title": "Modify"
}
},
{
"remove": {
"method": "DELETE",
"class": "delete",
"href": "/api/data/HcsDpDialPlanSchemaDAT/5df0b5d1ce894e001275a184/?hierarchy=[hierarchy]",
"support_async": true,
"title": "Delete"
}
},
{
"clone": {
"method": "GET",
"class": "clone",
"href": "/api/data/HcsDpDialPlanSchemaDAT/5df0b5d1ce894e001275a184/clone/?hierarchy=[hierarchy]&schema=&schema_rules=true",
"support_async": false,
"title": "Clone"
}
},
{
"export": {
"method": "GET",
"class": "export",
"href": "/api/data/HcsDpDialPlanSchemaDAT/5df0b5d1ce894e001275a184/export/?hierarchy=[hierarchy]",
"support_async": false,
"title": "Export",
"view": "/api/view/ExportData/add/?auth_token=[authtoken],
"submit": "payload"
}
},
{
"get": {
"method": "GET",
"class": "get",
"href": "/api/data/HcsDpDialPlanSchemaDAT/5df0b5d1ce894e001275a184/?hierarchy=[hierarchy]",
"support_async": false,
"title": "Get"
}
},
{
"help": {
"method": "GET",
"class": "help",
"href": "/api/data/HcsDpDialPlanSchemaDAT/5df0b5d1ce894e001275a184/help?hierarchy=[hierarchy]",
"support_async": false,
"title": "Help"
}
}
]
},
"pkid": "5df0b5d1ce894e001275a184"
}
| Task | Call | URL | Parameters | Response |
|---|---|---|---|---|
| Get the on-line Help for data/HcsDpDialPlanSchemaDAT. | GET | /api/data/HcsDpDialPlanSchemaDAT/help | hierarchy=[hierarchy] | On-line help of Model ref.: data/HcsDpDialPlanSchemaDAT as HTML |
| Task | Call | URL | Parameters | Payload |
|---|---|---|---|---|
| Modify | PUT | /api/data/HcsDpDialPlanSchemaDAT/[pkid] | hierarchy=[hierarchy] | (For payload specification) |
For Bulk modification, refer to the Bulk Modify section.
| Task | Call | URL | Parameters | Response |
|---|---|---|---|---|
| Delete | DELETE | /api/data/HcsDpDialPlanSchemaDAT/[pkid] | hierarchy=[hierarchy] |
| Task | Call | URL | Parameters | Response |
|---|---|---|---|---|
| Clone instance with [pkid]. The schema rules are applied. | GET | /api/data/HcsDpDialPlanSchemaDAT/[pkid]/clone/?schema=&schema_rules=true |
|
A JSON payload with:
|
GET http://[host-proxy]/api/data/HcsDpDialPlanSchemaDAT/?hierarchy=[hierarchy]&format=json
| Task | Call | URL | Parameters | Response |
|---|---|---|---|---|
| Get a selected [export_format] of the schema and a single instance with [pkid] of data/HcsDpDialPlanSchemaDAT; optionally with tag_version at [version] and Configuration Template as [configtemplate]. | GET | /api/data/HcsDpDialPlanSchemaDAT/[pkid]/export |
|
The response is an attachment. Refer to the list below. |
For export_format=raw_xlsx, the response is a "raw" MS Excel spreadsheet with columns corresponding to the JSON format export and a response format:
Content-Disposition: attachment; filename=<resource_type>_<resource_name>_exportedsheet_CCYY-MM-DD_HH-MM-SS.xlsx
Content-Language:en
Content-Type:application/vnd.openxmlformats-officedocument.spreadsheetml.sheet
For export_format=xlsx, the response is a MS Excel spreadsheet, formatted to show all columns and a response format:
Content-Disposition: attachment; filename=<resource_type>_<resource_name>_exportedsheet_formatted_CCYY-MM-DD_HH-MM-SS.xlsx
Content-Language:en
Content-Type:application/vnd.openxmlformats-officedocument.spreadsheetml.sheet
For export_format=json, the response is a time stamped zip file of data in JSON and a response format:
Content-Disposition: attachment; filename=export_2013-05-17_14:20:19.186444.json.zip
Content-Language:en
Content-Type:application/x-zip
The XLSX format can be used to bulk load instances of data/HcsDpDialPlanSchemaDAT and the JSON format can be used to import instances of data/HcsDpDialPlanSchemaDAT.
For Bulk Export, refer to the Bulk Export section.
| Task | Call | URL | Parameters | Response |
|---|---|---|---|---|
| Get | GET | /api/data/HcsDpDialPlanSchemaDAT/[pkid] | hierarchy=[hierarchy] | The data/HcsDpDialPlanSchemaDAT instance with [pkid]. |
| Task | Call | URL | Parameters | Response |
|---|---|---|---|---|
| Help | GET | /api/data/HcsDpDialPlanSchemaDAT/[pkid]/help | hierarchy=[hierarchy] | The on-line Help for data/HcsDpDialPlanSchemaDAT. |