[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": 70,
"total_limit": null,
"order_by": "name",
"direction": "asc",
"current": "/api/data/HcsDpDialPlanSchemaDAT/?skip=0&limit=3&order_by=name&direction=asc&traversal=fulltree"
},
"operations": [
"add",
"bulk_update_form",
"list",
"update",
"transform",
"migration",
"remove",
"move",
"export",
"help",
"configuration_template",
"field_display_policy",
"get",
"export_bulkload_template"
],
"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": {
"name": "CustomerCallScreening-Feature-V1-SCH",
"description": "Call Screening Feature. Cloned instance version from sys.hcs.",
"partitionArray": [
{
"name": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-BlkIntl-PT",
"description": "Blk IntlCT(01) PT",
"timeSchedule": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-AllDay-TSchd"
},
{
"name": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-BlkNatl-PT",
"description": "Blk NatlCT(02) PT",
"timeSchedule": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-AllDay-TSchd"
},
{
"name": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-BlkMobl-PT",
"description": "Blk MoblCT(03) PT",
"timeSchedule": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-AllDay-TSchd"
},
{
"name": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-BlkSVC-PT",
"description": "Blk SVCCT(05) PT",
"timeSchedule": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-AllDay-TSchd"
},
{
"name": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-BlkPRS-PT",
"description": "Blk PRSCT(07) PT",
"timeSchedule": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-AllDay-TSchd"
},
{
"name": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-BlkFPN-PT",
"description": "Blk FPHNCT(08) PT",
"timeSchedule": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-AllDay-TSchd"
},
{
"name": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-BlkPCS-PT",
"description": "Blk PCSCT(09) PT",
"timeSchedule": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-AllDay-TSchd"
},
{
"name": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-BlkSRS-PT",
"description": "Blk SRSCT(10) PT",
"timeSchedule": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-AllDay-TSchd"
},
{
"name": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-BlkOPR-PT",
"description": "Blk OPRCT(11) PT",
"timeSchedule": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-AllDay-TSchd"
},
{
"name": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-BlkCUST-PT",
"description": "Blk CustCT PT",
"timeSchedule": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-AllDay-TSchd"
},
{
"name": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-BlkAll-PT",
"description": "Blk All PSTN Call PT",
"timeSchedule": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-AllDay-TSchd"
},
{
"name": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-Allowed-PT",
"description": "Allowed PT",
"timeSchedule": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-AllDay-TSchd"
}
],
"cssArray": [
{
"name": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-DummyBlk-CSS",
"description": "Dummy CSS to Handle Blk TP",
"usage": "General",
"isClassOfService": false
}
],
"translationPatternArray": [
{
"pattern": "\\+\\+02.X01!",
"description": "Block International Calls",
"routePartition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-BlkIntl-PT",
"css": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-DummyBlk-CSS",
"useOrigCss": false,
"routeOption": "Block this pattern",
"releaseClause": "Call Rejected",
"provideOutsideDialTone": true,
"urgentPriority": true,
"noWaitInterdigitTimeoutSubseqHops": false,
"nextHopByCallingPtyNum": false,
"useCallingPartyExternalPhoneNumMask": false
},
{
"pattern": "\\+\\+02.X02!",
"description": "Block National Calls",
"routePartition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-BlkNatl-PT",
"css": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-DummyBlk-CSS",
"useOrigCss": false,
"routeOption": "Block this pattern",
"releaseClause": "Call Rejected",
"provideOutsideDialTone": true,
"urgentPriority": true,
"noWaitInterdigitTimeoutSubseqHops": false,
"nextHopByCallingPtyNum": false,
"useCallingPartyExternalPhoneNumMask": false
},
{
"pattern": "\\+\\+02.X03!",
"description": "Block Mobile Calls",
"routePartition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-BlkMobl-PT",
"css": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-DummyBlk-CSS",
"useOrigCss": false,
"routeOption": "Block this pattern",
"releaseClause": "Call Rejected",
"provideOutsideDialTone": true,
"urgentPriority": true,
"noWaitInterdigitTimeoutSubseqHops": false,
"nextHopByCallingPtyNum": false,
"useCallingPartyExternalPhoneNumMask": false
},
{
"pattern": "\\+\\+02.X05!",
"description": "Block Service Calls",
"routePartition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-BlkSVC-PT",
"css": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-DummyBlk-CSS",
"useOrigCss": false,
"routeOption": "Block this pattern",
"releaseClause": "Call Rejected",
"provideOutsideDialTone": true,
"urgentPriority": true,
"noWaitInterdigitTimeoutSubseqHops": false,
"nextHopByCallingPtyNum": false,
"useCallingPartyExternalPhoneNumMask": false
},
{
"pattern": "\\+\\+02.X07!",
"description": "Block Premium Rate Service Calls",
"routePartition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-BlkPRS-PT",
"css": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-DummyBlk-CSS",
"useOrigCss": false,
"routeOption": "Block this pattern",
"releaseClause": "Call Rejected",
"provideOutsideDialTone": true,
"urgentPriority": true,
"noWaitInterdigitTimeoutSubseqHops": false,
"nextHopByCallingPtyNum": false,
"useCallingPartyExternalPhoneNumMask": false
},
{
"pattern": "\\+\\+02.X08!",
"description": "Block FreePhone/TollFree Calls",
"routePartition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-BlkFPN-PT",
"css": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-DummyBlk-CSS",
"useOrigCss": false,
"routeOption": "Block this pattern",
"releaseClause": "Call Rejected",
"provideOutsideDialTone": true,
"urgentPriority": true,
"noWaitInterdigitTimeoutSubseqHops": false,
"nextHopByCallingPtyNum": false,
"useCallingPartyExternalPhoneNumMask": false
},
{
"pattern": "\\+\\+02.X09!",
"description": "Block Personal Comm Service Calls",
"routePartition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-BlkPCS-PT",
"css": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-DummyBlk-CSS",
"useOrigCss": false,
"routeOption": "Block this pattern",
"releaseClause": "Call Rejected",
"provideOutsideDialTone": true,
"urgentPriority": true,
"noWaitInterdigitTimeoutSubseqHops": false,
"nextHopByCallingPtyNum": false,
"useCallingPartyExternalPhoneNumMask": false
},
{
"pattern": "\\+\\+02.X10!",
"description": "Block Special Rate Service Calls",
"routePartition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-BlkSRS-PT",
"css": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-DummyBlk-CSS",
"useOrigCss": false,
"routeOption": "Block this pattern",
"releaseClause": "Call Rejected",
"provideOutsideDialTone": true,
"urgentPriority": true,
"noWaitInterdigitTimeoutSubseqHops": false,
"nextHopByCallingPtyNum": false,
"useCallingPartyExternalPhoneNumMask": false
},
{
"pattern": "\\+\\+02.X11!",
"description": "Block Operator Calls",
"routePartition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-BlkOPR-PT",
"css": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-DummyBlk-CSS",
"useOrigCss": false,
"routeOption": "Block this pattern",
"releaseClause": "Call Rejected",
"provideOutsideDialTone": true,
"urgentPriority": true,
"noWaitInterdigitTimeoutSubseqHops": false,
"nextHopByCallingPtyNum": false,
"useCallingPartyExternalPhoneNumMask": false
},
{
"pattern": "\\+\\+02.X0[1-9]!",
"description": "Block Call Types - 0[1-9]",
"routePartition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-BlkAll-PT",
"css": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-DummyBlk-CSS",
"useOrigCss": false,
"routeOption": "Block this pattern",
"releaseClause": "Call Rejected",
"provideOutsideDialTone": true,
"urgentPriority": true,
"noWaitInterdigitTimeoutSubseqHops": false,
"nextHopByCallingPtyNum": false,
"useCallingPartyExternalPhoneNumMask": false
},
{
"pattern": "\\+\\+02.X1[0-9]!",
"description": "Block Call Types - 1[0-9]",
"routePartition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-BlkAll-PT",
"css": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-DummyBlk-CSS",
"useOrigCss": false,
"routeOption": "Block this pattern",
"releaseClause": "Call Rejected",
"provideOutsideDialTone": true,
"urgentPriority": true,
"noWaitInterdigitTimeoutSubseqHops": false,
"nextHopByCallingPtyNum": false,
"useCallingPartyExternalPhoneNumMask": false
},
{
"pattern": "\\+\\+02.X[^*][^*]!",
"description": "Allowed Calls",
"routePartition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-Allowed-PT",
"useOrigCss": true,
"routeOption": "Route this pattern",
"provideOutsideDialTone": false,
"urgentPriority": true,
"noWaitInterdigitTimeoutSubseqHops": true,
"nextHopByCallingPtyNum": false,
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyDiscardDigits": "PreDot",
"calledPartyPrefixDigits": "++03"
}
],
"pkid": "69efc885e32dcf14ced22675",
"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": {
"unique": [
"name"
],
"hierarchy": true
},
"api_version": "21.2",
"cached": true,
"references": {
"parent": [
{
"pkid": "69efc87de32dcf14ced22487",
"href": "/api/data/HierarchyNode/69efc87de32dcf14ced22487"
}
],
"device": [
{
"href": "",
"pkid": ""
}
],
"foreign_key": [],
"owner": [
{
"pkid": ""
}
],
"self": [
{
"href": "/api/data/HcsDpDialPlanSchemaDAT/69efc885e32dcf14ced22674/",
"pkid": "69efc885e32dcf14ced22674"
}
]
},
"path": [
"6t0ggef2c0deab00hb595101",
"69ee359c62dfd021865bd21d",
"69efc87de32dcf14ced22487",
"69efc885e32dcf14ced22674"
],
"schema_version": "2.0",
"actions": [
{
"update": {
"method": "PUT",
"class": "update",
"href": "/api/data/HcsDpDialPlanSchemaDAT/69efc885e32dcf14ced22674/",
"support_async": true,
"title": "Modify"
}
},
{
"remove": {
"method": "DELETE",
"class": "delete",
"href": "/api/data/HcsDpDialPlanSchemaDAT/69efc885e32dcf14ced22674/",
"support_async": true,
"title": "Delete"
}
},
{
"clone": {
"method": "GET",
"class": "clone",
"href": "/api/data/HcsDpDialPlanSchemaDAT/69efc885e32dcf14ced22674/clone/?schema=&schema_rules=true",
"support_async": false,
"title": "Clone"
}
},
{
"export": {
"method": "GET",
"class": "export",
"href": "/api/data/HcsDpDialPlanSchemaDAT/69efc885e32dcf14ced22674/export/",
"support_async": false,
"title": "Export",
"view": "/api/view/ExportData/add/",
"submit": "payload"
}
},
{
"get": {
"method": "GET",
"class": "get",
"href": "/api/data/HcsDpDialPlanSchemaDAT/69efc885e32dcf14ced22674/",
"support_async": false,
"title": "Get"
}
},
{
"help": {
"method": "GET",
"class": "help",
"href": "/api/data/HcsDpDialPlanSchemaDAT/69efc885e32dcf14ced22674/help",
"support_async": false,
"title": "Help"
}
}
],
"summary": "false"
},
"pkid": "69efc885e32dcf14ced22674"
},
{
"data": {
"name": "CustomerCallScreening-Feature-V1-SCH",
"description": "Call Screening Feature",
"partitionArray": [
{
"name": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-BlkIntl-PT",
"description": "Blk IntlCT(01) PT",
"timeSchedule": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-AllDay-TSchd"
},
{
"name": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-BlkNatl-PT",
"description": "Blk NatlCT(02) PT",
"timeSchedule": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-AllDay-TSchd"
},
{
"name": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-BlkMobl-PT",
"description": "Blk MoblCT(03) PT",
"timeSchedule": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-AllDay-TSchd"
},
{
"name": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-BlkSVC-PT",
"description": "Blk SVCCT(05) PT",
"timeSchedule": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-AllDay-TSchd"
},
{
"name": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-BlkPRS-PT",
"description": "Blk PRSCT(07) PT",
"timeSchedule": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-AllDay-TSchd"
},
{
"name": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-BlkFPN-PT",
"description": "Blk FPHNCT(08) PT",
"timeSchedule": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-AllDay-TSchd"
},
{
"name": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-BlkPCS-PT",
"description": "Blk PCSCT(09) PT",
"timeSchedule": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-AllDay-TSchd"
},
{
"name": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-BlkSRS-PT",
"description": "Blk SRSCT(10) PT",
"timeSchedule": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-AllDay-TSchd"
},
{
"name": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-BlkOPR-PT",
"description": "Blk OPRCT(11) PT",
"timeSchedule": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-AllDay-TSchd"
},
{
"name": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-BlkCUST-PT",
"description": "Blk CustCT PT",
"timeSchedule": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-AllDay-TSchd"
},
{
"name": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-BlkAll-PT",
"description": "Blk All PSTN Call PT",
"timeSchedule": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-AllDay-TSchd"
},
{
"name": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-Allowed-PT",
"description": "Allowed PT",
"timeSchedule": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-AllDay-TSchd"
}
],
"cssArray": [
{
"name": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-DummyBlk-CSS",
"description": "Dummy CSS to Handle Blk TP",
"usage": "General",
"isClassOfService": false
}
],
"translationPatternArray": [
{
"pattern": "\\+\\+02.X01!",
"description": "Block International Calls",
"routePartition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-BlkIntl-PT",
"css": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-DummyBlk-CSS",
"useOrigCss": false,
"routeOption": "Block this pattern",
"releaseClause": "Call Rejected",
"provideOutsideDialTone": true,
"urgentPriority": true,
"noWaitInterdigitTimeoutSubseqHops": false,
"nextHopByCallingPtyNum": false,
"useCallingPartyExternalPhoneNumMask": false
},
{
"pattern": "\\+\\+02.X02!",
"description": "Block National Calls",
"routePartition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-BlkNatl-PT",
"css": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-DummyBlk-CSS",
"useOrigCss": false,
"routeOption": "Block this pattern",
"releaseClause": "Call Rejected",
"provideOutsideDialTone": true,
"urgentPriority": true,
"noWaitInterdigitTimeoutSubseqHops": false,
"nextHopByCallingPtyNum": false,
"useCallingPartyExternalPhoneNumMask": false
},
{
"pattern": "\\+\\+02.X03!",
"description": "Block Mobile Calls",
"routePartition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-BlkMobl-PT",
"css": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-DummyBlk-CSS",
"useOrigCss": false,
"routeOption": "Block this pattern",
"releaseClause": "Call Rejected",
"provideOutsideDialTone": true,
"urgentPriority": true,
"noWaitInterdigitTimeoutSubseqHops": false,
"nextHopByCallingPtyNum": false,
"useCallingPartyExternalPhoneNumMask": false
},
{
"pattern": "\\+\\+02.X05!",
"description": "Block Service Calls",
"routePartition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-BlkSVC-PT",
"css": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-DummyBlk-CSS",
"useOrigCss": false,
"routeOption": "Block this pattern",
"releaseClause": "Call Rejected",
"provideOutsideDialTone": true,
"urgentPriority": true,
"noWaitInterdigitTimeoutSubseqHops": false,
"nextHopByCallingPtyNum": false,
"useCallingPartyExternalPhoneNumMask": false
},
{
"pattern": "\\+\\+02.X07!",
"description": "Block Premium Rate Service Calls",
"routePartition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-BlkPRS-PT",
"css": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-DummyBlk-CSS",
"useOrigCss": false,
"routeOption": "Block this pattern",
"releaseClause": "Call Rejected",
"provideOutsideDialTone": true,
"urgentPriority": true,
"noWaitInterdigitTimeoutSubseqHops": false,
"nextHopByCallingPtyNum": false,
"useCallingPartyExternalPhoneNumMask": false
},
{
"pattern": "\\+\\+02.X08!",
"description": "Block FreePhone/TollFree Calls",
"routePartition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-BlkFPN-PT",
"css": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-DummyBlk-CSS",
"useOrigCss": false,
"routeOption": "Block this pattern",
"releaseClause": "Call Rejected",
"provideOutsideDialTone": true,
"urgentPriority": true,
"noWaitInterdigitTimeoutSubseqHops": false,
"nextHopByCallingPtyNum": false,
"useCallingPartyExternalPhoneNumMask": false
},
{
"pattern": "\\+\\+02.X09!",
"description": "Block Personal Comm Service Calls",
"routePartition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-BlkPCS-PT",
"css": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-DummyBlk-CSS",
"useOrigCss": false,
"routeOption": "Block this pattern",
"releaseClause": "Call Rejected",
"provideOutsideDialTone": true,
"urgentPriority": true,
"noWaitInterdigitTimeoutSubseqHops": false,
"nextHopByCallingPtyNum": false,
"useCallingPartyExternalPhoneNumMask": false
},
{
"pattern": "\\+\\+02.X10!",
"description": "Block Special Rate Service Calls",
"routePartition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-BlkSRS-PT",
"css": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-DummyBlk-CSS",
"useOrigCss": false,
"routeOption": "Block this pattern",
"releaseClause": "Call Rejected",
"provideOutsideDialTone": true,
"urgentPriority": true,
"noWaitInterdigitTimeoutSubseqHops": false,
"nextHopByCallingPtyNum": false,
"useCallingPartyExternalPhoneNumMask": false
},
{
"pattern": "\\+\\+02.X11!",
"description": "Block Operator Calls",
"routePartition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-BlkOPR-PT",
"css": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-DummyBlk-CSS",
"useOrigCss": false,
"routeOption": "Block this pattern",
"releaseClause": "Call Rejected",
"provideOutsideDialTone": true,
"urgentPriority": true,
"noWaitInterdigitTimeoutSubseqHops": false,
"nextHopByCallingPtyNum": false,
"useCallingPartyExternalPhoneNumMask": false
},
{
"pattern": "\\+\\+02.X0[1-9]!",
"description": "Block Call Types - 0[1-9]",
"routePartition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-BlkAll-PT",
"css": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-DummyBlk-CSS",
"useOrigCss": false,
"routeOption": "Block this pattern",
"releaseClause": "Call Rejected",
"provideOutsideDialTone": true,
"urgentPriority": true,
"noWaitInterdigitTimeoutSubseqHops": false,
"nextHopByCallingPtyNum": false,
"useCallingPartyExternalPhoneNumMask": false
},
{
"pattern": "\\+\\+02.X1[0-9]!",
"description": "Block Call Types - 1[0-9]",
"routePartition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-BlkAll-PT",
"css": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-DummyBlk-CSS",
"useOrigCss": false,
"routeOption": "Block this pattern",
"releaseClause": "Call Rejected",
"provideOutsideDialTone": true,
"urgentPriority": true,
"noWaitInterdigitTimeoutSubseqHops": false,
"nextHopByCallingPtyNum": false,
"useCallingPartyExternalPhoneNumMask": false
},
{
"pattern": "\\+\\+02.X[^*][^*]!",
"description": "Allowed Calls",
"routePartition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-Allowed-PT",
"useOrigCss": true,
"routeOption": "Route this pattern",
"provideOutsideDialTone": false,
"urgentPriority": true,
"noWaitInterdigitTimeoutSubseqHops": true,
"nextHopByCallingPtyNum": false,
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyDiscardDigits": "PreDot",
"calledPartyPrefixDigits": "++03"
}
],
"pkid": "69ee3a2562dfd021865c5612",
"hierarchy_friendly_name": "hcs (Hcs)",
"hierarchy_path": "sys.hcs"
},
"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": [
"HcsDialPlanFeatureSchema",
"V4UC",
"ba_CommonOverlay"
],
"title": "title format",
"business_key": {
"unique": [
"name"
],
"hierarchy": true
},
"api_version": "21.2",
"cached": true,
"references": {
"parent": [
{
"pkid": "69ee359c62dfd021865bd21d",
"href": "/api/data/HierarchyNode/69ee359c62dfd021865bd21d"
}
],
"device": [
{
"href": "",
"pkid": ""
}
],
"foreign_key": [],
"owner": [
{
"pkid": ""
}
],
"self": [
{
"href": "/api/data/HcsDpDialPlanSchemaDAT/69ee3a2562dfd021865c5611/",
"pkid": "69ee3a2562dfd021865c5611"
}
]
},
"path": [
"6t0ggef2c0deab00hb595101",
"69ee359c62dfd021865bd21d",
"69ee3a2562dfd021865c5611"
],
"schema_version": "2.0",
"actions": [
{
"update": {
"method": "PUT",
"class": "update",
"href": "/api/data/HcsDpDialPlanSchemaDAT/69ee3a2562dfd021865c5611/",
"support_async": true,
"title": "Modify"
}
},
{
"remove": {
"method": "DELETE",
"class": "delete",
"href": "/api/data/HcsDpDialPlanSchemaDAT/69ee3a2562dfd021865c5611/",
"support_async": true,
"title": "Delete"
}
},
{
"clone": {
"method": "GET",
"class": "clone",
"href": "/api/data/HcsDpDialPlanSchemaDAT/69ee3a2562dfd021865c5611/clone/?schema=&schema_rules=true",
"support_async": false,
"title": "Clone"
}
},
{
"export": {
"method": "GET",
"class": "export",
"href": "/api/data/HcsDpDialPlanSchemaDAT/69ee3a2562dfd021865c5611/export/",
"support_async": false,
"title": "Export",
"view": "/api/view/ExportData/add/",
"submit": "payload"
}
},
{
"get": {
"method": "GET",
"class": "get",
"href": "/api/data/HcsDpDialPlanSchemaDAT/69ee3a2562dfd021865c5611/",
"support_async": false,
"title": "Get"
}
},
{
"help": {
"method": "GET",
"class": "help",
"href": "/api/data/HcsDpDialPlanSchemaDAT/69ee3a2562dfd021865c5611/help",
"support_async": false,
"title": "Help"
}
}
],
"summary": "false"
},
"pkid": "69ee3a2562dfd021865c5611"
},
{
"data": {
"name": "CustomerFONet-Feature-V2-SCH",
"description": "per Customer Forced OnNet Feature",
"partitionArray": [
{
"name": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-FONet-PT",
"description": "Forced OnNet Feature PT",
"timeSchedule": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-AllDay-TSchd"
},
{
"name": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-noFONet-PT",
"description": "No Forced OnNet Feature PT",
"timeSchedule": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-AllDay-TSchd"
},
{
"name": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-dFONetIntl-PT",
"description": "dFONet Intl PT",
"timeSchedule": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-AllDay-TSchd"
},
{
"name": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-cFONetIntl-PT",
"description": "cFONet Intl PT",
"timeSchedule": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-AllDay-TSchd"
},
{
"name": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-tFONetIntl-PT",
"description": "tFONet Intl PT",
"timeSchedule": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-AllDay-TSchd"
},
{
"name": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-dFONetNatl-PT",
"description": "dFONet Natl PT",
"timeSchedule": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-AllDay-TSchd"
},
{
"name": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-cFONetNatl-PT",
"description": "cFONet Natl PT",
"timeSchedule": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-AllDay-TSchd"
},
{
"name": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-tFONetNatl-PT",
"description": "tFONet Natl PT",
"timeSchedule": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-AllDay-TSchd"
},
{
"name": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-dFONetMobl-PT",
"description": "dFONet Mobl PT",
"timeSchedule": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-AllDay-TSchd"
},
{
"name": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-cFONetMobl-PT",
"description": "cFONet Mobl PT",
"timeSchedule": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-AllDay-TSchd"
},
{
"name": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-tFONetMobl-PT",
"description": "tFONet Mobl PT",
"timeSchedule": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-AllDay-TSchd"
},
{
"name": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-dFONetLocal-PT",
"description": "dFONet Local PT",
"timeSchedule": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-AllDay-TSchd"
},
{
"name": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-cFONetLocal-PT",
"description": "cFONet Local PT",
"timeSchedule": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-AllDay-TSchd"
},
{
"name": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-tFONetLocal-PT",
"description": "tFONet Local PT",
"timeSchedule": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-AllDay-TSchd"
},
{
"name": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-dFONetPCSN-PT",
"description": "dFONet PCSN PT",
"timeSchedule": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-AllDay-TSchd"
},
{
"name": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-cFONetPCSN-PT",
"description": "cFONet PCSN PT",
"timeSchedule": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-AllDay-TSchd"
},
{
"name": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-tFONetPCSN-PT",
"description": "tFONet PCSN PT",
"timeSchedule": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-AllDay-TSchd"
}
],
"cssArray": [
{
"name": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-dFONetIntl-CSS",
"description": "dFONet Intl CSS",
"usage": "General",
"isClassOfService": false,
"partitionMembers": [
{
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-E164LookUp-PT",
"index": "1"
},
{
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-dFONetIntl-PT",
"index": "2"
}
]
},
{
"name": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-cFONetIntl-CSS",
"description": "cFONet Intl CSS",
"usage": "General",
"isClassOfService": false,
"partitionMembers": [
{
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-E164LookUp-PT",
"index": "1"
},
{
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-cFONetIntl-PT",
"index": "2"
}
]
},
{
"name": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-tFONetIntl-CSS",
"description": "tFONet Intl CSS",
"usage": "General",
"isClassOfService": false,
"partitionMembers": [
{
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-E164LookUp-PT",
"index": "1"
},
{
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-tFONetIntl-PT",
"index": "2"
}
]
},
{
"name": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-dFONetNatl-CSS",
"description": "dFONet Natl CSS",
"usage": "General",
"isClassOfService": false,
"partitionMembers": [
{
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-E164LookUp-PT",
"index": "1"
},
{
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-dFONetNatl-PT",
"index": "2"
}
]
},
{
"name": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-cFONetNatl-CSS",
"description": "cFONet Natl CSS",
"usage": "General",
"isClassOfService": false,
"partitionMembers": [
{
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-E164LookUp-PT",
"index": "1"
},
{
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-cFONetNatl-PT",
"index": "2"
}
]
},
{
"name": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-tFONetNatl-CSS",
"description": "tFONet Natl CSS",
"usage": "General",
"isClassOfService": false,
"partitionMembers": [
{
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-E164LookUp-PT",
"index": "1"
},
{
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-tFONetNatl-PT",
"index": "2"
}
]
},
{
"name": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-dFONetMobl-CSS",
"description": "dFONet Mobl CSS",
"usage": "General",
"isClassOfService": false,
"partitionMembers": [
{
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-E164LookUp-PT",
"index": "1"
},
{
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-dFONetMobl-PT",
"index": "2"
}
]
},
{
"name": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-cFONetMobl-CSS",
"description": "cFONet Mobl CSS",
"usage": "General",
"isClassOfService": false,
"partitionMembers": [
{
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-E164LookUp-PT",
"index": "1"
},
{
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-cFONetMobl-PT",
"index": "2"
}
]
},
{
"name": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-tFONetMobl-CSS",
"description": "tFONet Mobl CSS",
"usage": "General",
"isClassOfService": false,
"partitionMembers": [
{
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-E164LookUp-PT",
"index": "1"
},
{
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-tFONetMobl-PT",
"index": "2"
}
]
},
{
"name": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-dFONetLocal-CSS",
"description": "dFONet Local CSS",
"usage": "General",
"isClassOfService": false,
"partitionMembers": [
{
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-E164LookUp-PT",
"index": "1"
},
{
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-dFONetLocal-PT",
"index": "2"
}
]
},
{
"name": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-cFONetLocal-CSS",
"description": "cFONet Local CSS",
"usage": "General",
"isClassOfService": false,
"partitionMembers": [
{
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-E164LookUp-PT",
"index": "1"
},
{
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-cFONetLocal-PT",
"index": "2"
}
]
},
{
"name": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-tFONetLocal-CSS",
"description": "tFONet Local CSS",
"usage": "General",
"isClassOfService": false,
"partitionMembers": [
{
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-E164LookUp-PT",
"index": "1"
},
{
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-tFONetLocal-PT",
"index": "2"
}
]
},
{
"name": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-dFONetPCSN-CSS",
"description": "dFONet PCSN CSS",
"usage": "General",
"isClassOfService": false,
"partitionMembers": [
{
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-E164LookUp-PT",
"index": "1"
},
{
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-dFONetPCSN-PT",
"index": "2"
}
]
},
{
"name": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-cFONetPCSN-CSS",
"description": "cFONet PCSN CSS",
"usage": "General",
"isClassOfService": false,
"partitionMembers": [
{
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-E164LookUp-PT",
"index": "1"
},
{
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-cFONetPCSN-PT",
"index": "2"
}
]
},
{
"name": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-tFONetPCSN-CSS",
"description": "tFONet PCSN CSS",
"usage": "General",
"isClassOfService": false,
"partitionMembers": [
{
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-E164LookUp-PT",
"index": "1"
},
{
"partition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-tFONetPCSN-PT",
"index": "2"
}
]
}
],
"translationPatternArray": [
{
"pattern": "**004!",
"description": "Stop 2nd Stg EmerNum being Dailled",
"routePartition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-noFONet-PT",
"css": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-ANumAnaly-CSS",
"useOrigCss": false,
"routeOption": "Block this pattern",
"releaseClause": "Call Rejected",
"provideOutsideDialTone": false,
"urgentPriority": true,
"noWaitInterdigitTimeoutSubseqHops": true,
"nextHopByCallingPtyNum": false,
"useCallingPartyExternalPhoneNumMask": false
},
{
"pattern": "\\+\\+01.X0[1-9]!",
"description": "Handle No FONet",
"routePartition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-noFONet-PT",
"useOrigCss": true,
"routeOption": "Route this pattern",
"provideOutsideDialTone": false,
"urgentPriority": true,
"noWaitInterdigitTimeoutSubseqHops": true,
"nextHopByCallingPtyNum": false,
"useCallingPartyExternalPhoneNumMask": false,
"callingPartyPrefixDigits": "+*+*",
"calledPartyDiscardDigits": "PreDot",
"calledPartyPrefixDigits": "++02"
},
{
"pattern": "\\+\\+01.X1[01]!",
"description": "Handle No FONet",
"routePartition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-noFONet-PT",
"useOrigCss": true,
"routeOption": "Route this pattern",
"provideOutsideDialTone": false,
"urgentPriority": true,
"noWaitInterdigitTimeoutSubseqHops": true,
"nextHopByCallingPtyNum": false,
"useCallingPartyExternalPhoneNumMask": false,
"callingPartyPrefixDigits": "+*+*",
"calledPartyDiscardDigits": "PreDot",
"calledPartyPrefixDigits": "++02"
},
{
"pattern": "**004!",
"description": "Stop 2nd Stg EmerNum being Dailled",
"routePartition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-FONet-PT",
"css": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-ANumAnaly-CSS",
"useOrigCss": false,
"routeOption": "Block this pattern",
"releaseClause": "Call Rejected",
"provideOutsideDialTone": false,
"urgentPriority": true,
"noWaitInterdigitTimeoutSubseqHops": true,
"nextHopByCallingPtyNum": false,
"useCallingPartyExternalPhoneNumMask": false
},
{
"pattern": "\\+\\+01.X0[^12369]!",
"description": "Handle FONet",
"routePartition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-FONet-PT",
"useOrigCss": true,
"routeOption": "Route this pattern",
"provideOutsideDialTone": false,
"urgentPriority": true,
"noWaitInterdigitTimeoutSubseqHops": true,
"nextHopByCallingPtyNum": false,
"useCallingPartyExternalPhoneNumMask": false,
"callingPartyPrefixDigits": "+*+*",
"calledPartyDiscardDigits": "PreDot",
"calledPartyPrefixDigits": "++02"
},
{
"pattern": "\\+\\+01.X1[01]!",
"description": "Handle FONet",
"routePartition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-FONet-PT",
"useOrigCss": true,
"routeOption": "Route this pattern",
"provideOutsideDialTone": false,
"urgentPriority": true,
"noWaitInterdigitTimeoutSubseqHops": true,
"nextHopByCallingPtyNum": false,
"useCallingPartyExternalPhoneNumMask": false,
"callingPartyPrefixDigits": "+*+*",
"calledPartyDiscardDigits": "PreDot",
"calledPartyPrefixDigits": "++02"
},
{
"pattern": "\\+\\+01001.!",
"description": "Handle FONet Intl CT - Default",
"routePartition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-FONet-PT",
"css": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-dFONetIntl-CSS",
"useOrigCss": false,
"routeOption": "Route this pattern",
"provideOutsideDialTone": false,
"urgentPriority": true,
"noWaitInterdigitTimeoutSubseqHops": true,
"nextHopByCallingPtyNum": false,
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyDiscardDigits": "PreDot",
"calledPartyPrefixDigits": "+"
},
{
"pattern": "\\+\\+01101.!",
"description": "Handle FONet Intl CT - per call CLIP-R",
"routePartition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-FONet-PT",
"css": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-cFONetIntl-CSS",
"useOrigCss": false,
"routeOption": "Route this pattern",
"provideOutsideDialTone": false,
"urgentPriority": true,
"noWaitInterdigitTimeoutSubseqHops": true,
"nextHopByCallingPtyNum": false,
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyDiscardDigits": "PreDot",
"calledPartyPrefixDigits": "+"
},
{
"pattern": "\\+\\+01201.!",
"description": "Handle FONet Intl CT - per call Toggle",
"routePartition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-FONet-PT",
"css": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-tFONetIntl-CSS",
"useOrigCss": false,
"routeOption": "Route this pattern",
"provideOutsideDialTone": false,
"urgentPriority": true,
"noWaitInterdigitTimeoutSubseqHops": true,
"nextHopByCallingPtyNum": false,
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyDiscardDigits": "PreDot",
"calledPartyPrefixDigits": "+"
},
{
"pattern": "\\+\\+01002.!",
"description": "Handle FONet Natl CT - Default",
"routePartition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-FONet-PT",
"css": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-dFONetNatl-CSS",
"useOrigCss": false,
"routeOption": "Route this pattern",
"provideOutsideDialTone": false,
"urgentPriority": true,
"noWaitInterdigitTimeoutSubseqHops": true,
"nextHopByCallingPtyNum": false,
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyDiscardDigits": "PreDot",
"calledPartyPrefixDigits": "+"
},
{
"pattern": "\\+\\+01102.!",
"description": "Handle FONet Natl CT - per call CLIP-R",
"routePartition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-FONet-PT",
"css": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-cFONetNatl-CSS",
"useOrigCss": false,
"routeOption": "Route this pattern",
"provideOutsideDialTone": false,
"urgentPriority": true,
"noWaitInterdigitTimeoutSubseqHops": true,
"nextHopByCallingPtyNum": false,
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyDiscardDigits": "PreDot",
"calledPartyPrefixDigits": "+"
},
{
"pattern": "\\+\\+01202.!",
"description": "Handle FONet Natl CT - per call Toggle",
"routePartition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-FONet-PT",
"css": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-tFONetNatl-CSS",
"useOrigCss": false,
"routeOption": "Route this pattern",
"provideOutsideDialTone": false,
"urgentPriority": true,
"noWaitInterdigitTimeoutSubseqHops": true,
"nextHopByCallingPtyNum": false,
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyDiscardDigits": "PreDot",
"calledPartyPrefixDigits": "+"
},
{
"pattern": "\\+\\+01003.!",
"description": "Handle FONet Mobl CT - Default",
"routePartition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-FONet-PT",
"css": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-dFONetMobl-CSS",
"useOrigCss": false,
"routeOption": "Route this pattern",
"provideOutsideDialTone": false,
"urgentPriority": true,
"noWaitInterdigitTimeoutSubseqHops": true,
"nextHopByCallingPtyNum": false,
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyDiscardDigits": "PreDot",
"calledPartyPrefixDigits": "+"
},
{
"pattern": "\\+\\+01103.!",
"description": "Handle FONet Mobl CT - per call CLIP-R",
"routePartition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-FONet-PT",
"css": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-cFONetMobl-CSS",
"useOrigCss": false,
"routeOption": "Route this pattern",
"provideOutsideDialTone": false,
"urgentPriority": true,
"noWaitInterdigitTimeoutSubseqHops": true,
"nextHopByCallingPtyNum": false,
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyDiscardDigits": "PreDot",
"calledPartyPrefixDigits": "+"
},
{
"pattern": "\\+\\+01203.!",
"description": "Handle FONet Mobl CT - per call Toggle",
"routePartition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-FONet-PT",
"css": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-tFONetMobl-CSS",
"useOrigCss": false,
"routeOption": "Route this pattern",
"provideOutsideDialTone": false,
"urgentPriority": true,
"noWaitInterdigitTimeoutSubseqHops": true,
"nextHopByCallingPtyNum": false,
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyDiscardDigits": "PreDot",
"calledPartyPrefixDigits": "+"
},
{
"pattern": "\\+\\+01006.!",
"description": "Handle FONet Local CT - Default",
"routePartition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-FONet-PT",
"css": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-dFONetLocal-CSS",
"useOrigCss": false,
"routeOption": "Route this pattern",
"provideOutsideDialTone": false,
"urgentPriority": true,
"noWaitInterdigitTimeoutSubseqHops": true,
"nextHopByCallingPtyNum": false,
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyDiscardDigits": "PreDot",
"calledPartyPrefixDigits": "+"
},
{
"pattern": "\\+\\+01106.!",
"description": "Handle FONet Local CT - per call CLIR-R",
"routePartition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-FONet-PT",
"css": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-cFONetLocal-CSS",
"useOrigCss": false,
"routeOption": "Route this pattern",
"provideOutsideDialTone": false,
"urgentPriority": true,
"noWaitInterdigitTimeoutSubseqHops": true,
"nextHopByCallingPtyNum": false,
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyDiscardDigits": "PreDot",
"calledPartyPrefixDigits": "+"
},
{
"pattern": "\\+\\+01206.!",
"description": "Handle FONet Local CT - per call Toggle",
"routePartition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-FONet-PT",
"css": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-tFONetLocal-CSS",
"useOrigCss": false,
"routeOption": "Route this pattern",
"provideOutsideDialTone": false,
"urgentPriority": true,
"noWaitInterdigitTimeoutSubseqHops": true,
"nextHopByCallingPtyNum": false,
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyDiscardDigits": "PreDot",
"calledPartyPrefixDigits": "+"
},
{
"pattern": "\\+\\+01009.!",
"description": "Handle FONet PCS CT - Default",
"routePartition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-FONet-PT",
"css": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-dFONetPCSN-CSS",
"useOrigCss": false,
"routeOption": "Route this pattern",
"provideOutsideDialTone": false,
"urgentPriority": true,
"noWaitInterdigitTimeoutSubseqHops": true,
"nextHopByCallingPtyNum": false,
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyDiscardDigits": "PreDot",
"calledPartyPrefixDigits": "+"
},
{
"pattern": "\\+\\+01109.!",
"description": "Handle FONet PCS CT - per call CLIP-R",
"routePartition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-FONet-PT",
"css": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-cFONetPCSN-CSS",
"useOrigCss": false,
"routeOption": "Route this pattern",
"provideOutsideDialTone": false,
"urgentPriority": true,
"noWaitInterdigitTimeoutSubseqHops": true,
"nextHopByCallingPtyNum": false,
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyDiscardDigits": "PreDot",
"calledPartyPrefixDigits": "+"
},
{
"pattern": "\\+\\+01209.!",
"description": "Handle FONet PCS CT - per call Toggle",
"routePartition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-FONet-PT",
"css": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-tFONetPCSN-CSS",
"useOrigCss": false,
"routeOption": "Route this pattern",
"provideOutsideDialTone": false,
"urgentPriority": true,
"noWaitInterdigitTimeoutSubseqHops": true,
"nextHopByCallingPtyNum": false,
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyDiscardDigits": "PreDot",
"calledPartyPrefixDigits": "+"
},
{
"pattern": "\\+.!",
"description": "Handle FONet Intl CT - Default",
"routePartition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-dFONetIntl-PT",
"useOrigCss": true,
"routeOption": "Route this pattern",
"provideOutsideDialTone": false,
"urgentPriority": true,
"noWaitInterdigitTimeoutSubseqHops": true,
"nextHopByCallingPtyNum": false,
"useCallingPartyExternalPhoneNumMask": false,
"callingPartyPrefixDigits": "+*+*",
"calledPartyDiscardDigits": "PreDot",
"calledPartyPrefixDigits": "++02001"
},
{
"pattern": "\\+.!",
"description": "Handle FONet Intl CT - per call CLIP-R",
"routePartition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-cFONetIntl-PT",
"useOrigCss": true,
"routeOption": "Route this pattern",
"provideOutsideDialTone": false,
"urgentPriority": true,
"noWaitInterdigitTimeoutSubseqHops": true,
"nextHopByCallingPtyNum": false,
"useCallingPartyExternalPhoneNumMask": false,
"callingPartyPrefixDigits": "+*+*",
"calledPartyDiscardDigits": "PreDot",
"calledPartyPrefixDigits": "++02101"
},
{
"pattern": "\\+.!",
"description": "Handle FONet Intl CT - per call Toggle",
"routePartition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-tFONetIntl-PT",
"useOrigCss": true,
"routeOption": "Route this pattern",
"provideOutsideDialTone": false,
"urgentPriority": true,
"noWaitInterdigitTimeoutSubseqHops": true,
"nextHopByCallingPtyNum": false,
"useCallingPartyExternalPhoneNumMask": false,
"callingPartyPrefixDigits": "+*+*",
"calledPartyDiscardDigits": "PreDot",
"calledPartyPrefixDigits": "++02201"
},
{
"pattern": "\\+.!",
"description": "Handle FONet Natl CT - Default",
"routePartition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-dFONetNatl-PT",
"useOrigCss": true,
"routeOption": "Route this pattern",
"provideOutsideDialTone": false,
"urgentPriority": true,
"noWaitInterdigitTimeoutSubseqHops": true,
"nextHopByCallingPtyNum": false,
"useCallingPartyExternalPhoneNumMask": false,
"callingPartyPrefixDigits": "+*+*",
"calledPartyDiscardDigits": "PreDot",
"calledPartyPrefixDigits": "++02002"
},
{
"pattern": "\\+.!",
"description": "Handle FONet Natl CT - per call CLIP-R",
"routePartition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-cFONetNatl-PT",
"useOrigCss": true,
"routeOption": "Route this pattern",
"provideOutsideDialTone": false,
"urgentPriority": true,
"noWaitInterdigitTimeoutSubseqHops": true,
"nextHopByCallingPtyNum": false,
"useCallingPartyExternalPhoneNumMask": false,
"callingPartyPrefixDigits": "+*+*",
"calledPartyDiscardDigits": "PreDot",
"calledPartyPrefixDigits": "++02102"
},
{
"pattern": "\\+.!",
"description": "Handle FONet Natl CT - per call Toggle",
"routePartition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-tFONetNatl-PT",
"useOrigCss": true,
"routeOption": "Route this pattern",
"provideOutsideDialTone": false,
"urgentPriority": true,
"noWaitInterdigitTimeoutSubseqHops": true,
"nextHopByCallingPtyNum": false,
"useCallingPartyExternalPhoneNumMask": false,
"callingPartyPrefixDigits": "+*+*",
"calledPartyDiscardDigits": "PreDot",
"calledPartyPrefixDigits": "++02202"
},
{
"pattern": "\\+.!",
"description": "Handle FONet Mobl CT -Default",
"routePartition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-dFONetMobl-PT",
"useOrigCss": true,
"routeOption": "Route this pattern",
"provideOutsideDialTone": false,
"urgentPriority": true,
"noWaitInterdigitTimeoutSubseqHops": true,
"nextHopByCallingPtyNum": false,
"useCallingPartyExternalPhoneNumMask": false,
"callingPartyPrefixDigits": "+*+*",
"calledPartyDiscardDigits": "PreDot",
"calledPartyPrefixDigits": "++02003"
},
{
"pattern": "\\+.!",
"description": "Handle FONet Mobl CT - per call CLIP-R",
"routePartition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-cFONetMobl-PT",
"useOrigCss": true,
"routeOption": "Route this pattern",
"provideOutsideDialTone": false,
"urgentPriority": true,
"noWaitInterdigitTimeoutSubseqHops": true,
"nextHopByCallingPtyNum": false,
"useCallingPartyExternalPhoneNumMask": false,
"callingPartyPrefixDigits": "+*+*",
"calledPartyDiscardDigits": "PreDot",
"calledPartyPrefixDigits": "++02103"
},
{
"pattern": "\\+.!",
"description": "Handle FONet Mobl CT - per call Toggle",
"routePartition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-tFONetMobl-PT",
"useOrigCss": true,
"routeOption": "Route this pattern",
"provideOutsideDialTone": false,
"urgentPriority": true,
"noWaitInterdigitTimeoutSubseqHops": true,
"nextHopByCallingPtyNum": false,
"useCallingPartyExternalPhoneNumMask": false,
"callingPartyPrefixDigits": "+*+*",
"calledPartyDiscardDigits": "PreDot",
"calledPartyPrefixDigits": "++02203"
},
{
"pattern": "\\+.!",
"description": "Handle FONet Local CT - Default",
"routePartition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-dFONetLocal-PT",
"useOrigCss": true,
"routeOption": "Route this pattern",
"provideOutsideDialTone": false,
"urgentPriority": true,
"noWaitInterdigitTimeoutSubseqHops": true,
"nextHopByCallingPtyNum": false,
"useCallingPartyExternalPhoneNumMask": false,
"callingPartyPrefixDigits": "+*+*",
"calledPartyDiscardDigits": "PreDot",
"calledPartyPrefixDigits": "++02006"
},
{
"pattern": "\\+.!",
"description": "Handle FONet Local CT - per call CLIP-R",
"routePartition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-cFONetLocal-PT",
"useOrigCss": true,
"routeOption": "Route this pattern",
"provideOutsideDialTone": false,
"urgentPriority": true,
"noWaitInterdigitTimeoutSubseqHops": true,
"nextHopByCallingPtyNum": false,
"useCallingPartyExternalPhoneNumMask": false,
"callingPartyPrefixDigits": "+*+*",
"calledPartyDiscardDigits": "PreDot",
"calledPartyPrefixDigits": "++02106"
},
{
"pattern": "\\+.!",
"description": "Handle FONet Local CT - per call Toggle",
"routePartition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-tFONetLocal-PT",
"useOrigCss": true,
"routeOption": "Route this pattern",
"provideOutsideDialTone": false,
"urgentPriority": true,
"noWaitInterdigitTimeoutSubseqHops": true,
"nextHopByCallingPtyNum": false,
"useCallingPartyExternalPhoneNumMask": false,
"callingPartyPrefixDigits": "+*+*",
"calledPartyDiscardDigits": "PreDot",
"calledPartyPrefixDigits": "++02206"
},
{
"pattern": "\\+.!",
"description": "Handle FONet PCS CT - Default",
"routePartition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-dFONetPCSN-PT",
"useOrigCss": true,
"routeOption": "Route this pattern",
"provideOutsideDialTone": false,
"urgentPriority": true,
"noWaitInterdigitTimeoutSubseqHops": true,
"nextHopByCallingPtyNum": false,
"useCallingPartyExternalPhoneNumMask": false,
"callingPartyPrefixDigits": "+*+*",
"calledPartyDiscardDigits": "PreDot",
"calledPartyPrefixDigits": "++02009"
},
{
"pattern": "\\+.!",
"description": "Handle FONet PCS CT - per call CLIP-R",
"routePartition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-cFONetPCSN-PT",
"useOrigCss": true,
"routeOption": "Route this pattern",
"provideOutsideDialTone": false,
"urgentPriority": true,
"noWaitInterdigitTimeoutSubseqHops": true,
"nextHopByCallingPtyNum": false,
"useCallingPartyExternalPhoneNumMask": false,
"callingPartyPrefixDigits": "+*+*",
"calledPartyDiscardDigits": "PreDot",
"calledPartyPrefixDigits": "++02109"
},
{
"pattern": "\\+.!",
"description": "Handle FONet PCS CT - per call Toggle",
"routePartition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-tFONetPCSN-PT",
"useOrigCss": true,
"routeOption": "Route this pattern",
"provideOutsideDialTone": false,
"urgentPriority": true,
"noWaitInterdigitTimeoutSubseqHops": true,
"nextHopByCallingPtyNum": false,
"useCallingPartyExternalPhoneNumMask": false,
"callingPartyPrefixDigits": "+*+*",
"calledPartyDiscardDigits": "PreDot",
"calledPartyPrefixDigits": "++02209"
}
],
"pkid": "69ee3a2462dfd021865c560e",
"hierarchy_friendly_name": "hcs (Hcs)",
"hierarchy_path": "sys.hcs"
},
"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": [
"HcsDialPlanFeatureSchema",
"V4UC",
"ba_CommonOverlay"
],
"title": "title format",
"business_key": {
"unique": [
"name"
],
"hierarchy": true
},
"api_version": "21.2",
"cached": true,
"references": {
"parent": [
{
"pkid": "69ee359c62dfd021865bd21d",
"href": "/api/data/HierarchyNode/69ee359c62dfd021865bd21d"
}
],
"device": [
{
"href": "",
"pkid": ""
}
],
"foreign_key": [],
"owner": [
{
"pkid": ""
}
],
"self": [
{
"href": "/api/data/HcsDpDialPlanSchemaDAT/69ee3a2462dfd021865c560d/",
"pkid": "69ee3a2462dfd021865c560d"
}
]
},
"path": [
"6t0ggef2c0deab00hb595101",
"69ee359c62dfd021865bd21d",
"69ee3a2462dfd021865c560d"
],
"schema_version": "2.0",
"actions": [
{
"update": {
"method": "PUT",
"class": "update",
"href": "/api/data/HcsDpDialPlanSchemaDAT/69ee3a2462dfd021865c560d/",
"support_async": true,
"title": "Modify"
}
},
{
"remove": {
"method": "DELETE",
"class": "delete",
"href": "/api/data/HcsDpDialPlanSchemaDAT/69ee3a2462dfd021865c560d/",
"support_async": true,
"title": "Delete"
}
},
{
"clone": {
"method": "GET",
"class": "clone",
"href": "/api/data/HcsDpDialPlanSchemaDAT/69ee3a2462dfd021865c560d/clone/?schema=&schema_rules=true",
"support_async": false,
"title": "Clone"
}
},
{
"export": {
"method": "GET",
"class": "export",
"href": "/api/data/HcsDpDialPlanSchemaDAT/69ee3a2462dfd021865c560d/export/",
"support_async": false,
"title": "Export",
"view": "/api/view/ExportData/add/",
"submit": "payload"
}
},
{
"get": {
"method": "GET",
"class": "get",
"href": "/api/data/HcsDpDialPlanSchemaDAT/69ee3a2462dfd021865c560d/",
"support_async": false,
"title": "Get"
}
},
{
"help": {
"method": "GET",
"class": "help",
"href": "/api/data/HcsDpDialPlanSchemaDAT/69ee3a2462dfd021865c560d/help",
"support_async": false,
"title": "Help"
}
}
],
"summary": "false"
},
"pkid": "69ee3a2462dfd021865c560d"
}
]
}
(Show the first instance)
{
"data": {
"name": "CustomerCallScreening-Feature-V1-SCH",
"description": "Call Screening Feature. Cloned instance version from sys.hcs.",
"partitionArray": [
{
"name": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-BlkIntl-PT",
"description": "Blk IntlCT(01) PT",
"timeSchedule": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-AllDay-TSchd"
},
{
"name": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-BlkNatl-PT",
"description": "Blk NatlCT(02) PT",
"timeSchedule": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-AllDay-TSchd"
},
{
"name": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-BlkMobl-PT",
"description": "Blk MoblCT(03) PT",
"timeSchedule": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-AllDay-TSchd"
},
{
"name": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-BlkSVC-PT",
"description": "Blk SVCCT(05) PT",
"timeSchedule": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-AllDay-TSchd"
},
{
"name": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-BlkPRS-PT",
"description": "Blk PRSCT(07) PT",
"timeSchedule": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-AllDay-TSchd"
},
{
"name": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-BlkFPN-PT",
"description": "Blk FPHNCT(08) PT",
"timeSchedule": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-AllDay-TSchd"
},
{
"name": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-BlkPCS-PT",
"description": "Blk PCSCT(09) PT",
"timeSchedule": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-AllDay-TSchd"
},
{
"name": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-BlkSRS-PT",
"description": "Blk SRSCT(10) PT",
"timeSchedule": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-AllDay-TSchd"
},
{
"name": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-BlkOPR-PT",
"description": "Blk OPRCT(11) PT",
"timeSchedule": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-AllDay-TSchd"
},
{
"name": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-BlkCUST-PT",
"description": "Blk CustCT PT",
"timeSchedule": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-AllDay-TSchd"
},
{
"name": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-BlkAll-PT",
"description": "Blk All PSTN Call PT",
"timeSchedule": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-AllDay-TSchd"
},
{
"name": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-Allowed-PT",
"description": "Allowed PT",
"timeSchedule": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-AllDay-TSchd"
}
],
"cssArray": [
{
"name": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-DummyBlk-CSS",
"description": "Dummy CSS to Handle Blk TP",
"usage": "General",
"isClassOfService": false
}
],
"translationPatternArray": [
{
"pattern": "\\+\\+02.X01!",
"description": "Block International Calls",
"routePartition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-BlkIntl-PT",
"css": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-DummyBlk-CSS",
"useOrigCss": false,
"routeOption": "Block this pattern",
"releaseClause": "Call Rejected",
"provideOutsideDialTone": true,
"urgentPriority": true,
"noWaitInterdigitTimeoutSubseqHops": false,
"nextHopByCallingPtyNum": false,
"useCallingPartyExternalPhoneNumMask": false
},
{
"pattern": "\\+\\+02.X02!",
"description": "Block National Calls",
"routePartition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-BlkNatl-PT",
"css": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-DummyBlk-CSS",
"useOrigCss": false,
"routeOption": "Block this pattern",
"releaseClause": "Call Rejected",
"provideOutsideDialTone": true,
"urgentPriority": true,
"noWaitInterdigitTimeoutSubseqHops": false,
"nextHopByCallingPtyNum": false,
"useCallingPartyExternalPhoneNumMask": false
},
{
"pattern": "\\+\\+02.X03!",
"description": "Block Mobile Calls",
"routePartition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-BlkMobl-PT",
"css": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-DummyBlk-CSS",
"useOrigCss": false,
"routeOption": "Block this pattern",
"releaseClause": "Call Rejected",
"provideOutsideDialTone": true,
"urgentPriority": true,
"noWaitInterdigitTimeoutSubseqHops": false,
"nextHopByCallingPtyNum": false,
"useCallingPartyExternalPhoneNumMask": false
},
{
"pattern": "\\+\\+02.X05!",
"description": "Block Service Calls",
"routePartition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-BlkSVC-PT",
"css": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-DummyBlk-CSS",
"useOrigCss": false,
"routeOption": "Block this pattern",
"releaseClause": "Call Rejected",
"provideOutsideDialTone": true,
"urgentPriority": true,
"noWaitInterdigitTimeoutSubseqHops": false,
"nextHopByCallingPtyNum": false,
"useCallingPartyExternalPhoneNumMask": false
},
{
"pattern": "\\+\\+02.X07!",
"description": "Block Premium Rate Service Calls",
"routePartition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-BlkPRS-PT",
"css": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-DummyBlk-CSS",
"useOrigCss": false,
"routeOption": "Block this pattern",
"releaseClause": "Call Rejected",
"provideOutsideDialTone": true,
"urgentPriority": true,
"noWaitInterdigitTimeoutSubseqHops": false,
"nextHopByCallingPtyNum": false,
"useCallingPartyExternalPhoneNumMask": false
},
{
"pattern": "\\+\\+02.X08!",
"description": "Block FreePhone/TollFree Calls",
"routePartition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-BlkFPN-PT",
"css": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-DummyBlk-CSS",
"useOrigCss": false,
"routeOption": "Block this pattern",
"releaseClause": "Call Rejected",
"provideOutsideDialTone": true,
"urgentPriority": true,
"noWaitInterdigitTimeoutSubseqHops": false,
"nextHopByCallingPtyNum": false,
"useCallingPartyExternalPhoneNumMask": false
},
{
"pattern": "\\+\\+02.X09!",
"description": "Block Personal Comm Service Calls",
"routePartition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-BlkPCS-PT",
"css": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-DummyBlk-CSS",
"useOrigCss": false,
"routeOption": "Block this pattern",
"releaseClause": "Call Rejected",
"provideOutsideDialTone": true,
"urgentPriority": true,
"noWaitInterdigitTimeoutSubseqHops": false,
"nextHopByCallingPtyNum": false,
"useCallingPartyExternalPhoneNumMask": false
},
{
"pattern": "\\+\\+02.X10!",
"description": "Block Special Rate Service Calls",
"routePartition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-BlkSRS-PT",
"css": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-DummyBlk-CSS",
"useOrigCss": false,
"routeOption": "Block this pattern",
"releaseClause": "Call Rejected",
"provideOutsideDialTone": true,
"urgentPriority": true,
"noWaitInterdigitTimeoutSubseqHops": false,
"nextHopByCallingPtyNum": false,
"useCallingPartyExternalPhoneNumMask": false
},
{
"pattern": "\\+\\+02.X11!",
"description": "Block Operator Calls",
"routePartition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-BlkOPR-PT",
"css": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-DummyBlk-CSS",
"useOrigCss": false,
"routeOption": "Block this pattern",
"releaseClause": "Call Rejected",
"provideOutsideDialTone": true,
"urgentPriority": true,
"noWaitInterdigitTimeoutSubseqHops": false,
"nextHopByCallingPtyNum": false,
"useCallingPartyExternalPhoneNumMask": false
},
{
"pattern": "\\+\\+02.X0[1-9]!",
"description": "Block Call Types - 0[1-9]",
"routePartition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-BlkAll-PT",
"css": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-DummyBlk-CSS",
"useOrigCss": false,
"routeOption": "Block this pattern",
"releaseClause": "Call Rejected",
"provideOutsideDialTone": true,
"urgentPriority": true,
"noWaitInterdigitTimeoutSubseqHops": false,
"nextHopByCallingPtyNum": false,
"useCallingPartyExternalPhoneNumMask": false
},
{
"pattern": "\\+\\+02.X1[0-9]!",
"description": "Block Call Types - 1[0-9]",
"routePartition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-BlkAll-PT",
"css": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-DummyBlk-CSS",
"useOrigCss": false,
"routeOption": "Block this pattern",
"releaseClause": "Call Rejected",
"provideOutsideDialTone": true,
"urgentPriority": true,
"noWaitInterdigitTimeoutSubseqHops": false,
"nextHopByCallingPtyNum": false,
"useCallingPartyExternalPhoneNumMask": false
},
{
"pattern": "\\+\\+02.X[^*][^*]!",
"description": "Allowed Calls",
"routePartition": "{{pwf.HcsDpUniqueCustomerPrefixMCR}}-Allowed-PT",
"useOrigCss": true,
"routeOption": "Route this pattern",
"provideOutsideDialTone": false,
"urgentPriority": true,
"noWaitInterdigitTimeoutSubseqHops": true,
"nextHopByCallingPtyNum": false,
"useCallingPartyExternalPhoneNumMask": false,
"calledPartyDiscardDigits": "PreDot",
"calledPartyPrefixDigits": "++03"
}
],
"pkid": "69efc885e32dcf14ced22675"
},
"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": {
"parent": [
{
"href": "/api/data/HierarchyNode/69efc87de32dcf14ced22487",
"pkid": "69efc87de32dcf14ced22487"
}
],
"device": [
{
"href": "",
"pkid": ""
}
],
"foreign_key": [],
"owner": [
{
"pkid": ""
}
],
"children": [],
"self": [
{
"href": "/api/data/HcsDpDialPlanSchemaDAT/69efc885e32dcf14ced22674/",
"pkid": "69efc885e32dcf14ced22674"
}
]
},
"path": [
"6t0ggef2c0deab00hb595101",
"69ee359c62dfd021865bd21d",
"69efc87de32dcf14ced22487",
"69efc885e32dcf14ced22674"
],
"schema_version": "2.0",
"actions": [
{
"update": {
"method": "PUT",
"class": "update",
"href": "/api/data/HcsDpDialPlanSchemaDAT/69efc885e32dcf14ced22674/?hierarchy=[hierarchy]",
"support_async": true,
"title": "Modify"
}
},
{
"remove": {
"method": "DELETE",
"class": "delete",
"href": "/api/data/HcsDpDialPlanSchemaDAT/69efc885e32dcf14ced22674/?hierarchy=[hierarchy]",
"support_async": true,
"title": "Delete"
}
},
{
"clone": {
"method": "GET",
"class": "clone",
"href": "/api/data/HcsDpDialPlanSchemaDAT/69efc885e32dcf14ced22674/clone/?hierarchy=[hierarchy]&schema=&schema_rules=true",
"support_async": false,
"title": "Clone"
}
},
{
"export": {
"method": "GET",
"class": "export",
"href": "/api/data/HcsDpDialPlanSchemaDAT/69efc885e32dcf14ced22674/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/69efc885e32dcf14ced22674/?hierarchy=[hierarchy]",
"support_async": false,
"title": "Get"
}
},
{
"help": {
"method": "GET",
"class": "help",
"href": "/api/data/HcsDpDialPlanSchemaDAT/69efc885e32dcf14ced22674/help?hierarchy=[hierarchy]",
"support_async": false,
"title": "Help"
}
}
]
},
"pkid": "69efc885e32dcf14ced22674"
}
| 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. |