
Sf Industry Cme Epc Model
- 1 installs
- 423 repo stars
- Updated April 27, 2026
- jaganpro/claude-code-sfskills
Creates Salesforce Industries CME EPC catalog entries: Product2 records, configurable attributes, and offer bundles via Product Child Items using DataPack JSON templates.
About
Authors Salesforce Industries CME EPC product and offer models from DataPack-style JSON templates with 120-point scoring. A Salesforce Industries developer uses it to build product catalogs, attributes, and bundle offers.
- Ships canonical assets/ templates for products, attributes, and child items
- Scores payloads; 95+ is deploy-ready, below 70 blocks
Sf Industry Cme Epc Model by the numbers
- 1 all-time installs (skills.sh)
- Ranked #3,836 of 4,347 Backend & APIs skills by installs in the Skillselion catalog
- Data as of Aug 2, 2026 (Skillselion catalog sync)
npx skills add https://github.com/jaganpro/claude-code-sfskills --skill sf-industry-cme-epc-modelAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Installs | 1 |
|---|---|
| repo stars | ★ 423 |
| Last updated | April 27, 2026 |
| Repository | jaganpro/claude-code-sfskills ↗ |
What it does
Creates Salesforce Industries CME EPC catalog entries: Product2 records, configurable attributes, and offer bundles via Product Child Items using DataPack JSON templates.
Files
sf-industry-cme-epc-model: CME EPC Product and Offer Modeling
Expert Salesforce Industries CME EPC modeler for creating Product2-based catalog entries, assigning configurable attributes, and building offer bundles through Product Child Item relationships.
This skill is optimized for DataPack-style metadata authoring. Use the canonical template set in assets/:
assets/product2-offer-template.jsonassets/attribute-assignment-template.jsonassets/product-child-item-template.jsonassets/pricebook-entries-template.jsonassets/price-list-entries-template.jsonassets/object-field-attributes-template.jsonassets/orchestration-scenarios-template.jsonassets/decomposition-relationships-template.jsonassets/compiled-attribute-overrides-template.jsonassets/override-definitions-template.jsonassets/parent-keys-template.json
Additional packaged examples are available under assets/examples/ with one folder per bundle/simple-offer sample. The root assets/ folder contains the canonical baseline template set for bundle authoring.
---
Quick Reference
- Primary object:
Product2(EPC product and offer records) - Attribute data:
%vlocity_namespace%__AttributeMetadata__c,%vlocity_namespace%__AttributeDefaultValues__c, and%vlocity_namespace%__AttributeAssignment__c - Offer bundle composition:
%vlocity_namespace%__ProductChildItem__c - Offer marker:
%vlocity_namespace%__SpecificationType__c = "Offer"and%vlocity_namespace%__SpecificationSubType__c = "Bundle" - Companion bundle artifacts: pricebook entries, price list entries, object field attributes, orchestration scenarios, decomposition relationships, compiled attribute overrides, override definitions, and parent keys
Scoring: 120 points across 6 categories. Thresholds: >= 95 Deploy-ready | 70-94 Needs review | < 70 Block and fix.
---
Asset Template Set
Use the root assets/ templates when creating a bundle payload:
product2-offer-template.jsonattribute-assignment-template.jsonproduct-child-item-template.jsonpricebook-entries-template.jsonprice-list-entries-template.jsonobject-field-attributes-template.jsonorchestration-scenarios-template.jsondecomposition-relationships-template.jsoncompiled-attribute-overrides-template.jsonoverride-definitions-template.jsonparent-keys-template.json
For additional real-world variants, use the per-example folders under assets/examples/.
---
Core Responsibilities
1. Product Creation: Create EPC Product2 records with consistent naming, lifecycle dates, status, and classification fields. 2. Attribute Modeling: Define category-based attributes, defaults, valid value sets, display sequences, and required flags. 3. Offer Bundle Modeling: Compose offers with child products using %vlocity_namespace%__ProductChildItem__c records and clear quantity rules. 4. Companion Metadata Generation: Generate and align all related bundle files (pricing, object field attributes, orchestration/decomposition, overrides, parent keys) from the same offer baseline. 5. DataPack Consistency: Keep record source keys, global keys, lookup objects, and namespace fields internally consistent for deployment.
---
Invocation Rules (Mandatory)
Route to this skill whenever the prompt intent matches either of these:
1. Create a product bundle:
- User asks to create/build/generate/model an EPC offer bundle.
- User asks for Product2 offer setup with Product Child Items.
- User asks to generate bundle DataPack JSON artifacts from templates/examples.
2. Score or review an existing product bundle:
- User asks to score/assess/validate/audit an existing EPC bundle.
- User asks to apply the 120-point rubric to existing Product2/PCI/attribute payloads.
- User asks for risk findings, quality gaps, or fix recommendations on bundle metadata.
Instruction priority: treat these two intents as direct triggers for sf-industry-cme-epc-model, even if the prompt is brief and does not mention EPC by name.
---
Workflow (Create/Review)
Phase 1: Identify Catalog Intent
Ask for:
- Product type: spec product or offer bundle
- Domain taxonomy: Family, Type/SubType, category path, and channel
- Attribute requirements: required/optional, picklist values, default values
- Bundle composition: child products, quantity constraints, optional vs required
- Target org namespace model:
%vlocity_namespace%,vlocity_cmt, or Core
Phase 1A: Clarifying Questions for Complete Bundle (Mandatory)
Before generating a new offer bundle payload, ask clarifying questions until all required inputs are known.
Required clarification checklist:
1. Offer identity
- What is the offer name and
ProductCode? - Is this net-new or an update to an existing Product2 offer?
2. Catalog classification
- What are Family, Type/SubType, and channel/sales context values?
- Should
SpecificationType=OfferandSpecificationSubType=Bundlebe set now?
3. Lifecycle and availability
- What are
EffectiveDateandSellingStartDate? - Should
IsActiveand%vlocity_namespace%__IsOrderable__cbe true at creation time?
4. Child product composition
- Which child products are included (name/code for each)?
- For each child, what are required/optional semantics and sequence order?
5. Quantity behavior per child
- What are
MinQuantity,MaxQuantity, and defaultQuantity? - Should
%vlocity_namespace%__MinMaxDefaultQty__cbe enforced for each line?
6. Attribute model
- Which attributes are required vs optional?
- What are valid values, defaults, display types, and display sequences?
7. Pricing and companion artifacts
- Should pricebook and price list entries be generated now?
- Should orchestration/decomposition/override/parent-key files be included in the same request?
8. Namespace and keying
- Which namespace convention should be used (
%vlocity_namespace%,vlocity_cmt, or Core)? - Are there existing global keys/source keys to preserve?
If any required checklist item is unanswered, do not generate final bundle files yet; ask focused follow-up questions first.
Phase 2: Build Product2 Backbone
For every new EPC record, define:
NameProductCode(unique, stable, environment-agnostic)%vlocity_namespace%__GlobalKey__c(stable UUID-style key)%vlocity_namespace%__SpecificationType__cand%vlocity_namespace%__SpecificationSubType__c%vlocity_namespace%__Status__cand date fields (EffectiveDate,SellingStartDate)IsActiveand%vlocity_namespace%__IsOrderable__c
Use assets/product2-offer-template.json as baseline structure.
Phase 3: Add Attributes
When attributes are required:
1. Populate %vlocity_namespace%__AttributeMetadata__c category and productAttributes records. 2. Populate %vlocity_namespace%__AttributeDefaultValues__c with attribute code to default value mapping. 3. Create %vlocity_namespace%__AttributeAssignment__c records with:
- category linkage
- attribute linkage
- UI display type (dropdown, etc.)
- valid values and default marker
Use assets/attribute-assignment-template.json as the assignment baseline.
Phase 4: Build Offer Bundles
For offers:
1. Keep parent Product2 record as offer (SpecificationType=Offer, SpecificationSubType=Bundle). 2. Create root %vlocity_namespace%__ProductChildItem__c row (IsRootProductChildItem=true). 3. Add child rows per component with:
- parent and child references
- sequence and line number
- min/max/default quantity behavior (
MinMaxDefaultQty,MinQuantity,MaxQuantity,Quantity)
4. Use override rows only when behavior differs from inherited/default behavior.
Use assets/product-child-item-template.json for child relationship structure.
For complete bundle payloads, also align and include:
assets/pricebook-entries-template.jsonassets/price-list-entries-template.jsonassets/object-field-attributes-template.jsonassets/orchestration-scenarios-template.jsonassets/decomposition-relationships-template.jsonassets/compiled-attribute-overrides-template.jsonassets/override-definitions-template.jsonassets/parent-keys-template.json
Phase 4B: Generate Companion Metadata Files
When the user asks to generate a bundle, generate/update all companion files together as one coherent set:
1. pricebook-entries-template.json and price-list-entries-template.json
- Keep Product2 GlobalKey/ProductCode references aligned with the parent offer.
2. object-field-attributes-template.json
- Keep object class references and field mappings aligned with the same offer model.
3. orchestration-scenarios-template.json and decomposition-relationships-template.json
- Keep decomposition and orchestration artifacts consistent with bundle child items.
4. compiled-attribute-overrides-template.json and override-definitions-template.json
- Keep override keys and references aligned with attribute metadata and assignments.
5. parent-keys-template.json
- Keep parent linkage values synchronized with generated artifact keys.
Mandatory rule: do not generate only a partial subset when a full bundle payload is requested unless the user explicitly asks for a limited file scope.
Phase 5: Validate and Handoff
Provide a completion block:
EPC Model Complete: <Name>
Type: <Spec Product|Offer Bundle>
ProductCode: <code>
Attributes: <count>
Bundle Children: <count>
Companion Metadata Files: <count generated>
Validation Score: <score>/120
Risks: <none|list>---
Generation Guardrails (Mandatory)
If any anti-pattern appears, stop and ask for confirmation before proceeding.
| Anti-pattern | Why it fails | Required correction |
|---|---|---|
Missing ProductCode or unstable code values | Breaks quote/cart references and package diffs | Use deterministic code convention |
| Hardcoded org-specific IDs in relationships | Fails across orgs/environments | Use lookup objects with matching keys/global keys |
| Offer bundle without root PCI row | Runtime bundle traversal issues | Add root %vlocity_namespace%__ProductChildItem__c |
| Attribute defaults not present in valid values | Invalid cart configuration defaults | Ensure default exists in allowed value set |
| Duplicate display sequences in same attribute category | UI ordering conflict | Enforce unique and spaced sequence values |
| Offer marked active with incomplete child references | Broken bundle at runtime | Complete and validate child link set before activation |
Mixed naming styles (snake_case, ad hoc abbreviations) | Reduces maintainability and discoverability | Enforce naming convention from references doc |
---
Scoring Model (120 Points)
1) Catalog Identity and Naming (20)
- Product name clarity and uniqueness
ProductCodeconvention quality- Type/SubType/Family coherence
- Stable keying (
GlobalKey, source key integrity)
2) EPC Product Structure (20)
- Required Product2 + EPC fields present
- Lifecycle dates and status alignment
- Orderable/active flags are coherent
- Record type and classification consistency
3) Attribute Modeling (25)
- Category and attribute grouping quality
- Valid values + default alignment
- Required/read-only/filterable semantics
- Display sequence and UX consistency
4) Offer Bundle Composition (25)
- Root PCI presence and correctness
- Child references and sequencing integrity
- Quantity constraints correctness
- Optional/required semantics reflected in min/max/defaults
5) DataPack Integrity (15)
- Namespace placeholder correctness
- Lookup object key integrity
- No environment-specific brittle fields
6) Documentation and Handoff (15)
- Clear explanation of modeled intent
- Testing checklist included
- Risks and assumptions explicitly called out
---
CLI and Validation Commands
# Query candidate EPC products
sf data query -q "SELECT Id,Name,ProductCode,Family,IsActive FROM Product2 ORDER BY LastModifiedDate DESC" -o <org>
# Query Product Child Items for an offer
sf data query -q "SELECT Id,Name,%vlocity_namespace%__ParentProductName__c,%vlocity_namespace%__ChildProductName__c,%vlocity_namespace%__MinMaxDefaultQty__c FROM %vlocity_namespace%__ProductChildItem__c WHERE %vlocity_namespace%__ParentProductName__c='<Offer Name>'" -o <org>
# Retrieve Product2 metadata package members (as applicable to project format)
sf project retrieve start -m Product2:<DeveloperNameOrName> -o <org>
# Validate deployment in dry-run mode
sf project deploy start -x manifest/package.xml --dry-run -o <org>---
Sample Skill Invocation Commands
Use these examples to invoke this skill from your agent/CLI workflow:
# Create a new EPC offer bundle with full companion metadata
cursor-agent "Create a Product2 offer bundle named Business Internet Plus with ProductCode BIZ-INT-PLUS-01, 3 child products, and generate all companion DataPack JSON files from the assets templates."
# Add configurable attributes to an existing EPC Product2 record
cursor-agent "Update Product2 Business Internet Essential with attribute metadata/defaults/assignments for Bandwidth, ContractTerm, and StaticIPCount, including valid values and defaults."
# Build ProductChildItem relationships for an offer
cursor-agent "Create root and child %vlocity_namespace%__ProductChildItem__c records for offer Business Internet Essential VPL with min/max/default quantity rules."
# Review an existing DataPack for EPC modeling quality
cursor-agent "Review the Product2 bundle JSON files under skills/sf-industry-cme-epc-model/examples/business-internet-plus-bundle/, score against the 120-point rubric, and return risks plus required fixes."
# Convert a spec product into a bundle-ready offer payload
cursor-agent "Transform Product2 Dedicated Fiber 1G from spec product to offer bundle (SpecificationType=Offer, SpecificationSubType=Bundle) and generate aligned PCI + pricing artifacts."If your environment uses a different command wrapper, keep the quoted instruction text and replace cursor-agent with your local agent command.
---
Cross-Skill Integration
| From Skill | To sf-industry-cme-epc-model | When |
|---|---|---|
| sf-industry-commoncore-omnistudio-analyze | -> sf-industry-cme-epc-model | Need current dependency and namespace inventory first |
| sf-metadata | -> sf-industry-cme-epc-model | Need object or field readiness before EPC modeling |
| sf-soql | -> sf-industry-cme-epc-model | Need existing catalog query analysis |
From sf-industry-cme-epc-model | To Skill | When |
|---|---|---|
| sf-industry-cme-epc-model | -> sf-industry-commoncore-omniscript | Configure guided selling UX using the modeled catalog |
| sf-industry-cme-epc-model | -> sf-industry-commoncore-integration-procedure | Build server-side orchestration over product and pricing payloads |
| sf-industry-cme-epc-model | -> sf-deploy | Deploy validated catalog metadata |
---
External References
- EPC overview: Salesforce Help - Enterprise Product Catalog
- EPC naming conventions: Salesforce Help - EPC Naming Conventions
- EPC product catalog data model: Salesforce Help - Product Catalog ERD
Additional local references:
- references/epc-field-guide.md
- references/naming-conventions.md
---
Notes
- This skill is intentionally DataPack-first and optimized for
vlocity/Product2/...artifact authoring. - Keep
%vlocity_namespace%placeholders intact in templates to preserve portability. - Prefer creating reusable spec products first, then assemble offers via child relationships.
---
License
MIT License.
[
{
"%vlocity_namespace%__AddDate__c": "",
"%vlocity_namespace%__AttributeAdjustmentComments__c": "",
"%vlocity_namespace%__AttributeAdjustmentUnits__c": "",
"%vlocity_namespace%__AttributeCategoryId__c": {
"%vlocity_namespace%__Code__c": "VEPC_ATTRIBUTE_CATEGORY_CONTRACT_DETAILS",
"VlocityDataPackType": "VlocityLookupMatchingKeyObject",
"VlocityLookupRecordSourceKey": "%vlocity_namespace%__AttributeCategory__c/VEPC_ATTRIBUTE_CATEGORY_CONTRACT_DETAILS",
"VlocityRecordSObjectType": "%vlocity_namespace%__AttributeCategory__c"
},
"%vlocity_namespace%__AttributeDisplayNameOverride__c": "Contract Term",
"%vlocity_namespace%__AttributeDisplaySequence__c": "10",
"%vlocity_namespace%__AttributeId__c": {
"%vlocity_namespace%__Code__c": "VEPC_ATTR_CONTRACT_TERM",
"VlocityDataPackType": "VlocityLookupMatchingKeyObject",
"VlocityLookupRecordSourceKey": "%vlocity_namespace%__Attribute__c/VEPC_ATTR_CONTRACT_TERM",
"VlocityRecordSObjectType": "%vlocity_namespace%__Attribute__c"
},
"%vlocity_namespace%__AttributeId__r.%vlocity_namespace%__Code__c": "VEPC_ATTR_CONTRACT_TERM",
"%vlocity_namespace%__AttributeName__c": "Contract Term",
"%vlocity_namespace%__ConfigurationDetail__c": "",
"%vlocity_namespace%__ConfigurationStages__c": "",
"%vlocity_namespace%__CustomConfigUiTemplate__c": "",
"%vlocity_namespace%__Data__c": "",
"%vlocity_namespace%__DefaultPicklistEntryId__c": "",
"%vlocity_namespace%__DefaultPicklistValueId__c": "",
"%vlocity_namespace%__DisplaySequence__c": "7020",
"%vlocity_namespace%__EndStory__c": "",
"%vlocity_namespace%__ExcludedPicklistEntryIds__c": "",
"%vlocity_namespace%__ExcludedPicklistValues__c": "10 Years,3 Years,4 Years,5 Years",
"%vlocity_namespace%__FormatMask__c": "",
"%vlocity_namespace%__GlobalKey__c": "3b49b14f-85ff-0135-b713-6daf03cdc761",
"%vlocity_namespace%__HasRule__c": false,
"%vlocity_namespace%__HelpText__c": "",
"%vlocity_namespace%__IsActiveAssignment__c": true,
"%vlocity_namespace%__IsConfigurable__c": true,
"%vlocity_namespace%__IsDynamic__c": false,
"%vlocity_namespace%__IsEncrypted__c": false,
"%vlocity_namespace%__IsHidden__c": false,
"%vlocity_namespace%__IsNotAssetizable__c": false,
"%vlocity_namespace%__IsNotTranslatable__c": false,
"%vlocity_namespace%__IsOverride__c": false,
"%vlocity_namespace%__IsQueryDriven__c": false,
"%vlocity_namespace%__IsReadOnly__c": false,
"%vlocity_namespace%__IsRequired__c": true,
"%vlocity_namespace%__LookupFilter__c": "",
"%vlocity_namespace%__LookupObjectId__c": "",
"%vlocity_namespace%__LookupObjectTypeId__c": "",
"%vlocity_namespace%__ObjectId__c": {
"%vlocity_namespace%__GlobalKey__c": "0603228b-79c7-c71b-68d8-92cbbcec6ed0",
"VlocityDataPackType": "VlocityMatchingKeyObject",
"VlocityMatchingRecordSourceKey": "Product2/0603228b-79c7-c71b-68d8-92cbbcec6ed0",
"VlocityRecordSObjectType": "Product2"
},
"%vlocity_namespace%__ObjectType__c": "%vlocity_namespace%__ObjectClass__c",
"%vlocity_namespace%__OverrideContext__c": "",
"%vlocity_namespace%__PicklistId__c": {
"%vlocity_namespace%__GlobalKey__c": "97663cf9-f249-23a6-f117-4e4ed7969e65",
"VlocityDataPackType": "VlocityLookupMatchingKeyObject",
"VlocityLookupRecordSourceKey": "%vlocity_namespace%__Picklist__c/97663cf9-f249-23a6-f117-4e4ed7969e65",
"VlocityRecordSObjectType": "%vlocity_namespace%__Picklist__c"
},
"%vlocity_namespace%__QueryCode__c": "",
"%vlocity_namespace%__QueryLabel__c": "",
"%vlocity_namespace%__RemoveDate__c": "",
"%vlocity_namespace%__RemovedFlag__c": false,
"%vlocity_namespace%__RuleData__c": "",
"%vlocity_namespace%__RuleMessage__c": "",
"%vlocity_namespace%__StartStory__c": "",
"%vlocity_namespace%__StyleClass__c": "",
"%vlocity_namespace%__UIDisplayType__c": "Dropdown",
"%vlocity_namespace%__ValidValuesData__c": [
{
"displayText": "Month-to-Month",
"id": "a7ac19a5-bb6b-ccbf-a08d-720481465288",
"isDefault": true,
"isEditable": false,
"sequence": 10,
"value": "Month-to-Month"
},
{
"displayText": "1 Year",
"id": "b8e6084a-667c-f11d-a49c-5195154a861d",
"isDefault": false,
"isEditable": false,
"sequence": 20,
"value": "1 Year"
},
{
"displayText": "2 Years",
"id": "9e9aa1a5-439c-a4b1-3c92-8bd9a2970ea9",
"isDefault": false,
"isEditable": false,
"sequence": 30,
"value": "2 Years"
}
],
"%vlocity_namespace%__ValueDataType__c": "Picklist",
"%vlocity_namespace%__ValueDecoder__c": "",
"%vlocity_namespace%__ValueDescription__c": "Select a Contract Term",
"%vlocity_namespace%__Value__c": "Month-to-Month",
"IsLocked": false,
"MayEdit": true,
"Name": "CLONED_01t4S000000UXhWQAW_VEPC_ATTR_CONTRACT_TERM",
"VlocityDataPackType": "SObject",
"VlocityRecordSObjectType": "%vlocity_namespace%__AttributeAssignment__c",
"VlocityRecordSourceKey": "%vlocity_namespace%__AttributeAssignment__c/3b49b14f-85ff-0135-b713-6daf03cdc761"
},
{
"%vlocity_namespace%__AddDate__c": "",
"%vlocity_namespace%__AttributeAdjustmentComments__c": "",
"%vlocity_namespace%__AttributeAdjustmentUnits__c": "",
"%vlocity_namespace%__AttributeCategoryId__c": {
"%vlocity_namespace%__Code__c": "VEPC_ATTRIBUTE_CATEGORY_INTERNET_DETAILS",
"VlocityDataPackType": "VlocityLookupMatchingKeyObject",
"VlocityLookupRecordSourceKey": "%vlocity_namespace%__AttributeCategory__c/VEPC_ATTRIBUTE_CATEGORY_INTERNET_DETAILS",
"VlocityRecordSObjectType": "%vlocity_namespace%__AttributeCategory__c"
},
"%vlocity_namespace%__AttributeDisplayNameOverride__c": "Download Speed",
"%vlocity_namespace%__AttributeDisplaySequence__c": "10",
"%vlocity_namespace%__AttributeId__c": {
"%vlocity_namespace%__Code__c": "VEPC_ATTR_DOWNLOAD_SPEED",
"VlocityDataPackType": "VlocityLookupMatchingKeyObject",
"VlocityLookupRecordSourceKey": "%vlocity_namespace%__Attribute__c/VEPC_ATTR_DOWNLOAD_SPEED",
"VlocityRecordSObjectType": "%vlocity_namespace%__Attribute__c"
},
"%vlocity_namespace%__AttributeId__r.%vlocity_namespace%__Code__c": "VEPC_ATTR_DOWNLOAD_SPEED",
"%vlocity_namespace%__AttributeName__c": "Download Speed",
"%vlocity_namespace%__ConfigurationDetail__c": "",
"%vlocity_namespace%__ConfigurationStages__c": "",
"%vlocity_namespace%__CustomConfigUiTemplate__c": "",
"%vlocity_namespace%__Data__c": "",
"%vlocity_namespace%__DefaultPicklistEntryId__c": "",
"%vlocity_namespace%__DefaultPicklistValueId__c": "",
"%vlocity_namespace%__DisplaySequence__c": "6220",
"%vlocity_namespace%__EndStory__c": "",
"%vlocity_namespace%__ExcludedPicklistEntryIds__c": "",
"%vlocity_namespace%__ExcludedPicklistValues__c": "10 Mbps,100 Mbps,1000 Mbps,2 Mbps,250 Mbps,5 Mbps,500 Mbps",
"%vlocity_namespace%__FormatMask__c": "",
"%vlocity_namespace%__GlobalKey__c": "85b9bbb1-c4d7-ae13-c2d6-540134ccc9c0",
"%vlocity_namespace%__HasRule__c": false,
"%vlocity_namespace%__HelpText__c": "",
"%vlocity_namespace%__IsActiveAssignment__c": true,
"%vlocity_namespace%__IsConfigurable__c": true,
"%vlocity_namespace%__IsDynamic__c": false,
"%vlocity_namespace%__IsEncrypted__c": false,
"%vlocity_namespace%__IsHidden__c": false,
"%vlocity_namespace%__IsNotAssetizable__c": false,
"%vlocity_namespace%__IsNotTranslatable__c": false,
"%vlocity_namespace%__IsOverride__c": false,
"%vlocity_namespace%__IsQueryDriven__c": false,
"%vlocity_namespace%__IsReadOnly__c": false,
"%vlocity_namespace%__IsRequired__c": true,
"%vlocity_namespace%__LookupFilter__c": "",
"%vlocity_namespace%__LookupObjectId__c": "",
"%vlocity_namespace%__LookupObjectTypeId__c": "",
"%vlocity_namespace%__ObjectId__c": {
"%vlocity_namespace%__GlobalKey__c": "0603228b-79c7-c71b-68d8-92cbbcec6ed0",
"VlocityDataPackType": "VlocityMatchingKeyObject",
"VlocityMatchingRecordSourceKey": "Product2/0603228b-79c7-c71b-68d8-92cbbcec6ed0",
"VlocityRecordSObjectType": "Product2"
},
"%vlocity_namespace%__ObjectType__c": "%vlocity_namespace%__ObjectClass__c",
"%vlocity_namespace%__OverrideContext__c": "",
"%vlocity_namespace%__PicklistId__c": {
"%vlocity_namespace%__GlobalKey__c": "14618844-8157-e00f-ad90-347ce9378f4f",
"VlocityDataPackType": "VlocityLookupMatchingKeyObject",
"VlocityLookupRecordSourceKey": "%vlocity_namespace%__Picklist__c/14618844-8157-e00f-ad90-347ce9378f4f",
"VlocityRecordSObjectType": "%vlocity_namespace%__Picklist__c"
},
"%vlocity_namespace%__QueryCode__c": "",
"%vlocity_namespace%__QueryLabel__c": "",
"%vlocity_namespace%__RemoveDate__c": "",
"%vlocity_namespace%__RemovedFlag__c": false,
"%vlocity_namespace%__RuleData__c": "",
"%vlocity_namespace%__RuleMessage__c": "",
"%vlocity_namespace%__StartStory__c": "",
"%vlocity_namespace%__StyleClass__c": "",
"%vlocity_namespace%__UIDisplayType__c": "Dropdown",
"%vlocity_namespace%__ValidValuesData__c": [
{
"displayText": "25 Mbps",
"id": "2e925b22-ec9d-7ad3-b914-cb45086b538f",
"isDefault": false,
"isEditable": false,
"sequence": 4,
"value": "25 Mbps"
},
{
"displayText": "50 Mbps",
"id": "322a9c79-5636-2e0d-4c8b-5fed9f60cf7d",
"isDefault": true,
"isEditable": false,
"sequence": 5,
"value": "50 Mbps"
}
],
"%vlocity_namespace%__ValueDataType__c": "Picklist",
"%vlocity_namespace%__ValueDecoder__c": "",
"%vlocity_namespace%__ValueDescription__c": "",
"%vlocity_namespace%__Value__c": "50 Mbps",
"IsLocked": false,
"MayEdit": true,
"Name": "CLONED_01t4S000000UXhWQAW_VEPC_ATTR_DOWNLOAD_SPEED",
"VlocityDataPackType": "SObject",
"VlocityRecordSObjectType": "%vlocity_namespace%__AttributeAssignment__c",
"VlocityRecordSourceKey": "%vlocity_namespace%__AttributeAssignment__c/85b9bbb1-c4d7-ae13-c2d6-540134ccc9c0"
},
{
"%vlocity_namespace%__AddDate__c": "",
"%vlocity_namespace%__AttributeAdjustmentComments__c": "",
"%vlocity_namespace%__AttributeAdjustmentUnits__c": "",
"%vlocity_namespace%__AttributeCategoryId__c": {
"%vlocity_namespace%__Code__c": "VEPC_ATTRIBUTE_CATEGORY_INTERNET_DETAILS",
"VlocityDataPackType": "VlocityLookupMatchingKeyObject",
"VlocityLookupRecordSourceKey": "%vlocity_namespace%__AttributeCategory__c/VEPC_ATTRIBUTE_CATEGORY_INTERNET_DETAILS",
"VlocityRecordSObjectType": "%vlocity_namespace%__AttributeCategory__c"
},
"%vlocity_namespace%__AttributeDisplayNameOverride__c": "Monthly Data Cap",
"%vlocity_namespace%__AttributeDisplaySequence__c": "30",
"%vlocity_namespace%__AttributeId__c": {
"%vlocity_namespace%__Code__c": "VEPC_ATTR_MONTHLY_DATA_CAP",
"VlocityDataPackType": "VlocityLookupMatchingKeyObject",
"VlocityLookupRecordSourceKey": "%vlocity_namespace%__Attribute__c/VEPC_ATTR_MONTHLY_DATA_CAP",
"VlocityRecordSObjectType": "%vlocity_namespace%__Attribute__c"
},
"%vlocity_namespace%__AttributeId__r.%vlocity_namespace%__Code__c": "VEPC_ATTR_MONTHLY_DATA_CAP",
"%vlocity_namespace%__AttributeName__c": "Monthly Data Cap",
"%vlocity_namespace%__ConfigurationDetail__c": "",
"%vlocity_namespace%__ConfigurationStages__c": "",
"%vlocity_namespace%__CustomConfigUiTemplate__c": "",
"%vlocity_namespace%__Data__c": "",
"%vlocity_namespace%__DefaultPicklistEntryId__c": "",
"%vlocity_namespace%__DefaultPicklistValueId__c": "",
"%vlocity_namespace%__DisplaySequence__c": "6220",
"%vlocity_namespace%__EndStory__c": "",
"%vlocity_namespace%__ExcludedPicklistEntryIds__c": "",
"%vlocity_namespace%__ExcludedPicklistValues__c": "1 TB,500 GB,Unlimited",
"%vlocity_namespace%__FormatMask__c": "",
"%vlocity_namespace%__GlobalKey__c": "d76e8b9f-676d-2a08-f850-12c1df62c838",
"%vlocity_namespace%__HasRule__c": false,
"%vlocity_namespace%__HelpText__c": "",
"%vlocity_namespace%__IsActiveAssignment__c": true,
"%vlocity_namespace%__IsConfigurable__c": true,
"%vlocity_namespace%__IsDynamic__c": false,
"%vlocity_namespace%__IsEncrypted__c": false,
"%vlocity_namespace%__IsHidden__c": false,
"%vlocity_namespace%__IsNotAssetizable__c": false,
"%vlocity_namespace%__IsNotTranslatable__c": false,
"%vlocity_namespace%__IsOverride__c": false,
"%vlocity_namespace%__IsQueryDriven__c": false,
"%vlocity_namespace%__IsReadOnly__c": false,
"%vlocity_namespace%__IsRequired__c": true,
"%vlocity_namespace%__LookupFilter__c": "",
"%vlocity_namespace%__LookupObjectId__c": "",
"%vlocity_namespace%__LookupObjectTypeId__c": "",
"%vlocity_namespace%__ObjectId__c": {
"%vlocity_namespace%__GlobalKey__c": "0603228b-79c7-c71b-68d8-92cbbcec6ed0",
"VlocityDataPackType": "VlocityMatchingKeyObject",
"VlocityMatchingRecordSourceKey": "Product2/0603228b-79c7-c71b-68d8-92cbbcec6ed0",
"VlocityRecordSObjectType": "Product2"
},
"%vlocity_namespace%__ObjectType__c": "%vlocity_namespace%__ObjectClass__c",
"%vlocity_namespace%__OverrideContext__c": "",
"%vlocity_namespace%__PicklistId__c": {
"%vlocity_namespace%__GlobalKey__c": "a541626d-4486-3bc3-ef0d-2d4cf8cbe266",
"VlocityDataPackType": "VlocityLookupMatchingKeyObject",
"VlocityLookupRecordSourceKey": "%vlocity_namespace%__Picklist__c/a541626d-4486-3bc3-ef0d-2d4cf8cbe266",
"VlocityRecordSObjectType": "%vlocity_namespace%__Picklist__c"
},
"%vlocity_namespace%__QueryCode__c": "",
"%vlocity_namespace%__QueryLabel__c": "",
"%vlocity_namespace%__RemoveDate__c": "",
"%vlocity_namespace%__RemovedFlag__c": false,
"%vlocity_namespace%__RuleData__c": "",
"%vlocity_namespace%__RuleMessage__c": "",
"%vlocity_namespace%__StartStory__c": "",
"%vlocity_namespace%__StyleClass__c": "",
"%vlocity_namespace%__UIDisplayType__c": "Dropdown",
"%vlocity_namespace%__ValidValuesData__c": [
{
"displayText": "100 GB",
"id": "5734af5d-e2da-36a8-018f-d70957e72ab5",
"isDefault": true,
"isEditable": false,
"sequence": 10,
"value": "100 GB"
}
],
"%vlocity_namespace%__ValueDataType__c": "Picklist",
"%vlocity_namespace%__ValueDecoder__c": "",
"%vlocity_namespace%__ValueDescription__c": "",
"%vlocity_namespace%__Value__c": "100 GB",
"IsLocked": false,
"MayEdit": true,
"Name": "CLONED_01t4S000000UXhWQAW_VEPC_ATTR_MONTHLY_DATA_CAP",
"VlocityDataPackType": "SObject",
"VlocityRecordSObjectType": "%vlocity_namespace%__AttributeAssignment__c",
"VlocityRecordSourceKey": "%vlocity_namespace%__AttributeAssignment__c/d76e8b9f-676d-2a08-f850-12c1df62c838"
},
{
"%vlocity_namespace%__AddDate__c": "",
"%vlocity_namespace%__AttributeAdjustmentComments__c": "",
"%vlocity_namespace%__AttributeAdjustmentUnits__c": "",
"%vlocity_namespace%__AttributeCategoryId__c": {
"%vlocity_namespace%__Code__c": "VEPC_ATTRIBUTE_CATEGORY_INTERNET_DETAILS",
"VlocityDataPackType": "VlocityLookupMatchingKeyObject",
"VlocityLookupRecordSourceKey": "%vlocity_namespace%__AttributeCategory__c/VEPC_ATTRIBUTE_CATEGORY_INTERNET_DETAILS",
"VlocityRecordSObjectType": "%vlocity_namespace%__AttributeCategory__c"
},
"%vlocity_namespace%__AttributeDisplayNameOverride__c": "Upload Speed",
"%vlocity_namespace%__AttributeDisplaySequence__c": "20",
"%vlocity_namespace%__AttributeId__c": {
"%vlocity_namespace%__Code__c": "VEPC_ATTR_UPLOAD_SPEED",
"VlocityDataPackType": "VlocityLookupMatchingKeyObject",
"VlocityLookupRecordSourceKey": "%vlocity_namespace%__Attribute__c/VEPC_ATTR_UPLOAD_SPEED",
"VlocityRecordSObjectType": "%vlocity_namespace%__Attribute__c"
},
"%vlocity_namespace%__AttributeId__r.%vlocity_namespace%__Code__c": "VEPC_ATTR_UPLOAD_SPEED",
"%vlocity_namespace%__AttributeName__c": "Upload Speed",
"%vlocity_namespace%__ConfigurationDetail__c": "",
"%vlocity_namespace%__ConfigurationStages__c": "",
"%vlocity_namespace%__CustomConfigUiTemplate__c": "",
"%vlocity_namespace%__Data__c": "",
"%vlocity_namespace%__DefaultPicklistEntryId__c": "",
"%vlocity_namespace%__DefaultPicklistValueId__c": "",
"%vlocity_namespace%__DisplaySequence__c": "6220",
"%vlocity_namespace%__EndStory__c": "",
"%vlocity_namespace%__ExcludedPicklistEntryIds__c": "",
"%vlocity_namespace%__ExcludedPicklistValues__c": "100 Mbps,1000 Mbps,2 Mbps,250 Mbps,5 Mbps,50 Mbps",
"%vlocity_namespace%__FormatMask__c": "",
"%vlocity_namespace%__GlobalKey__c": "7903eb87-ce64-e01b-c6f7-149aa9f30b80",
"%vlocity_namespace%__HasRule__c": false,
"%vlocity_namespace%__HelpText__c": "",
"%vlocity_namespace%__IsActiveAssignment__c": true,
"%vlocity_namespace%__IsConfigurable__c": true,
"%vlocity_namespace%__IsDynamic__c": false,
"%vlocity_namespace%__IsEncrypted__c": false,
"%vlocity_namespace%__IsHidden__c": false,
"%vlocity_namespace%__IsNotAssetizable__c": false,
"%vlocity_namespace%__IsNotTranslatable__c": false,
"%vlocity_namespace%__IsOverride__c": false,
"%vlocity_namespace%__IsQueryDriven__c": false,
"%vlocity_namespace%__IsReadOnly__c": false,
"%vlocity_namespace%__IsRequired__c": true,
"%vlocity_namespace%__LookupFilter__c": "",
"%vlocity_namespace%__LookupObjectId__c": "",
"%vlocity_namespace%__LookupObjectTypeId__c": "",
"%vlocity_namespace%__ObjectId__c": {
"%vlocity_namespace%__GlobalKey__c": "0603228b-79c7-c71b-68d8-92cbbcec6ed0",
"VlocityDataPackType": "VlocityMatchingKeyObject",
"VlocityMatchingRecordSourceKey": "Product2/0603228b-79c7-c71b-68d8-92cbbcec6ed0",
"VlocityRecordSObjectType": "Product2"
},
"%vlocity_namespace%__ObjectType__c": "%vlocity_namespace%__ObjectClass__c",
"%vlocity_namespace%__OverrideContext__c": "",
"%vlocity_namespace%__PicklistId__c": {
"%vlocity_namespace%__GlobalKey__c": "81ceecd3-a7e4-b85d-d673-f4dfd326f1b2",
"VlocityDataPackType": "VlocityLookupMatchingKeyObject",
"VlocityLookupRecordSourceKey": "%vlocity_namespace%__Picklist__c/81ceecd3-a7e4-b85d-d673-f4dfd326f1b2",
"VlocityRecordSObjectType": "%vlocity_namespace%__Picklist__c"
},
"%vlocity_namespace%__QueryCode__c": "",
"%vlocity_namespace%__QueryLabel__c": "",
"%vlocity_namespace%__RemoveDate__c": "",
"%vlocity_namespace%__RemovedFlag__c": false,
"%vlocity_namespace%__RuleData__c": "",
"%vlocity_namespace%__RuleMessage__c": "",
"%vlocity_namespace%__StartStory__c": "",
"%vlocity_namespace%__StyleClass__c": "",
"%vlocity_namespace%__UIDisplayType__c": "Dropdown",
"%vlocity_namespace%__ValidValuesData__c": [
{
"displayText": "10 Mbps",
"id": "2364a331-ccc4-a3c5-34e9-3c70ade4fb96",
"isDefault": false,
"isEditable": false,
"sequence": 30,
"value": "10 Mbps"
},
{
"displayText": "25 Mbps",
"id": "285c186c-3a30-5939-7b23-58fb43f5b879",
"isDefault": true,
"isEditable": false,
"sequence": 40,
"value": "25 Mbps"
}
],
"%vlocity_namespace%__ValueDataType__c": "Picklist",
"%vlocity_namespace%__ValueDecoder__c": "",
"%vlocity_namespace%__ValueDescription__c": "Select upload speed in Mbps",
"%vlocity_namespace%__Value__c": "25 Mbps",
"IsLocked": false,
"MayEdit": true,
"Name": "CLONED_01t4S000000UXhWQAW_VEPC_ATTR_UPLOAD_SPEED",
"VlocityDataPackType": "SObject",
"VlocityRecordSObjectType": "%vlocity_namespace%__AttributeAssignment__c",
"VlocityRecordSourceKey": "%vlocity_namespace%__AttributeAssignment__c/7903eb87-ce64-e01b-c6f7-149aa9f30b80"
}
][
{
"%vlocity_namespace%__AttributeDefaultValues__c": "",
"%vlocity_namespace%__AttributeMetadataChanges__c": "",
"%vlocity_namespace%__AttributeMetadata__c": "",
"%vlocity_namespace%__AttributeRules__c": "",
"%vlocity_namespace%__JSONAttribute__c": "{\"VEPC_ATTRIBUTE_CATEGORY_INSTALLATION_DETAILS\":[{\"$$AttributeDefinitionStart$$\":null,\"objectid__c\":\"01t4S000000Up1IQAS\",\"attributeid__c\":\"a4p4S000000g03jQAA\",\"attributecategoryid__c\":\"a4o4S000000fzYeQAI\",\"categorycode__c\":\"VEPC_ATTRIBUTE_CATEGORY_INSTALLATION_DETAILS\",\"categoryname__c\":\"Installation Details\",\"attributeuniquecode__c\":\"VEPC_ATTR_APPOINTMENT_DATE_TIME\",\"attributeconfigurable__c\":true,\"attributedisplaysequence__c\":\"10\",\"attributefilterable__c\":true,\"attributecloneable__c\":true,\"isactive__c\":true,\"attributedisplayname__c\":\"Appointment Date/Time\",\"displaysequence__c\":\"6200\",\"categorydisplaysequence__c\":6200,\"customconfiguitemplate__c\":null,\"formatmask__c\":null,\"hasrule__c\":false,\"isconfigurable__c\":false,\"ishidden__c\":false,\"valueinnumber__c\":null,\"objecttype__c\":\"%vlocity_namespace%__ObjectClass__c\",\"querycode__c\":null,\"isreadonly__c\":false,\"isnottranslatable__c\":false,\"isquerydriven__c\":false,\"querylabel__c\":null,\"id\":\"a4m4S000000kKq0QAE\",\"isrequired__c\":false,\"rulemessage__c\":null,\"uidisplaytype__c\":null,\"value__c\":null,\"valuedatatype__c\":\"Date\",\"valuedescription__c\":null,\"attributegrouptype__c\":null,\"isnotassetizable__c\":false,\"attributeRunTimeInfo\":{\"dataType\":\"Date\"},\"$$AttributeDefinitionEnd$$\":null},{\"$$AttributeDefinitionStart$$\":null,\"objectid__c\":\"01t4S000000Up1IQAS\",\"attributeid__c\":\"a4p4S000000g0ytQAA\",\"attributecategoryid__c\":\"a4o4S000000fzYeQAI\",\"categorycode__c\":\"VEPC_ATTRIBUTE_CATEGORY_INSTALLATION_DETAILS\",\"categoryname__c\":\"Installation Details\",\"attributeuniquecode__c\":\"VEPC_ATTR_IN_BUILDING_CHARGES\",\"attributeconfigurable__c\":true,\"attributedisplaysequence__c\":\"20\",\"attributefilterable__c\":false,\"attributecloneable__c\":true,\"isactive__c\":true,\"attributedisplayname__c\":\"In Building Charges\",\"displaysequence__c\":\"6200\",\"categorydisplaysequence__c\":6200,\"customconfiguitemplate__c\":null,\"formatmask__c\":null,\"hasrule__c\":false,\"isconfigurable__c\":true,\"ishidden__c\":false,\"valueinnumber__c\":null,\"objecttype__c\":\"%vlocity_namespace%__ObjectClass__c\",\"querycode__c\":null,\"isreadonly__c\":false,\"isnottranslatable__c\":false,\"isquerydriven__c\":false,\"querylabel__c\":null,\"id\":\"a4m4S000000kKq7QAE\",\"isrequired__c\":false,\"rulemessage__c\":null,\"uidisplaytype__c\":\"Dropdown\",\"value__c\":\"Customer Responsibility\",\"valuedatatype__c\":\"Picklist\",\"valuedescription__c\":null,\"attributegrouptype__c\":null,\"isnotassetizable__c\":false,\"attributeRunTimeInfo\":{\"dataType\":\"Picklist\",\"uiDisplayType\":\"Dropdown\",\"default\":[{\"displayText\":\"Customer Responsibility\",\"id\":\"78e3c6f2-4740-642f-cbce-72a3aa1ac700\",\"sequence\":10,\"value\":\"Customer Responsibility\"}],\"values\":[{\"displayText\":\"Customer Responsibility\",\"id\":\"78e3c6f2-4740-642f-cbce-72a3aa1ac700\",\"sequence\":10,\"value\":\"Customer Responsibility\"},{\"displayText\":\"Provider Responsibility\",\"id\":\"ad70350a-b670-6603-01c7-e1c16bab5ef6\",\"sequence\":20,\"value\":\"Provider Responsibility\"}]},\"$$AttributeDefinitionEnd$$\":null},{\"$$AttributeDefinitionStart$$\":null,\"objectid__c\":\"01t4S000000Up1IQAS\",\"attributeid__c\":\"a4p4S000000g0yqQAA\",\"attributecategoryid__c\":\"a4o4S000000fzYeQAI\",\"categorycode__c\":\"VEPC_ATTRIBUTE_CATEGORY_INSTALLATION_DETAILS\",\"categoryname__c\":\"Installation Details\",\"attributeuniquecode__c\":\"VEPC_ATTR_CONDUIT_CHARGES\",\"attributeconfigurable__c\":true,\"attributedisplaysequence__c\":\"30\",\"attributefilterable__c\":false,\"attributecloneable__c\":true,\"isactive__c\":true,\"attributedisplayname__c\":\"Conduit Charges\",\"displaysequence__c\":\"6200\",\"categorydisplaysequence__c\":6200,\"customconfiguitemplate__c\":null,\"formatmask__c\":null,\"hasrule__c\":false,\"isconfigurable__c\":true,\"ishidden__c\":false,\"valueinnumber__c\":null,\"objecttype__c\":\"%vlocity_namespace%__ObjectClass__c\",\"querycode__c\":null,\"isreadonly__c\":false,\"isnottranslatable__c\":false,\"isquerydriven__c\":false,\"querylabel__c\":null,\"id\":\"a4m4S000000kKq1QAE\",\"isrequired__c\":false,\"rulemessage__c\":null,\"uidisplaytype__c\":\"Dropdown\",\"value__c\":\"Customer Responsibility\",\"valuedatatype__c\":\"Picklist\",\"valuedescription__c\":null,\"attributegrouptype__c\":null,\"isnotassetizable__c\":false,\"attributeRunTimeInfo\":{\"dataType\":\"Picklist\",\"uiDisplayType\":\"Dropdown\",\"default\":[{\"displayText\":\"Customer Responsibility\",\"id\":\"78e3c6f2-4740-642f-cbce-72a3aa1ac700\",\"sequence\":10,\"value\":\"Customer Responsibility\"}],\"values\":[{\"displayText\":\"Customer Responsibility\",\"id\":\"78e3c6f2-4740-642f-cbce-72a3aa1ac700\",\"sequence\":10,\"value\":\"Customer Responsibility\"},{\"displayText\":\"Provider Responsibility\",\"id\":\"ad70350a-b670-6603-01c7-e1c16bab5ef6\",\"sequence\":20,\"value\":\"Provider Responsibility\"}]},\"$$AttributeDefinitionEnd$$\":null},{\"$$AttributeDefinitionStart$$\":null,\"objectid__c\":\"01t4S000000Up1IQAS\",\"attributeid__c\":\"a4p4S000000g0ysQAA\",\"attributecategoryid__c\":\"a4o4S000000fzYeQAI\",\"categorycode__c\":\"VEPC_ATTRIBUTE_CATEGORY_INSTALLATION_DETAILS\",\"categoryname__c\":\"Installation Details\",\"attributeuniquecode__c\":\"VEPC_ATTR_CROSS_CONNECT_CHARGES\",\"attributeconfigurable__c\":true,\"attributedisplaysequence__c\":\"40\",\"attributefilterable__c\":false,\"attributecloneable__c\":true,\"isactive__c\":true,\"attributedisplayname__c\":\"Cross-Connect Charges\",\"displaysequence__c\":\"6200\",\"categorydisplaysequence__c\":6200,\"customconfiguitemplate__c\":null,\"formatmask__c\":null,\"hasrule__c\":false,\"isconfigurable__c\":true,\"ishidden__c\":false,\"valueinnumber__c\":null,\"objecttype__c\":\"%vlocity_namespace%__ObjectClass__c\",\"querycode__c\":null,\"isreadonly__c\":false,\"isnottranslatable__c\":false,\"isquerydriven__c\":false,\"querylabel__c\":null,\"id\":\"a4m4S000000kKq6QAE\",\"isrequired__c\":false,\"rulemessage__c\":null,\"uidisplaytype__c\":\"Dropdown\",\"value__c\":\"Customer Responsibility\",\"valuedatatype__c\":\"Picklist\",\"valuedescription__c\":null,\"attributegrouptype__c\":null,\"isnotassetizable__c\":false,\"attributeRunTimeInfo\":{\"dataType\":\"Picklist\",\"uiDisplayType\":\"Dropdown\",\"default\":[{\"displayText\":\"Customer Responsibility\",\"id\":\"78e3c6f2-4740-642f-cbce-72a3aa1ac700\",\"sequence\":10,\"value\":\"Customer Responsibility\"}],\"values\":[{\"displayText\":\"Customer Responsibility\",\"id\":\"78e3c6f2-4740-642f-cbce-72a3aa1ac700\",\"sequence\":10,\"value\":\"Customer Responsibility\"},{\"displayText\":\"Provider Responsibility\",\"id\":\"ad70350a-b670-6603-01c7-e1c16bab5ef6\",\"sequence\":20,\"value\":\"Provider Responsibility\"}]},\"$$AttributeDefinitionEnd$$\":null},{\"$$AttributeDefinitionStart$$\":null,\"objectid__c\":\"01t4S000000Up1IQAS\",\"attributeid__c\":\"a4p4S000000g0yuQAA\",\"attributecategoryid__c\":\"a4o4S000000fzYeQAI\",\"categorycode__c\":\"VEPC_ATTRIBUTE_CATEGORY_INSTALLATION_DETAILS\",\"categoryname__c\":\"Installation Details\",\"attributeuniquecode__c\":\"VEPC_ATTR_RAISER_CHARGES\",\"attributeconfigurable__c\":true,\"attributedisplaysequence__c\":\"50\",\"attributefilterable__c\":false,\"attributecloneable__c\":true,\"isactive__c\":true,\"attributedisplayname__c\":\"Raiser Charges\",\"displaysequence__c\":\"6200\",\"categorydisplaysequence__c\":6200,\"customconfiguitemplate__c\":null,\"formatmask__c\":null,\"hasrule__c\":false,\"isconfigurable__c\":true,\"ishidden__c\":false,\"valueinnumber__c\":null,\"objecttype__c\":\"%vlocity_namespace%__ObjectClass__c\",\"querycode__c\":null,\"isreadonly__c\":false,\"isnottranslatable__c\":false,\"isquerydriven__c\":false,\"querylabel__c\":null,\"id\":\"a4m4S000000kKq8QAE\",\"isrequired__c\":false,\"rulemessage__c\":null,\"uidisplaytype__c\":\"Dropdown\",\"value__c\":\"Customer Responsibility\",\"valuedatatype__c\":\"Picklist\",\"valuedescription__c\":null,\"attributegrouptype__c\":null,\"isnotassetizable__c\":false,\"attributeRunTimeInfo\":{\"dataType\":\"Picklist\",\"uiDisplayType\":\"Dropdown\",\"default\":[{\"displayText\":\"Customer Responsibility\",\"id\":\"78e3c6f2-4740-642f-cbce-72a3aa1ac700\",\"sequence\":10,\"value\":\"Customer Responsibility\"}],\"values\":[{\"displayText\":\"Customer Responsibility\",\"id\":\"78e3c6f2-4740-642f-cbce-72a3aa1ac700\",\"sequence\":10,\"value\":\"Customer Responsibility\"},{\"displayText\":\"Provider Responsibility\",\"id\":\"ad70350a-b670-6603-01c7-e1c16bab5ef6\",\"sequence\":20,\"value\":\"Provider Responsibility\"}]},\"$$AttributeDefinitionEnd$$\":null},{\"$$AttributeDefinitionStart$$\":null,\"objectid__c\":\"01t4S000000Up1IQAS\",\"attributeid__c\":\"a4p4S000000g03oQAA\",\"attributecategoryid__c\":\"a4o4S000000fzYeQAI\",\"categorycode__c\":\"VEPC_ATTRIBUTE_CATEGORY_INSTALLATION_DETAILS\",\"categoryname__c\":\"Installation Details\",\"attributeuniquecode__c\":\"VEPC_ATTR_REMARKS\",\"attributeconfigurable__c\":true,\"attributedisplaysequence__c\":\"60\",\"attributefilterable__c\":true,\"attributecloneable__c\":true,\"isactive__c\":true,\"attributedisplayname__c\":\"Remarks\",\"displaysequence__c\":\"6200\",\"categorydisplaysequence__c\":6200,\"customconfiguitemplate__c\":null,\"formatmask__c\":null,\"hasrule__c\":false,\"isconfigurable__c\":false,\"ishidden__c\":false,\"valueinnumber__c\":null,\"objecttype__c\":\"%vlocity_namespace%__ObjectClass__c\",\"querycode__c\":null,\"isreadonly__c\":false,\"isnottranslatable__c\":false,\"isquerydriven__c\":false,\"querylabel__c\":null,\"id\":\"a4m4S000000kKq9QAE\",\"isrequired__c\":false,\"rulemessage__c\":null,\"uidisplaytype__c\":\"Text\",\"value__c\":null,\"valuedatatype__c\":\"Text\",\"valuedescription__c\":null,\"attributegrouptype__c\":null,\"isnotassetizable__c\":false,\"attributeRunTimeInfo\":{\"dataType\":\"Text\",\"uiDisplayType\":\"Text\"},\"$$AttributeDefinitionEnd$$\":null}],\"VEPC_ATTRIBUTE_CATEGORY_CONTACT_DETAILS\":[{\"$$AttributeDefinitionStart$$\":null,\"objectid__c\":\"01t4S000000Up1IQAS\",\"attributeid__c\":\"a4p4S000000g03lQAA\",\"attributecategoryid__c\":\"a4o4S000000g0MmQAI\",\"categorycode__c\":\"VEPC_ATTRIBUTE_CATEGORY_CONTACT_DETAILS\",\"categoryname__c\":\"Contact Details\",\"attributeuniquecode__c\":\"VEPC_ATTR_CONTACT_FIRST_NAME\",\"attributeconfigurable__c\":true,\"attributedisplaysequence__c\":\"10\",\"attributefilterable__c\":true,\"attributecloneable__c\":true,\"isactive__c\":true,\"attributedisplayname__c\":\"Contact First Name\",\"displaysequence__c\":\"6980\",\"categorydisplaysequence__c\":6980,\"customconfiguitemplate__c\":null,\"formatmask__c\":null,\"hasrule__c\":false,\"isconfigurable__c\":false,\"ishidden__c\":false,\"valueinnumber__c\":null,\"objecttype__c\":\"%vlocity_namespace%__ObjectClass__c\",\"querycode__c\":null,\"isreadonly__c\":false,\"isnottranslatable__c\":false,\"isquerydriven__c\":false,\"querylabel__c\":null,\"id\":\"a4m4S000000kKq3QAE\",\"isrequired__c\":false,\"rulemessage__c\":null,\"uidisplaytype__c\":\"Text\",\"value__c\":null,\"valuedatatype__c\":\"Text\",\"valuedescription__c\":null,\"attributegrouptype__c\":null,\"isnotassetizable__c\":false,\"attributeRunTimeInfo\":{\"dataType\":\"Text\",\"uiDisplayType\":\"Text\"},\"$$AttributeDefinitionEnd$$\":null},{\"$$AttributeDefinitionStart$$\":null,\"objectid__c\":\"01t4S000000Up1IQAS\",\"attributeid__c\":\"a4p4S000000g03mQAA\",\"attributecategoryid__c\":\"a4o4S000000g0MmQAI\",\"categorycode__c\":\"VEPC_ATTRIBUTE_CATEGORY_CONTACT_DETAILS\",\"categoryname__c\":\"Contact Details\",\"attributeuniquecode__c\":\"VEPC_ATTR_CONTACT_LAST_NAME\",\"attributeconfigurable__c\":true,\"attributedisplaysequence__c\":\"20\",\"attributefilterable__c\":true,\"attributecloneable__c\":true,\"isactive__c\":true,\"attributedisplayname__c\":\"Contact Last Name\",\"displaysequence__c\":\"6980\",\"categorydisplaysequence__c\":6980,\"customconfiguitemplate__c\":null,\"formatmask__c\":null,\"hasrule__c\":false,\"isconfigurable__c\":false,\"ishidden__c\":false,\"valueinnumber__c\":null,\"objecttype__c\":\"%vlocity_namespace%__ObjectClass__c\",\"querycode__c\":null,\"isreadonly__c\":false,\"isnottranslatable__c\":false,\"isquerydriven__c\":false,\"querylabel__c\":null,\"id\":\"a4m4S000000kKq4QAE\",\"isrequired__c\":false,\"rulemessage__c\":null,\"uidisplaytype__c\":\"Text\",\"value__c\":null,\"valuedatatype__c\":\"Text\",\"valuedescription__c\":null,\"attributegrouptype__c\":null,\"isnotassetizable__c\":false,\"attributeRunTimeInfo\":{\"dataType\":\"Text\",\"uiDisplayType\":\"Text\"},\"$$AttributeDefinitionEnd$$\":null},{\"$$AttributeDefinitionStart$$\":null,\"objectid__c\":\"01t4S000000Up1IQAS\",\"attributeid__c\":\"a4p4S000000g03nQAA\",\"attributecategoryid__c\":\"a4o4S000000g0MmQAI\",\"categorycode__c\":\"VEPC_ATTRIBUTE_CATEGORY_CONTACT_DETAILS\",\"categoryname__c\":\"Contact Details\",\"attributeuniquecode__c\":\"VEPC_ATTR_CONTACT_PHONE_NUMBER\",\"attributeconfigurable__c\":true,\"attributedisplaysequence__c\":\"30\",\"attributefilterable__c\":true,\"attributecloneable__c\":true,\"isactive__c\":true,\"attributedisplayname__c\":\"Contact Phone Number\",\"displaysequence__c\":\"6980\",\"categorydisplaysequence__c\":6980,\"customconfiguitemplate__c\":null,\"formatmask__c\":null,\"hasrule__c\":false,\"isconfigurable__c\":false,\"ishidden__c\":false,\"valueinnumber__c\":null,\"objecttype__c\":\"%vlocity_namespace%__ObjectClass__c\",\"querycode__c\":null,\"isreadonly__c\":false,\"isnottranslatable__c\":false,\"isquerydriven__c\":false,\"querylabel__c\":null,\"id\":\"a4m4S000000kKq5QAE\",\"isrequired__c\":false,\"rulemessage__c\":null,\"uidisplaytype__c\":\"Text\",\"value__c\":null,\"valuedatatype__c\":\"Text\",\"valuedescription__c\":null,\"attributegrouptype__c\":null,\"isnotassetizable__c\":false,\"attributeRunTimeInfo\":{\"dataType\":\"Text\",\"uiDisplayType\":\"Text\"},\"$$AttributeDefinitionEnd$$\":null},{\"$$AttributeDefinitionStart$$\":null,\"objectid__c\":\"01t4S000000Up1IQAS\",\"attributeid__c\":\"a4p4S000000g0yrQAA\",\"attributecategoryid__c\":\"a4o4S000000g0MmQAI\",\"categorycode__c\":\"VEPC_ATTRIBUTE_CATEGORY_CONTACT_DETAILS\",\"categoryname__c\":\"Contact Details\",\"attributeuniquecode__c\":\"VEPC_ATTR_CONTACT_EMAIL_ADDRESS\",\"attributeconfigurable__c\":true,\"attributedisplaysequence__c\":\"40\",\"attributefilterable__c\":true,\"attributecloneable__c\":true,\"isactive__c\":true,\"attributedisplayname__c\":\"Contact E-Mail Address\",\"displaysequence__c\":\"6980\",\"categorydisplaysequence__c\":6980,\"customconfiguitemplate__c\":null,\"formatmask__c\":null,\"hasrule__c\":false,\"isconfigurable__c\":true,\"ishidden__c\":false,\"valueinnumber__c\":null,\"objecttype__c\":\"%vlocity_namespace%__ObjectClass__c\",\"querycode__c\":null,\"isreadonly__c\":false,\"isnottranslatable__c\":false,\"isquerydriven__c\":false,\"querylabel__c\":null,\"id\":\"a4m4S000000kKq2QAE\",\"isrequired__c\":true,\"rulemessage__c\":null,\"uidisplaytype__c\":\"Text\",\"value__c\":null,\"valuedatatype__c\":\"Text\",\"valuedescription__c\":null,\"attributegrouptype__c\":null,\"isnotassetizable__c\":false,\"attributeRunTimeInfo\":{\"dataType\":\"Text\",\"uiDisplayType\":\"Text\"},\"$$AttributeDefinitionEnd$$\":null}]}",
"%vlocity_namespace%__ProductChildItemId__c": "",
"%vlocity_namespace%__ProductId__c": {
"%vlocity_namespace%__GlobalKey__c": "0603228b-79c7-c71b-68d8-92cbbcec6ed0",
"VlocityDataPackType": "VlocityMatchingKeyObject",
"VlocityMatchingRecordSourceKey": "Product2/0603228b-79c7-c71b-68d8-92cbbcec6ed0",
"VlocityRecordSObjectType": "Product2"
},
"IsLocked": false,
"MayEdit": true,
"VlocityDataPackType": "SObject",
"VlocityRecordSObjectType": "%vlocity_namespace%__CompiledAttributeOverride__c",
"VlocityRecordSourceKey": "%vlocity_namespace%__CompiledAttributeOverride__c/Generated1316147930"
},
{
"%vlocity_namespace%__AttributeDefaultValues__c": {
"VEPC_ATTR_CPE_DELIVERY_OPTION": "Technician",
"VEPC_ATTR_CPE_PAYMENT_TYPE": "Buy"
},
"%vlocity_namespace%__AttributeMetadataChanges__c": "{\"VEPC_ATTR_CPE_DELIVERY_OPTION\":{\"required\":true}}",
"%vlocity_namespace%__AttributeMetadata__c": "",
"%vlocity_namespace%__AttributeRules__c": "",
"%vlocity_namespace%__JSONAttribute__c": "{\"VEPC_ATTRIBUTE_CATEGORY_CPE_DETAILS\":[{\"$$AttributeDefinitionStart$$\":null,\"objectid__c\":\"01t4S000000UXgzQAG\",\"attributeid__c\":\"a4p4S000000g03qQAA\",\"attributecategoryid__c\":\"a4o4S000000fzYgQAI\",\"categorycode__c\":\"VEPC_ATTRIBUTE_CATEGORY_CPE_DETAILS\",\"categoryname__c\":\"CPE Details\",\"attributeuniquecode__c\":\"VEPC_ATTR_CPE_PAYMENT_TYPE\",\"attributeconfigurable__c\":true,\"attributedisplaysequence__c\":\"10\",\"attributefilterable__c\":true,\"attributecloneable__c\":true,\"isactive__c\":true,\"attributedisplayname__c\":\"CPE Payment Type\",\"displaysequence__c\":null,\"categorydisplaysequence__c\":6230,\"customconfiguitemplate__c\":null,\"formatmask__c\":null,\"hasrule__c\":false,\"isconfigurable__c\":true,\"ishidden__c\":false,\"valueinnumber__c\":null,\"objecttype__c\":null,\"querycode__c\":null,\"isreadonly__c\":false,\"isnottranslatable__c\":false,\"isquerydriven__c\":false,\"querylabel__c\":null,\"id\":\"a4m4S000000kKqZQAU\",\"isrequired__c\":false,\"rulemessage__c\":null,\"uidisplaytype__c\":\"Dropdown\",\"value__c\":\"Buy\",\"valuedatatype__c\":\"Picklist\",\"valuedescription__c\":null,\"attributegrouptype__c\":null,\"isnotassetizable__c\":false,\"attributeRunTimeInfo\":{\"dataType\":\"Picklist\",\"uiDisplayType\":\"Dropdown\",\"default\":[{\"displayText\":\"Buy\",\"id\":\"4bf89255-c846-1856-3ec0-33123aa1435a\",\"sequence\":10,\"value\":\"Buy\"}],\"values\":[{\"displayText\":\"Buy\",\"id\":\"4bf89255-c846-1856-3ec0-33123aa1435a\",\"sequence\":10,\"value\":\"Buy\"},{\"displayText\":\"Rent\",\"id\":\"4f8fed18-715c-e777-8ace-9de39f254062\",\"sequence\":20,\"value\":\"Rent\"}]},\"$$AttributeDefinitionEnd$$\":null},{\"$$AttributeDefinitionStart$$\":null,\"objectid__c\":\"01t4S000000UXgzQAG\",\"attributeid__c\":\"a4p4S000000g03pQAA\",\"attributecategoryid__c\":\"a4o4S000000fzYgQAI\",\"categorycode__c\":\"VEPC_ATTRIBUTE_CATEGORY_CPE_DETAILS\",\"categoryname__c\":\"CPE Details\",\"attributeuniquecode__c\":\"VEPC_ATTR_CPE_DELIVERY_OPTION\",\"attributeconfigurable__c\":true,\"attributedisplaysequence__c\":\"20\",\"attributefilterable__c\":true,\"attributecloneable__c\":true,\"isactive__c\":true,\"attributedisplayname__c\":\"CPE Delivery Option\",\"displaysequence__c\":null,\"categorydisplaysequence__c\":6230,\"customconfiguitemplate__c\":null,\"formatmask__c\":null,\"hasrule__c\":false,\"isconfigurable__c\":true,\"ishidden__c\":false,\"valueinnumber__c\":null,\"objecttype__c\":null,\"querycode__c\":null,\"isreadonly__c\":false,\"isnottranslatable__c\":false,\"isquerydriven__c\":false,\"querylabel__c\":null,\"id\":\"a4m4S000000kKqeQAE\",\"isrequired__c\":true,\"rulemessage__c\":null,\"uidisplaytype__c\":\"Dropdown\",\"value__c\":\"Technician\",\"valuedatatype__c\":\"Picklist\",\"valuedescription__c\":null,\"attributegrouptype__c\":null,\"isnotassetizable__c\":false,\"attributeRunTimeInfo\":{\"dataType\":\"Picklist\",\"uiDisplayType\":\"Dropdown\",\"default\":[{\"displayText\":\"Technician\",\"id\":\"2be1629e-34ca-a443-e99e-c305c34092c5\",\"sequence\":30,\"value\":\"Technician\"}],\"values\":[{\"displayText\":\"Post\",\"id\":\"4e8b4b82-b35d-d836-2e31-537366aff994\",\"sequence\":10,\"value\":\"Post\"},{\"displayText\":\"Pick-Up\",\"id\":\"284fa3c9-3093-b467-a43b-0da1b1b25694\",\"sequence\":20,\"value\":\"Pick-Up\"},{\"displayText\":\"Technician\",\"id\":\"2be1629e-34ca-a443-e99e-c305c34092c5\",\"sequence\":30,\"value\":\"Technician\"}]},\"$$AttributeDefinitionEnd$$\":null}]}",
"%vlocity_namespace%__ProductChildItemId__c": "",
"%vlocity_namespace%__ProductId__c": {
"%vlocity_namespace%__GlobalKey__c": "0603228b-79c7-c71b-68d8-92cbbcec6ed0",
"VlocityDataPackType": "VlocityMatchingKeyObject",
"VlocityMatchingRecordSourceKey": "Product2/0603228b-79c7-c71b-68d8-92cbbcec6ed0",
"VlocityRecordSObjectType": "Product2"
},
"IsLocked": false,
"MayEdit": true,
"VlocityDataPackType": "SObject",
"VlocityRecordSObjectType": "%vlocity_namespace%__CompiledAttributeOverride__c",
"VlocityRecordSourceKey": "%vlocity_namespace%__CompiledAttributeOverride__c/Generated-494888417"
}
][
{
"%vlocity_namespace%__ConditionData__c": "",
"%vlocity_namespace%__DestinationDefaultQuantity__c": 1,
"%vlocity_namespace%__DestinationMaxQuantity__c": 1,
"%vlocity_namespace%__DestinationMinQuantity__c": 1,
"%vlocity_namespace%__DestinationProductId__c": {
"%vlocity_namespace%__GlobalKey__c": "571cdc7a-cff8-bba2-327a-59cd9860e7fa",
"VlocityDataPackType": "VlocityLookupMatchingKeyObject",
"VlocityLookupRecordSourceKey": "Product2/571cdc7a-cff8-bba2-327a-59cd9860e7fa",
"VlocityRecordSObjectType": "Product2"
},
"%vlocity_namespace%__GlobalKey__c": "5d1de5d3-a26f-ca29-7d78-3f79f26a0e67",
"%vlocity_namespace%__MappingsData__c": "[{\"mapping_type\":\"ad-verbatim\",\"destination_attr_name\":\"DC Product Name\",\"destination_attr_code\":\"DC_ATT_PROD_NAME\",\"source_field_name\":\"Product2.Name\",\"source_type\":\"Field\"}]",
"%vlocity_namespace%__Priority__c": "",
"%vlocity_namespace%__RequireReservation__c": false,
"%vlocity_namespace%__SourceDefaultQuantity__c": 1,
"%vlocity_namespace%__SourceMaxQuantity__c": "",
"%vlocity_namespace%__SourceMinQuantity__c": 0,
"%vlocity_namespace%__SourceProductId__c": {
"%vlocity_namespace%__GlobalKey__c": "0603228b-79c7-c71b-68d8-92cbbcec6ed0",
"VlocityDataPackType": "VlocityMatchingKeyObject",
"VlocityMatchingRecordSourceKey": "Product2/0603228b-79c7-c71b-68d8-92cbbcec6ed0",
"VlocityRecordSObjectType": "Product2"
},
"%vlocity_namespace%__SourceProductId__r.%vlocity_namespace%__GlobalKey__c": "0603228b-79c7-c71b-68d8-92cbbcec6ed0",
"%vlocity_namespace%__XORGroup__c": "",
"IsLocked": false,
"MayEdit": true,
"Name": "Business Internet Essential to B2B Internet Activation RFS",
"VlocityDataPackType": "SObject",
"VlocityRecordSObjectType": "%vlocity_namespace%__DecompositionRelationship__c",
"VlocityRecordSourceKey": "%vlocity_namespace%__DecompositionRelationship__c/Business Internet Essential to B2B Internet Activation RFS/Product2/0603228b-79c7-c71b-68d8-92cbbcec6ed0"
},
{
"%vlocity_namespace%__ConditionData__c": "",
"%vlocity_namespace%__DestinationDefaultQuantity__c": 1,
"%vlocity_namespace%__DestinationMaxQuantity__c": 1,
"%vlocity_namespace%__DestinationMinQuantity__c": 1,
"%vlocity_namespace%__DestinationProductId__c": {
"%vlocity_namespace%__GlobalKey__c": "8c33ab16-bc5e-44f8-f214-0894f966f631",
"VlocityDataPackType": "VlocityLookupMatchingKeyObject",
"VlocityLookupRecordSourceKey": "Product2/8c33ab16-bc5e-44f8-f214-0894f966f631",
"VlocityRecordSObjectType": "Product2"
},
"%vlocity_namespace%__GlobalKey__c": "0350b031-8ba2-ca28-8463-498576828d0d",
"%vlocity_namespace%__MappingsData__c": "[{\"mapping_type\":\"ad-verbatim\",\"destination_attr_name\":\"DC Product Name\",\"destination_attr_code\":\"DC_ATT_PROD_NAME\",\"source_field_name\":\"Product2.Name\",\"source_type\":\"Field\"}]",
"%vlocity_namespace%__Priority__c": "",
"%vlocity_namespace%__RequireReservation__c": false,
"%vlocity_namespace%__SourceDefaultQuantity__c": 1,
"%vlocity_namespace%__SourceMaxQuantity__c": "",
"%vlocity_namespace%__SourceMinQuantity__c": 0,
"%vlocity_namespace%__SourceProductId__c": {
"%vlocity_namespace%__GlobalKey__c": "0603228b-79c7-c71b-68d8-92cbbcec6ed0",
"VlocityDataPackType": "VlocityMatchingKeyObject",
"VlocityMatchingRecordSourceKey": "Product2/0603228b-79c7-c71b-68d8-92cbbcec6ed0",
"VlocityRecordSObjectType": "Product2"
},
"%vlocity_namespace%__SourceProductId__r.%vlocity_namespace%__GlobalKey__c": "0603228b-79c7-c71b-68d8-92cbbcec6ed0",
"%vlocity_namespace%__XORGroup__c": "",
"IsLocked": false,
"MayEdit": true,
"Name": "Business Internet Essential to B2B Internet Inventory RFS",
"VlocityDataPackType": "SObject",
"VlocityRecordSObjectType": "%vlocity_namespace%__DecompositionRelationship__c",
"VlocityRecordSourceKey": "%vlocity_namespace%__DecompositionRelationship__c/Business Internet Essential to B2B Internet Inventory RFS/Product2/0603228b-79c7-c71b-68d8-92cbbcec6ed0"
},
{
"%vlocity_namespace%__ConditionData__c": "",
"%vlocity_namespace%__DestinationDefaultQuantity__c": 1,
"%vlocity_namespace%__DestinationMaxQuantity__c": 1,
"%vlocity_namespace%__DestinationMinQuantity__c": 1,
"%vlocity_namespace%__DestinationProductId__c": {
"%vlocity_namespace%__GlobalKey__c": "ddd33057-ccbe-7add-0f5d-3e5920db6ffc",
"VlocityDataPackType": "VlocityLookupMatchingKeyObject",
"VlocityLookupRecordSourceKey": "Product2/ddd33057-ccbe-7add-0f5d-3e5920db6ffc",
"VlocityRecordSObjectType": "Product2"
},
"%vlocity_namespace%__GlobalKey__c": "47e6ab22-61dc-7a73-e6fd-bc5a7c803074",
"%vlocity_namespace%__MappingsData__c": "[{\"mapping_type\":\"ad-verbatim\",\"destination_attr_name\":\"DC Product Name\",\"destination_attr_code\":\"DC_ATT_PROD_NAME\",\"source_field_name\":\"Product2.Name\",\"source_type\":\"Field\"}]",
"%vlocity_namespace%__Priority__c": "",
"%vlocity_namespace%__RequireReservation__c": false,
"%vlocity_namespace%__SourceDefaultQuantity__c": 1,
"%vlocity_namespace%__SourceMaxQuantity__c": "",
"%vlocity_namespace%__SourceMinQuantity__c": 0,
"%vlocity_namespace%__SourceProductId__c": {
"%vlocity_namespace%__GlobalKey__c": "0603228b-79c7-c71b-68d8-92cbbcec6ed0",
"VlocityDataPackType": "VlocityMatchingKeyObject",
"VlocityMatchingRecordSourceKey": "Product2/0603228b-79c7-c71b-68d8-92cbbcec6ed0",
"VlocityRecordSObjectType": "Product2"
},
"%vlocity_namespace%__SourceProductId__r.%vlocity_namespace%__GlobalKey__c": "0603228b-79c7-c71b-68d8-92cbbcec6ed0",
"%vlocity_namespace%__XORGroup__c": "",
"IsLocked": false,
"MayEdit": true,
"Name": "Business Internet Essential to B2B Internet Provisioning CFS",
"VlocityDataPackType": "SObject",
"VlocityRecordSObjectType": "%vlocity_namespace%__DecompositionRelationship__c",
"VlocityRecordSourceKey": "%vlocity_namespace%__DecompositionRelationship__c/Business Internet Essential to B2B Internet Provisioning CFS/Product2/0603228b-79c7-c71b-68d8-92cbbcec6ed0"
},
{
"%vlocity_namespace%__ConditionData__c": "",
"%vlocity_namespace%__DestinationDefaultQuantity__c": 1,
"%vlocity_namespace%__DestinationMaxQuantity__c": 1,
"%vlocity_namespace%__DestinationMinQuantity__c": 1,
"%vlocity_namespace%__DestinationProductId__c": {
"%vlocity_namespace%__GlobalKey__c": "ffa9c811-54e3-2924-8d1d-3e6bb0f80e33",
"VlocityDataPackType": "VlocityLookupMatchingKeyObject",
"VlocityLookupRecordSourceKey": "Product2/ffa9c811-54e3-2924-8d1d-3e6bb0f80e33",
"VlocityRecordSObjectType": "Product2"
},
"%vlocity_namespace%__GlobalKey__c": "6f64ff3c-2887-f770-40ed-a18ea4e2ba78",
"%vlocity_namespace%__MappingsData__c": "[{\"source_type\":\"Attribute\",\"source_attr_name\":\"Monthly Data Cap\",\"source_attr_code\":\"VEPC_ATTR_MONTHLY_DATA_CAP\",\"mapping_type\":\"ad-verbatim\",\"destination_attr_name\":\"DC Monthly Data Cap\",\"destination_attr_code\":\"DC_ATT_MDC_001\"},{\"source_type\":\"Attribute\",\"source_attr_name\":\"Contract Term\",\"source_attr_code\":\"VEPC_ATTR_CONTRACT_TERM\",\"mapping_type\":\"ad-verbatim\",\"destination_attr_name\":\"DC Contract Term\",\"destination_attr_code\":\"ATT_DC_CT\"},{\"mapping_type\":\"ad-verbatim\",\"destination_attr_name\":\"DC Product Name\",\"destination_attr_code\":\"DC_ATT_PROD_NAME\",\"source_field_name\":\"Product2.Name\",\"source_type\":\"Field\"}]",
"%vlocity_namespace%__Priority__c": "",
"%vlocity_namespace%__RequireReservation__c": false,
"%vlocity_namespace%__SourceDefaultQuantity__c": 1,
"%vlocity_namespace%__SourceMaxQuantity__c": "",
"%vlocity_namespace%__SourceMinQuantity__c": 0,
"%vlocity_namespace%__SourceProductId__c": {
"%vlocity_namespace%__GlobalKey__c": "0603228b-79c7-c71b-68d8-92cbbcec6ed0",
"VlocityDataPackType": "VlocityMatchingKeyObject",
"VlocityMatchingRecordSourceKey": "Product2/0603228b-79c7-c71b-68d8-92cbbcec6ed0",
"VlocityRecordSObjectType": "Product2"
},
"%vlocity_namespace%__SourceProductId__r.%vlocity_namespace%__GlobalKey__c": "0603228b-79c7-c71b-68d8-92cbbcec6ed0",
"%vlocity_namespace%__XORGroup__c": "",
"IsLocked": false,
"MayEdit": true,
"Name": "Business Internet Essential to B2B Internet Billing CFS",
"VlocityDataPackType": "SObject",
"VlocityRecordSObjectType": "%vlocity_namespace%__DecompositionRelationship__c",
"VlocityRecordSourceKey": "%vlocity_namespace%__DecompositionRelationship__c/Business Internet Essential to B2B Internet Billing CFS/Product2/0603228b-79c7-c71b-68d8-92cbbcec6ed0"
},
{
"%vlocity_namespace%__ConditionData__c": "{\"name\":\"Parent Condition\",\"type\":\"AND\",\"singleconditions\":[{\"name\":\"Condition 1\",\"type\":\"SIMPLE\",\"left-side-type\":\"attribute\",\"left-side-datatype\":\"Picklist\",\"left-side\":\"VEPC_ATTR_DOWNLOAD_SPEED\",\"left-side-name\":\"Download Speed\",\"op\":\"<\",\"right-side-type\":\"value\",\"right-side\":\"50 Mbps\"}]}",
"%vlocity_namespace%__DestinationDefaultQuantity__c": 1,
"%vlocity_namespace%__DestinationMaxQuantity__c": 1,
"%vlocity_namespace%__DestinationMinQuantity__c": 1,
"%vlocity_namespace%__DestinationProductId__c": {
"%vlocity_namespace%__GlobalKey__c": "6be8ab7f-b6e7-f3f1-a3ff-255f7e9e465d",
"VlocityDataPackType": "VlocityLookupMatchingKeyObject",
"VlocityLookupRecordSourceKey": "Product2/6be8ab7f-b6e7-f3f1-a3ff-255f7e9e465d",
"VlocityRecordSObjectType": "Product2"
},
"%vlocity_namespace%__GlobalKey__c": "5d959c8f-7643-bdd1-8575-6c7a98c653ac",
"%vlocity_namespace%__MappingsData__c": "[{\"value\":\"4G\",\"mapping_type\":\"static\",\"destination_attr_name\":\"DC Connection Type\",\"destination_attr_code\":\"DC_ATT_CT_01\"},{\"value\":\"Wireless\",\"mapping_type\":\"static\",\"destination_attr_name\":\"DC Device Class\",\"destination_attr_code\":\"DC_ATT_DC_01\"}]",
"%vlocity_namespace%__Priority__c": "",
"%vlocity_namespace%__RequireReservation__c": false,
"%vlocity_namespace%__SourceDefaultQuantity__c": 1,
"%vlocity_namespace%__SourceMaxQuantity__c": "",
"%vlocity_namespace%__SourceMinQuantity__c": 0,
"%vlocity_namespace%__SourceProductId__c": {
"%vlocity_namespace%__GlobalKey__c": "0603228b-79c7-c71b-68d8-92cbbcec6ed0",
"VlocityDataPackType": "VlocityMatchingKeyObject",
"VlocityMatchingRecordSourceKey": "Product2/0603228b-79c7-c71b-68d8-92cbbcec6ed0",
"VlocityRecordSObjectType": "Product2"
},
"%vlocity_namespace%__SourceProductId__r.%vlocity_namespace%__GlobalKey__c": "0603228b-79c7-c71b-68d8-92cbbcec6ed0",
"%vlocity_namespace%__XORGroup__c": "",
"IsLocked": false,
"MayEdit": true,
"Name": "Business Internet Essential to 4G Router CFS",
"VlocityDataPackType": "SObject",
"VlocityRecordSObjectType": "%vlocity_namespace%__DecompositionRelationship__c",
"VlocityRecordSourceKey": "%vlocity_namespace%__DecompositionRelationship__c/Business Internet Essential to 4G Router CFS/Product2/0603228b-79c7-c71b-68d8-92cbbcec6ed0"
},
{
"%vlocity_namespace%__ConditionData__c": "{\"name\":\"Parent Condition\",\"type\":\"AND\",\"singleconditions\":[{\"name\":\"Condition 1\",\"type\":\"SIMPLE\",\"left-side-type\":\"attribute\",\"left-side-datatype\":\"Picklist\",\"left-side\":\"VEPC_ATTR_DOWNLOAD_SPEED\",\"left-side-name\":\"Download Speed\",\"op\":\">=\",\"right-side-type\":\"value\",\"right-side\":\"50 Mbps\"},{\"right-side\":\"250 Mbps\",\"right-side-type\":\"value\",\"op\":\"<\",\"left-side-name\":\"Download Speed\",\"left-side\":\"VEPC_ATTR_DOWNLOAD_SPEED\",\"left-side-datatype\":\"Picklist\",\"left-side-type\":\"attribute\",\"type\":\"SIMPLE\",\"name\":\"Condition 1\"}]}",
"%vlocity_namespace%__DestinationDefaultQuantity__c": 1,
"%vlocity_namespace%__DestinationMaxQuantity__c": 1,
"%vlocity_namespace%__DestinationMinQuantity__c": 1,
"%vlocity_namespace%__DestinationProductId__c": {
"%vlocity_namespace%__GlobalKey__c": "9c845ba8-88c0-b03e-48bc-2e72b9b2cd45",
"VlocityDataPackType": "VlocityLookupMatchingKeyObject",
"VlocityLookupRecordSourceKey": "Product2/9c845ba8-88c0-b03e-48bc-2e72b9b2cd45",
"VlocityRecordSObjectType": "Product2"
},
"%vlocity_namespace%__GlobalKey__c": "4f001673-0ca4-4165-06f4-fff0a9384ba3",
"%vlocity_namespace%__MappingsData__c": "[{\"value\":\"Copper\",\"mapping_type\":\"static\",\"destination_attr_name\":\"DC Connection Type\",\"destination_attr_code\":\"DC_ATT_CT_01\"},{\"value\":\"Wired\",\"mapping_type\":\"static\",\"destination_attr_name\":\"DC Device Class\",\"destination_attr_code\":\"DC_ATT_DC_01\"}]",
"%vlocity_namespace%__Priority__c": "",
"%vlocity_namespace%__RequireReservation__c": false,
"%vlocity_namespace%__SourceDefaultQuantity__c": 1,
"%vlocity_namespace%__SourceMaxQuantity__c": "",
"%vlocity_namespace%__SourceMinQuantity__c": 0,
"%vlocity_namespace%__SourceProductId__c": {
"%vlocity_namespace%__GlobalKey__c": "0603228b-79c7-c71b-68d8-92cbbcec6ed0",
"VlocityDataPackType": "VlocityMatchingKeyObject",
"VlocityMatchingRecordSourceKey": "Product2/0603228b-79c7-c71b-68d8-92cbbcec6ed0",
"VlocityRecordSObjectType": "Product2"
},
"%vlocity_namespace%__SourceProductId__r.%vlocity_namespace%__GlobalKey__c": "0603228b-79c7-c71b-68d8-92cbbcec6ed0",
"%vlocity_namespace%__XORGroup__c": "",
"IsLocked": false,
"MayEdit": true,
"Name": "Business Internet Essential to DSL Router CFS",
"VlocityDataPackType": "SObject",
"VlocityRecordSObjectType": "%vlocity_namespace%__DecompositionRelationship__c",
"VlocityRecordSourceKey": "%vlocity_namespace%__DecompositionRelationship__c/Business Internet Essential to DSL Router CFS/Product2/0603228b-79c7-c71b-68d8-92cbbcec6ed0"
},
{
"%vlocity_namespace%__ConditionData__c": "{\"singleconditions\":[{\"right-side\":\"250 Mbps\",\"right-side-type\":\"value\",\"op\":\">=\",\"left-side-name\":\"Download Speed\",\"left-side\":\"VEPC_ATTR_DOWNLOAD_SPEED\",\"left-side-datatype\":\"Picklist\",\"left-side-type\":\"attribute\",\"type\":\"SIMPLE\",\"name\":\"Condition 1\"}],\"type\":\"AND\",\"name\":\"Parent Condition\"}",
"%vlocity_namespace%__DestinationDefaultQuantity__c": 1,
"%vlocity_namespace%__DestinationMaxQuantity__c": 1,
"%vlocity_namespace%__DestinationMinQuantity__c": 1,
"%vlocity_namespace%__DestinationProductId__c": {
"%vlocity_namespace%__GlobalKey__c": "b1fa4d22-c8ba-9402-551a-4fcfa04921b8",
"VlocityDataPackType": "VlocityLookupMatchingKeyObject",
"VlocityLookupRecordSourceKey": "Product2/b1fa4d22-c8ba-9402-551a-4fcfa04921b8",
"VlocityRecordSObjectType": "Product2"
},
"%vlocity_namespace%__GlobalKey__c": "e7fea101-baed-3177-f8e2-bf72c20a1167",
"%vlocity_namespace%__MappingsData__c": "[{\"value\":\"Fiber\",\"mapping_type\":\"static\",\"destination_attr_name\":\"DC Connection Type\",\"destination_attr_code\":\"DC_ATT_CT_01\"},{\"value\":\"Wired\",\"mapping_type\":\"static\",\"destination_attr_name\":\"DC Device Class\",\"destination_attr_code\":\"DC_ATT_DC_01\"}]",
"%vlocity_namespace%__Priority__c": "",
"%vlocity_namespace%__RequireReservation__c": false,
"%vlocity_namespace%__SourceDefaultQuantity__c": 1,
"%vlocity_namespace%__SourceMaxQuantity__c": "",
"%vlocity_namespace%__SourceMinQuantity__c": 0,
"%vlocity_namespace%__SourceProductId__c": {
"%vlocity_namespace%__GlobalKey__c": "0603228b-79c7-c71b-68d8-92cbbcec6ed0",
"VlocityDataPackType": "VlocityMatchingKeyObject",
"VlocityMatchingRecordSourceKey": "Product2/0603228b-79c7-c71b-68d8-92cbbcec6ed0",
"VlocityRecordSObjectType": "Product2"
},
"%vlocity_namespace%__SourceProductId__r.%vlocity_namespace%__GlobalKey__c": "0603228b-79c7-c71b-68d8-92cbbcec6ed0",
"%vlocity_namespace%__XORGroup__c": "",
"IsLocked": false,
"MayEdit": true,
"Name": "Business Internet Essential to Fiber Router CFS",
"VlocityDataPackType": "SObject",
"VlocityRecordSObjectType": "%vlocity_namespace%__DecompositionRelationship__c",
"VlocityRecordSourceKey": "%vlocity_namespace%__DecompositionRelationship__c/Business Internet Essential to Fiber Router CFS/Product2/0603228b-79c7-c71b-68d8-92cbbcec6ed0"
}
][
{
"%vlocity_namespace%__AddDate__c": "",
"%vlocity_namespace%__AttributeAdjustmentComments__c": "",
"%vlocity_namespace%__AttributeAdjustmentUnits__c": "",
"%vlocity_namespace%__AttributeCategoryId__c": {
"%vlocity_namespace%__Code__c": "COM-ATTRGRP-CONTRACT",
"VlocityDataPackType": "VlocityLookupMatchingKeyObject",
"VlocityLookupRecordSourceKey": "%vlocity_namespace%__AttributeCategory__c/COM-ATTRGRP-CONTRACT",
"VlocityRecordSObjectType": "%vlocity_namespace%__AttributeCategory__c"
},
"%vlocity_namespace%__AttributeDisplayNameOverride__c": "Contract Term",
"%vlocity_namespace%__AttributeDisplaySequence__c": "1",
"%vlocity_namespace%__AttributeId__c": {
"%vlocity_namespace%__Code__c": "COM-ATTR-CONTRACT-TERM",
"VlocityDataPackType": "VlocityLookupMatchingKeyObject",
"VlocityLookupRecordSourceKey": "%vlocity_namespace%__Attribute__c/COM-ATTR-CONTRACT-TERM",
"VlocityRecordSObjectType": "%vlocity_namespace%__Attribute__c"
},
"%vlocity_namespace%__AttributeId__r.%vlocity_namespace%__Code__c": "COM-ATTR-CONTRACT-TERM",
"%vlocity_namespace%__AttributeName__c": "Contract Term",
"%vlocity_namespace%__ConfigurationDetail__c": "",
"%vlocity_namespace%__ConfigurationStages__c": "",
"%vlocity_namespace%__CustomConfigUiTemplate__c": "",
"%vlocity_namespace%__Data__c": "",
"%vlocity_namespace%__DefaultPicklistEntryId__c": "",
"%vlocity_namespace%__DefaultPicklistValueId__c": "",
"%vlocity_namespace%__DisplaySequence__c": "11",
"%vlocity_namespace%__EndStory__c": "",
"%vlocity_namespace%__ExcludedPicklistEntryIds__c": "",
"%vlocity_namespace%__ExcludedPicklistValues__c": "",
"%vlocity_namespace%__FormatMask__c": "",
"%vlocity_namespace%__GlobalKey__c": "9833ab8b-325b-a7bc-4425-283d438ac998",
"%vlocity_namespace%__HasRule__c": false,
"%vlocity_namespace%__HelpText__c": "",
"%vlocity_namespace%__IsActiveAssignment__c": true,
"%vlocity_namespace%__IsConfigurable__c": true,
"%vlocity_namespace%__IsDynamic__c": false,
"%vlocity_namespace%__IsEncrypted__c": false,
"%vlocity_namespace%__IsHidden__c": false,
"%vlocity_namespace%__IsNotAssetizable__c": false,
"%vlocity_namespace%__IsNotTranslatable__c": false,
"%vlocity_namespace%__IsOverride__c": false,
"%vlocity_namespace%__IsQueryDriven__c": false,
"%vlocity_namespace%__IsReadOnly__c": false,
"%vlocity_namespace%__IsRequired__c": false,
"%vlocity_namespace%__LookupFilter__c": "",
"%vlocity_namespace%__LookupObjectId__c": "",
"%vlocity_namespace%__LookupObjectTypeId__c": "",
"%vlocity_namespace%__ObjectId__c": {
"%vlocity_namespace%__GlobalKey__c": "6c9e00c3-1157-411f-ea01-74e780838a1d",
"VlocityDataPackType": "VlocityMatchingKeyObject",
"VlocityMatchingRecordSourceKey": "Product2/6c9e00c3-1157-411f-ea01-74e780838a1d",
"VlocityRecordSObjectType": "Product2"
},
"%vlocity_namespace%__ObjectType__c": "%vlocity_namespace%__ObjectClass__c",
"%vlocity_namespace%__OverrideContext__c": "",
"%vlocity_namespace%__PicklistId__c": {
"%vlocity_namespace%__GlobalKey__c": "12f13f4f-797d-aa59-e243-30ff8fd64666",
"VlocityDataPackType": "VlocityLookupMatchingKeyObject",
"VlocityLookupRecordSourceKey": "%vlocity_namespace%__Picklist__c/12f13f4f-797d-aa59-e243-30ff8fd64666",
"VlocityRecordSObjectType": "%vlocity_namespace%__Picklist__c"
},
"%vlocity_namespace%__QueryCode__c": "",
"%vlocity_namespace%__QueryLabel__c": "",
"%vlocity_namespace%__RemoveDate__c": "",
"%vlocity_namespace%__RemovedFlag__c": false,
"%vlocity_namespace%__RuleData__c": "",
"%vlocity_namespace%__RuleMessage__c": "",
"%vlocity_namespace%__StartStory__c": "",
"%vlocity_namespace%__StyleClass__c": "",
"%vlocity_namespace%__UIDisplayType__c": "Dropdown",
"%vlocity_namespace%__ValidValuesData__c": [
{
"displayText": "1 Year",
"id": "813e5ad3-1cc5-cf2a-f1f3-11f7dbc491b3",
"isDefault": false,
"isEditable": false,
"sequence": 1,
"value": "1 Year"
},
{
"displayText": "2 Years",
"id": "025122e6-a0f4-b7ab-05fd-8dae848b63a0",
"isDefault": false,
"isEditable": false,
"sequence": 2,
"value": "2 Years"
},
{
"displayText": "3 Years",
"id": "71fcbb16-e328-96eb-40d8-04ef3e46846c",
"isDefault": false,
"isEditable": false,
"sequence": 3,
"value": "3 Years"
},
{
"displayText": "Month-to-Month",
"id": "33aa7a0a-ce45-eb38-ee75-cbadc7bc77f7",
"isDefault": true,
"isEditable": false,
"sequence": 4,
"value": "Month-to-Month"
}
],
"%vlocity_namespace%__ValueDataType__c": "Picklist",
"%vlocity_namespace%__ValueDecoder__c": "",
"%vlocity_namespace%__ValueDescription__c": "",
"%vlocity_namespace%__Value__c": "Month-to-Month",
"IsLocked": false,
"MayEdit": true,
"Name": "CLONED_01t4S000000Up18QAC_COM-ATTR-CONTRACT-TERM",
"VlocityDataPackType": "SObject",
"VlocityRecordSObjectType": "%vlocity_namespace%__AttributeAssignment__c",
"VlocityRecordSourceKey": "%vlocity_namespace%__AttributeAssignment__c/9833ab8b-325b-a7bc-4425-283d438ac998"
},
{
"%vlocity_namespace%__AddDate__c": "",
"%vlocity_namespace%__AttributeAdjustmentComments__c": "",
"%vlocity_namespace%__AttributeAdjustmentUnits__c": "",
"%vlocity_namespace%__AttributeCategoryId__c": {
"%vlocity_namespace%__Code__c": "COM-ATTRGRP-INET-PROPS",
"VlocityDataPackType": "VlocityLookupMatchingKeyObject",
"VlocityLookupRecordSourceKey": "%vlocity_namespace%__AttributeCategory__c/COM-ATTRGRP-INET-PROPS",
"VlocityRecordSObjectType": "%vlocity_namespace%__AttributeCategory__c"
},
"%vlocity_namespace%__AttributeDisplayNameOverride__c": "Download Speed",
"%vlocity_namespace%__AttributeDisplaySequence__c": "1",
"%vlocity_namespace%__AttributeId__c": {
"%vlocity_namespace%__Code__c": "COM-ATTR-DOWNLOAD-SPEED",
"VlocityDataPackType": "VlocityLookupMatchingKeyObject",
"VlocityLookupRecordSourceKey": "%vlocity_namespace%__Attribute__c/COM-ATTR-DOWNLOAD-SPEED",
"VlocityRecordSObjectType": "%vlocity_namespace%__Attribute__c"
},
"%vlocity_namespace%__AttributeId__r.%vlocity_namespace%__Code__c": "COM-ATTR-DOWNLOAD-SPEED",
"%vlocity_namespace%__AttributeName__c": "Download Speed",
"%vlocity_namespace%__ConfigurationDetail__c": "",
"%vlocity_namespace%__ConfigurationStages__c": "",
"%vlocity_namespace%__CustomConfigUiTemplate__c": "",
"%vlocity_namespace%__Data__c": "",
"%vlocity_namespace%__DefaultPicklistEntryId__c": "",
"%vlocity_namespace%__DefaultPicklistValueId__c": "",
"%vlocity_namespace%__DisplaySequence__c": "201",
"%vlocity_namespace%__EndStory__c": "",
"%vlocity_namespace%__ExcludedPicklistEntryIds__c": "",
"%vlocity_namespace%__ExcludedPicklistValues__c": "",
"%vlocity_namespace%__FormatMask__c": "",
"%vlocity_namespace%__GlobalKey__c": "d3250970-f533-bcbc-47e5-04a9994d63f4",
"%vlocity_namespace%__HasRule__c": false,
"%vlocity_namespace%__HelpText__c": "",
"%vlocity_namespace%__IsActiveAssignment__c": true,
"%vlocity_namespace%__IsConfigurable__c": true,
"%vlocity_namespace%__IsDynamic__c": false,
"%vlocity_namespace%__IsEncrypted__c": false,
"%vlocity_namespace%__IsHidden__c": false,
"%vlocity_namespace%__IsNotAssetizable__c": false,
"%vlocity_namespace%__IsNotTranslatable__c": false,
"%vlocity_namespace%__IsOverride__c": false,
"%vlocity_namespace%__IsQueryDriven__c": false,
"%vlocity_namespace%__IsReadOnly__c": false,
"%vlocity_namespace%__IsRequired__c": false,
"%vlocity_namespace%__LookupFilter__c": "",
"%vlocity_namespace%__LookupObjectId__c": "",
"%vlocity_namespace%__LookupObjectTypeId__c": "",
"%vlocity_namespace%__ObjectId__c": {
"%vlocity_namespace%__GlobalKey__c": "6c9e00c3-1157-411f-ea01-74e780838a1d",
"VlocityDataPackType": "VlocityMatchingKeyObject",
"VlocityMatchingRecordSourceKey": "Product2/6c9e00c3-1157-411f-ea01-74e780838a1d",
"VlocityRecordSObjectType": "Product2"
},
"%vlocity_namespace%__ObjectType__c": "%vlocity_namespace%__ObjectClass__c",
"%vlocity_namespace%__OverrideContext__c": "",
"%vlocity_namespace%__PicklistId__c": {
"%vlocity_namespace%__GlobalKey__c": "66ae836a-e69c-9cae-5679-e9938f4c7748",
"VlocityDataPackType": "VlocityLookupMatchingKeyObject",
"VlocityLookupRecordSourceKey": "%vlocity_namespace%__Picklist__c/66ae836a-e69c-9cae-5679-e9938f4c7748",
"VlocityRecordSObjectType": "%vlocity_namespace%__Picklist__c"
},
"%vlocity_namespace%__QueryCode__c": "",
"%vlocity_namespace%__QueryLabel__c": "",
"%vlocity_namespace%__RemoveDate__c": "",
"%vlocity_namespace%__RemovedFlag__c": false,
"%vlocity_namespace%__RuleData__c": "",
"%vlocity_namespace%__RuleMessage__c": "",
"%vlocity_namespace%__StartStory__c": "",
"%vlocity_namespace%__StyleClass__c": "",
"%vlocity_namespace%__UIDisplayType__c": "Dropdown",
"%vlocity_namespace%__ValidValuesData__c": [
{
"displayText": "2000 Mbps",
"id": "85c3d796-6d63-5a6d-74fb-f8276023d450",
"isDefault": false,
"isEditable": false,
"sequence": 1,
"value": "2000 Mbps"
},
{
"displayText": "1000 Mbps",
"id": "3c66b69b-83cf-3d47-54b5-7d7a2d3c9c2d",
"isDefault": true,
"isEditable": false,
"sequence": 2,
"value": "1000 Mbps"
},
{
"displayText": "500 Mbps",
"id": "15e2200d-a58c-ee2b-a051-cd55921886e7",
"isDefault": false,
"isEditable": false,
"sequence": 3,
"value": "500 Mbps"
},
{
"displayText": "250 Mbps",
"id": "7538a945-b650-3f90-fb73-ecce04b9215d",
"isDefault": false,
"isEditable": false,
"sequence": 4,
"value": "250 Mbps"
},
{
"displayText": "100 Mbps",
"id": "05cce337-9328-79c7-e2ad-2f0318d1fa8c",
"isDefault": false,
"isEditable": false,
"sequence": 5,
"value": "100 Mbps"
},
{
"displayText": "50 Mbps",
"id": "37e3fcb3-6c75-f104-5532-88baf8806e89",
"isDefault": false,
"isEditable": false,
"sequence": 6,
"value": "50 Mbps"
},
{
"displayText": "25 Mbps",
"id": "fbce4be2-edb1-18b6-85f1-c16775574daa",
"isDefault": false,
"isEditable": false,
"sequence": 7,
"value": "25 Mbps"
}
],
"%vlocity_namespace%__ValueDataType__c": "Picklist",
"%vlocity_namespace%__ValueDecoder__c": "",
"%vlocity_namespace%__ValueDescription__c": "",
"%vlocity_namespace%__Value__c": "1000 Mbps",
"IsLocked": false,
"MayEdit": true,
"Name": "CLONED_01t4S000000Up18QAC_COM-ATTR-DOWNLOAD-SPEED",
"VlocityDataPackType": "SObject",
"VlocityRecordSObjectType": "%vlocity_namespace%__AttributeAssignment__c",
"VlocityRecordSourceKey": "%vlocity_namespace%__AttributeAssignment__c/d3250970-f533-bcbc-47e5-04a9994d63f4"
},
{
"%vlocity_namespace%__AddDate__c": "",
"%vlocity_namespace%__AttributeAdjustmentComments__c": "",
"%vlocity_namespace%__AttributeAdjustmentUnits__c": "",
"%vlocity_namespace%__AttributeCategoryId__c": {
"%vlocity_namespace%__Code__c": "COM-ATTRGRP-INET-PROPS",
"VlocityDataPackType": "VlocityLookupMatchingKeyObject",
"VlocityLookupRecordSourceKey": "%vlocity_namespace%__AttributeCategory__c/COM-ATTRGRP-INET-PROPS",
"VlocityRecordSObjectType": "%vlocity_namespace%__AttributeCategory__c"
},
"%vlocity_namespace%__AttributeDisplayNameOverride__c": "Monthly Data Cap",
"%vlocity_namespace%__AttributeDisplaySequence__c": "3",
"%vlocity_namespace%__AttributeId__c": {
"%vlocity_namespace%__Code__c": "COM-ATTR-DATACAP",
"VlocityDataPackType": "VlocityLookupMatchingKeyObject",
"VlocityLookupRecordSourceKey": "%vlocity_namespace%__Attribute__c/COM-ATTR-DATACAP",
"VlocityRecordSObjectType": "%vlocity_namespace%__Attribute__c"
},
"%vlocity_namespace%__AttributeId__r.%vlocity_namespace%__Code__c": "COM-ATTR-DATACAP",
"%vlocity_namespace%__AttributeName__c": "Monthly Data Cap",
"%vlocity_namespace%__ConfigurationDetail__c": "",
"%vlocity_namespace%__ConfigurationStages__c": "",
"%vlocity_namespace%__CustomConfigUiTemplate__c": "",
"%vlocity_namespace%__Data__c": "",
"%vlocity_namespace%__DefaultPicklistEntryId__c": "",
"%vlocity_namespace%__DefaultPicklistValueId__c": "",
"%vlocity_namespace%__DisplaySequence__c": "201",
"%vlocity_namespace%__EndStory__c": "",
"%vlocity_namespace%__ExcludedPicklistEntryIds__c": "",
"%vlocity_namespace%__ExcludedPicklistValues__c": "",
"%vlocity_namespace%__FormatMask__c": "",
"%vlocity_namespace%__GlobalKey__c": "6710bad2-8006-8109-68a7-fe23e03cfc53",
"%vlocity_namespace%__HasRule__c": false,
"%vlocity_namespace%__HelpText__c": "",
"%vlocity_namespace%__IsActiveAssignment__c": true,
"%vlocity_namespace%__IsConfigurable__c": true,
"%vlocity_namespace%__IsDynamic__c": false,
"%vlocity_namespace%__IsEncrypted__c": false,
"%vlocity_namespace%__IsHidden__c": false,
"%vlocity_namespace%__IsNotAssetizable__c": false,
"%vlocity_namespace%__IsNotTranslatable__c": false,
"%vlocity_namespace%__IsOverride__c": false,
"%vlocity_namespace%__IsQueryDriven__c": false,
"%vlocity_namespace%__IsReadOnly__c": false,
"%vlocity_namespace%__IsRequired__c": false,
"%vlocity_namespace%__LookupFilter__c": "",
"%vlocity_namespace%__LookupObjectId__c": "",
"%vlocity_namespace%__LookupObjectTypeId__c": "",
"%vlocity_namespace%__ObjectId__c": {
"%vlocity_namespace%__GlobalKey__c": "6c9e00c3-1157-411f-ea01-74e780838a1d",
"VlocityDataPackType": "VlocityMatchingKeyObject",
"VlocityMatchingRecordSourceKey": "Product2/6c9e00c3-1157-411f-ea01-74e780838a1d",
"VlocityRecordSObjectType": "Product2"
},
"%vlocity_namespace%__ObjectType__c": "%vlocity_namespace%__ObjectClass__c",
"%vlocity_namespace%__OverrideContext__c": "",
"%vlocity_namespace%__PicklistId__c": {
"%vlocity_namespace%__GlobalKey__c": "d669081a-cf04-64ae-2c39-f8c82c8411c3",
"VlocityDataPackType": "VlocityLookupMatchingKeyObject",
"VlocityLookupRecordSourceKey": "%vlocity_namespace%__Picklist__c/d669081a-cf04-64ae-2c39-f8c82c8411c3",
"VlocityRecordSObjectType": "%vlocity_namespace%__Picklist__c"
},
"%vlocity_namespace%__QueryCode__c": "",
"%vlocity_namespace%__QueryLabel__c": "",
"%vlocity_namespace%__RemoveDate__c": "",
"%vlocity_namespace%__RemovedFlag__c": false,
"%vlocity_namespace%__RuleData__c": "",
"%vlocity_namespace%__RuleMessage__c": "",
"%vlocity_namespace%__StartStory__c": "",
"%vlocity_namespace%__StyleClass__c": "",
"%vlocity_namespace%__UIDisplayType__c": "Dropdown",
"%vlocity_namespace%__ValidValuesData__c": [
{
"displayText": "Unlimited",
"id": "8c74d8a7-1333-1472-2283-38d9bd5f7297",
"isDefault": true,
"isEditable": false,
"sequence": 1,
"value": "Unlimited"
},
{
"displayText": "1 TB",
"id": "a5a5129f-21a7-81ea-3966-4deae215eec1",
"isDefault": false,
"isEditable": false,
"sequence": 2,
"value": "1 TB"
},
{
"displayText": "500 GB",
"id": "8386acfd-d933-fbe2-36f2-c3df3e986bda",
"isDefault": false,
"isEditable": false,
"sequence": 3,
"value": "500 GB"
},
{
"displayText": "100 GB",
"id": "93e95d4c-9bd2-ad2b-3280-3b7241bbad87",
"isDefault": false,
"isEditable": false,
"sequence": 4,
"value": "100 GB"
}
],
"%vlocity_namespace%__ValueDataType__c": "Picklist",
"%vlocity_namespace%__ValueDecoder__c": "",
"%vlocity_namespace%__ValueDescription__c": "",
"%vlocity_namespace%__Value__c": "Unlimited",
"IsLocked": false,
"MayEdit": true,
"Name": "CLONED_01t4S000000Up18QAC_COM-ATTR-DATACAP",
"VlocityDataPackType": "SObject",
"VlocityRecordSObjectType": "%vlocity_namespace%__AttributeAssignment__c",
"VlocityRecordSourceKey": "%vlocity_namespace%__AttributeAssignment__c/6710bad2-8006-8109-68a7-fe23e03cfc53"
},
{
"%vlocity_namespace%__AddDate__c": "",
"%vlocity_namespace%__AttributeAdjustmentComments__c": "",
"%vlocity_namespace%__AttributeAdjustmentUnits__c": "",
"%vlocity_namespace%__AttributeCategoryId__c": {
"%vlocity_namespace%__Code__c": "COM-ATTRGRP-INET-PROPS",
"VlocityDataPackType": "VlocityLookupMatchingKeyObject",
"VlocityLookupRecordSourceKey": "%vlocity_namespace%__AttributeCategory__c/COM-ATTRGRP-INET-PROPS",
"VlocityRecordSObjectType": "%vlocity_namespace%__AttributeCategory__c"
},
"%vlocity_namespace%__AttributeDisplayNameOverride__c": "Upload Speed",
"%vlocity_namespace%__AttributeDisplaySequence__c": "2",
"%vlocity_namespace%__AttributeId__c": {
"%vlocity_namespace%__Code__c": "COM-ATTR-UPLOAD-SPEED",
"VlocityDataPackType": "VlocityLookupMatchingKeyObject",
"VlocityLookupRecordSourceKey": "%vlocity_namespace%__Attribute__c/COM-ATTR-UPLOAD-SPEED",
"VlocityRecordSObjectType": "%vlocity_namespace%__Attribute__c"
},
"%vlocity_namespace%__AttributeId__r.%vlocity_namespace%__Code__c": "COM-ATTR-UPLOAD-SPEED",
"%vlocity_namespace%__AttributeName__c": "Upload Speed",
"%vlocity_namespace%__ConfigurationDetail__c": "",
"%vlocity_namespace%__ConfigurationStages__c": "",
"%vlocity_namespace%__CustomConfigUiTemplate__c": "",
"%vlocity_namespace%__Data__c": "",
"%vlocity_namespace%__DefaultPicklistEntryId__c": "",
"%vlocity_namespace%__DefaultPicklistValueId__c": "",
"%vlocity_namespace%__DisplaySequence__c": "201",
"%vlocity_namespace%__EndStory__c": "",
"%vlocity_namespace%__ExcludedPicklistEntryIds__c": "",
"%vlocity_namespace%__ExcludedPicklistValues__c": "",
"%vlocity_namespace%__FormatMask__c": "",
"%vlocity_namespace%__GlobalKey__c": "89c86787-d9fc-83c7-7d3a-3af5921ce611",
"%vlocity_namespace%__HasRule__c": false,
"%vlocity_namespace%__HelpText__c": "",
"%vlocity_namespace%__IsActiveAssignment__c": true,
"%vlocity_namespace%__IsConfigurable__c": true,
"%vlocity_namespace%__IsDynamic__c": false,
"%vlocity_namespace%__IsEncrypted__c": false,
"%vlocity_namespace%__IsHidden__c": false,
"%vlocity_namespace%__IsNotAssetizable__c": false,
"%vlocity_namespace%__IsNotTranslatable__c": false,
"%vlocity_namespace%__IsOverride__c": false,
"%vlocity_namespace%__IsQueryDriven__c": false,
"%vlocity_namespace%__IsReadOnly__c": false,
"%vlocity_namespace%__IsRequired__c": false,
"%vlocity_namespace%__LookupFilter__c": "",
"%vlocity_namespace%__LookupObjectId__c": "",
"%vlocity_namespace%__LookupObjectTypeId__c": "",
"%vlocity_namespace%__ObjectId__c": {
"%vlocity_namespace%__GlobalKey__c": "6c9e00c3-1157-411f-ea01-74e780838a1d",
"VlocityDataPackType": "VlocityMatchingKeyObject",
"VlocityMatchingRecordSourceKey": "Product2/6c9e00c3-1157-411f-ea01-74e780838a1d",
"VlocityRecordSObjectType": "Product2"
},
"%vlocity_namespace%__ObjectType__c": "%vlocity_namespace%__ObjectClass__c",
"%vlocity_namespace%__OverrideContext__c": "",
"%vlocity_namespace%__PicklistId__c": {
"%vlocity_namespace%__GlobalKey__c": "4c100ad1-b91d-c03f-7787-1cfc8238ee4c",
"VlocityDataPackType": "VlocityLookupMatchingKeyObject",
"VlocityLookupRecordSourceKey": "%vlocity_namespace%__Picklist__c/4c100ad1-b91d-c03f-7787-1cfc8238ee4c",
"VlocityRecordSObjectType": "%vlocity_namespace%__Picklist__c"
},
"%vlocity_namespace%__QueryCode__c": "",
"%vlocity_namespace%__QueryLabel__c": "",
"%vlocity_namespace%__RemoveDate__c": "",
"%vlocity_namespace%__RemovedFlag__c": false,
"%vlocity_namespace%__RuleData__c": "",
"%vlocity_namespace%__RuleMessage__c": "",
"%vlocity_namespace%__StartStory__c": "",
"%vlocity_namespace%__StyleClass__c": "",
"%vlocity_namespace%__UIDisplayType__c": "Dropdown",
"%vlocity_namespace%__ValidValuesData__c": [
{
"displayText": "2000 Mbps",
"id": "739fc5fd-9599-1ebf-db20-37d144270b1a",
"isDefault": false,
"isEditable": false,
"sequence": 1,
"value": "2000 Mbps"
},
{
"displayText": "1000 Mbps",
"id": "755ab17c-baad-3b46-990c-96deab2b02be",
"isDefault": true,
"isEditable": false,
"sequence": 2,
"value": "1000 Mbps"
},
{
"displayText": "500 Mbps",
"id": "b07767d7-2033-5d6f-0077-7f43935afb8c",
"isDefault": false,
"isEditable": false,
"sequence": 3,
"value": "500 Mbps"
},
{
"displayText": "250 Mbps",
"id": "adb10da2-7267-42bf-8443-e971bb042796",
"isDefault": false,
"isEditable": false,
"sequence": 4,
"value": "250 Mbps"
},
{
"displayText": "100 Mbps",
"id": "c0add799-e677-908a-75a2-d93c75f481c3",
"isDefault": false,
"isEditable": false,
"sequence": 5,
"value": "100 Mbps"
},
{
"displayText": "25 Mbps",
"id": "71d8aeca-a725-8590-b8e7-4460b08565a7",
"isDefault": false,
"isEditable": false,
"sequence": 6,
"value": "25 Mbps"
},
{
"displayText": "10 Mbps",
"id": "643ceabd-3913-36cd-c950-bbbddebfd5c2",
"isDefault": false,
"isEditable": false,
"sequence": 7,
"value": "10 Mbps"
}
],
"%vlocity_namespace%__ValueDataType__c": "Picklist",
"%vlocity_namespace%__ValueDecoder__c": "",
"%vlocity_namespace%__ValueDescription__c": "",
"%vlocity_namespace%__Value__c": "1000 Mbps",
"IsLocked": false,
"MayEdit": true,
"Name": "CLONED_01t4S000000Up18QAC_COM-ATTR-UPLOAD-SPEED",
"VlocityDataPackType": "SObject",
"VlocityRecordSObjectType": "%vlocity_namespace%__AttributeAssignment__c",
"VlocityRecordSourceKey": "%vlocity_namespace%__AttributeAssignment__c/89c86787-d9fc-83c7-7d3a-3af5921ce611"
}
][
{
"%vlocity_namespace%__AttributeDefaultValues__c": "",
"%vlocity_namespace%__AttributeMetadataChanges__c": "",
"%vlocity_namespace%__AttributeMetadata__c": "",
"%vlocity_namespace%__AttributeRules__c": "",
"%vlocity_namespace%__JSONAttribute__c": "{\"B2C-ATTRCAT-CONTRACT-DETAILS\":[{\"$$AttributeDefinitionStart$$\":null,\"objectid__c\":\"01t4S000000UWYjQAO\",\"attributeid__c\":\"a4p4S000000g0H3QAI\",\"attributecategoryid__c\":\"a4o4S000000fzldQAA\",\"categorycode__c\":\"B2C-ATTRCAT-CONTRACT-DETAILS\",\"categoryname__c\":\"Contract Details B2C\",\"attributeuniquecode__c\":\"B2C-ATTR-CONTRACT-TERM\",\"attributeconfigurable__c\":true,\"attributedisplaysequence__c\":\"10\",\"attributefilterable__c\":false,\"attributecloneable__c\":true,\"isactive__c\":true,\"attributedisplayname__c\":\"Contract Term\",\"displaysequence__c\":null,\"categorydisplaysequence__c\":4,\"customconfiguitemplate__c\":null,\"formatmask__c\":null,\"hasrule__c\":false,\"isconfigurable__c\":true,\"ishidden__c\":true,\"valueinnumber__c\":null,\"objecttype__c\":null,\"querycode__c\":null,\"isreadonly__c\":false,\"isnottranslatable__c\":false,\"isquerydriven__c\":false,\"querylabel__c\":null,\"id\":\"a4m4S000000kTq2QAE\",\"isrequired__c\":false,\"rulemessage__c\":null,\"uidisplaytype__c\":\"Dropdown\",\"value__c\":null,\"valuedatatype__c\":\"Picklist\",\"valuedescription__c\":null,\"attributegrouptype__c\":null,\"isnotassetizable__c\":false,\"attributeRunTimeInfo\":{\"dataType\":\"Picklist\",\"uiDisplayType\":\"Dropdown\",\"values\":[{\"displayText\":\"Month-to-Month\",\"id\":\"c5b114ff-392e-d675-8ca4-e6dc968f825f\",\"sequence\":10,\"value\":\"Month-to-Month\"},{\"displayText\":\"1 Year\",\"id\":\"de8e52ba-3b75-55e6-4ead-e54fae90c191\",\"sequence\":20,\"value\":\"1 Year\"},{\"displayText\":\"2 Years\",\"id\":\"61c0114d-1839-7031-7ed0-5cab16ab48c6\",\"sequence\":30,\"value\":\"2 Years\"},{\"displayText\":\"3 Years\",\"id\":\"50314205-66e4-21f3-d682-40d94560d469\",\"sequence\":40,\"value\":\"3 Years\"}],\"default\":[]},\"$$AttributeDefinitionEnd$$\":null}],\"B2C-ATTRCAT-INTERNET-DETAILS\":[{\"$$AttributeDefinitionStart$$\":null,\"objectid__c\":\"01t4S000000UWYjQAO\",\"attributeid__c\":\"a4p4S000000g0HBQAY\",\"attributecategoryid__c\":\"a4o4S000000fzlfQAA\",\"categorycode__c\":\"B2C-ATTRCAT-INTERNET-DETAILS\",\"categoryname__c\":\"Internet Details B2C\",\"attributeuniquecode__c\":\"B2C-ATTR-INET-MONTHLY-DATA-CAP\",\"attributeconfigurable__c\":true,\"attributedisplaysequence__c\":\"1\",\"attributefilterable__c\":true,\"attributecloneable__c\":true,\"isactive__c\":true,\"attributedisplayname__c\":\"Monthly Data Cap\",\"displaysequence__c\":null,\"categorydisplaysequence__c\":5,\"customconfiguitemplate__c\":null,\"formatmask__c\":null,\"hasrule__c\":false,\"isconfigurable__c\":true,\"ishidden__c\":true,\"valueinnumber__c\":null,\"objecttype__c\":null,\"querycode__c\":null,\"isreadonly__c\":false,\"isnottranslatable__c\":false,\"isquerydriven__c\":false,\"querylabel__c\":null,\"id\":\"a4m4S000000kTpxQAE\",\"isrequired__c\":false,\"rulemessage__c\":null,\"uidisplaytype__c\":\"Dropdown\",\"value__c\":null,\"valuedatatype__c\":\"Picklist\",\"valuedescription__c\":null,\"attributegrouptype__c\":null,\"isnotassetizable__c\":false,\"attributeRunTimeInfo\":{\"dataType\":\"Picklist\",\"uiDisplayType\":\"Dropdown\",\"values\":[{\"displayText\":\"100 GB\",\"id\":\"5734af5d-e2da-36a8-018f-d70957e72ab5\",\"sequence\":10,\"value\":\"100 GB\"},{\"displayText\":\"500 GB\",\"id\":\"9d5d7212-d0ff-0da3-b72a-b61d80746db5\",\"sequence\":20,\"value\":\"500 GB\"},{\"displayText\":\"1 TB\",\"id\":\"473ebb69-840d-a434-237f-4682128b517d\",\"sequence\":30,\"value\":\"1 TB\"},{\"displayText\":\"Unlimited\",\"id\":\"734a2ae4-a58d-e9e0-3c34-bf0e76f3b22a\",\"sequence\":40,\"value\":\"Unlimited\"}],\"default\":[]},\"$$AttributeDefinitionEnd$$\":null},{\"$$AttributeDefinitionStart$$\":null,\"objectid__c\":\"01t4S000000UWYjQAO\",\"attributeid__c\":\"a4p4S000000g0HAQAY\",\"attributecategoryid__c\":\"a4o4S000000fzlfQAA\",\"categorycode__c\":\"B2C-ATTRCAT-INTERNET-DETAILS\",\"categoryname__c\":\"Internet Details B2C\",\"attributeuniquecode__c\":\"B2C-ATTR-INET-DOWNLOAD-SPEED\",\"attributeconfigurable__c\":true,\"attributedisplaysequence__c\":\"10\",\"attributefilterable__c\":true,\"attributecloneable__c\":true,\"isactive__c\":true,\"attributedisplayname__c\":\"Download Speed\",\"displaysequence__c\":null,\"categorydisplaysequence__c\":5,\"customconfiguitemplate__c\":null,\"formatmask__c\":null,\"hasrule__c\":false,\"isconfigurable__c\":true,\"ishidden__c\":true,\"valueinnumber__c\":null,\"objecttype__c\":null,\"querycode__c\":null,\"isreadonly__c\":false,\"isnottranslatable__c\":false,\"isquerydriven__c\":false,\"querylabel__c\":null,\"id\":\"a4m4S000000kTq7QAE\",\"isrequired__c\":false,\"rulemessage__c\":null,\"uidisplaytype__c\":\"Dropdown\",\"value__c\":null,\"valuedatatype__c\":\"Picklist\",\"valuedescription__c\":null,\"attributegrouptype__c\":null,\"isnotassetizable__c\":false,\"attributeRunTimeInfo\":{\"dataType\":\"Picklist\",\"uiDisplayType\":\"Dropdown\",\"values\":[{\"displayText\":\"5 Mbps\",\"id\":\"2d8dcda5-307e-50da-551d-b11eeb49bf27\",\"sequence\":1,\"value\":\"5\"},{\"displayText\":\"10 Mbps\",\"id\":\"530127cb-6bcf-19f7-7e5d-5ba825a9779b\",\"sequence\":2,\"value\":\"10\"},{\"displayText\":\"25 Mbps\",\"id\":\"bf67e13a-43dc-1a6b-c5dd-932c12c57474\",\"sequence\":3,\"value\":\"25\"},{\"displayText\":\"50 Mbps\",\"id\":\"4938a38a-6875-37ea-2d2a-995c6677a31a\",\"sequence\":4,\"value\":\"50\"},{\"displayText\":\"100 Mbps\",\"id\":\"2122d07d-2b33-5641-b184-e939da1d32a0\",\"sequence\":5,\"value\":\"100\"},{\"displayText\":\"250 Mbps\",\"id\":\"44ee8772-86ed-56d0-e877-cb852db3edba\",\"sequence\":6,\"value\":\"250\"},{\"displayText\":\"500 Mbps\",\"id\":\"ceba6861-0879-5681-cc5e-f828e17a76ec\",\"sequence\":7,\"value\":\"500\"},{\"displayText\":\"1000 Mbps\",\"id\":\"936e1769-e4ee-41a9-b9fe-4015e29e7ad5\",\"sequence\":8,\"value\":\"1000\"},{\"displayText\":\"2000 Mbps\",\"id\":\"30794b35-921e-5b31-7e04-cae8f5943e5c\",\"sequence\":9,\"value\":\"2000\"}],\"default\":[]},\"$$AttributeDefinitionEnd$$\":null},{\"$$AttributeDefinitionStart$$\":null,\"objectid__c\":\"01t4S000000UWYjQAO\",\"attributeid__c\":\"a4p4S000000g0HCQAY\",\"attributecategoryid__c\":\"a4o4S000000fzlfQAA\",\"categorycode__c\":\"B2C-ATTRCAT-INTERNET-DETAILS\",\"categoryname__c\":\"Internet Details B2C\",\"attributeuniquecode__c\":\"B2C-ATTR-INET-UPLOAD-SPEED\",\"attributeconfigurable__c\":true,\"attributedisplaysequence__c\":\"20\",\"attributefilterable__c\":true,\"attributecloneable__c\":true,\"isactive__c\":true,\"attributedisplayname__c\":\"Upload Speed\",\"displaysequence__c\":null,\"categorydisplaysequence__c\":5,\"customconfiguitemplate__c\":null,\"formatmask__c\":null,\"hasrule__c\":false,\"isconfigurable__c\":true,\"ishidden__c\":true,\"valueinnumber__c\":null,\"objecttype__c\":null,\"querycode__c\":null,\"isreadonly__c\":false,\"isnottranslatable__c\":false,\"isquerydriven__c\":false,\"querylabel__c\":null,\"id\":\"a4m4S000000kTqCQAU\",\"isrequired__c\":false,\"rulemessage__c\":null,\"uidisplaytype__c\":\"Dropdown\",\"value__c\":null,\"valuedatatype__c\":\"Picklist\",\"valuedescription__c\":null,\"attributegrouptype__c\":null,\"isnotassetizable__c\":false,\"attributeRunTimeInfo\":{\"dataType\":\"Picklist\",\"uiDisplayType\":\"Dropdown\",\"values\":[{\"displayText\":\"5 Mbps\",\"id\":\"2d8dcda5-307e-50da-551d-b11eeb49bf27\",\"sequence\":1,\"value\":\"5\"},{\"displayText\":\"10 Mbps\",\"id\":\"530127cb-6bcf-19f7-7e5d-5ba825a9779b\",\"sequence\":2,\"value\":\"10\"},{\"displayText\":\"25 Mbps\",\"id\":\"bf67e13a-43dc-1a6b-c5dd-932c12c57474\",\"sequence\":3,\"value\":\"25\"},{\"displayText\":\"50 Mbps\",\"id\":\"4938a38a-6875-37ea-2d2a-995c6677a31a\",\"sequence\":4,\"value\":\"50\"},{\"displayText\":\"100 Mbps\",\"id\":\"2122d07d-2b33-5641-b184-e939da1d32a0\",\"sequence\":5,\"value\":\"100\"},{\"displayText\":\"250 Mbps\",\"id\":\"44ee8772-86ed-56d0-e877-cb852db3edba\",\"sequence\":6,\"value\":\"250\"},{\"displayText\":\"500 Mbps\",\"id\":\"ceba6861-0879-5681-cc5e-f828e17a76ec\",\"sequence\":7,\"value\":\"500\"},{\"displayText\":\"1000 Mbps\",\"id\":\"936e1769-e4ee-41a9-b9fe-4015e29e7ad5\",\"sequence\":8,\"value\":\"1000\"},{\"displayText\":\"2000 Mbps\",\"id\":\"30794b35-921e-5b31-7e04-cae8f5943e5c\",\"sequence\":9,\"value\":\"2000\"}],\"default\":[]},\"$$AttributeDefinitionEnd$$\":null}]}",
"%vlocity_namespace%__ProductChildItemId__c": "",
"%vlocity_namespace%__ProductId__c": {
"%vlocity_namespace%__GlobalKey__c": "6c9e00c3-1157-411f-ea01-74e780838a1d",
"VlocityDataPackType": "VlocityMatchingKeyObject",
"VlocityMatchingRecordSourceKey": "Product2/6c9e00c3-1157-411f-ea01-74e780838a1d",
"VlocityRecordSObjectType": "Product2"
},
"IsLocked": false,
"MayEdit": true,
"VlocityDataPackType": "SObject",
"VlocityRecordSObjectType": "%vlocity_namespace%__CompiledAttributeOverride__c",
"VlocityRecordSourceKey": "%vlocity_namespace%__CompiledAttributeOverride__c/Generated1967993509"
}
][
{
"%vlocity_namespace%__ConditionData__c": "",
"%vlocity_namespace%__DestinationDefaultQuantity__c": 1,
"%vlocity_namespace%__DestinationMaxQuantity__c": 1,
"%vlocity_namespace%__DestinationMinQuantity__c": 1,
"%vlocity_namespace%__DestinationProductId__c": {
"%vlocity_namespace%__GlobalKey__c": "571cdc7a-cff8-bba2-327a-59cd9860e7fa",
"VlocityDataPackType": "VlocityLookupMatchingKeyObject",
"VlocityLookupRecordSourceKey": "Product2/571cdc7a-cff8-bba2-327a-59cd9860e7fa",
"VlocityRecordSObjectType": "Product2"
},
"%vlocity_namespace%__GlobalKey__c": "372957cc-dd0f-01af-1925-5724cfbb1ed0",
"%vlocity_namespace%__MappingsData__c": "[{\"mapping_type\":\"ad-verbatim\",\"destination_attr_name\":\"DC Product Name\",\"destination_attr_code\":\"DC_ATT_PROD_NAME\",\"source_field_name\":\"Product2.Name\",\"source_type\":\"Field\"}]",
"%vlocity_namespace%__Priority__c": "",
"%vlocity_namespace%__RequireReservation__c": false,
"%vlocity_namespace%__SourceDefaultQuantity__c": 1,
"%vlocity_namespace%__SourceMaxQuantity__c": "",
"%vlocity_namespace%__SourceMinQuantity__c": 0,
"%vlocity_namespace%__SourceProductId__c": {
"%vlocity_namespace%__GlobalKey__c": "6c9e00c3-1157-411f-ea01-74e780838a1d",
"VlocityDataPackType": "VlocityMatchingKeyObject",
"VlocityMatchingRecordSourceKey": "Product2/6c9e00c3-1157-411f-ea01-74e780838a1d",
"VlocityRecordSObjectType": "Product2"
},
"%vlocity_namespace%__SourceProductId__r.%vlocity_namespace%__GlobalKey__c": "6c9e00c3-1157-411f-ea01-74e780838a1d",
"%vlocity_namespace%__XORGroup__c": "",
"IsLocked": false,
"MayEdit": true,
"Name": "Business Fiber Internet to B2B Internet Activation CFS",
"VlocityDataPackType": "SObject",
"VlocityRecordSObjectType": "%vlocity_namespace%__DecompositionRelationship__c",
"VlocityRecordSourceKey": "%vlocity_namespace%__DecompositionRelationship__c/Business Fiber Internet to B2B Internet Activation CFS/Product2/6c9e00c3-1157-411f-ea01-74e780838a1d"
},
{
"%vlocity_namespace%__ConditionData__c": "",
"%vlocity_namespace%__DestinationDefaultQuantity__c": 1,
"%vlocity_namespace%__DestinationMaxQuantity__c": 1,
"%vlocity_namespace%__DestinationMinQuantity__c": 1,
"%vlocity_namespace%__DestinationProductId__c": {
"%vlocity_namespace%__GlobalKey__c": "6be8ab7f-b6e7-f3f1-a3ff-255f7e9e465d",
"VlocityDataPackType": "VlocityLookupMatchingKeyObject",
"VlocityLookupRecordSourceKey": "Product2/6be8ab7f-b6e7-f3f1-a3ff-255f7e9e465d",
"VlocityRecordSObjectType": "Product2"
},
"%vlocity_namespace%__GlobalKey__c": "86806718-c90c-9a16-d341-1ba85212038c",
"%vlocity_namespace%__MappingsData__c": "",
"%vlocity_namespace%__Priority__c": "",
"%vlocity_namespace%__RequireReservation__c": false,
"%vlocity_namespace%__SourceDefaultQuantity__c": 1,
"%vlocity_namespace%__SourceMaxQuantity__c": "",
"%vlocity_namespace%__SourceMinQuantity__c": 0,
"%vlocity_namespace%__SourceProductId__c": {
"%vlocity_namespace%__GlobalKey__c": "6c9e00c3-1157-411f-ea01-74e780838a1d",
"VlocityDataPackType": "VlocityMatchingKeyObject",
"VlocityMatchingRecordSourceKey": "Product2/6c9e00c3-1157-411f-ea01-74e780838a1d",
"VlocityRecordSObjectType": "Product2"
},
"%vlocity_namespace%__SourceProductId__r.%vlocity_namespace%__GlobalKey__c": "6c9e00c3-1157-411f-ea01-74e780838a1d",
"%vlocity_namespace%__XORGroup__c": "",
"IsLocked": false,
"MayEdit": true,
"Name": "Business Fiber Internet to ONT CPE Termination CFS",
"VlocityDataPackType": "SObject",
"VlocityRecordSObjectType": "%vlocity_namespace%__DecompositionRelationship__c",
"VlocityRecordSourceKey": "%vlocity_namespace%__DecompositionRelationship__c/Business Fiber Internet to ONT CPE Termination CFS/Product2/6c9e00c3-1157-411f-ea01-74e780838a1d"
},
{
"%vlocity_namespace%__ConditionData__c": "",
"%vlocity_namespace%__DestinationDefaultQuantity__c": 1,
"%vlocity_namespace%__DestinationMaxQuantity__c": 1,
"%vlocity_namespace%__DestinationMinQuantity__c": 1,
"%vlocity_namespace%__DestinationProductId__c": {
"%vlocity_namespace%__GlobalKey__c": "8c33ab16-bc5e-44f8-f214-0894f966f631",
"VlocityDataPackType": "VlocityLookupMatchingKeyObject",
"VlocityLookupRecordSourceKey": "Product2/8c33ab16-bc5e-44f8-f214-0894f966f631",
"VlocityRecordSObjectType": "Product2"
},
"%vlocity_namespace%__GlobalKey__c": "8e4e8d1c-666d-ec73-49a2-0625fe40fe1a",
"%vlocity_namespace%__MappingsData__c": "[{\"mapping_type\":\"ad-verbatim\",\"destination_attr_name\":\"DC Product Name\",\"destination_attr_code\":\"DC_ATT_PROD_NAME\",\"source_field_name\":\"Product2.Name\",\"source_type\":\"Field\"}]",
"%vlocity_namespace%__Priority__c": "",
"%vlocity_namespace%__RequireReservation__c": false,
"%vlocity_namespace%__SourceDefaultQuantity__c": 1,
"%vlocity_namespace%__SourceMaxQuantity__c": "",
"%vlocity_namespace%__SourceMinQuantity__c": 0,
"%vlocity_namespace%__SourceProductId__c": {
"%vlocity_namespace%__GlobalKey__c": "6c9e00c3-1157-411f-ea01-74e780838a1d",
"VlocityDataPackType": "VlocityMatchingKeyObject",
"VlocityMatchingRecordSourceKey": "Product2/6c9e00c3-1157-411f-ea01-74e780838a1d",
"VlocityRecordSObjectType": "Product2"
},
"%vlocity_namespace%__SourceProductId__r.%vlocity_namespace%__GlobalKey__c": "6c9e00c3-1157-411f-ea01-74e780838a1d",
"%vlocity_namespace%__XORGroup__c": "",
"IsLocked": false,
"MayEdit": true,
"Name": "Business Fiber Internet to B2B Internet Inventory CFS",
"VlocityDataPackType": "SObject",
"VlocityRecordSObjectType": "%vlocity_namespace%__DecompositionRelationship__c",
"VlocityRecordSourceKey": "%vlocity_namespace%__DecompositionRelationship__c/Business Fiber Internet to B2B Internet Inventory CFS/Product2/6c9e00c3-1157-411f-ea01-74e780838a1d"
},
{
"%vlocity_namespace%__ConditionData__c": "",
"%vlocity_namespace%__DestinationDefaultQuantity__c": 1,
"%vlocity_namespace%__DestinationMaxQuantity__c": 1,
"%vlocity_namespace%__DestinationMinQuantity__c": 1,
"%vlocity_namespace%__DestinationProductId__c": {
"%vlocity_namespace%__GlobalKey__c": "9c845ba8-88c0-b03e-48bc-2e72b9b2cd45",
"VlocityDataPackType": "VlocityLookupMatchingKeyObject",
"VlocityLookupRecordSourceKey": "Product2/9c845ba8-88c0-b03e-48bc-2e72b9b2cd45",
"VlocityRecordSObjectType": "Product2"
},
"%vlocity_namespace%__GlobalKey__c": "32dbbc9a-fae5-b0fc-0f93-40dedd02be52",
"%vlocity_namespace%__MappingsData__c": "",
"%vlocity_namespace%__Priority__c": "",
"%vlocity_namespace%__RequireReservation__c": false,
"%vlocity_namespace%__SourceDefaultQuantity__c": 1,
"%vlocity_namespace%__SourceMaxQuantity__c": "",
"%vlocity_namespace%__SourceMinQuantity__c": 0,
"%vlocity_namespace%__SourceProductId__c": {
"%vlocity_namespace%__GlobalKey__c": "6c9e00c3-1157-411f-ea01-74e780838a1d",
"VlocityDataPackType": "VlocityMatchingKeyObject",
"VlocityMatchingRecordSourceKey": "Product2/6c9e00c3-1157-411f-ea01-74e780838a1d",
"VlocityRecordSObjectType": "Product2"
},
"%vlocity_namespace%__SourceProductId__r.%vlocity_namespace%__GlobalKey__c": "6c9e00c3-1157-411f-ea01-74e780838a1d",
"%vlocity_namespace%__XORGroup__c": "",
"IsLocked": false,
"MayEdit": true,
"Name": "Business Fiber Internet to Internet Security CFS",
"VlocityDataPackType": "SObject",
"VlocityRecordSObjectType": "%vlocity_namespace%__DecompositionRelationship__c",
"VlocityRecordSourceKey": "%vlocity_namespace%__DecompositionRelationship__c/Business Fiber Internet to Internet Security CFS/Product2/6c9e00c3-1157-411f-ea01-74e780838a1d"
},
{
"%vlocity_namespace%__ConditionData__c": "",
"%vlocity_namespace%__DestinationDefaultQuantity__c": 1,
"%vlocity_namespace%__DestinationMaxQuantity__c": 1,
"%vlocity_namespace%__DestinationMinQuantity__c": 1,
"%vlocity_namespace%__DestinationProductId__c": {
"%vlocity_namespace%__GlobalKey__c": "ddd33057-ccbe-7add-0f5d-3e5920db6ffc",
"VlocityDataPackType": "VlocityLookupMatchingKeyObject",
"VlocityLookupRecordSourceKey": "Product2/ddd33057-ccbe-7add-0f5d-3e5920db6ffc",
"VlocityRecordSObjectType": "Product2"
},
"%vlocity_namespace%__GlobalKey__c": "1cf4bae8-0b19-38cb-2e9e-2116b9428dcc",
"%vlocity_namespace%__MappingsData__c": "[{\"mapping_type\":\"ad-verbatim\",\"destination_attr_name\":\"DC Product Name\",\"destination_attr_code\":\"DC_ATT_PROD_NAME\",\"source_field_name\":\"Product2.Name\",\"source_type\":\"Field\"}]",
"%vlocity_namespace%__Priority__c": "",
"%vlocity_namespace%__RequireReservation__c": false,
"%vlocity_namespace%__SourceDefaultQuantity__c": 1,
"%vlocity_namespace%__SourceMaxQuantity__c": "",
"%vlocity_namespace%__SourceMinQuantity__c": 0,
"%vlocity_namespace%__SourceProductId__c": {
"%vlocity_namespace%__GlobalKey__c": "6c9e00c3-1157-411f-ea01-74e780838a1d",
"VlocityDataPackType": "VlocityMatchingKeyObject",
"VlocityMatchingRecordSourceKey": "Product2/6c9e00c3-1157-411f-ea01-74e780838a1d",
"VlocityRecordSObjectType": "Product2"
},
"%vlocity_namespace%__SourceProductId__r.%vlocity_namespace%__GlobalKey__c": "6c9e00c3-1157-411f-ea01-74e780838a1d",
"%vlocity_namespace%__XORGroup__c": "",
"IsLocked": false,
"MayEdit": true,
"Name": "Business Fiber Internet To B2B Internet Provisioning CFS",
"VlocityDataPackType": "SObject",
"VlocityRecordSObjectType": "%vlocity_namespace%__DecompositionRelationship__c",
"VlocityRecordSourceKey": "%vlocity_namespace%__DecompositionRelationship__c/Business Fiber Internet To B2B Internet Provisioning CFS/Product2/6c9e00c3-1157-411f-ea01-74e780838a1d"
},
{
"%vlocity_namespace%__ConditionData__c": "",
"%vlocity_namespace%__DestinationDefaultQuantity__c": 1,
"%vlocity_namespace%__DestinationMaxQuantity__c": 1,
"%vlocity_namespace%__DestinationMinQuantity__c": 1,
"%vlocity_namespace%__DestinationProductId__c": {
"%vlocity_namespace%__GlobalKey__c": "ffa9c811-54e3-2924-8d1d-3e6bb0f80e33",
"VlocityDataPackType": "VlocityLookupMatchingKeyObject",
"VlocityLookupRecordSourceKey": "Product2/ffa9c811-54e3-2924-8d1d-3e6bb0f80e33",
"VlocityRecordSObjectType": "Product2"
},
"%vlocity_namespace%__GlobalKey__c": "1c691a51-7ea8-bf2b-75b9-2a828ea760e3",
"%vlocity_namespace%__MappingsData__c": "[{\"source_type\":\"Attribute\",\"source_attr_name\":\"Monthly Data Cap\",\"source_attr_code\":\"B2C-ATTR-INET-MONTHLY-DATA-CAP\",\"mapping_type\":\"ad-verbatim\",\"destination_attr_name\":\"DC Monthly Data Cap\",\"destination_attr_code\":\"DC_ATT_MDC_001\"},{\"source_type\":\"Attribute\",\"source_attr_name\":\"Contract Term\",\"source_attr_code\":\"B2C-ATTR-CONTRACT-TERM\",\"mapping_type\":\"ad-verbatim\",\"destination_attr_name\":\"DC Contract Term\",\"destination_attr_code\":\"ATT_DC_CT\"},{\"source_type\":\"Field\",\"source_field_name\":\"Product2.Name\",\"mapping_type\":\"ad-verbatim\",\"destination_attr_name\":\"DC Product Name\",\"destination_attr_code\":\"DC_ATT_PROD_NAME\"}]",
"%vlocity_namespace%__Priority__c": "",
"%vlocity_namespace%__RequireReservation__c": false,
"%vlocity_namespace%__SourceDefaultQuantity__c": 1,
"%vlocity_namespace%__SourceMaxQuantity__c": "",
"%vlocity_namespace%__SourceMinQuantity__c": 0,
"%vlocity_namespace%__SourceProductId__c": {
"%vlocity_namespace%__GlobalKey__c": "6c9e00c3-1157-411f-ea01-74e780838a1d",
"VlocityDataPackType": "VlocityMatchingKeyObject",
"VlocityMatchingRecordSourceKey": "Product2/6c9e00c3-1157-411f-ea01-74e780838a1d",
"VlocityRecordSObjectType": "Product2"
},
"%vlocity_namespace%__SourceProductId__r.%vlocity_namespace%__GlobalKey__c": "6c9e00c3-1157-411f-ea01-74e780838a1d",
"%vlocity_namespace%__XORGroup__c": "",
"IsLocked": false,
"MayEdit": true,
"Name": "Business Fiber Internet to B2B Internet Billing CFS",
"VlocityDataPackType": "SObject",
"VlocityRecordSObjectType": "%vlocity_namespace%__DecompositionRelationship__c",
"VlocityRecordSourceKey": "%vlocity_namespace%__DecompositionRelationship__c/Business Fiber Internet to B2B Internet Billing CFS/Product2/6c9e00c3-1157-411f-ea01-74e780838a1d"
}
][
{
"%vlocity_namespace%__Action__c": "Add",
"%vlocity_namespace%__ConditionData__c": "",
"%vlocity_namespace%__GlobalKey__c": "0389925c-cbc4-efeb-d7e7-f08f380b9a53",
"%vlocity_namespace%__OrchestrationPlanDefinitionId__c": {
"Name": "E2E Plan - Internet",
"VlocityDataPackType": "VlocityLookupMatchingKeyObject",
"VlocityLookupRecordSourceKey": "%vlocity_namespace%__OrchestrationPlanDefinition__c/E2E Plan - Internet",
"VlocityRecordSObjectType": "%vlocity_namespace%__OrchestrationPlanDefinition__c"
},
"%vlocity_namespace%__OrchestrationPlanId__c": "",
"%vlocity_namespace%__Product2Id__c": {
"%vlocity_namespace%__GlobalKey__c": "6c9e00c3-1157-411f-ea01-74e780838a1d",
"VlocityDataPackType": "VlocityMatchingKeyObject",
"VlocityMatchingRecordSourceKey": "Product2/6c9e00c3-1157-411f-ea01-74e780838a1d",
"VlocityRecordSObjectType": "Product2"
},
"%vlocity_namespace%__Product2Id__r.%vlocity_namespace%__GlobalKey__c": "6c9e00c3-1157-411f-ea01-74e780838a1d",
"%vlocity_namespace%__SubAction__c": "",
"IsLocked": false,
"MayEdit": true,
"Name": "Business Fiber Internet - New Add Scenario",
"VlocityDataPackType": "SObject",
"VlocityRecordSObjectType": "%vlocity_namespace%__OrchestrationScenario__c",
"VlocityRecordSourceKey": "%vlocity_namespace%__OrchestrationScenario__c/Business Fiber Internet - New Add Scenario/0389925c-cbc4-efeb-d7e7-f08f380b9a53/Product2/6c9e00c3-1157-411f-ea01-74e780838a1d"
},
{
"%vlocity_namespace%__Action__c": "Add",
"%vlocity_namespace%__ConditionData__c": "",
"%vlocity_namespace%__GlobalKey__c": "df9f4ed6-ae16-dd70-8c74-35d96b0e50a2",
"%vlocity_namespace%__OrchestrationPlanDefinitionId__c": {
"Name": "Network Services - Internet",
"VlocityDataPackType": "VlocityLookupMatchingKeyObject",
"VlocityLookupRecordSourceKey": "%vlocity_namespace%__OrchestrationPlanDefinition__c/Network Services - Internet",
"VlocityRecordSObjectType": "%vlocity_namespace%__OrchestrationPlanDefinition__c"
},
"%vlocity_namespace%__OrchestrationPlanId__c": "",
"%vlocity_namespace%__Product2Id__c": {
"%vlocity_namespace%__GlobalKey__c": "6c9e00c3-1157-411f-ea01-74e780838a1d",
"VlocityDataPackType": "VlocityMatchingKeyObject",
"VlocityMatchingRecordSourceKey": "Product2/6c9e00c3-1157-411f-ea01-74e780838a1d",
"VlocityRecordSObjectType": "Product2"
},
"%vlocity_namespace%__Product2Id__r.%vlocity_namespace%__GlobalKey__c": "6c9e00c3-1157-411f-ea01-74e780838a1d",
"%vlocity_namespace%__SubAction__c": "",
"IsLocked": false,
"MayEdit": true,
"Name": "Business Fiber Internet - Change/Update Scenario",
"VlocityDataPackType": "SObject",
"VlocityRecordSObjectType": "%vlocity_namespace%__OrchestrationScenario__c",
"VlocityRecordSourceKey": "%vlocity_namespace%__OrchestrationScenario__c/Business Fiber Internet - Change/Update Scenario/df9f4ed6-ae16-dd70-8c74-35d96b0e50a2/Product2/6c9e00c3-1157-411f-ea01-74e780838a1d"
}
][
"AttributeCategory/B2C-ATTRCAT-CONTRACT-DETAILS",
"AttributeCategory/B2C-ATTRCAT-INTERNET-DETAILS",
"AttributeCategory/COM-ATTRGRP-CONTRACT",
"AttributeCategory/COM-ATTRGRP-INET-PROPS",
"ObjectClass/63ba6ae5f8c257f7cdccc385d2a85dca",
"OrchestrationPlanDefinition/E2E Plan - Internet",
"OrchestrationPlanDefinition/Network Services - Internet",
"PriceList/COM-PL-ENT",
"Product2/4d6e8345-0fb5-68b3-6669-89b442454253",
"Product2/571cdc7a-cff8-bba2-327a-59cd9860e7fa",
"Product2/6be8ab7f-b6e7-f3f1-a3ff-255f7e9e465d",
"Product2/8c33ab16-bc5e-44f8-f214-0894f966f631",
"Product2/9c845ba8-88c0-b03e-48bc-2e72b9b2cd45",
"Product2/b049bb1a-a3a0-64cc-20ed-db7616e7c3a4",
"Product2/ddd33057-ccbe-7add-0f5d-3e5920db6ffc",
"Product2/ffa9c811-54e3-2924-8d1d-3e6bb0f80e33",
"Rule/ad2ee105-2c12-63d9-9d3c-a1f3fef54ad7",
"VlocityPicklist/12f13f4f-797d-aa59-e243-30ff8fd64666",
"VlocityPicklist/4c100ad1-b91d-c03f-7787-1cfc8238ee4c",
"VlocityPicklist/66ae836a-e69c-9cae-5679-e9938f4c7748",
"VlocityPicklist/d669081a-cf04-64ae-2c39-f8c82c8411c3"
][
"AttributeCategory/COM-ATTRGRP-MOB-DEV-DETAILS",
"ObjectClass/01cb6f43b20be4d66d8b447f8598e996",
"ObjectClass/63ba6ae5f8c257f7cdccc385d2a85dca",
"OrchestrationPlanDefinition/COM New Mobile Phone Orch Plan",
"PriceList/COM-PL-ENT",
"PriceList/COM-PL-SMB",
"Product2/490eeff7-c02a-1fbc-226c-b1f60d8e5340",
"Product2/f97cb208-e1bb-1227-20ea-90bf7b46c43f",
"VlocityPicklist/2f2e59bd-78a0-1d7d-650e-dbf2d789130f",
"VlocityPicklist/76e6ac1d-c0ce-4103-1da4-b0e849a7ff04",
"VlocityPicklist/8a914224-a4ff-ac3b-2865-564776a81f8c"
][
"AttributeCategory/VEPC_ATTRIBUTE_CATEGORY_OTHER_DETAILS",
"ObjectClass/63ba6ae5f8c257f7cdccc385d2a85dca",
"ObjectClass/ac94df-d97b60-6e4a37-fc08e6-84a7cb54f",
"PriceList/COM-PL-ENT",
"Product2/8c33ab16-bc5e-44f8-f214-0894f966f631",
"VlocityPicklist/f7604927-f69c-f314-8eca-14db12cbaa2e"
]
[]
[]