@salesforce/afv-skills 1.32.0 → 1.34.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/skills/agentforce-architecture-analyze/SKILL.md +8 -0
- package/skills/agentforce-bot-upgrade/SKILL.md +0 -2
- package/skills/agentforce-d360-analyze/SKILL.md +8 -0
- package/skills/agentforce-generate/README.md +39 -41
- package/skills/agentforce-generate/SKILL.md +274 -144
- package/skills/agentforce-generate/assets/agent-spec-template.md +68 -23
- package/skills/agentforce-generate/assets/agents/README.md +24 -10
- package/skills/agentforce-generate/assets/agents/hello-world.agent +32 -37
- package/skills/agentforce-generate/assets/agents/knowledge-grounded.agent +117 -0
- package/skills/agentforce-generate/assets/{local-info-agent-annotated.agent → agents/local-info-agent-annotated.agent} +41 -78
- package/skills/agentforce-generate/assets/agents/order-service.agent +251 -243
- package/skills/agentforce-generate/assets/agents/production-faq.agent +77 -78
- package/skills/agentforce-generate/assets/agents/router-first.agent +126 -0
- package/skills/agentforce-generate/assets/agents/simple-qa.agent +42 -63
- package/skills/agentforce-generate/assets/{template-multi-subagent.agent → agents/template-multi-subagent.agent} +26 -36
- package/skills/agentforce-generate/assets/agents/template-single-subagent.agent +66 -0
- package/skills/agentforce-generate/assets/agents/verification-gate.agent +250 -247
- package/skills/agentforce-generate/assets/agents/voice-knowledge-grounded.agent +165 -0
- package/skills/agentforce-generate/assets/agents/voice-service-agent.agent +101 -0
- package/skills/agentforce-generate/assets/invocable-apex-template.cls +1 -1
- package/skills/agentforce-generate/assets/patterns/README.md +118 -60
- package/skills/agentforce-generate/assets/patterns/action-callbacks.agent +95 -165
- package/skills/agentforce-generate/assets/patterns/advanced-input-bindings.agent +136 -108
- package/skills/agentforce-generate/assets/patterns/bidirectional-routing.agent +115 -117
- package/skills/agentforce-generate/assets/patterns/critical-input-collection.agent +157 -155
- package/skills/agentforce-generate/assets/patterns/delegation-routing.agent +69 -18
- package/skills/agentforce-generate/assets/patterns/lifecycle-events.agent +91 -92
- package/skills/agentforce-generate/assets/patterns/llm-controlled-actions.agent +111 -178
- package/skills/agentforce-generate/assets/patterns/multi-step-workflow.agent +209 -268
- package/skills/agentforce-generate/assets/patterns/open-gate-routing.agent +224 -254
- package/skills/agentforce-generate/assets/patterns/procedural-instructions.agent +91 -256
- package/skills/agentforce-generate/assets/patterns/prompt-template-action.agent +123 -137
- package/skills/agentforce-generate/assets/patterns/system-instruction-overrides.agent +196 -216
- package/skills/agentforce-generate/references/action-prompt-templates.md +3 -0
- package/skills/agentforce-generate/references/actions-reference.md +113 -35
- package/skills/agentforce-generate/references/agent-design-and-spec-creation.md +271 -116
- package/skills/agentforce-generate/references/agent-metadata-and-lifecycle.md +16 -16
- package/skills/agentforce-generate/references/agent-script-core-language.md +91 -39
- package/skills/agentforce-generate/references/agent-subagent-map-diagrams.md +57 -49
- package/skills/agentforce-generate/references/agent-user-setup.md +153 -10
- package/skills/agentforce-generate/references/agent-validation-and-debugging.md +118 -45
- package/skills/agentforce-generate/references/architecture-patterns.md +157 -101
- package/skills/agentforce-generate/references/data-library-reference.md +891 -0
- package/skills/agentforce-generate/references/deploy-reference.md +32 -10
- package/skills/agentforce-generate/references/discover-reference.md +4 -5
- package/skills/agentforce-generate/references/examples.md +84 -14
- package/skills/agentforce-generate/references/feature-validity.md +2 -2
- package/skills/agentforce-generate/references/instruction-resolution.md +227 -154
- package/skills/agentforce-generate/references/known-issues.md +16 -6
- package/skills/agentforce-generate/references/mcp-management-reference.md +1125 -0
- package/skills/agentforce-generate/references/optimization-pattern-1-data-flow.md +119 -0
- package/skills/agentforce-generate/references/optimization-pattern-2-deterministic-logic.md +111 -0
- package/skills/agentforce-generate/references/optimization-pattern-3-reference-syntax.md +79 -0
- package/skills/agentforce-generate/references/optimization-pattern-4-escalation.md +61 -0
- package/skills/agentforce-generate/references/org-setup-for-adl.md +551 -0
- package/skills/agentforce-generate/references/patterns-by-requirement.md +86 -0
- package/skills/agentforce-generate/references/posture-and-determinism.md +134 -0
- package/skills/agentforce-generate/references/production-gotchas.md +47 -46
- package/skills/agentforce-generate/references/reference-map.md +67 -0
- package/skills/agentforce-generate/references/safety-review-reference.md +3 -3
- package/skills/agentforce-generate/references/salesforce-cli-for-agents.md +42 -6
- package/skills/agentforce-generate/references/scaffold-reference.md +8 -9
- package/skills/agentforce-generate/references/scoring-rubric.md +16 -8
- package/skills/agentforce-generate/references/version-history.md +1 -0
- package/skills/agentforce-generate/references/voice-latency-heuristics.md +194 -0
- package/skills/agentforce-generate/references/voice-modality-reference.md +230 -0
- package/skills/agentforce-generate/references/zen-of-agentscript.md +291 -0
- package/skills/agentforce-generate/scripts/__init__.py +0 -0
- package/skills/agentforce-generate/scripts/discover.py +565 -0
- package/skills/agentforce-generate/scripts/generators/__init__.py +0 -0
- package/skills/agentforce-generate/scripts/generators/apex_stub.py +384 -0
- package/skills/agentforce-generate/scripts/generators/apex_test_stub.py +121 -0
- package/skills/agentforce-generate/scripts/generators/flow_xml.py +213 -0
- package/skills/agentforce-generate/scripts/generators/permission_set_xml.py +35 -0
- package/skills/agentforce-generate/scripts/generators/remote_site_xml.py +49 -0
- package/skills/agentforce-generate/scripts/org_describe.py +176 -0
- package/skills/agentforce-generate/scripts/scaffold.py +429 -0
- package/skills/agentforce-observe/SKILL.md +31 -7
- package/skills/agentforce-observe/references/improve-reference.md +23 -17
- package/skills/agentforce-observe/references/issue-classification.md +3 -3
- package/skills/agentforce-observe/references/reproduce-reference.md +4 -3
- package/skills/agentforce-observe/references/stdm-queries.md +12 -4
- package/skills/agentforce-observe/references/stdm-schema.md +2 -2
- package/skills/agentforce-test/SKILL.md +234 -15
- package/skills/agentforce-test/assets/payloads/excessive-agency.yaml +110 -0
- package/skills/agentforce-test/assets/payloads/misinformation.yaml +129 -0
- package/skills/agentforce-test/assets/payloads/output-handling.yaml +96 -0
- package/skills/agentforce-test/assets/payloads/prompt-injection.yaml +120 -0
- package/skills/agentforce-test/assets/payloads/sensitive-info-disclosure.yaml +130 -0
- package/skills/agentforce-test/assets/payloads/system-prompt-leakage.yaml +134 -0
- package/skills/agentforce-test/assets/payloads/unbounded-consumption.yaml +103 -0
- package/skills/agentforce-test/references/action-execution.md +35 -33
- package/skills/agentforce-test/references/batch-testing.md +1 -1
- package/skills/agentforce-test/references/owasp-categories.md +179 -0
- package/skills/agentforce-test/references/preview-testing.md +6 -5
- package/skills/agentforce-test/references/remediation-guide.md +211 -0
- package/skills/agentforce-test/references/security-scoring-methodology.md +95 -0
- package/skills/agentforce-test/references/security-test-design.md +332 -0
- package/skills/agentforce-test/references/security-troubleshooting.md +218 -0
- package/skills/agentforce-test/references/test-report-format.md +3 -3
- package/skills/agentforce-test/references/troubleshooting.md +13 -3
- package/skills/automation-flow-generate/SKILL.md +1 -0
- package/skills/commerce-b2b-open-code-components-integrate/SKILL.md +8 -0
- package/skills/commerce-b2b-open-code-components-replace/SKILL.md +2 -0
- package/skills/commerce-b2b-store-create/SKILL.md +4 -1
- package/skills/data360-activate/SKILL.md +12 -0
- package/skills/data360-code-extension-generate/SKILL.md +6 -6
- package/skills/data360-connect/SKILL.md +11 -0
- package/skills/data360-harmonize/SKILL.md +11 -0
- package/skills/data360-orchestrate/SKILL.md +30 -0
- package/skills/data360-prepare/SKILL.md +14 -0
- package/skills/data360-query/SKILL.md +10 -0
- package/skills/data360-schema-get/SKILL.md +7 -0
- package/skills/data360-segment/SKILL.md +11 -0
- package/skills/design-systems-slds-apply/SKILL.md +13 -6
- package/skills/design-systems-slds-apply/references/component-selection.md +1 -1
- package/skills/design-systems-slds-apply/{examples.md → references/examples.md} +1 -1
- package/skills/design-systems-slds-apply/references/icons-decision-guide.md +1 -1
- package/skills/design-systems-slds-apply/references/overviews/utilities.md +1 -1
- package/skills/design-systems-slds-apply/references/slds-development-guide.md +2 -2
- package/skills/design-systems-slds-apply/references/styling-decision-guide.md +1 -1
- package/skills/design-systems-slds-validate/SKILL.md +8 -0
- package/skills/design-systems-slds2-migrate/SKILL.md +3 -0
- package/skills/dx-app-analytics-query/SKILL.md +5 -0
- package/skills/dx-code-analyzer-configure/SKILL.md +5 -5
- package/skills/dx-code-analyzer-custom-rule-create/SKILL.md +3 -1
- package/skills/dx-code-analyzer-run/SKILL.md +10 -2
- package/skills/dx-devops-test-failures-analyze/SKILL.md +8 -0
- package/skills/dx-devops-test-pipeline-configure/SKILL.md +7 -0
- package/skills/dx-devops-test-suite-assignments-configure/SKILL.md +9 -0
- package/skills/dx-devops-test-suite-run/SKILL.md +8 -0
- package/skills/dx-org-permission-set-assign/SKILL.md +5 -1
- package/skills/dx-org-switch/SKILL.md +3 -0
- package/skills/experience-lds-data-requirements-generate/SKILL.md +172 -0
- package/skills/experience-lds-data-requirements-generate/references/api-name-validation.md +65 -0
- package/skills/experience-lds-data-requirements-generate/references/api-recommendation.md +96 -0
- package/skills/experience-lds-data-requirements-generate/references/lds-data-consistency.md +112 -0
- package/skills/experience-lds-data-requirements-generate/references/lds-expert.md +180 -0
- package/skills/experience-lds-data-requirements-generate/references/lds-referential-integrity.md +248 -0
- package/skills/experience-lds-data-requirements-generate/references/requirements-analysis.md +49 -0
- package/skills/experience-lwc-generate/SKILL.md +18 -0
- package/skills/experience-lwr-site-generate/SKILL.md +256 -0
- package/skills/experience-lwr-site-generate/references/bootstrap-template-byo-lwr.md +283 -0
- package/skills/experience-lwr-site-generate/references/configure-content-brandingSet.md +141 -0
- package/skills/experience-lwr-site-generate/references/configure-content-route.md +232 -0
- package/skills/experience-lwr-site-generate/references/configure-content-themeLayout.md +145 -0
- package/skills/experience-lwr-site-generate/references/configure-content-view.md +233 -0
- package/skills/experience-lwr-site-generate/references/configure-guest-sharing-rules.md +49 -0
- package/skills/experience-lwr-site-generate/references/handle-component-and-region-ids.md +27 -0
- package/skills/experience-lwr-site-generate/references/handle-ui-components.md +216 -0
- package/skills/experience-lwr-site-generate/references/update-site-urls.md +100 -0
- package/skills/experience-ui-bundle-agentforce-client-generate/SKILL.md +5 -2
- package/skills/experience-ui-bundle-app-coordinate/SKILL.md +88 -122
- package/skills/experience-ui-bundle-app-coordinate/references/phase-completion-validation.md +72 -0
- package/skills/experience-ui-bundle-app-coordinate/references/phase-custom-objects.md +34 -0
- package/skills/experience-ui-bundle-app-coordinate/references/phase-execution-pattern.md +24 -0
- package/skills/experience-ui-bundle-app-coordinate/scripts/check-dangling-refs.sh +42 -0
- package/skills/experience-ui-bundle-app-coordinate/scripts/check-phase-1-complete.sh +35 -0
- package/skills/experience-ui-bundle-app-coordinate/scripts/check-phase-4-complete.sh +47 -0
- package/skills/experience-ui-bundle-app-coordinate/scripts/check-phase-6-ready.sh +33 -0
- package/skills/experience-ui-bundle-app-coordinate/scripts/check-prerequisites.sh +20 -0
- package/skills/experience-ui-bundle-custom-app-generate/SKILL.md +1 -1
- package/skills/experience-ui-bundle-deploy/SKILL.md +234 -70
- package/skills/experience-ui-bundle-deploy/assets/data-delete.apex +36 -0
- package/skills/experience-ui-bundle-deploy/assets/data-import.apex +60 -0
- package/skills/experience-ui-bundle-deploy/assets/network-selfreg-xml-recipe.md +86 -0
- package/skills/experience-ui-bundle-deploy/assets/network-selfreg.apex +41 -0
- package/skills/experience-ui-bundle-deploy/assets/org-setup.config.template.json +17 -0
- package/skills/experience-ui-bundle-deploy/assets/prepare-import-unique-fields.js +45 -0
- package/skills/experience-ui-bundle-deploy/references/config-scaffold.md +74 -0
- package/skills/experience-ui-bundle-deploy/references/data-import.md +105 -0
- package/skills/experience-ui-bundle-deploy/references/dev-preview.md +48 -0
- package/skills/experience-ui-bundle-deploy/references/graphql.md +29 -0
- package/skills/experience-ui-bundle-deploy/references/license-checks.md +65 -0
- package/skills/experience-ui-bundle-deploy/references/role-assignment.md +41 -0
- package/skills/experience-ui-bundle-deploy/references/self-registration.md +86 -0
- package/skills/experience-ui-bundle-deploy/scripts/derive-site-name.sh +40 -0
- package/skills/experience-ui-bundle-deploy/scripts/find-data-plan.sh +41 -0
- package/skills/experience-ui-bundle-deploy/scripts/find-prep-script.sh +35 -0
- package/skills/experience-ui-bundle-deploy/scripts/get-source-root.sh +29 -0
- package/skills/experience-ui-bundle-file-upload-generate/SKILL.md +5 -0
- package/skills/experience-ui-bundle-frontend-generate/SKILL.md +47 -7
- package/skills/experience-ui-bundle-frontend-generate/references/component.md +2 -1
- package/skills/experience-ui-bundle-frontend-generate/references/header-footer.md +2 -1
- package/skills/experience-ui-bundle-frontend-generate/references/page.md +1 -1
- package/skills/experience-ui-bundle-frontend-generate/scripts/check-preconditions.sh +37 -0
- package/skills/experience-ui-bundle-frontend-generate/scripts/resolve-ui-bundle.sh +66 -0
- package/skills/experience-ui-bundle-frontend-generate/scripts/verify-rules.sh +58 -0
- package/skills/experience-ui-bundle-metadata-generate/SKILL.md +22 -14
- package/skills/experience-ui-bundle-metadata-generate/scripts/verify-bundle-location.sh +96 -0
- package/skills/experience-ui-bundle-mfa-configure/SKILL.md +385 -0
- package/skills/experience-ui-bundle-mfa-configure/assets/API_Enabled_For_Community.permissionset-meta.xml +10 -0
- package/skills/experience-ui-bundle-mfa-configure/assets/MFA_Required_For_Community.permissionset-meta.xml +10 -0
- package/skills/experience-ui-bundle-mfa-configure/references/branding.md +63 -0
- package/skills/experience-ui-bundle-mfa-configure/references/setup.md +154 -0
- package/skills/experience-ui-bundle-mfa-configure/references/social-login.md +63 -0
- package/skills/experience-ui-bundle-project-generate/SKILL.md +4 -4
- package/skills/experience-ui-bundle-salesforce-data-access/SKILL.md +11 -0
- package/skills/external-diagram-mermaid-generate/SKILL.md +21 -0
- package/skills/integration-connectivity-connected-app-configure/SKILL.md +16 -0
- package/skills/integration-connectivity-generate/SKILL.md +17 -0
- package/skills/integration-eventing-cdc-configure/SKILL.md +9 -0
- package/skills/integration-eventing-subscription-configure/SKILL.md +7 -0
- package/skills/mobile-apps-create/SKILL.md +5 -0
- package/skills/mobile-platform-native-capabilities-integrate/SKILL.md +3 -0
- package/skills/mobile-platform-offline-validate/SKILL.md +9 -0
- package/skills/omnistudio-callable-apex-generate/SKILL.md +14 -0
- package/skills/omnistudio-datamapper-generate/SKILL.md +13 -0
- package/skills/omnistudio-datapacks-deploy/SKILL.md +18 -0
- package/skills/omnistudio-dependencies-analyze/SKILL.md +12 -0
- package/skills/omnistudio-epc-catalog-generate/SKILL.md +15 -0
- package/skills/omnistudio-flexcard-generate/SKILL.md +11 -0
- package/skills/omnistudio-integration-procedure-generate/SKILL.md +11 -0
- package/skills/omnistudio-omniscript-generate/SKILL.md +9 -0
- package/skills/platform-agentexchange-partner-offers-configure/SKILL.md +8 -0
- package/skills/platform-agentsetup-categories-fetch/SKILL.md +3 -0
- package/skills/platform-apex-generate/SKILL.md +5 -0
- package/skills/platform-apex-logs-debug/SKILL.md +12 -0
- package/skills/platform-apex-test-generate/SKILL.md +5 -0
- package/skills/platform-apex-test-run/SKILL.md +14 -0
- package/skills/platform-custom-application-generate/SKILL.md +1 -0
- package/skills/platform-custom-field-generate/SKILL.md +1 -1
- package/skills/platform-custom-lightning-type-generate/SKILL.md +4 -2
- package/skills/platform-custom-lightning-type-generate/references/widget-rendition.md +1 -1
- package/skills/platform-custom-tab-generate/SKILL.md +1 -0
- package/skills/platform-data-and-tooling-api-context-get/SKILL.md +448 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AIApplication.json +115 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AIApplicationConfig.json +95 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AIInsightAction.json +131 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AIInsightFeedback.json +139 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AIInsightReason.json +204 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AIInsightValue.json +184 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AIRecordInsight.json +215 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AIResearchPromptResult.json +88 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/API_Total_Usage.json +91 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AbnExperiment.json +287 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AbnExperimentCohort.json +163 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AcceptedEventRelation.json +117 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Account.json +1223 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AccountBrand.json +267 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AccountCleanInfo.json +1046 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AccountContactRelation.json +132 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AccountContactRole.json +118 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AccountInsight.json +100 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AccountOwnerSharingRule.json +65 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AccountPartner.json +130 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AccountPlan.json +156 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AccountPlanObjMeasCalcCond.json +46 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AccountPlanObjMeasCalcDef.json +70 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AccountPlanObjMeasCalcDefLocalization.json +38 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AccountPlanObjMeasRela.json +51 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AccountPlanObjective.json +109 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AccountPlanObjectiveMeasure.json +103 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AccountRelationship.json +127 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AccountRelationshipShareRule.json +154 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AccountShare.json +127 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AccountTag.json +38 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AccountTeamMember.json +77 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AccountTerritoryAssignmentRule.json +45 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AccountTerritoryAssignmentRuleItem.json +43 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AccountTerritorySharingRule.json +65 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AccountUserTerritory2View.json +77 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ActionCadence.json +234 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ActionCadenceRule.json +143 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ActionCadenceRuleCondition.json +107 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ActionCadenceStep.json +625 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ActionCadenceStepTracker.json +272 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ActionCadenceStepVariant.json +49 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ActionCadenceTracker.json +232 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ActionCdncStpMonthlyMetric.json +668 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ActionLinkGroupTemplate.json +141 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ActionLinkTemplate.json +196 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ActionPlan.json +206 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ActionPlanItem.json +151 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ActionPlanTemplate.json +224 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ActionPlanTemplateItem.json +159 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ActionPlanTemplateItemValue.json +165 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ActionPlanTemplateVersion.json +149 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ActiveFeatureLicenseMetric.json +85 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ActivePermSetLicenseMetric.json +111 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ActiveProfileMetric.json +94 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ActiveScratchOrg.json +250 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ActivityFieldHistory.json +191 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ActivityHistory.json +396 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ActivityMetric.json +218 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ActivityUsrConnectionStatus.json +161 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AdditionalNumber.json +101 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Address.json +278 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AgentWork.json +539 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AgentWorkConversationalData.json +129 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AgentWorkSkill.json +136 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AiGenActionItem.json +126 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AiGenActionItemInfo.json +105 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AiJobRun.json +162 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AiJobRunItem.json +156 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AiModelLanguage.json +54 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AllowedEmailDomain.json +23 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AlternativePaymentMethod.json +479 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AnalyticsAssetAction.json +106 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AnalyticsChangeEventLog.json +128 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AnalyticsContainerWidgetDef.json +85 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AnalyticsDashboard.json +204 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AnalyticsDashboardWidget.json +103 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AnalyticsDownloadEventLog.json +103 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AnalyticsInteractEventLog.json +115 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AnalyticsLicensedAsset.json +75 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AnalyticsPerfEventLog.json +103 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AnalyticsVisualization.json +184 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AnalyticsVizField.json +203 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AnalyticsVizViewDef.json +145 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AnalyticsWorkspace.json +107 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AnalyticsWorkspaceAsset.json +142 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Announcement.json +112 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ApexCalloutEventLog.json +118 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ApexClass.json +139 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ApexComponent.json +139 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ApexEmailNotification.json +85 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ApexExecutionEventLog.json +113 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ApexExtlCalloutEventLog.json +113 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ApexInlineEventLog.json +8 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ApexLog.json +147 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ApexPage.json +157 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ApexPageInfo.json +127 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ApexRestApiEventLog.json +132 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ApexSoapApiEventLog.json +103 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ApexTestQueueItem.json +107 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ApexTestResult.json +206 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ApexTestResultLimits.json +198 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ApexTestRunResult.json +216 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ApexTestSuite.json +71 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ApexTrigger.json +221 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ApexTriggerEventLog.json +114 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ApexTypeImplementor.json +121 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ApexUnexpectedExcpEventLog.json +48 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Apex_Callout_Event_Type.json +115 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Apex_Execution_Event_Type.json +111 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Apex_Inline_Event_Type.json +8 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Apex_REST_API_Event_Type.json +143 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Apex_SOAP_Event_Type.json +103 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Apex_Trigger_Event_Type.json +115 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Apex_Unexpected_Exception_Event_Type.json +64 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ApiTotalUsageEventLog.json +78 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AppAnalyticsQueryRequest.json +225 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AppDefinition.json +218 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AppExtension.json +131 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AppMenuItem.json +364 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AppTabMember.json +91 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AppUsageAssignment.json +91 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ApplicationFormTemplate.json +155 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AppointmentAssignmentPolicy.json +115 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AppointmentScheduleAggr.json +126 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AppointmentScheduleLog.json +150 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AppointmentSchedulingPolicy.json +218 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AppointmentTopicTimeSlot.json +139 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Approval.json +53 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ApprovalAlertContentDef.json +47 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ApprovalSubmission.json +208 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ApprovalSubmissionDetail.json +174 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ApprovalWorkItem.json +259 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ApprovalWorkItemCondition.json +163 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ApprovalWorkItemCriteria.json +118 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ApptBundleAggrDurDnscale.json +137 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ApptBundleAggrPolicy.json +194 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ApptBundleConfig.json +213 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ApptBundlePolicy.json +216 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ApptBundlePolicySvcTerr.json +119 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ApptBundlePropagatePolicy.json +151 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ApptBundleRestrictPolicy.json +131 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ApptBundleSortPolicy.json +142 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ArchiveActivity.json +98 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ArchivePolicyDefinition.json +78 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Article_Type__DataCategorySelection.json +35 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Asset.json +769 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AssetAction.json +394 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AssetActionSource.json +443 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AssetAttribute.json +125 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AssetContractRelationship.json +139 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AssetDowntimePeriod.json +147 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AssetOwnerSharingRule.json +50 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AssetRateAdjustment.json +133 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AssetRateCardEntry.json +189 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AssetRelationship.json +222 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AssetShare.json +102 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AssetStatePeriod.json +274 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AssetStatePeriodAttribute.json +120 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AssetTag.json +38 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AssetTokenEvent.json +91 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AssetWarranty.json +241 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AssignedResource.json +189 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AssignmentRule.json +84 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AssociatedLocation.json +151 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AsyncApexJob.json +183 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AsyncOpSyndicationFeedFile.json +77 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AsyncOperationLog.json +193 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AsyncOperationTracker.json +260 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AsyncReportRunEventLog.json +152 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Asynchronous_Report_Run_Event_Type.json +143 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AttachedContentDocument.json +177 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AttachedContentNote.json +136 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Attachment.json +170 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AttachmentEventLog.json +58 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AttribModel.json +141 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AttribModelStage.json +61 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AttribModelStageMetric.json +53 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AttributeDefinition.json +231 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AttributePicklist.json +159 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AttributePicklistValue.json +184 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Audience.json +125 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AuraDefinition.json +107 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AuraDefinitionBundle.json +122 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AuraDefinitionBundleInfo.json +51 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AuraDefinitionInfo.json +67 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AuraRequestEventLog.json +92 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Aura_Request_Event_Type.json +99 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AuthConfig.json +164 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AuthConfigProviders.json +88 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AuthProvParamFwdAllowlist.json +91 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AuthProvider.json +376 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AuthSession.json +209 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AuthorizationForm.json +168 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AuthorizationFormConsent.json +239 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AuthorizationFormDataUse.json +134 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AuthorizationFormText.json +181 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AutomatedAction.json +129 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AutomatedActionCondition.json +62 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AutomatedActionOverride.json +64 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AutomatedActionParameter.json +57 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AutomatedActionReminder.json +72 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/BackgroundOperation.json +266 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/BackgroundOperationResult.json +53 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/BatchApexErrorEvent.json +76 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/BillingBatchScheduler.json +278 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/BillingPeriodItem.json +170 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/BillingPolicy.json +131 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/BillingSchedule.json +345 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/BillingScheduleGroup.json +595 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/BillingTreatment.json +150 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/BillingTreatmentItem.json +214 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/BlockedRedirectEventLog.json +58 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Blocked_Redirect_Event_Type.json +63 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Bookmark.json +38 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/BotDefinition.json +136 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/BotVersion.json +132 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/BrandTemplate.json +116 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/BrandingSet.json +111 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Brief.json +172 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/BriefcaseAssignment.json +86 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/BriefcaseDefinition.json +122 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/BriefcaseRule.json +180 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/BriefcaseRuleFilter.json +114 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/BroadcastCommAudience.json +92 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/BroadcastCommunication.json +77 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/BroadcastTopic.json +64 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/BroadcastTopicGroup.json +44 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/BroadcastTopicNetwork.json +44 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/BrowserPolicyViolation.json +134 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/BulkApi2EventLog.json +103 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/BulkApiEventLog.json +98 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/BulkApiRequestEventLog.json +118 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Bulk_API_2.0_Event_Type.json +99 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Bulk_API_Event_Type.json +103 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Bulk_API_Request_Event_Type.json +115 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/BusinessAlert.json +82 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/BusinessAlertStatus.json +47 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/BusinessBrand.json +127 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/BusinessHours.json +235 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/BusinessProcessDefinition.json +116 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/BusinessProcessFeedback.json +95 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/BusinessProcessGroup.json +110 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Business_Process.json +47 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/BuyerAccount.json +230 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/BuyerCriteria.json +161 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/BuyerGroup.json +131 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/BuyerGroupBuyerCriteria.json +108 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/BuyerGroupMember.json +109 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/BuyerGroupPricebook.json +127 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/BuyerGroupRelatedObject.json +127 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CORS_Violation_Record_Event_Type.json +43 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CSP_Violation_Event_Type.json +88 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CalcProcStepRelationship.json +147 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CalculatedInsightRangeBound.json +160 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CalculationMatrix.json +206 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CalculationMatrixColumn.json +163 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CalculationMatrixRow.json +140 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CalculationMatrixVersion.json +234 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CalculationProcedure.json +153 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CalculationProcedureStep.json +303 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CalculationProcedureVariable.json +182 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CalculationProcedureVersion.json +210 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Calendar.json +94 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CalendarView.json +196 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CallCenter.json +115 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CallCenterRoutingMap.json +136 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CallCoachingMediaProvider.json +91 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CallCtrAgentFavTrfrDest.json +117 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CallCtrAgentFavTrfrDestShare.json +91 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CallDisposition.json +77 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CallDispositionCategory.json +97 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CallTemplate.json +196 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Campaign.json +577 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CampaignInfluence.json +60 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CampaignInfluenceModel.json +156 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CampaignMember.json +389 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CampaignMemberStatus.json +117 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CampaignOwnerSharingRule.json +48 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CampaignShare.json +97 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CampaignTag.json +38 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CardPaymentMethod.json +583 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CartCheckoutSession.json +164 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CartDeliveryGroup.json +434 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CartDeliveryGroupMethod.json +264 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CartDeliveryGroupMethodAdj.json +163 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CartItem.json +751 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CartItemAttribute.json +75 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CartItemPriceAdjustment.json +265 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CartTax.json +174 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CartValidationOutput.json +158 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Case.json +524 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CaseArticle.json +105 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CaseComment.json +135 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CaseContactRole.json +104 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CaseHistory.json +109 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CaseHistory2.json +107 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CaseMilestone.json +297 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CaseOwnerSharingRule.json +50 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CaseParticipant.json +179 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CaseRelatedIssue.json +121 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CaseShare.json +102 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CaseSolution.json +86 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CaseStatus.json +104 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CaseSubjectParticle.json +120 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CaseTag.json +38 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CaseTeamMember.json +123 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CaseTeamRole.json +84 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CaseTeamTemplate.json +75 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CaseTeamTemplateMember.json +85 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CaseTeamTemplateRecord.json +75 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CategoryData.json +86 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CategoryNode.json +96 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CategoryNodeLocalization.json +98 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ChangeRequest.json +281 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ChangeRequestRelatedIssue.json +116 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ChangeRequestRelatedItem.json +126 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ChangeSetOperationEventLog.json +78 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Change_Set_Operation_Event_Type.json +83 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ChannelObjectLinkingRule.json +168 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ChannelProgram.json +129 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ChannelProgramLevel.json +147 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ChannelProgramMember.json +131 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ChatterActivity.json +108 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ChatterAnswersActivity.json +108 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ChatterAnswersReputationLevel.json +33 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ChatterConversation.json +23 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ChatterConversationMember.json +28 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ChatterExtension.json +192 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ChatterExtensionConfig.json +112 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ChatterMessage.json +43 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ClientBrowser.json +82 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CollabDocumentMetric.json +76 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CollabDocumentMetricRecord.json +41 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CollabTemplateMetric.json +58 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CollabTemplateMetricRecord.json +41 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CollabUserEngagementMetric.json +81 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CollabUserEngmtRecordLink.json +41 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CollaborationGroup.json +285 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CollaborationGroupMember.json +123 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CollaborationGroupMemberRequest.json +104 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CollaborationGroupRecord.json +100 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CollaborationInvitation.json +127 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CollaborationRoom.json +139 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ColorDefinition.json +87 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CombinedAttachment.json +172 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CommSubscription.json +119 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CommSubscriptionChannelType.json +158 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CommSubscriptionConsent.json +264 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CommSubscriptionTiming.json +120 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CommerceEntitlementBuyerGroup.json +99 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CommerceEntitlementPolicy.json +144 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CommerceEntitlementPolicyShare.json +84 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CommerceEntitlementProduct.json +99 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CommissionSchedule.json +109 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CommissionScheduleAssignment.json +95 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Community.json +60 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Composite_API_Event_Type.json +91 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Composite_API_Subrequest_Event_Type.json +107 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ConcurApexLimitEventLog.json +48 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Concurrent_Long-Running_Apex_Limit_Event_Type.json +56 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ConferenceNumber.json +136 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ConnectedApplication.json +191 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Console_Event_Type.json +111 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Consumption_Rate.json +68 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Consumption_Schedule.json +113 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ContCalloutSummaryEventLog.json +78 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Contact.json +869 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ContactCenterChannel.json +134 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ContactCleanInfo.json +497 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ContactDailyMetric.json +441 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ContactMonthlyMetric.json +412 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ContactOwnerSharingRule.json +48 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ContactPointAddress.json +352 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ContactPointConsent.json +238 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ContactPointEmail.json +238 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ContactPointPhone.json +290 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ContactPointTypeConsent.json +253 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ContactRequest.json +220 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ContactRequestShare.json +95 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ContactShare.json +102 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ContactSuggestionInsight.json +135 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ContactTag.json +38 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ContentAsset.json +124 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ContentBody.json +44 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ContentDistribution.json +271 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ContentDistributionEventLog.json +58 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ContentDistributionView.json +94 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ContentDocLinkEventLog.json +56 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ContentDocument.json +292 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ContentDocumentHistory.json +107 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ContentDocumentLink.json +93 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ContentDocumentListViewMapping.json +45 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ContentDocumentSubscription.json +80 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ContentFolder.json +95 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ContentFolderItem.json +133 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ContentFolderLink.json +71 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ContentFolderMember.json +86 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ContentHubItem.json +105 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ContentHubRepository.json +33 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ContentNote.json +196 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ContentNotification.json +103 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ContentTagSubscription.json +49 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ContentTaxonomy.json +89 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ContentTaxonomyRelatedTerm.json +90 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ContentTaxonomyTerm.json +101 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ContentTaxonomyTermRelatedTerm.json +116 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ContentTaxonomyTermRelationshipType.json +91 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ContentTransferEventLog.json +65 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ContentUserSubscription.json +62 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ContentVersion.json +498 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ContentVersionComment.json +76 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ContentVersionHistory.json +107 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ContentVersionRating.json +87 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ContentWorkspace.json +176 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ContentWorkspaceDoc.json +81 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ContentWorkspaceMember.json +96 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ContentWorkspacePermission.json +201 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ContentWorkspaceSubscription.json +62 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Content_Distribution_Event_Type.json +63 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Content_Document_Link_Event_Type.json +59 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Content_Transfer_Event_Type.json +75 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ContextParamMap.json +91 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Continuation_Callout_Summary_Event_Type.json +85 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Contract.json +624 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ContractContactRole.json +111 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ContractLineItem.json +271 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ContractLineOutcome.json +216 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ContractLineOutcomeData.json +151 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ContractStatus.json +105 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ContractTag.json +38 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ConvAnalysisSummary.json +61 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ConvAnalysisTopic.json +103 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ConvAnalysisTopicEntry.json +52 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ConvIntelligenceSignalRule.json +157 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ConvIntelligenceSignalSubRule.json +116 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ConvMessageSendRequest.json +340 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Conversation.json +112 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ConversationApiLog.json +172 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ConversationChannelDefinition.json +336 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ConversationContextEntry.json +99 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ConversationEntry.json +268 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ConversationParticipant.json +171 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ConversationVendorInfo.json +370 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CorsWhitelistEntry.json +109 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Coupon.json +195 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CouponCodeRedemption.json +116 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CreditMemo.json +473 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CreditMemoAddressGroup.json +206 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CreditMemoInvApplication.json +238 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CreditMemoLine.json +483 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Crisis.json +63 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CronJobDetail.json +53 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CronTrigger.json +150 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CryptoProdCatgWalletGroup.json +62 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CspTrustedSite.json +210 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CspViolationEventLog.json +93 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CurrencyType.json +108 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CustExpIntlTransfSetup.json +56 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CustomBrand.json +63 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CustomBrandAsset.json +104 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CustomFieldDisplayValue.json +115 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CustomHelpMenuItem.json +107 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CustomHelpMenuSection.json +99 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CustomHttpHeader.json +112 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CustomMsgChannel.json +120 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CustomNotificationType.json +144 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CustomPermission.json +134 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CustomPermissionDependency.json +90 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Custom_Metadata_Type__mdt.json +41 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Custom_Object__Feed.json +78 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Custom_Object___c___c.json +62 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Customer.json +137 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DandBCompany.json +1172 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Dashboard.json +311 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DashboardComponent.json +71 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DashboardTag.json +38 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Dashboard_Event_Type.json +107 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DataAssessmentFieldMetric.json +139 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DataAssessmentMetric.json +133 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DataAssessmentValueMetric.json +109 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DataDetPlcyDataSrchExps.json +47 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DataDetPlcyMdatScanCrit.json +47 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DataDetPlcySstvDataCatg.json +37 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DataDetectJobObjectSession.json +8 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DataDetectJobSessSummary.json +8 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DataDetectJobSession.json +71 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DataDetectPolicy.json +55 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DataDetectPolicyObjField.json +32 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DataDetectPolicyObject.json +37 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DataDetectPolicySnapshot.json +8 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DataDetectScanResult.json +62 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DataEncryptionKey.json +173 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DataIntegrationRecordPurchasePermission.json +94 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DataKitDeployEvent.json +162 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DataKitDeploymentLog.json +285 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DataMaskCustomValueLibrary.json +157 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DataStatistics.json +10 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DataUseLegalBasis.json +125 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DataUsePurpose.json +160 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DataWeaveResource.json +152 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DatabaseSaveEventLog.json +68 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Database_Save_Event_Type.json +71 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DatacloudCompany.json +471 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DatacloudContact.json +238 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DatacloudDandBCompany.json +1201 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DatacloudOwnedEntity.json +124 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DatacloudPurchaseUsage.json +137 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DatasetExport.json +127 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DatasetExportPart.json +116 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DatedConversionRate.json +98 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DealIndirectPartner.json +91 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DeclinedEventRelation.json +117 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DelegatedAccount.json +158 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DeleteEvent.json +90 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DeliveryEstimationSetup.json +243 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DevopsActivityLog.json +125 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DevopsEnvDeployment.json +144 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DevopsEnvDeploymentMbr.json +81 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DevopsEnvironment.json +110 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DevopsPipeline.json +64 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DevopsPipelineEnvironment.json +56 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DevopsPipelineStage.json +80 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DevopsPipelineStageTrigger.json +72 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DevopsPipelineTestProvider.json +59 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DevopsPipelnStgProm.json +63 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DevopsPipelnStgPromWkItem.json +70 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DevopsProject.json +52 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DevopsProjectPipeline.json +51 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DevopsQualityGate.json +45 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DevopsQualityGateResult.json +54 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DevopsQualityGateRule.json +52 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DevopsQualityGateRuleResult.json +54 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DevopsRequestInfo.json +83 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DevopsTest.json +133 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DevopsTestExecution.json +104 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DevopsTestProvider.json +61 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DevopsTestProviderSyncLog.json +74 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DevopsTestSuite.json +98 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DevopsTestSuiteExecution.json +126 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DevopsTestSuiteGroupExec.json +79 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DevopsTestSuiteStage.json +66 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DevopsTestSuiteTest.json +66 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DevopsWkItmTstSteGrpExec.json +54 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DigitalSignature.json +188 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DigitalWallet.json +427 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DirectMessage.json +30 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Division.json +38 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DivisionLocalization.json +38 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DocAtchDownloadEventLog.json +43 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Document.json +243 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DocumentAttachmentMap.json +75 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DocumentRecipient.json +246 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DocumentTag.json +38 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Document_Attachment_Downloads_Event_Type.json +51 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Domain.json +104 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DomainSite.json +85 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DsarPolicy.json +45 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DsarPolicyLog.json +85 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DuplicateJob.json +73 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DuplicateJobDefinition.json +43 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DuplicateJobMatchingRule.json +43 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DuplicateJobMatchingRuleDefinition.json +28 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DuplicateRecordItem.json +103 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DuplicateRecordSet.json +126 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DuplicateRule.json +139 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DynamicDataCapture.json +215 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ElectronicMediaGroup.json +135 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ElectronicMediaUse.json +82 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/EmailContent.json +320 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/EmailDomainFilter.json +117 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/EmailDomainKey.json +214 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/EmailInsight.json +79 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/EmailInsightAction.json +54 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/EmailMessage.json +506 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/EmailMessageMigration.json +8 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/EmailMessageRelation.json +121 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/EmailRelay.json +130 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/EmailRoutingAddress.json +83 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/EmailServicesAddress.json +137 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/EmailServicesFunction.json +208 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/EmailStatus.json +119 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/EmailTemplate.json +414 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/EmailTemplateMonthlyMetric.json +577 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/EmbeddedServiceDetail.json +339 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/EmbeddedServiceLabel.json +71 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/EmpUserProvisionProcessErr.json +148 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/EmpUserProvisioningProcess.json +151 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Employee.json +281 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Employee2.json +97 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/EmployeeCrisisAssessment.json +71 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/EnablementMeasureDefinition.json +91 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/EnablementProgram.json +110 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/EnablementProgramDefinition.json +49 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/EnblMeasureObjectDefinition.json +66 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/EnblPgmTaskMeasureProgress.json +45 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/EnblProgramSection.json +42 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/EnblProgramTaskDefinition.json +106 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/EnblProgramTaskMeasure.json +42 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/EnblProgramTaskProgress.json +80 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/EnblProgramTaskSubCategory.json +52 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/EngagementChannelType.json +130 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/EngagementSignal.json +65 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/EngagementSignalCmpndMetric.json +74 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/EngagementSignalMetric.json +56 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/EnhancedLetterhead.json +117 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Entitlement.json +280 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/EntitlementContact.json +102 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/EntitlementTemplate.json +138 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/EntityHistory.json +48 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/EntityMilestone.json +359 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/EntitySubscription.json +87 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/EnvironmentHubMember.json +108 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Event.json +528 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/EventBusSubscriber.json +160 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/EventLogFile.json +151 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/EventLogFile_Supported_Event_Types.json +8 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/EventRelation.json +148 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/EventRelayConfig.json +148 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/EventRelayFeedback.json +166 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/EventStagedInviteeEmail.json +123 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/EventTag.json +38 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/EventWhoRelation.json +92 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Expense.json +252 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ExpenseReport.json +140 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ExpenseReportEntry.json +159 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ExpressionFilter.json +105 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ExpressionFilterCriteria.json +129 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ExpressionSetConstraintObj.json +66 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ExtConvParticipantIntegDef.json +66 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ExtDataShare.json +164 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ExtKnowledgeConnector.json +145 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ExternalAccountHierarchy.json +158 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ExternalAccountHierarchyHistory.json +94 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ExternalClientApplication.json +10 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ExternalDataSource.json +209 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ExternalDataUserAuth.json +131 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ExternalEncryptionRootKey.json +122 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ExternalEvent.json +126 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ExternalEventMapping.json +143 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ExternalSocialAccount.json +259 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/External_Cross-Org_Callout_Event_Type.json +130 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/External_Custom_Apex_Callout_Event_Type.json +124 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/External_Data_Source_Callout_Event_Type.json +141 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/External_OData_Callout_Event_Type.json +160 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ExtlClntAppOauthPlcyCnfg.json +10 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ExtlClntAppOauthSettings.json +10 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ExtlClntAppPlcyCnfg.json +10 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ExtlIntrIdMapping.json +57 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ExtlRecShrCnct.json +54 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ExtlRecShrCnctAccnt.json +39 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ExtlRecShrField.json +67 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ExtlRecShrFieldMap.json +34 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ExtlRecShrLead.json +41 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ExtlRecShrObject.json +49 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ExtlRecShrOpportunity.json +41 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ExtlRecShrPcklstOptn.json +42 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ExtlRecShrPicklistMap.json +34 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ExtlRecShrRecordMap.json +71 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/FSL__Time_Dependency__c.json +34 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/FeedAttachment.json +87 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/FeedComment.json +232 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/FeedItem.json +322 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/FeedLike.json +84 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/FeedPollChoice.json +79 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/FeedPollVote.json +76 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/FeedPost.json +85 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/FeedRevision.json +125 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/FeedTrackedChange.json +93 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/FieldChangeSnapshot.json +86 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/FieldHistoryArchive.json +83 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/FieldPermissions.json +93 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/FieldSecurityClassification.json +107 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/FieldServiceMobileSettings.json +599 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/FieldServiceOrgSettings.json +210 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/FileSearchActivity.json +156 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/FiscalYearSettings.json +165 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/FldSvcObjChg.json +150 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/FldSvcObjChgDtl.json +89 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/FlexQueueItem.json +76 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/FlowDefinitionView.json +368 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/FlowInterview.json +209 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/FlowInterviewLog.json +184 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/FlowInterviewLogEntry.json +153 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/FlowInterviewLogOwnerSharingRule.json +56 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/FlowInterviewOwnerSharingRule.json +48 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/FlowInterviewShare.json +95 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/FlowNavMetricEventLog.json +78 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/FlowOrchestration.json +323 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/FlowOrchestrationInstance.json +238 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/FlowOrchestrationLog.json +212 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/FlowOrchestrationStageInstance.json +146 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/FlowOrchestrationStepInstance.json +176 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/FlowOrchestrationVersion.json +257 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/FlowOrchestrationWorkItem.json +248 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/FlowRecord.json +469 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/FlowRecordElement.json +128 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/FlowRecordElementOccurrence.json +202 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/FlowRecordRelation.json +101 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/FlowRecordVersion.json +415 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/FlowRecordVersionOccurrence.json +188 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/FlowStageRelation.json +126 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/FlowTestResult.json +186 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/FlowTestView.json +105 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/FlowVariableView.json +126 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/FlowVersionView.json +195 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Flow_Execution_Event_Type.json +75 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Folder.json +126 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/FolderedContentDocument.json +146 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ForecastingAdjustment.json +222 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ForecastingColumnDefinition.json +137 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ForecastingColumnDefinitionLocalization.json +99 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ForecastingColumnDefinition_Formula_Field_Details.json +8 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ForecastingCustomCategory.json +206 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ForecastingCustomData.json +148 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ForecastingDisplayedFamily.json +78 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ForecastingFact.json +146 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ForecastingFilter.json +126 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ForecastingFilterCondition.json +146 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ForecastingGroup.json +134 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ForecastingGroupItem.json +114 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ForecastingItem.json +306 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ForecastingOwnerAdjustment.json +226 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ForecastingQuota.json +182 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ForecastingShare.json +99 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ForecastingSourceDefinition.json +158 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ForecastingSrcRecJudgment.json +107 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ForecastingSubmission.json +183 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ForecastingSubmissionItem.json +120 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ForecastingType.json +238 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ForecastingTypeSource.json +152 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ForecastingUserPreference.json +169 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/FormulaFunction.json +114 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/FormulaFunctionAllowedType.json +67 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/FormulaFunctionCategory.json +63 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/FrcstCustmCatgRampRateSrc.json +111 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/FrcstCustmzAdjustment.json +169 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/FrcstCustmzOwnerAdjustment.json +179 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/FulfillmentOrder.json +684 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/FulfillmentOrderItemAdjustment.json +182 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/FulfillmentOrderItemTax.json +170 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/FulfillmentOrderLineItem.json +445 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/FulfmtRoutgCriteria.json +122 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/FulfmtRoutgCriteriaActnVar.json +59 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/FulfmtRoutgCriteriaCond.json +79 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/FulfmtRoutgCriteriaGrp.json +78 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/FulfmtRoutgCriteriaGrpVer.json +70 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/FunctionConnection.json +48 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/FunctionInvocationRequest.json +94 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/FunctionReference.json +53 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/GenAIConversationSummary.json +56 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/GenAiFunctionDefinition.json +96 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/GenAiPlannerDefinition.json +53 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/GenAiPlannerFunctionDef.json +34 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/GenAiPluginDefinition.json +89 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/GenOpPlanRequest.json +101 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/GeoCountry.json +123 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/GeoState.json +121 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/GeolocationBasedAction.json +190 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Goal.json +78 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/GoalLink.json +31 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/GoogleDoc.json +39 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/GraphQL_Query_Event_Type.json +103 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Group.json +171 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/GroupMember.json +68 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/GroupMembershipEventLog.json +83 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Group_Membership_Event_Type.json +104 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/GtwyProvPaymentMethodType.json +168 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/GuestBuyerProfile.json +103 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/HashtagDefinition.json +38 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/HealthCareDiagnosis.json +232 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/HealthCareProcedure.json +178 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Holiday.json +212 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Hostname_Redirects_Event_Type.json +127 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/IconDefinition.json +108 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Idea.json +310 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/IdeaComment.json +136 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/IdeaReputation.json +73 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/IdeaReputationLevel.json +33 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/IdeaTheme.json +63 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/IdpEventLog.json +129 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/IframeWhiteListUrl.json +79 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Image.json +198 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Incident.json +342 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/IncidentRelatedItem.json +139 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Individual.json +333 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/IndividualApplicationItem.json +126 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/IndividualHistory.json +102 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/IndividualShare.json +95 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Insecure_External_Assets_Event_Type.json +110 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/InsufficientAccessEventLog.json +64 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Insufficient_Access_Event_Type.json +85 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/InternalOrganizationUnit.json +142 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/InventoryItemReservation.json +193 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/InventoryReservation.json +184 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/InvocableActionEventLog.json +88 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Invocable_Action_Event_Type.json +99 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Invoice.json +628 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/InvoiceAddressGroup.json +178 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/InvoiceBatchRun.json +347 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/InvoiceBatchRunCriteria.json +146 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/InvoiceBatchRunRecovery.json +146 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/InvoiceDocument.json +141 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/InvoiceLine.json +619 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/JobProfile.json +109 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/JobProfileQueueGroup.json +72 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/KnowledgeArticle.json +169 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/KnowledgeArticleEventLog.json +88 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/KnowledgeArticleFeedback.json +127 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/KnowledgeArticleVersion.json +459 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/KnowledgeArticleVersionHistory.json +147 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/KnowledgeArticleViewStat.json +81 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/KnowledgeArticleVoteStat.json +70 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Knowledge_Article_View_Event_Type.json +87 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Knowledge__DataCategorySelection.json +89 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Knowledge__Feed.json +172 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Knowledge__ka.json +162 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Knowledge__kav.json +480 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/KnowledgeableUser.json +76 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/LandingPage.json +159 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Lead.json +791 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/LeadCleanInfo.json +720 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/LeadDailyMetric.json +441 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/LeadMonthlyMetric.json +412 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/LeadOwnerSharingRule.json +48 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/LeadShare.json +102 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/LeadStatus.json +104 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/LeadTag.json +38 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/LearningContent.json +71 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/LearningItem.json +116 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/LearningItemAssignment.json +79 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/LearningItemProgress.json +67 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/LearningItemSubmission.json +52 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/LearningItemType.json +74 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/LearningPractice.json +60 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/LegalEntity.json +196 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/LicenseDefinitionCustomPermission.json +41 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/LightningErrorEventLog.json +214 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/LightningExitByPageMetrics.json +83 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/LightningExperienceTheme.json +143 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/LightningLoggerEventLog.json +153 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/LightningOnboardingConfig.json +152 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/LightningPageViewEventLog.json +240 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/LightningPrfmEventLog.json +183 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/LightningToggleMetrics.json +83 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/LightningUsageByAppTypeMetrics.json +72 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/LightningUsageByBrowserMetrics.json +112 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/LightningUsageByFlexiPageMetrics.json +177 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/LightningUsageByPageMetrics.json +178 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Lightning_Error_Event_Type.json +213 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Lightning_Interaction_Event_Type.json +236 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Lightning_Logger_Event_Type.json +147 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Lightning_Page_View_Event_Type.json +260 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Lightning_Performance_Event_Type.json +173 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/LinkedArticle.json +121 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/LinkedArticleFeed.json +172 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/LinkedArticleHistory.json +94 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ListEmail.json +462 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ListEmailIndividualRecipient.json +119 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ListEmailMonthlyMetric.json +159 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ListEmailRecipientSource.json +113 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ListEmailSentResult.json +265 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ListView.json +109 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ListViewChart.json +147 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ListViewChartInstance.json +189 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/LiveAgentSession.json +246 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/LiveAgentSessionHistory.json +94 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/LiveAgentSessionShare.json +84 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/LiveChatBlockingRule.json +124 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/LiveChatButton.json +472 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/LiveChatButtonDeployment.json +77 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/LiveChatButtonSkill.json +77 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/LiveChatDeployment.json +176 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/LiveChatObjectAccessConfig.json +93 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/LiveChatObjectAccessDefinition.json +87 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/LiveChatSensitiveDataRule.json +181 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/LiveChatTranscript.json +444 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/LiveChatTranscriptEvent.json +136 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/LiveChatTranscriptShare.json +84 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/LiveChatTranscriptSkill.json +87 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/LiveChatUserConfig.json +322 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/LiveChatUserConfigProfile.json +79 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/LiveChatUserConfigUser.json +79 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/LiveChatVisitor.json +97 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/LocWaitlistMsgTemplate.json +51 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Location.json +550 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/LocationGroup.json +140 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/LocationGroupAssignment.json +152 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/LocationShippingCarrierMethod.json +137 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/LocationTrustMeasure.json +168 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/LocationWaitlist.json +111 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/LocationWaitlistedParty.json +76 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/LoginAsEventLog.json +73 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/LoginEvent.json +241 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/LoginEventLog.json +143 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/LoginGeo.json +144 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/LoginHistory.json +276 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/LoginIp.json +91 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Login_As_Event_Type.json +83 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Login_Event_Type.json +157 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/LogoutEventLog.json +108 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/LogoutEventStream.json +10 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Logout_Event_Type.json +99 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/LookedUpFromActivity.json +348 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/MLField.json +75 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/MLModel.json +154 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/MLModelFactor.json +138 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/MLModelFactorComponent.json +177 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/MLModelMetric.json +175 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/MLPredictionDefinition.json +145 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/MLRecommendationDefinition.json +77 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Macro.json +162 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/MacroInstruction.json +137 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/MacroUsage.json +215 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/MailmergeTemplate.json +177 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/MaintenanceAsset.json +143 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/MaintenancePlan.json +310 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/MaintenanceWorkRule.json +197 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ManagedContent.json +139 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ManagedContentChannel.json +149 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ManagedContentInfo.json +25 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ManagedContentSpace.json +117 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ManagedContentVariant.json +173 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/MarketingForm.json +95 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/MarketingLink.json +60 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/MatchingRule.json +162 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/MatchingRuleItem.json +118 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/MerchAccPaymentMethodSet.json +113 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/MerchAccPaymentMethodType.json +116 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/MerchantAccount.json +178 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/MerchantAccountEvent.json +71 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/MessagingChannel.json +371 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/MessagingChannelSkill.json +84 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/MessagingChannelUsage.json +137 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/MessagingConfiguration.json +102 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/MessagingDeliveryError.json +196 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/MessagingEndUser.json +247 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/MessagingLink.json +112 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/MessagingSession.json +382 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/MessagingSessionMetrics.json +106 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/MessagingTemplate.json +99 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/MetadataApiOpEventLog.json +75 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/MetadataPackage.json +33 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/MetadataPackageVersion.json +58 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Metadata_API_Operation_Event_Type.json +83 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Metric.json +108 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/MetricDataLink.json +43 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/MigratedEmail.json +8 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/MilestoneType.json +87 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/MktJourneyDcsnSetup.json +40 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/MlIntentUtteranceSuggestion.json +115 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/MobSecurityCertPinConfig.json +179 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/MobSecurityCertPinEvent.json +94 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/MobileDeviceAppRegistration.json +266 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/MobileSecurityAssignment.json +116 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/MobileSecurityPolicy.json +179 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/MobileSecurityUserMetric.json +59 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/MobileSettingsAssignment.json +79 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/MsgChannelLanguageKeyword.json +185 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/MsgChannelUsageExternalOrg.json +95 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Multiblock_Report_Event_Type.json +91 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/MutingPermissionSet.json +4208 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/MyDomainDiscoverableLogin.json +128 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Name.json +209 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/NamedCredential.json +230 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/NamedCredentialEventLog.json +85 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Named_Credential_Event_Type.json +95 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/NamespaceRegistry.json +92 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/NavigationLinkSet.json +102 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/NavigationMenuItem.json +170 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/NavigationMenuItemLocalization.json +93 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Network.json +714 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/NetworkActivityAudit.json +149 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/NetworkAffinity.json +79 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/NetworkAuthApiSettings.json +318 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/NetworkDataCategory.json +131 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/NetworkDiscoverableLogin.json +102 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/NetworkEmailTmplAllowlist.json +84 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/NetworkFeedResponseMetric.json +163 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/NetworkMember.json +272 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/NetworkMemberGroup.json +85 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/NetworkModeration.json +87 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/NetworkPageOverride.json +87 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/NetworkSelfRegistration.json +201 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/NetworkUserHistoryRecent.json +178 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Note.json +123 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/NoteAndAttachment.json +121 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/NoteTag.json +38 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OSAsyncChgCompletedEvent.json +300 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OauthCustomScope.json +118 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OauthCustomScopeApp.json +73 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OauthToken.json +133 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OauthTokenExchHandlerApp.json +113 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OauthTokenExchangeHandler.json +195 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ObjectDataImport.json +147 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ObjectDataImportReference.json +88 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ObjectMetadataTag.json +123 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ObjectPermissions.json +144 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ObjectRelatedUrl.json +134 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ObjectTerritory2AssignmentRule.json +128 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ObjectTerritory2AssignmentRuleItem.json +108 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ObjectTerritory2Association.json +103 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ObjectUserTerritory2View.json +84 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OmniSupervisorConfig.json +106 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OmniSupervisorConfigAction.json +94 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OmniSupervisorConfigGroup.json +86 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OmniSupervisorConfigProfile.json +86 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OmniSupervisorConfigQueue.json +86 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OmniSupervisorConfigSkill.json +86 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OmniSupervisorConfigTab.json +94 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OmniSupervisorConfigUser.json +86 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/One_Commerce_Usage_Event_Type.json +163 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OpenActivity.json +381 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OperatingHours.json +135 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OperatingHoursHistory.json +96 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OperatingHoursHoliday.json +131 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OppSalesMethodology.json +53 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OppSalesMethodologyItem.json +63 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Opportunity.json +611 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OpportunityCompetitor.json +111 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OpportunityContactRole.json +130 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OpportunityContactRoleSuggestionInsight.json +75 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OpportunityFieldHistory.json +107 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OpportunityHistory.json +160 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OpportunityInsight.json +110 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OpportunityLineItem.json +306 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OpportunityLineItemSchedule.json +128 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OpportunityLineItemSplit.json +88 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OpportunityOwnerSharingRule.json +48 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OpportunityPartner.json +117 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OpportunityRelatedDeleteLog.json +143 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OpportunityShare.json +102 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OpportunitySplit.json +85 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OpportunitySplitType.json +72 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OpportunityStage.json +156 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OpportunityTag.json +38 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OpportunityTeamMember.json +136 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OpptyLineItemSplitType.json +79 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Order.json +942 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OrderAction.json +124 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OrderAdjustmentGroup.json +231 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OrderAdjustmentGroupSummary.json +183 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OrderChangeLog.json +183 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OrderChgReasonCategMap.json +153 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OrderDeliveryGroup.json +427 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OrderDeliveryGroupSummary.json +434 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OrderDeliveryMethod.json +172 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OrderHistory.json +102 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OrderItem.json +1005 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OrderItemAdjustmentLineItem.json +262 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OrderItemAdjustmentLineSummary.json +202 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OrderItemGroup.json +158 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OrderItemRecipient.json +282 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OrderItemRelationship.json +206 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OrderItemSummary.json +739 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OrderItemSummaryChange.json +148 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OrderItemSummaryRelationship.json +201 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OrderItemTaxLineItem.json +185 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OrderItemTaxLineItemSummary.json +202 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OrderItemType.json +101 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OrderOwnerSharingRule.json +78 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OrderPaymentSummary.json +312 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OrderPaymentSummaryReference.json +185 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OrderShare.json +95 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OrderStatus.json +105 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OrderSummary.json +872 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OrderSummaryAdditionalInfo.json +171 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OrderSummaryRelationship.json +152 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OrderSummaryRoutingSchedule.json +146 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OrgDeleteRequest.json +94 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OrgEmailAddressSecurity.json +68 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OrgMetric.json +108 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OrgMetricScanResult.json +187 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OrgMetricScanSummary.json +177 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OrgSnapshot.json +91 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OrgWideEmailAddress.json +107 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Organization.json +744 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OutOfOffice.json +104 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OutgoingEmail.json +93 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OutgoingEmailRelation.json +43 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OwnedContentDocument.json +163 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OwnerChangeOptionInfo.json +56 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PackageInstallEventLog.json +100 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PackageLicense.json +115 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PackagePushError.json +51 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PackagePushJob.json +52 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PackagePushRequest.json +51 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PackageSubscriber.json +80 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Package_Install_Event_Type.json +99 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Participant.json +87 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Partner.json +133 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PartnerFundAllocation.json +176 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PartnerFundClaim.json +173 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PartnerFundRequest.json +221 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PartnerMarketingBudget.json +212 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PartnerNetworkConnection.json +75 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PartnerNetworkRecordConnection.json +77 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PartnerNetworkSyncLog.json +53 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PartnerRole.json +98 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PartyConsent.json +205 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Payment.json +627 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PaymentAuthAdjustment.json +309 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PaymentAuthorization.json +389 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PaymentCredit.json +275 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PaymentCreditLinePayment.json +207 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PaymentCreditTransaction.json +186 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PaymentGateway.json +219 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PaymentGatewayLog.json +285 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PaymentGatewayProvider.json +144 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PaymentGroup.json +90 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PaymentInitiationSource.json +278 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PaymentIntent.json +632 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PaymentIntentEvent.json +135 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PaymentLineInvoice.json +269 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PaymentLink.json +291 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PaymentLinkEvent.json +71 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PaymentMethod.json +280 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PaymentSchedule.json +292 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PaymentScheduleItem.json +291 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PaymentSchedulePolicy.json +158 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PaymentScheduleTreatment.json +159 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PaymentScheduleTreatmentDtl.json +193 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PaymentTerm.json +116 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PaymentTermItem.json +152 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PendingOrderSummary.json +241 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PendingServiceRouting.json +391 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PendingServiceRoutingInteractionInfo.json +126 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Period.json +133 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PermissionSet.json +4304 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PermissionSetAssignment.json +124 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PermissionSetGroup.json +57 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PermissionSetGroupComponent.json +41 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PermissionSetLicense.json +4286 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PermissionSetLicenseAssign.json +111 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PermissionSetLicenseDefinition.json +58 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PermissionSetTabSetting.json +75 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PermissionUpdateEventLog.json +68 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Permission_Update_Event_Type.json +78 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PersnlBatchDecision.json +63 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PersonAccountOwnerPowerUser.json +113 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PersonTraining.json +62 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PersonalOrgInfo.json +120 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PersonalizationDecision.json +75 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PersonalizationObjective.json +59 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PersonalizationPoint.json +117 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PersonalizationSchema.json +141 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PersonalizationTargetInfo.json +115 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PickTicket.json +154 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PickTicketAssignment.json +101 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PickTicketProduct.json +168 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PicklistValueInfo.json +105 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PipelineInspMetricConfig.json +104 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PipelineInspMetricConfigLocalization.json +42 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PipelineInspectionListView.json +174 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PipelineInspectionSumField.json +82 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PlatformAction.json +324 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PlatformEventUsageMetric.json +116 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PlatformStatusAlertEvent.json +106 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Platform_Encryption_Event_Type.json +103 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PortalDelegablePermissionSet.json +107 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PplnInspListViewCalcClmn.json +46 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PresenceConfigDeclineReason.json +77 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PresenceDeclineReason.json +87 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PresenceUserConfig.json +269 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PresenceUserConfigProfile.json +77 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PresenceUserConfigUser.json +77 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PriceAdjustmentGroup.json +43 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PriceAdjustmentGroupShape.json +72 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PriceAdjustmentItem.json +49 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PriceAdjustmentItemShape.json +85 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PriceAdjustmentSchedule.json +160 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PriceAdjustmentTier.json +181 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PriceProtectExecLineItem.json +161 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PriceProtectionExecution.json +67 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PriceProtectionTerm.json +76 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Pricebook2.json +160 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Pricebook2History.json +109 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PricebookEntry.json +191 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PricebookEntryAdjustment.json +87 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Pricing_Event_Type.json +95 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PrivacyHold.json +80 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PrivacyHoldReason.json +49 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PrivacyJobSession.json +296 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PrivacyObjectSession.json +274 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PrivacyRTBFRequest.json +153 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PrivacyRequest.json +103 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PrivacyRtntStoreDelStatus.json +45 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PrivacySessionRecordFailure.json +135 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Problem.json +254 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ProblemIncident.json +116 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ProblemRelatedItem.json +126 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ProcessDefinition.json +125 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ProcessException.json +267 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ProcessFlowMigration.json +117 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ProcessInstance.json +170 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ProcessInstanceHistory.json +193 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ProcessInstanceNode.json +163 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ProcessInstanceStep.json +155 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ProcessInstanceWorkitem.json +127 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ProcessNode.json +83 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ProducerCommission.json +303 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Product2.json +477 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Product2DataTranslation.json +45 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ProductAttribute.json +110 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ProductAttributeSet.json +102 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ProductAttributeSetItem.json +107 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ProductAttributeSetProduct.json +97 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ProductCatalog.json +175 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ProductCategory.json +168 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ProductCategoryDataTranslation.json +43 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ProductCategoryProduct.json +143 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ProductComponentGroup.json +170 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ProductConsumed.json +257 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ProductDetectedPriceChange.json +64 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ProductEntitlementTemplate.json +70 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ProductFeaturedProduct.json +132 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ProductItem.json +185 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ProductItemTransaction.json +154 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ProductMedia.json +150 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ProductQuantityRule.json +106 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ProductRelatedComponent.json +164 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ProductRelationshipType.json +105 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ProductRequest.json +340 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ProductRequestLineItem.json +367 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ProductRequired.json +168 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ProductSellingModel.json +120 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ProductSellingModelOption.json +161 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ProductServiceCampaign.json +192 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ProductServiceCampaignItem.json +150 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ProductServiceCampaignItemStatus.json +107 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ProductServiceCampaignStatus.json +107 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ProductTransfer.json +372 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ProductWarrantyTerm.json +122 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Profile.json +4247 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ProfileSkill.json +131 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ProfileSkillEndorsement.json +105 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ProfileSkillShare.json +95 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ProfileSkillUser.json +116 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ProgramProduct.json +128 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ProgramRebateType.json +294 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Promotion.json +481 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PromotionLineItemRule.json +147 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PromotionMarketSegment.json +129 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PromotionQualifier.json +239 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PromotionSegment.json +113 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PromotionSegmentBuyerGroup.json +126 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PromotionSegmentSalesStore.json +126 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PromotionTarget.json +257 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PromotionTier.json +119 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Prompt.json +99 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PromptAction.json +216 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PromptActionOwnerSharingRule.json +48 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PromptActionShare.json +86 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PromptError.json +126 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PromptLocalization.json +93 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PromptVersion.json +533 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PromptVersionLocalization.json +93 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ProrationPolicy.json +114 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Prospect.json +187 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ProspectingAgentDataSource.json +8 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ProspectingAgentRcmdTarget.json +51 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ProspectingAgentSpec.json +8 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ProspectingAgentSpecParm.json +8 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ProspectingAgentUserSpec.json +8 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PublicComplaint.json +425 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PurchaseQuantityRule.json +146 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PushTopic.json +170 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PushUpgradeCustomization.json +46 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PymtSchdDistributionMethod.json +137 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Question.json +269 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/QuestionDataCategorySelection.json +89 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/QuestionReportAbuse.json +87 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/QuestionSubscription.json +110 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/QueueRoutingConfig.json +186 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/QueueSobject.json +70 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/QueuedExecutionEventLog.json +78 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Queued_Execution_Event_Type.json +94 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/QuickText.json +189 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/QuickTextUsage.json +170 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Quote.json +895 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/QuoteAction.json +139 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/QuoteAdjustmentGroup.json +66 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/QuoteDocument.json +150 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/QuoteItemTaxItem.json +158 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/QuoteLineGroup.json +158 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/QuoteLineItem.json +986 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/QuoteLineItemRecipient.json +287 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/QuoteLinePriceAdjustment.json +95 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/QuoteLineRelationship.json +206 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/QuoteLineWorkSource.json +55 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/QuoteRecipientGroup.json +145 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/QuoteRecipientGroupMember.json +126 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/REST_API_Event_Type.json +143 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/RecentFieldChange.json +123 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/RecentlyViewed.json +199 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Recommendation.json +202 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/RecommendationResponse.json +207 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/RecordAction.json +190 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/RecordActionHistory.json +169 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/RecordType.json +136 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/RecordTypeLocalization.json +93 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/RecordVisibility.json +30 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/RecordsetFilterCriteria.json +170 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/RecordsetFilterCriteriaRule.json +195 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/RecordsetFltrCritMonitor.json +142 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/RedirectWhitelistUrl.json +111 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Refund.json +522 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/RefundLinePayment.json +264 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/RegisteredExternalService.json +176 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/RelatedListColumnDefinition.json +142 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/RelatedListDefinition.json +141 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/RemoteKeyCalloutEvent.json +52 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Reply.json +171 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ReplyEmailSettings.json +158 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ReplyReportAbuse.json +87 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ReplyText.json +42 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Report.json +177 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ReportEventLog.json +142 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ReportExportEventLog.json +73 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ReportTag.json +38 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Report_Event_Type.json +145 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Report_Export_Event_Type.json +79 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ReputationLevel.json +101 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ReputationLevelLocalization.json +93 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ReputationPointsRule.json +88 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ResourceAbsence.json +243 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ResourcePreference.json +133 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/RestApiEventLog.json +132 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/RetentionStoreUsage.json +148 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ReturnOrder.json +653 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ReturnOrderItemAdjustment.json +158 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ReturnOrderItemTax.json +179 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ReturnOrderLineItem.json +506 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ReturnOrderOwnerSharingRule.json +48 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/RevenueAsyncOperation.json +216 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/RevenueTransactionErrorLog.json +245 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/RpaFlowResultEvent.json +8 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/RpaRobot.json +8 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/RpaRobotAsgnMaintWindow.json +8 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/RpaRobotAsgnSessionInf.json +8 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/RpaRobotDefinition.json +8 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/RpaRobotMaintWindow.json +8 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/RpaRobotMaintWindowDef.json +8 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/RpaRobotPool.json +8 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/RpaRobotPoolAsgnRobot.json +8 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/RpaRobotPoolDefinition.json +8 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/RpaRobotPoolFlowAsgn.json +8 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/RpaRobotSessionInfo.json +8 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/RpaRobotSessionInfoDef.json +8 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/RuleTerritory2Association.json +86 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SOAP_API_Event_Type.json +131 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SOSDeployment.json +53 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SOSSession.json +105 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SOSSessionActivity.json +38 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SalesAIScoreCycle.json +28 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SalesAIScoreModelFactor.json +85 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SalesChannel.json +147 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SalesMethodologyDef.json +60 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SalesMethodologyDefItem.json +78 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SalesStoreCatalog.json +71 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SalesTransaction.json +34 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SalesTransactionItemShape.json +199 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SalesTransactionShape.json +59 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SalesTransactionType.json +111 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SalesTrxnItemRelationShape.json +78 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SalesWorkQueueSettings.json +85 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SalesforceContract.json +175 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SalesforceInvoice.json +71 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SalesforceLoginAsEventLog.json +48 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SalesforcePayment.json +50 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SalesforceQuote.json +46 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Salesforce_Surveys_Object_Model.json +8 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SamlSsoConfig.json +313 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SandboxStatusEventLog.json +53 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Sandbox_Event_Type.json +59 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SavedPaymentMethod.json +475 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SavedPaymentMethodEvent.json +71 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SchedulingAdherenceDetail.json +57 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SchedulingAdherenceSummary.json +119 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SchedulingConstraint.json +252 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SchedulingObjective.json +119 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SchedulingRule.json +119 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SchedulingRuleParameter.json +95 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Scontrol.json +170 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ScontrolLocalization.json +98 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ScoreIntelligence.json +8 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Scorecard.json +125 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ScorecardAssociation.json +119 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ScorecardMetric.json +121 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ScratchOrgInfo.json +411 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SearchActivity.json +187 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SearchClickEventLog.json +50 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SearchEventLog.json +55 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SearchLayout.json +136 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SearchPromotionRule.json +81 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Search_Click_Event_Type.json +51 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Search_Event_Type.json +55 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SecurityCustomBaseline.json +118 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SecurityHealthCheckAlertRecipient.json +38 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SecurityHealthCheckResult.json +48 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SelfServiceUser.json +92 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Seller.json +167 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SenderEmailAddress.json +149 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ServiceAppointment.json +621 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ServiceAppointmentStatus.json +107 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ServiceChannel.json +236 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ServiceChannelFieldPriority.json +33 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ServiceChannelStatus.json +77 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ServiceChannelStatusField.json +87 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ServiceContract.json +522 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ServiceContractOwnerSharingRule.json +48 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ServiceCrew.json +115 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ServiceCrewMember.json +142 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ServiceCrewOwnerSharingRule.json +48 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ServicePresenceStatus.json +87 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ServiceReport.json +180 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ServiceReportLayout.json +110 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ServiceRequest.json +147 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ServiceResource.json +260 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ServiceResourceCapacity.json +158 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ServiceResourceCapacityHistory.json +96 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ServiceResourceDataTranslation.json +43 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ServiceResourceOwnerSharingRule.json +46 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ServiceResourcePreference.json +147 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ServiceResourceSkill.json +156 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ServiceSetupProvisioning.json +140 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ServiceTerritory.json +320 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ServiceTerritoryDataTranslation.json +43 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ServiceTerritoryLocation.json +96 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ServiceTerritoryMember.json +277 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ServiceTerritoryWorkType.json +131 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SessionPermSetActivation.json +126 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SetupAssistantStep.json +10 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SetupAuditTrail.json +109 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SetupEntityAccess.json +75 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SfdcCustomerForPartner.json +144 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SfdcPartnerOffer.json +293 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SfdcPartnerOfferItem.json +90 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SfdcPartnerOrder.json +263 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SfdcPartnerOrderBillingTrxn.json +49 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SfdcPartnerOrderItem.json +113 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SfdcPartnerPackage.json +36 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SfdcPartnerPackageVersion.json +50 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SfdcPartnerPayout.json +66 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SfdcPartnerPermSetLicense.json +35 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SfdcPartnerProductLicense.json +53 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SfdcPartnerProvisionProduct.json +41 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SfdcPartnerSbscrOffer.json +248 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SfdcPartnerSbscrOfferItem.json +74 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SfdcPartnerTenant.json +62 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SfdcPartnerTenantPackage.json +69 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SfdcPartnerTermSet.json +94 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SfdcPartnerTermSetProduct.json +96 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SfdcPartnerTntPermSetLic.json +82 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SfdcPartnerTntPkgLicense.json +75 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ShapeRepresentation.json +41 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SharingRecordCollection.json +133 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SharingRecordCollectionItem.json +95 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SharingRecordCollectionMember.json +85 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Shift.json +293 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ShiftHistory.json +104 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ShiftOwnerSharingRule.json +48 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ShiftPattern.json +140 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ShiftPatternEntry.json +134 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ShiftSegment.json +57 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ShiftSegmentType.json +69 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ShiftShare.json +97 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ShiftStatus.json +107 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ShiftTemplate.json +211 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Shipment.json +462 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ShipmentItem.json +177 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ShippingCarrier.json +124 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ShippingCarrierMethod.json +167 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ShippingConfigSetProduct.json +95 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ShippingConfigurationSet.json +126 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ShippingRateArea.json +103 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ShippingRateGroup.json +83 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SignupRequest.json +322 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Site.json +464 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SiteDetail.json +60 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SiteDomain.json +33 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SiteEventLog.json +132 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SiteHistory.json +100 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SiteIframeWhitelistUrl.json +34 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SiteRedirectMapping.json +121 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Sites_Event_Type.json +127 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Skill.json +122 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SkillLevelDefinition.json +59 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SkillLevelProgress.json +72 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SkillProfile.json +77 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SkillRequirement.json +158 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SkillUser.json +77 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SlaProcess.json +160 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SlackChannelRelatedRecord.json +99 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Snippet.json +57 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SnippetAssignment.json +28 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SoapApiEventLog.json +127 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SocialPersona.json +354 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SocialPost.json +682 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Solution.json +214 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SolutionStatus.json +104 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SolutionTag.json +38 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SourceCodeRepoProvider.json +57 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SourceCodeRepository.json +74 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SourceCodeRepositoryBranch.json +71 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/StagedEmail.json +8 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/StagedInviteeEmail.json +81 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/StagedUnmtchdEmailAddr.json +64 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/StagedUnmtchdEmailAddrRela.json +41 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Stamp.json +87 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/StampAssignment.json +74 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/StandardInvocableActionType.json +97 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/StandardObjectNameChangeEvent.json +10 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/StandardObjectNameFeed.json +78 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/StandardObjectNameHistory.json +31 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/StandardObjectNameOwnerSharingRule.json +34 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/StandardObjectNameShare.json +28 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/StandardObjectName_Feed.json +78 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/StandardObjectName_Feed_Feed.json +78 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/StandardObjectName_History.json +31 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/StandardObjectName_History_History.json +31 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/StandardObjectName_OwnerSharingRule.json +34 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/StandardObjectName_OwnerSharingRule_OwnerSharingRule.json +34 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/StandardObjectName_Share.json +28 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/StandardObjectName_Share_Share.json +28 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/StandardShippingRate.json +192 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Standard_Objects.json +8 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/StaticResource.json +127 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/StoreIntegratedService.json +95 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/StreamingChannel.json +126 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Survey.json +175 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SurveyEmailBranding.json +137 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SurveyEngagementContext.json +117 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SurveyInvitation.json +240 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SurveyPage.json +93 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SurveyQuestion.json +202 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SurveyQuestionChoice.json +117 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SurveyQuestionResponse.json +194 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SurveyQuestionScore.json +210 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SurveyResponse.json +238 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SurveySubject.json +151 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SurveyVersion.json +150 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SurveyVersionAddlInfo.json +135 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SvcCatalogCategory.json +136 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SvcCatalogCategoryItem.json +106 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SvcCatalogFilterCriteria.json +71 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SvcCatalogItemDef.json +245 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SvcCatalogReqRelatedItem.json +111 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SvcCatalogRequest.json +238 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Swarm.json +228 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SwarmMember.json +174 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TabDefinition.json +136 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TagDefinition.json +12 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Task.json +434 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TaskPriority.json +106 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TaskRelation.json +98 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TaskStatus.json +106 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TaskTag.json +38 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TaskWhoRelation.json +97 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TaxEngine.json +268 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TaxEngineInteractionLog.json +254 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TaxEngineProvider.json +128 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TaxGeoConfig.json +126 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TaxPolicy.json +131 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TaxRate.json +283 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TaxTreatment.json +177 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TenantConsumptionAlert.json +178 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TenantScrAIPrmptInjection.json +93 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TenantSecret.json +78 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TenantSecurityAIGtwyUsage.json +103 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TenantSecurityAlertRuleSelectedTenant.json +35 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TenantSecurityAnomaly.json +88 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TenantSecurityApiAnomaly.json +120 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TenantSecurityCertificate.json +98 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TenantSecurityConfigAgent.json +88 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TenantSecurityConnectedApp.json +100 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TenantSecurityCredentialStuffing.json +105 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TenantSecurityCustomMetricDetail.json +58 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TenantSecurityCustomMetricSetup.json +66 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TenantSecurityCustomMetricStat.json +68 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TenantSecurityEncryptedField.json +83 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TenantSecurityEncryptionPolicy.json +73 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TenantSecurityFeature.json +65 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TenantSecurityGuestUserAnomaly.json +110 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TenantSecurityHealthCheckBaselineTrend.json +90 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TenantSecurityHealthCheckDetail.json +70 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TenantSecurityHealthCheckTrend.json +75 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TenantSecurityLicense.json +85 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TenantSecurityLogin.json +70 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TenantSecurityLoginIpRangeTrend.json +95 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TenantSecurityMetricDetail.json +95 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TenantSecurityMetricDetailLink.json +38 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TenantSecurityMobilePolicyTrend.json +105 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TenantSecurityMonitorMetric.json +70 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TenantSecurityNotification.json +85 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TenantSecurityNotificationRule.json +75 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TenantSecurityPackage.json +105 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TenantSecurityPolicy.json +65 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TenantSecurityPolicyChangeLog.json +45 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TenantSecurityPolicyDeployment.json +55 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TenantSecurityPolicySelectedTenant.json +35 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TenantSecurityReportAnomaly.json +95 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TenantSecuritySessionHijacking.json +140 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TenantSecurityTenantChangeLog.json +41 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TenantSecurityTenantInfo.json +70 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TenantSecurityTransactionPolicyTrend.json +85 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TenantSecurityTrigTransactionSecurityPol.json +137 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TenantSecurityTrustedIpRangeTrend.json +90 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TenantSecurityUserActivity.json +75 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TenantSecurityUserPerm.json +95 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TenantUsageEntitlement.json +179 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Territory.json +75 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Territory2.json +155 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Territory2AlignmentLog.json +139 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Territory2Model.json +148 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Territory2ModelHistory.json +94 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Territory2ObjSharingConfig.json +96 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Territory2ObjectExclusion.json +95 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Territory2Type.json +111 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TerritoryAdminAssignment.json +122 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TerritoryMgmtObjectConfig.json +117 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TestSuiteMembership.json +81 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ThirdPartyAccountLink.json +128 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ThreatDetectionFeedback.json +129 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Time-Based_Workflow_Event_Type.json +87 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TimeSheet.json +181 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TimeSheetEntry.json +208 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TimeSlot.json +185 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TimeSlotHistory.json +91 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TodayGoal.json +125 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TopInsight.json +8 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Topic.json +99 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TopicAssignment.json +109 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TopicLocalization.json +93 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TopicUserEvent.json +79 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TransactionSecurityEventLog.json +130 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TransactionSecurityPolicy.json +206 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Transaction_Security_Event_Type.json +103 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Translation.json +83 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TravelMode.json +146 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TwoFactorInfo.json +33 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TwoFactorMethodsInfo.json +75 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TwoFactorTempCode.json +37 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UI_Telemetry_Navigation_Timing_Event_Type.json +317 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UI_Telemetry_Resource_Timing_Event.json +276 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/URI_Event_Type.json +95 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UiAgentInteractionEventLog.json +233 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UiFormulaCriterion.json +116 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UiFormulaRule.json +134 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UiTelemetryNavTmEventLog.json +335 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UiTelemetryRsrcTmEventLog.json +285 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UndecidedEventRelation.json +117 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UnifiedActivity.json +113 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UnifiedActivityInsight.json +102 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UnifiedActivityParticipant.json +78 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UnifiedActivityRelation.json +58 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UnifiedActvtyInsightKeyword.json +71 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UnifiedEmail.json +74 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UnifiedEmailParticipant.json +47 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UnifiedMeeting.json +64 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UnifiedMeetingParticipant.json +47 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UnifiedTask.json +64 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UnifiedTaskParticipant.json +47 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UnifiedVideoCall.json +124 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UnifiedVideoCallParticipant.json +102 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UnifiedVoiceCall.json +124 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UnifiedVoiceCallParticipant.json +102 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UniqueQueryEventLog.json +68 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Unique_Query_Event_Type.json +51 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UnitOfMeasure.json +190 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UriEventLog.json +93 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UsageImpactFactor.json +111 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UsageImpactGroup.json +121 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UsageImpactGroupFactor.json +141 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UsageImpactGroupPgmMeasure.json +129 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UsageImpactGroupVersion.json +166 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/User.json +1865 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UserAccessChange.json +23 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UserAccessPolicy.json +63 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UserAccountTeamMember.json +61 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UserAppInfo.json +103 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UserAppMenuCustomization.json +106 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UserAppMenuItem.json +182 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UserAuthCertificate.json +63 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UserConfigTransferButton.json +77 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UserConfigTransferSkill.json +75 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UserCustomBadge.json +85 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UserCustomBadgeLocalization.json +93 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UserDailyMetric.json +489 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UserDailyMetricOwnerSharingRule.json +50 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UserDefinedLabel.json +132 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UserDefinedLabelAssignment.json +128 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UserDevice.json +78 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UserDeviceApplication.json +43 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UserDeviceHistory.json +41 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UserEmailCalendarSync.json +58 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UserEmailPreferredPerson.json +117 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UserEmailPreferredPersonShare.json +96 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UserLicense.json +125 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UserListView.json +87 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UserListViewCriterion.json +96 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UserLocationAssignment.json +122 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UserLogin.json +70 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UserMembershipSharingRule.json +50 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UserMonthlyMetric.json +644 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UserMonthlyMetricOwnerSharingRule.json +50 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UserPackageLicense.json +102 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UserPermissionAccess.json +4159 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UserPreference.json +69 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UserPrioritizedRecord.json +98 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UserProfile.json +367 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UserProvAccount.json +189 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UserProvAccountStaging.json +173 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UserProvMockTarget.json +122 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UserProvisioningConfig.json +204 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UserProvisioningLog.json +141 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UserProvisioningRequest.json +235 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UserRecordAccess.json +108 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UserRelatedRecordContent.json +39 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UserRole.json +184 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UserServicePresence.json +199 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UserSetupEntityAccess.json +92 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UserShare.json +102 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UserSharedFeature.json +10 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UserTeamMember.json +96 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UserTerritory.json +38 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UserTerritory2AssocLog.json +66 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UserTerritory2Association.json +83 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UserUIPreference.json +131 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UserWorkList.json +94 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UserWorkListItem.json +86 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/VendorCallCenterStatusMap.json +96 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/VerificationHistory.json +196 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/VideoCall.json +316 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/VideoCallInsight.json +98 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/VideoCallInsightAction.json +63 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/VideoCallInsightReason.json +53 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/VideoCallParticipant.json +149 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/VideoCallRecording.json +179 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/VideoCallRecordingStructure.json +73 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/VideoCallTranscript.json +85 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/VisualforceAccessMetrics.json +97 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/VisualforceRequestEventLog.json +145 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Visualforce_Request_Event_Type.json +139 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/VoiceCall.json +623 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/VoiceCallInsight.json +96 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/VoiceCallInsightAction.json +63 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/VoiceCallInsightReason.json +46 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/VoiceCallList.json +35 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/VoiceCallListItem.json +38 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/VoiceCallMetrics.json +324 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/VoiceCallQualityFeedback.json +97 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/VoiceCallRecording.json +151 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/VoiceCallRecordingStructure.json +73 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/VoiceCoaching.json +89 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/VoiceLocalPresenceNumber.json +96 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/VoiceMailContent.json +119 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/VoiceMailGreeting.json +109 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/VoiceMailGreeting2.json +54 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/VoiceMailGreeting2Rep.json +61 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/VoiceMailMessage.json +109 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/VoiceOrgSetting.json +115 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/VoiceUserLine.json +137 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/VoiceUserPreferences.json +89 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/VoiceVendorInfo.json +139 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/VoiceVendorLine.json +150 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Vote.json +102 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/WarrantyTerm.json +306 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/WaveAutoInstallRequest.json +172 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Wave_Change_Event_Type.json +123 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Wave_Download_Event_Type.json +116 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Wave_Interaction_Event_Type.json +111 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Wave_Performance_Event_Type.json +111 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/WebCart.json +610 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/WebCartAdjustmentBasis.json +118 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/WebCartAdjustmentGroup.json +210 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/WebCartHistory.json +94 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/WebLink.json +278 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/WebLinkLocalization.json +98 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/WebStore.json +445 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/WebStoreCatalog.json +117 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/WebStoreInventorySource.json +203 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/WebStoreMessageContent.json +56 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/WebStoreNetwork.json +103 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/WebStorePricebook.json +118 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/WebStoreSearchProdSettings.json +117 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/WebStoreShare.json +90 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/WebstoreBuyerGroup.json +56 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Wishlist.json +120 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/WishlistItem.json +97 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/WorkAccess.json +103 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/WorkAccessShare.json +93 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/WorkBadge.json +184 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/WorkBadgeDefinition.json +212 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/WorkCapacityAvailability.json +178 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/WorkCapacityLimit.json +303 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/WorkCapacityUsage.json +307 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/WorkCoaching.json +53 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/WorkDemographic.json +70 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/WorkFeedback.json +43 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/WorkFeedbackQuestion.json +68 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/WorkFeedbackQuestionSet.json +43 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/WorkFeedbackRequest.json +133 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/WorkGoal.json +138 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/WorkGoalCollaborator.json +38 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/WorkGoalCollaboratorHistory.json +41 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/WorkGoalHistory.json +36 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/WorkGoalLink.json +41 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/WorkGoalShare.json +36 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/WorkItem.json +135 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/WorkItemComponent.json +77 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/WorkItemEvent.json +48 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/WorkOrder.json +753 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/WorkOrderHistory.json +102 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/WorkOrderLineItem.json +636 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/WorkOrderLineItemHistory.json +102 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/WorkOrderLineItemStatus.json +107 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/WorkOrderShare.json +95 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/WorkOrderStatus.json +107 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/WorkPerformanceCycle.json +63 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/WorkPlan.json +194 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/WorkPlanSelectionRule.json +194 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/WorkPlanTemplate.json +134 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/WorkPlanTemplateEntry.json +127 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/WorkReward.json +65 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/WorkRewardFund.json +71 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/WorkRewardFundType.json +83 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/WorkStep.json +244 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/WorkStepStatus.json +108 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/WorkStepTemplate.json +143 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/WorkThanks.json +127 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/WorkType.json +276 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/WorkTypeGroup.json +149 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/WorkTypeGroupMember.json +121 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/WorkforceCapacity.json +74 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/WorkforceCapacityUnit.json +135 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Workload.json +66 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/WorkloadUnit.json +87 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/feedSignal.json +49 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/AIApplication.json +70 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/AIApplicationConfig.json +75 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/AccountPlanObjMeasCalcCond.json +48 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/AccountPlanObjMeasCalcDef.json +74 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/ActivationPlatform.json +105 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/AdvAccountForecastSet.json +148 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/AdvAcctForecastMeasureDef.json +66 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/AdvAcctFrcstDisplayGroup.json +54 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/AnimationRule.json +81 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/ApexClass.json +82 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/ApexClassMember.json +64 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/ApexCodeCoverage.json +54 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/ApexCodeCoverageAggregate.json +44 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/ApexComponent.json +27 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/ApexComponentMember.json +59 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/ApexEmailNotification.json +38 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/ApexExecutionOverlayAction.json +67 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/ApexExecutionOverlayResult.json +72 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/ApexLog.json +72 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/ApexOrgWideCoverage.json +29 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/ApexPage.json +88 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/ApexPageInfo.json +69 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/ApexPageMember.json +59 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/ApexResult.json +25 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/ApexTestQueueItem.json +52 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/ApexTestResult.json +97 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/ApexTestResultLimits.json +87 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/ApexTestRunResult.json +97 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/ApexTestSuite.json +31 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/ApexTrigger.json +107 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/ApexTriggerMember.json +64 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/AssignmentRule.json +10 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/AuraDefinition.json +47 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/AuraDefinitionBundle.json +67 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/AuthorizedEmailDomain.json +60 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/AutoResponseRule.json +37 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/BrandingSet.json +67 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/BrandingSetProperty.json +37 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/BriefcaseDefinition.json +74 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/BusProcessFeedbackConfig.json +95 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/BusinessProcess.json +47 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/BusinessProcessDefinition.json +50 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/BusinessProcessFeedback.json +40 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/BusinessProcessGroup.json +55 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/Certificate.json +74 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/CleanDataService.json +57 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/CleanRule.json +97 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/ColorDefinition.json +47 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/CommunityWorkspacesNode.json +70 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/CompactLayout.json +57 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/CompactLayoutInfo.json +74 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/CompactLayoutItemInfo.json +54 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/ConnectedApplication.json +10 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/ContactCenterChannel.json +57 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/ContainerAsyncRequest.json +59 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/ConversationChannelDefinition.json +191 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/ConversationVendorInfo.json +174 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/CspTrustedSite.json +74 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/CustomApplication.json +92 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/CustomField.json +47 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/CustomFieldDisplay.json +57 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/CustomFieldMember.json +54 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/CustomHelpMenuSection.json +58 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/CustomHttpHeader.json +47 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/CustomMsgChannel.json +56 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/CustomNotifActionDef.json +58 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/CustomNotificationActionGroup.json +36 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/CustomNotificationType.json +70 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/CustomObject.json +67 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/CustomTab.json +86 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/DataAssessmentConfigItem.json +37 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/DataIntegrationRecordPurchasePermission.json +37 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/DataSourceBundleDefinition.json +72 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/DataStreamTemplate.json +128 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/DataType.json +45 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/DebugLevel.json +76 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/DelegateGroup.json +37 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/DelegateGroupGrant.json +43 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/DelegateGroupMember.json +38 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/DeployDetails.json +21 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/DeployRequest.json +153 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/Document.json +125 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/DomainProvision.json +59 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/DuplicateJobDefinition.json +45 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/DuplicateJobMatchingRuleDefinition.json +30 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/EmailTemplate.json +72 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/EmbeddedServiceBranding.json +97 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/EmbeddedServiceConfig.json +107 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/EmbeddedServiceCustomComponent.json +44 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/EmbeddedServiceCustomLabel.json +47 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/EmbeddedServiceCustomization.json +43 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/EmbeddedServiceFieldService.json +105 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/EmbeddedServiceFlow.json +49 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/EmbeddedServiceFlowConfig.json +44 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/EmbeddedServiceLiveAgent.json +144 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/EmbeddedServiceMenuItem.json +98 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/EmbeddedServiceMenuSettings.json +69 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/EmbeddedServiceQuickAction.json +42 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/EmbeddedServiceResource.json +46 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/EngagementInsightType.json +98 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/EnrichedField.json +39 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/EntityDefinition.json +486 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/EntityLimit.json +57 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/EntityParticle.json +303 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/EventDelivery.json +72 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/EventRelayConfig.json +85 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/EventSubscription.json +70 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/ExtConvParticipantIntegDef.json +75 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/ExternalAuthIdentityProvider.json +109 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/ExternalClientAppSettings.json +10 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/ExternalCredential.json +117 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/ExternalDataSource.json +138 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/ExternalDataSrcDescriptor.json +96 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/ExternalServiceRegistration.json +138 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/ExternalString.json +60 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/ExternalStringLocalization.json +47 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/FieldDefinition.json +587 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/FieldMapping.json +47 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/FieldMappingField.json +42 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/FieldMappingRow.json +42 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/FieldRestrictionRule.json +103 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/FieldSet.json +47 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/FlexiPage.json +78 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/Flow.json +97 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/FlowDefinition.json +77 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/FlowElementTestCoverage.json +37 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/FlowTest.json +63 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/FlowTestCoverage.json +47 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/FlowTestResult.json +10 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/ForecastingDisplayedFamily.json +30 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/ForecastingFilter.json +71 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/ForecastingFilterCondition.json +86 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/ForecastingSourceDefinition.json +85 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/ForecastingType.json +91 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/ForecastingTypeSource.json +86 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/FormulaFunction.json +104 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/FormulaFunctionAllowedType.json +37 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/FormulaOperator.json +42 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/GenAiFunctionDefinition.json +80 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/GenAiPlannerDefinition.json +60 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/GlobalValueSet.json +46 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/Group.json +59 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/GtwyProvPaymentMethodType.json +99 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/HeapDump.json +33 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/HistoryRetentionJob.json +50 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/HomePageComponent.json +58 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/HomePageLayout.json +42 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/IPAddressRange.json +71 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/IconDefinition.json +57 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/InboundNetworkConnProperty.json +38 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/InboundNetworkConnection.json +81 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/Index.json +57 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/IndexField.json +52 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/InstalledSubscriberPackage.json +37 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/InstalledSubscriberPackageVersion.json +37 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/InvocableActionExtension.json +54 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/KeywordList.json +52 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/Layout.json +67 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/LightningComponentBundle.json +82 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/LightningComponentResource.json +49 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/LightningOutApp.json +47 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/LookupFilter.json +83 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/MLDataDefinition.json +100 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/MLField.json +56 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/MLFilter.json +96 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/MLPredictionDefinition.json +110 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/ManagedContentNodeType.json +57 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/ManagedContentType.json +51 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/ManagedEventSubscription.json +65 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/MarketingAppExtAction.json +78 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/MarketingAppExtActivity.json +73 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/MarketingAppExtAssignment.json +39 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/MarketingAppExtension.json +57 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/MatchingRule.json +77 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/MenuItem.json +62 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/MetadataComponentDependency.json +64 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/MetadataContainer.json +29 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/MetadataPackage.json +37 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/MetadataPackageVersion.json +62 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/MetadataWarningsHeader.json +16 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/ModerationRule.json +89 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/NamedCredential.json +264 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/ObjectHierarchyRelationship.json +86 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/OmniSupervisorConfig.json +59 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/OperationLog.json +109 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/OpportunitySplitType.json +76 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/OrgDomainLog.json +37 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/OutboundNetworkConnProperty.json +38 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/OutboundNetworkConnection.json +79 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/OwnerChangeOptionInfo.json +64 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/Package2.json +84 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/Package2Member.json +57 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/Package2Version.json +157 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/Package2VersionCreateRequest.json +105 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/Package2VersionCreateRequestError.json +30 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/PackageInstallRequest.json +116 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/PackageUploadRequest.json +83 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/PackageVersionUninstallRequestError.json +32 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/PardotTenant.json +66 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/PathAssistant.json +87 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/PathAssistantStepInfo.json +47 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/PathAssistantStepItem.json +47 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/PaymentGatewayProvider.json +84 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/PermissionDependency.json +44 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/PermissionSet.json +77 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/PermissionSetAssignment.json +82 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/PermissionSetGroup.json +64 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/PermissionSetGroupComponent.json +44 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/PermissionSetTabSetting.json +39 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/PipelineInspMetricConfig.json +45 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/PlatformEventChannel.json +68 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/PlatformEventChannelMember.json +67 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/PlatformEventMigration.json +37 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/PlatformEventSubscriberConfig.json +72 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/PostTemplate.json +40 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/PresenceDeclineReason.json +37 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/PresenceUserConfig.json +72 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/ProcessFlowMigration.json +84 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/ProductAttributeSet.json +63 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/Profile.json +49 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/ProfileLayout.json +44 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/Publisher.json +54 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/QueryResult.json +52 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/QueueRoutingConfig.json +82 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/QuickActionDefinition.json +144 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/QuickActionList.json +27 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/QuickActionListItem.json +37 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/RecentlyViewed.json +102 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/RecommendationStrategy.json +83 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/RecordActionDeployment.json +102 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/RecordType.json +72 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/RegisteredExternalService.json +104 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/RelatedListColumnDefinition.json +83 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/RelatedListDefinition.json +83 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/RelationshipDomain.json +92 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/RelationshipInfo.json +72 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/ReleaseUpdate.json +112 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/ReleaseUpdateStep.json +48 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/RemoteProxy.json +71 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/RestrictionRule.json +91 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/SOQLResult.json +29 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/SandboxInfo.json +113 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/SandboxProcess.json +151 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/SandboxProcessStage.json +85 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/SchedulingObjective.json +59 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/SchedulingRule.json +60 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/Scontrol.json +63 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/SearchLayout.json +72 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/SecurityHealthCheck.json +37 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/SecurityHealthCheckRisks.json +72 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/ServiceChannel.json +92 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/ServicePresenceStatus.json +37 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/ShiftSegmentType.json +72 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/SiteDetail.json +37 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/Skill.json +42 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/StandardAction.json +67 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/StaticResource.json +49 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/SubscriberPackage.json +42 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/SubscriberPackageVersion.json +245 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/SubscriberPackageVersionUninstallRequest.json +32 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/SvcCatalogCategory.json +73 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/SvcCatalogCategoryItem.json +51 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/SvcCatalogFulfillFlowItem.json +84 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/SvcCatalogFulfillmentFlow.json +73 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/SvcCatalogItemDef.json +94 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/SymbolTable.json +61 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/TabDefinition.json +77 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/Territory2SupportedObject.json +44 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/TestSuiteMembership.json +32 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/TimeSheetTemplate.json +94 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/TimeSheetTemplateAssignment.json +34 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/TraceFlag.json +92 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/TransactionSecurityPolicy.json +105 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/User.json +47 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/UserAccessPolicy.json +73 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/UserAccessPolicyAction.json +40 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/UserAccessPolicyFilter.json +49 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/UserCriteria.json +52 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/UserEntityAccess.json +92 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/UserFieldAccess.json +58 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/ValidationRule.json +95 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/VirtualVisitConfig.json +113 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/WebLink.json +153 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/WebStoreTemplate.json +227 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/WorkSkillRouting.json +53 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/WorkSkillRoutingAttribute.json +53 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/WorkflowAlert.json +78 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/WorkflowFieldUpdate.json +84 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/WorkflowOutboundMessage.json +68 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/WorkflowRule.json +52 -0
- package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/WorkflowTask.json +68 -0
- package/skills/platform-data-and-tooling-api-context-get/examples/README.md +93 -0
- package/skills/platform-data-and-tooling-api-context-get/examples/bash_section_loading.sh +126 -0
- package/skills/platform-data-and-tooling-api-context-get/examples/javascript_section_loading.js +97 -0
- package/skills/platform-data-and-tooling-api-context-get/examples/python_section_loading.py +109 -0
- package/skills/platform-data-and-tooling-api-context-get/references/data_and_tooling_index_table.md +2194 -0
- package/skills/platform-data-and-tooling-api-context-get/references/usage_guide.md +87 -0
- package/skills/platform-data-manage/SKILL.md +15 -0
- package/skills/platform-dataspace-access-configure/SKILL.md +2 -2
- package/skills/platform-docs-get/README.md +1 -1
- package/skills/platform-docs-get/SKILL.md +4 -5
- package/skills/platform-flexipage-generate/SKILL.md +3 -0
- package/skills/platform-lightning-app-coordinate/SKILL.md +18 -1
- package/skills/platform-lightning-type-widget-coordinate/SKILL.md +11 -9
- package/skills/platform-lightning-type-widget-coordinate/examples/existing-lightning-type-with-widget-prompt.md +2 -2
- package/skills/platform-lightning-type-widget-coordinate/examples/new-lightning-type-with-widget-prompt.md +2 -2
- package/skills/platform-lightning-type-widget-coordinate/references/build-plan-format.md +1 -1
- package/skills/platform-lightning-type-widget-coordinate/references/validation-gates.md +4 -4
- package/skills/platform-metadata-api-context-get/SKILL.md +6 -2
- package/skills/platform-metadata-deploy/SKILL.md +21 -0
- package/skills/platform-metadata-retrieve/SKILL.md +5 -0
- package/skills/platform-models-api-configure/SKILL.md +10 -0
- package/skills/platform-permission-set-generate/SKILL.md +1 -2
- package/skills/platform-policy-rule-generate/SKILL.md +2 -0
- package/skills/platform-report-generate/SKILL.md +159 -0
- package/skills/platform-report-generate/examples/AccountsCreatedThisYear.report-meta.xml +48 -0
- package/skills/platform-report-generate/examples/OpportunitiesByStageAndQuarter.report-meta.xml +53 -0
- package/skills/platform-report-generate/examples/OpportunitiesByStageReport.report-meta.xml +75 -0
- package/skills/platform-report-generate/examples/TabularOpportunitiesReport.report-meta.xml +49 -0
- package/skills/platform-report-generate/references/chart-types.md +31 -0
- package/skills/platform-report-generate/references/column-names.md +80 -0
- package/skills/platform-report-generate/references/date-intervals.md +56 -0
- package/skills/platform-report-generate/references/errors-and-troubleshooting.md +71 -0
- package/skills/platform-report-generate/references/filter-operations.md +92 -0
- package/skills/platform-report-generate/references/verification-checklist.md +47 -0
- package/skills/platform-sandbox-configure/SKILL.md +424 -0
- package/skills/platform-sharing-owd-configure/SKILL.md +6 -16
- package/skills/platform-sharing-rules-generate/SKILL.md +9 -9
- package/skills/platform-sharing-rules-generate/examples/create-cases.md +152 -0
- package/skills/platform-sharing-rules-generate/examples/delete-cases.md +113 -0
- package/skills/platform-sharing-rules-generate/examples/edit-cases.md +114 -0
- package/skills/platform-soql-query/SKILL.md +13 -0
- package/skills/platform-tracing-agentforce-configure/SKILL.md +5 -1
- package/skills/platform-tracing-configure/SKILL.md +4 -1
- package/skills/platform-trust-archive-manage/SKILL.md +3 -0
- package/skills/platform-validation-rule-generate/SKILL.md +1 -0
- package/skills/platform-widget-generate/SKILL.md +2 -1
- package/skills/sales-agentforce-pipeline-management-configure/SKILL.md +3 -1
- package/skills/service-digital-engagement-channel-configure/SKILL.md +263 -0
- package/skills/service-digital-engagement-channel-configure/assets/messaging_channel_template.xml +102 -0
- package/skills/service-digital-engagement-channel-configure/examples/asa_agent_channel.xml +53 -0
- package/skills/service-digital-engagement-channel-configure/examples/omni_flow_channel.xml +67 -0
- package/skills/service-digital-engagement-channel-configure/examples/omni_queue_channel.xml +52 -0
- package/skills/service-digital-engagement-channel-configure/references/channel_settings.md +294 -0
- package/skills/service-digital-engagement-channel-configure/scripts/normalize-channel-name.sh +24 -0
- package/skills/service-digital-engagement-deployment-configure/SKILL.md +255 -0
- package/skills/service-digital-engagement-deployment-configure/assets/esd_api_mobile_template.xml +25 -0
- package/skills/service-digital-engagement-deployment-configure/assets/esd_web_update_template.xml +33 -0
- package/skills/service-digital-engagement-deployment-configure/examples/esd_api.xml +25 -0
- package/skills/service-digital-engagement-deployment-configure/examples/esd_mobile.xml +25 -0
- package/skills/service-digital-engagement-deployment-configure/examples/esd_web_full.xml +27 -0
- package/skills/service-digital-engagement-deployment-configure/references/branding_and_tooling.md +98 -0
- package/skills/service-digital-engagement-deployment-configure/references/code_snippet.md +75 -0
- package/skills/service-digital-engagement-deployment-configure/references/connect_api_creation.md +144 -0
- package/skills/service-digital-engagement-deployment-configure/references/deployment_settings.md +193 -0
- package/skills/service-digital-engagement-messaging-site-integrate/SKILL.md +289 -0
- package/skills/service-digital-engagement-messaging-site-integrate/references/aura_patch.md +54 -0
- package/skills/service-digital-engagement-messaging-site-integrate/references/bundle_detection.md +56 -0
- package/skills/service-digital-engagement-messaging-site-integrate/references/deploy_and_publish.md +101 -0
- package/skills/service-digital-engagement-messaging-site-integrate/references/lwr_patch.md +55 -0
- package/skills/service-digital-engagement-messaging-site-integrate/references/lwr_route_scaffolding.md +31 -0
- package/skills/service-digital-engagement-messaging-site-integrate/references/manual_fallback.md +65 -0
- package/skills/service-digital-engagement-messaging-site-integrate/scripts/detect_bundle_type.sh +44 -0
- package/skills/service-digital-engagement-messaging-site-integrate/scripts/patch_aura_bundle.sh +135 -0
- package/skills/service-digital-engagement-messaging-site-integrate/scripts/patch_lwr_bundle.sh +132 -0
- package/skills/service-helpagent-coordinate/README.md +123 -0
- package/skills/service-helpagent-coordinate/SKILL.md +255 -0
- package/skills/service-helpagent-coordinate/assets/help-agent-spec.md +275 -0
- package/skills/service-helpagent-coordinate/references/agent-script.md +557 -0
- package/skills/service-helpagent-coordinate/references/channel-help-portal.md +22 -0
- package/skills/service-helpagent-coordinate/references/channel-voice.md +17 -0
- package/skills/service-helpagent-coordinate/references/channel-web-chat.md +76 -0
- package/skills/agentforce-generate/assets/README-legacy.md +0 -89
- package/skills/agentforce-generate/assets/agents/multi-subagent.agent +0 -105
- package/skills/agentforce-generate/assets/apex/models-api-queueable.cls +0 -225
- package/skills/agentforce-generate/assets/components/apex-action.agent +0 -52
- package/skills/agentforce-generate/assets/components/error-handling.agent +0 -58
- package/skills/agentforce-generate/assets/components/escalation-setup.agent +0 -169
- package/skills/agentforce-generate/assets/components/flow-action.agent +0 -66
- package/skills/agentforce-generate/assets/components/n-ary-conditions.agent +0 -110
- package/skills/agentforce-generate/assets/components/subagent-with-actions.agent +0 -40
- package/skills/agentforce-generate/assets/deterministic-routing.agent +0 -166
- package/skills/agentforce-generate/assets/escalation-pattern.agent +0 -209
- package/skills/agentforce-generate/assets/flow-action-lookup.agent +0 -115
- package/skills/agentforce-generate/assets/hub-and-spoke.agent +0 -104
- package/skills/agentforce-generate/assets/metadata/basic-prompt-template.promptTemplate-meta.xml +0 -109
- package/skills/agentforce-generate/assets/metadata/genai-function-apex.xml +0 -92
- package/skills/agentforce-generate/assets/metadata/genai-function-flow.xml +0 -57
- package/skills/agentforce-generate/assets/metadata/genai-plugin.xml +0 -72
- package/skills/agentforce-generate/assets/metadata/http-callout-flow.flow-meta.xml +0 -348
- package/skills/agentforce-generate/assets/metadata/record-grounded-prompt.promptTemplate-meta.xml +0 -136
- package/skills/agentforce-generate/assets/minimal-starter.agent +0 -42
- package/skills/agentforce-generate/assets/prompt-rag-search.agent +0 -131
- package/skills/agentforce-generate/assets/template-single-subagent.agent +0 -81
- package/skills/agentforce-generate/assets/verification-gate.agent +0 -208
- package/skills/agentforce-generate/references/minimal-examples.md +0 -67
- package/skills/platform-sharing-rules-generate/examples/test-cases.md +0 -381
- /package/skills/design-systems-slds-apply/{checklists.md → references/checklists.md} +0 -0
- /package/skills/platform-docs-get/{requirements.txt → scripts/requirements.txt} +0 -0
|
@@ -0,0 +1,4286 @@
|
|
|
1
|
+
{
|
|
2
|
+
"sections": [
|
|
3
|
+
"title",
|
|
4
|
+
"description",
|
|
5
|
+
"fields",
|
|
6
|
+
"special_access_rules",
|
|
7
|
+
"usage",
|
|
8
|
+
"wsdl_segment",
|
|
9
|
+
"field_reference"
|
|
10
|
+
],
|
|
11
|
+
"title": "PermissionSetLicense - Data API",
|
|
12
|
+
"description": "Represents a license that’s used to enable one or more users to receive a specified permission without changing their profile or reassigning profiles. You can use permission set licenses to grant access, but not to deny access. This object is available in API version 29.0 and later.",
|
|
13
|
+
"fields_columns": [
|
|
14
|
+
"type",
|
|
15
|
+
"properties",
|
|
16
|
+
"description"
|
|
17
|
+
],
|
|
18
|
+
"fields": {
|
|
19
|
+
"DeveloperName": {
|
|
20
|
+
"type": "string",
|
|
21
|
+
"properties": "Filter, Group, Sort",
|
|
22
|
+
"description": "The unique name of the object in the API. This name can contain only underscores and alphanumeric characters, and must be unique in your org. It must begin with a letter, not include spaces, not end with an underscore, and not contain two consecutive underscores. Note: When creating large sets of data, always specify a unique DeveloperName for each record. If no DeveloperName is specified, performance slows down while Salesforce generates one for each record. Note: Only users with View DeveloperName OR View Setup and Configuration permission can view, group, sort, and filter this field."
|
|
23
|
+
},
|
|
24
|
+
"ExpirationDate": {
|
|
25
|
+
"type": "date",
|
|
26
|
+
"properties": "Filter, Group, Nillable, Sort",
|
|
27
|
+
"description": "The date at which the permission set license expires."
|
|
28
|
+
},
|
|
29
|
+
"IsAvailableForIntegrations": {
|
|
30
|
+
"type": "boolean",
|
|
31
|
+
"properties": "Defaulted on create, Filter, Group, Sort",
|
|
32
|
+
"description": "Indicates whether the permission set license is enabled for integrations (true) or not (false). When this field is set to true, Salesforce integration features can access data. The default value is false. This field is read-only in the API and can be edited only in Setup. If integrations are required for feature functionality and the license isn't enabled for integrations, you receive an error when setting up the session-based permission set or executing the feature. Only enable integrations if necessary for the feature."
|
|
33
|
+
},
|
|
34
|
+
"IsSupplementLicense": {
|
|
35
|
+
"type": "boolean",
|
|
36
|
+
"properties": "Defaulted on create, Filter, Group, Sort",
|
|
37
|
+
"description": "Indicates whether a custom permission set license is a supplement license (true) or a foundation license (false). The default value is false. This field is only available if the Partner Licensing Platform developer preview is enabled. This field is available in API version 55.0 and later. Note: The Partner Licensing Platform is available as a developer preview. The Partner Licensing Platform isn’t generally available unless or until Salesforce announces its general availability in documentation or in press releases or public statements. All commands, parameters, and other features are subject to change or deprecation at any time, with or without notice. Don't implement functionality developed with these commands or tools in your production package."
|
|
38
|
+
},
|
|
39
|
+
"Language": {
|
|
40
|
+
"type": "picklist",
|
|
41
|
+
"properties": "Filter, Group, Restricted picklist, Sort",
|
|
42
|
+
"description": "The language of the permission set license."
|
|
43
|
+
},
|
|
44
|
+
"MasterLabel": {
|
|
45
|
+
"type": "string",
|
|
46
|
+
"properties": "Filter, Group, Sort",
|
|
47
|
+
"description": "The label of the permission set license. Label is Permission Set License Label."
|
|
48
|
+
},
|
|
49
|
+
"MaximumPermissions": {
|
|
50
|
+
"type": "boolean",
|
|
51
|
+
"properties": "Filter",
|
|
52
|
+
"description": "One field for each permission. For example, MaximumPermissionsIdentityConnect corresponds to the “Use Identity Connect” permission.If true, this PermissionSetLicense grants the specified permission. The number of fields varies depending on the permissions available for the organization."
|
|
53
|
+
},
|
|
54
|
+
"PermissionSetLicenseKey": {
|
|
55
|
+
"type": "string",
|
|
56
|
+
"properties": "Filter, Group, idLookup, Sort",
|
|
57
|
+
"description": "A string that uniquely identifies a particular permission set license."
|
|
58
|
+
},
|
|
59
|
+
"Status": {
|
|
60
|
+
"type": "picklist",
|
|
61
|
+
"properties": "Filter, Group, Restricted picklist, Sort",
|
|
62
|
+
"description": "The status of a permission set license. If Active, the permission set license is available. If Disabled, the permission set license has expired."
|
|
63
|
+
},
|
|
64
|
+
"TotalLicenses": {
|
|
65
|
+
"type": "int",
|
|
66
|
+
"properties": "Filter, Group, Sort",
|
|
67
|
+
"description": "The total number of this permission set license that are available to your organization."
|
|
68
|
+
},
|
|
69
|
+
"UsedLicenses": {
|
|
70
|
+
"type": "int",
|
|
71
|
+
"properties": "Filter, Group, Sort",
|
|
72
|
+
"description": "The number of this permission set license that are currently assigned to users."
|
|
73
|
+
}
|
|
74
|
+
},
|
|
75
|
+
"special_access_rules": "As of Spring ’20 and later, only your Salesforce org's internal users can access this object.",
|
|
76
|
+
"usage": "Users with the “View Setup and Configuration” permission can use the PermissionSetLicense object to view the set of currently defined permission set licenses in your organization. Use the PermissionSetLicense object to query existing permission licenses.\n\nUsers with the “View Setup and Configuration” permission can use the PermissionSetLicense object to view the set of currently defined permission set licenses in your organization.\n\nUse the PermissionSetLicense object to query existing permission licenses.",
|
|
77
|
+
"wsdl_segment": "```xml\n<simpleType name=\"ID\">\n <restriction base=\"xsd:string\">\n <length value=\"18\"/>\n <pattern value=\"[a-zA-Z0-9]{18}\"/>\n </restriction>\n</simpleType>\n<complexType name=\"PermissionSetLicense\">\n <complexContent>\n <extension base=\"ens:sObject\">\n <sequence>\n <element name=\"CreatedBy\" nillable=\"true\" minOccurs=\"0\" type=\"ens:User\"/>\n <element name=\"CreatedById\" nillable=\"true\" minOccurs=\"0\" type=\"tns:ID\"/>\n <element name=\"CreatedDate\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:dateTime\"/>\n <element name=\"DeveloperName\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:string\"/>\n <element name=\"ExpirationDate\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:date\"/>\n <element name=\"GrantedByLicenses\" nillable=\"true\" minOccurs=\"0\" type=\"tns:QueryResult\"/>\n <element name=\"IsAvailableForIntegrations\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"IsDeleted\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"IsSupplementLicense\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"Language\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:string\"/>\n <element name=\"LastModifiedBy\" nillable=\"true\" minOccurs=\"0\" type=\"ens:User\"/>\n <element name=\"LastModifiedById\" nillable=\"true\" minOccurs=\"0\" type=\"tns:ID\"/>\n <element name=\"LastModifiedDate\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:dateTime\"/>\n <element name=\"LicenseExpirationPolicy\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:string\"/>\n <element name=\"MasterLabel\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:string\"/>\n <element name=\"MaximumPermissionsAcceptInboundBundling\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsAccessBankingRelationshipAssistance\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsAccessBankingServiceAgent\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsAccessCMC\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsAccessContentBuilder\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsAccessDispatchConsoleMap\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsAccessDisputePrompts\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsAccessOrchestrationObjects\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsAccessPolicyAgent\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsAccessServiceEinstein\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsAccessSfDrive\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsAccessToComplaintAgent\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsAccessToComplaintMgmt\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsAccessToDisputeManagement\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsAccessToServiceProcess\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsAccessWealthAdvisorAgent\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsAccountSwitcherUser\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsActivateContract\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsActivateOrder\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsActivateSystemModeFlows\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsActivitiesAccess\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsAddDirectMessageMembers\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsAdvancedCsvDataImportUser\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsAgentforceSchedulingSupervisorView\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsAgentforceServiceAgentUser\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsAllowEmailIC\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsAllowLightningLogin\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsAllowUniversalSearch\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsAllowViewEditConvertedLeads\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsAllowViewKnowledge\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsApexRestServices\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsApiEnabled\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsApiUserOnly\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsAppFrameworkManageApp\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsAppFrameworkManageTemplate\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsAppFrameworkViewApp\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsApprovalAdmin\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsApprovalDesigner\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsAssignPermissionSets\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsAssignTopics\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsAttributionModelUser\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsAuthorApex\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsAuthorizePayments\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsB2BMarketingAnalyticsUser\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsBotManageBots\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsBotManageBotsTrainingData\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsBulkApiHardDelete\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsBulkMacrosAllowed\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsCMSECEAuthoringAccess\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsCampaignInfluence2\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsCanAccessCE\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsCanApproveFeedPost\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsCanApproveUninstalledApps\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsCanDoActAsUser\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsCanEditPrompts\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsCanInitiateMessagingSessions\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsCanInsertFeedSystemFields\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsCanQueryForeignTables\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsCanSendInitialSMSToIndividual\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsCanTranslateScrt2Conversation\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsCanUpdateEmailMessage\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsCanUseNewDashboardBuilder\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsCanVerifyComment\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsCaptureAndReversePayments\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsCdcReportingCreateReports\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsCdcReportingManageFolders\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsCdcReportingViewReports\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsChangeDashboardColors\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsChatterComposeUiCodesnippet\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsChatterEditOwnPost\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsChatterEditOwnRecordPost\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsChatterFileLink\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsChatterInternalUser\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsChatterInviteExternalUsers\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsChatterOwnGroups\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsClientSecretRotation\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsCloseConversations\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsCombAuthAndCapPayments\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsConfigCustomRecs\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsConfigureDataspaceScope\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsConnectOrgToEnvironmentHub\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsConsentApiUpdate\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsContentAdministrator\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsContentHubUser\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsContentWorkspaces\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsConvertLeads\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsCreateCustomizeDashboards\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsCreateCustomizeFilters\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsCreateCustomizeReports\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsCreateDashboardFolders\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsCreateLtngTempFolder\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsCreateLtngTempInPub\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsCreatePackaging\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsCreateReportFolders\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsCreateReportInLightning\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsCreateTopics\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsCreateWorkBadgeDefinition\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsCreateWorkspaces\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsCustomAppsOnFSMobile\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsCustomMobileAppsAccess\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsCustomSidebarOnAllPages\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsCustomizeApplication\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsDataExport\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsDelegatedTwoFactor\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsDeleteActivatedContract\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsDeleteCrMemoAndInvoice\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsDeleteSalesforceFiles\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsDeleteTopics\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsDigitalLendingAdminUser\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsDigitalLendingEditReadOnly\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsDigitalLendingUser\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsDigitalLendingWorkbench\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsDistributeFromPersWksp\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsDownloadMaliciousFiles\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsDownloadPackageVersionZips\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsEditActivatedOrders\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsEditBillingInfo\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsEditBrandTemplates\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsEditCaseComments\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsEditEvent\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsEditHtmlTemplates\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsEditKnowledge\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsEditMyDashboards\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsEditMyReports\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsEditOppLineItemUnitPrice\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsEditPublicDocuments\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsEditPublicFilters\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsEditPublicTemplates\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsEditReadonlyFields\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsEditTask\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsEditTopics\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsEmailAdministration\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsEmailMass\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsEmailSingle\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsEmailTemplateManagement\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsEmbeddedMessagingAgent\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsEnableBCTransactionPolling\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsEnableCommunityAppLauncher\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsEnableIPFSUpload\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsEnableNotifications\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsEngagementConfigUser\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsEnhancedSalesMobileExp\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsExportReport\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsExternalClientAppAdmin\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsExternalClientAppDeveloper\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsExternalClientAppViewer\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsFSCArcGraphCommunityUser\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsFeedPinning\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsFieldServiceAccess\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsFieldServiceCopilotActions\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsFieldServiceDispatcher\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsFieldServiceLastMile\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsFieldServiceMobileApp\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsFieldServiceScheduling\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsFieldServiceVoiceToForm\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsFieldServiceVoiceToRecordEdit\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsFlowUFLRequired\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsForceTwoFactor\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsFreezeUsers\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsGiveRecognitionBadge\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsGovernNetworks\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsGrantOutboundBundling\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsHasUnlimitedNBAExecutions\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsHeadlessCMSAccess\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsHeadlessPublishNudges\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsHideReadByList\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsIdentityConnect\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsIdentityEnabled\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsImportCustomObjects\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsImportLeads\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsImportPersonal\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsInstallPackaging\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsIntelligentDocumentProcessing\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsIsSsoEnabled\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsIsotopeAccess\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsIsotopeCToCUser\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsIsotopeLEX\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsLMEndMessagingSessionUserPerm\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsLMOutboundMessagingUserPerm\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsLifecycleManagementAPIUser\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsLightningConsoleAllowedForUser\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsLightningExperienceUser\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsLightningOnFSMobile\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsListEmailSend\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsLobbyManagementUserAccess\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsLtngPromoReserved01UserPerm\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsMCPMetadataApi\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsMakePayments\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsManageAccessPolicies\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsManageAgentforceServiceAgent\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsManageAnalyticSnapshots\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsManageApiNamedQueries\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsManageAuthProviders\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsManageBusinessHourHolidays\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsManageC2CHighVolumePriming\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsManageC360AConnections\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsManageCMS\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsManageCallCenters\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsManageCases\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsManageCategories\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsManageCdpMlModels\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsManageCertificates\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsManageCertificatesExpiration\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsManageChatterMessages\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsManageContentPermissions\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsManageContentProperties\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsManageContentTaxonomy\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsManageContentTypes\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsManageCustomDomains\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsManageCustomPermissions\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsManageCustomReportTypes\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsManageCustomerDataOptOut\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsManageDashbdsInPubFolders\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsManageDataCategories\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsManageDataIntegrations\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsManageDataMaskPolicies\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsManageDataspaceScope\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsManageDynamicDashboards\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsManageEmailClientConfig\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsManageEncryptionKeys\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsManageEntitlements\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsManageExchangeConfig\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsManageExternalConnections\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsManageFilesAndAttachments\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsManageHealthCheck\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsManageHerokuAppLink\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsManageHubConnections\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsManageIntegrationConnections\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsManageIntegrationPortals\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsManageInteraction\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsManageInternalUsers\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsManageIpAddresses\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsManageKnowledge\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsManageKnowledgeImportExport\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsManageLeads\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsManageLoginAccessPolicies\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsManageMaliciousFiles\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsManageMobile\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsManageNamedCredentials\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsManageNetworks\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsManageOrchInstsAndWorkItems\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsManageOrchestrationRuns\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsManagePasswordPolicies\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsManageProfilesPermissionsets\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsManagePropositions\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsManagePvtRptsAndDashbds\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsManageRecommendationStrategies\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsManageReleaseUpdates\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsManageRemoteAccess\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsManageReportsInPubFolders\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsManageRoles\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsManageSALifecycle\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsManageSearchPromotionRules\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsManageSecurityCommandCenter\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsManageSessionPermissionSets\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsManageSharedListViews\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsManageSharing\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsManageSolutions\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsManageSubscriptions\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsManageSurveys\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsManageSynonyms\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsManageTwoFactor\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsManageUnlistedGroups\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsManageUsers\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsMassInlineEdit\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsMeetingEngagementUser\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsMergeTopics\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsMetadataStudioUser\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsMngBenVerfForAssistiveAgnt\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsMobileMessagingAgent\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsModerateChatter\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsModerateNetworkUsers\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsModifyAccessAllowPolicies\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsModifyAccessDenyPolicies\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsModifyAllData\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsModifyAllPolicyCenterPolicies\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsModifyDataClassification\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsModifyMetadata\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsModifyTransactionSecurityPolicies\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsMonitorLoginHistory\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsNativeWebviewScrolling\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsNewReportBuilder\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsOnbrdDataGrpMDDsgnr\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsOnbrdDataGrpMDReader\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsOptOutGeoLocationTracking\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsPackaging2\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsPackaging2Delete\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsPasswordNeverExpires\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsPaymentsAPIUser\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsPersonalizationDecisioningUser\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsPersonalizationIntelUser\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsPersonalizationPlatform\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsPersonalizedFinanceUserAccess\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsPreventClassicExperience\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsPrismBackofficeUser\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsPrismPlaygroundUser\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsPrivacyDataAccess\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsPrmExtIntPrtnrAdminUser\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsProductAdmin\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsPtyProflDataVldMDDsgnr\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsPtyProflDataVldMDReader\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsPtyProflDataVldRTReader\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsPtyProflDataVldRTWriter\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsPublishPackaging\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsQrCodeGeneratorMobilePublisherPlayground\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsQueryAllFiles\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsQueryNonVetoedFiles\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsQuipMetricsAccess\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsQuipUserEngagementMetrics\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsReassignOrchestrationWorkItems\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsRebookWithAgentforceFromDispatchConsole\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsRefundPayments\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsRegrelloUser\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsRemoveDirectMessageMembers\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsResetPasswords\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsRunFlow\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsRunGlobalOptimization\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsRunInDayOptimization\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsRunMyDayUser\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsRunReports\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsRunResourceScheduleOptimization\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsSalesConsole\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsSalesInsightsUser\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsSandboxTestingInCommunityApp\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsScheduleReports\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsSegmentIntelligenceUser\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsSelectFilesFromSalesforce\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsSendAnnouncementEmails\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsSendCustomNotifications\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsSendExternalEmailAvailable\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsSendSitRequests\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsSetAdvancedOptimizationFilters\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsShareInternalArticles\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsShowCompanyNameAsUserBadge\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsShowExplanationsForCandidateResults\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsShowPlannedRoute\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsShowPreWorkBriefGA\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsSimpleCsvDataImportUser\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsSkipIdentityConfirmation\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsSolutionImport\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsStageManagementDesignUser\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsSubmitMacrosAllowed\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsSubscribeDashboardRolesGrps\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsSubscribeDashboardToOtherUsers\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsSubscribeReportRolesGrps\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsSubscribeReportToOtherUsers\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsSubscribeReportsRunAsUser\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsSubscribeToLightningDashboards\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsSubscribeToLightningReports\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsSuitesAgentEscalationPerm\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsTerritoryOperations\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsTraceXdsQueries\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsTransactionSecurityExempt\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsTransactionalEmailSend\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsTransferAnyCase\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsTransferAnyEntity\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsTransferAnyLead\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsTwoFactorApi\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsUseAnyApiAuth\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsUseAssistantDialog\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsUseCanCancelInProgressChange\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsUseCreateOrderSummary\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsUseEnsureFunds\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsUseMySearch\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsUseOrderItemSummaryCancel\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsUseOrderItemSummaryReturn\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsUseQuerySuggestions\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsUseRestrictedTheme\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsUseServicePartReturn\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsUseSetupWithAgentforce\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsUseTeamReassignWizards\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsUseTeamsForEmployee\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsUseTeamsForItSrvcs\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsUseWebLink\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsUserCanDeployStore\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsUserHasALMSimpleDeployAccess\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsUserInteractionInsights\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsViewAccessPolicies\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsViewAllActivities\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsViewAllCustomSettings\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsViewAllData\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsViewAllFieldsGlobal\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsViewAllForeignKeyNames\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsViewAllPolicyCenterPolicies\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsViewAllProfiles\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsViewAllUsers\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsViewAnomalyEvents\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsViewApiNamedQueries\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsViewClientSecret\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsViewContent\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsViewContentTaxonomy\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsViewDataAssessment\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsViewDataCategories\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsViewDataLeakageEvents\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsViewDeveloperName\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsViewEncryptedData\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsViewEventLogFiles\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsViewHealthCheck\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsViewHelpLink\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsViewMyTeamsDashboards\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsViewOrchestrationsInAutomApp\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsViewPayments\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsViewPlatformEvents\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsViewPrivateStaticResources\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsViewPublicDashboards\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsViewPublicReports\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsViewRecommendations\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsViewRestrictionAndScopingRules\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsViewRoles\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsViewSALifecycle\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsViewSecurityCommandCenter\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsViewSetup\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsViewShieldApp\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsViewUserPII\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsWorkCalibrationUser\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MaximumPermissionsWorkDotComUserPerm\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <element name=\"MigratableLicenses\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:int\"/>\n <element name=\"PermissionSetLicenseAssignments\" nillable=\"true\" minOccurs=\"0\" type=\"tns:QueryResult\"/>\n <element name=\"PermissionSetLicenseKey\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:string\"/>\n <element name=\"Status\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:string\"/>\n <element name=\"SystemModstamp\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:dateTime\"/>\n <element name=\"TotalLicenses\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:int\"/>\n <element name=\"UsedLicenses\" nillable=\"true\" minOccurs=\"0\" type=\"xsd:int\"/>\n </sequence>\n </extension>\n </complexContent>\n</complexType>\n<simpleType name=\"QueryLocator\">\n <restriction base=\"xsd:string\"/>\n</simpleType>\n<complexType name=\"QueryResult\">\n <sequence>\n <element name=\"done\" type=\"xsd:boolean\"/>\n <element name=\"queryLocator\" type=\"tns:QueryLocator\" nillable=\"true\"/>\n <element name=\"records\" type=\"ens:sObject\" nillable=\"true\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n <element name=\"size\" type=\"xsd:int\"/>\n </sequence>\n</complexType>\n```",
|
|
78
|
+
"field_reference": {
|
|
79
|
+
"CreatedById": {
|
|
80
|
+
"field_label": "Created By ID",
|
|
81
|
+
"type": "reference",
|
|
82
|
+
"length": "18"
|
|
83
|
+
},
|
|
84
|
+
"CreatedDate": {
|
|
85
|
+
"field_label": "Created Date",
|
|
86
|
+
"type": "datetime"
|
|
87
|
+
},
|
|
88
|
+
"DeveloperName": {
|
|
89
|
+
"field_label": "Developer Name",
|
|
90
|
+
"type": "string",
|
|
91
|
+
"length": "80"
|
|
92
|
+
},
|
|
93
|
+
"ExpirationDate": {
|
|
94
|
+
"field_label": "Expiration Date",
|
|
95
|
+
"type": "date"
|
|
96
|
+
},
|
|
97
|
+
"Id": {
|
|
98
|
+
"field_label": "Permission Set License ID",
|
|
99
|
+
"type": "id",
|
|
100
|
+
"length": "18"
|
|
101
|
+
},
|
|
102
|
+
"IsAvailableForIntegrations": {
|
|
103
|
+
"field_label": "Is License Available for Integrations?",
|
|
104
|
+
"type": "boolean"
|
|
105
|
+
},
|
|
106
|
+
"IsDeleted": {
|
|
107
|
+
"field_label": "Deleted",
|
|
108
|
+
"type": "boolean"
|
|
109
|
+
},
|
|
110
|
+
"IsSupplementLicense": {
|
|
111
|
+
"field_label": "Is Supplement License",
|
|
112
|
+
"type": "boolean"
|
|
113
|
+
},
|
|
114
|
+
"Language": {
|
|
115
|
+
"field_label": "Language",
|
|
116
|
+
"type": "picklist",
|
|
117
|
+
"length": "40"
|
|
118
|
+
},
|
|
119
|
+
"LastModifiedById": {
|
|
120
|
+
"field_label": "Last Modified By ID",
|
|
121
|
+
"type": "reference",
|
|
122
|
+
"length": "18"
|
|
123
|
+
},
|
|
124
|
+
"LastModifiedDate": {
|
|
125
|
+
"field_label": "Last Modified Date",
|
|
126
|
+
"type": "datetime"
|
|
127
|
+
},
|
|
128
|
+
"LicenseExpirationPolicy": {
|
|
129
|
+
"field_label": "License Expiration Policy",
|
|
130
|
+
"type": "picklist",
|
|
131
|
+
"length": "40"
|
|
132
|
+
},
|
|
133
|
+
"MasterLabel": {
|
|
134
|
+
"field_label": "Permission Set License Label",
|
|
135
|
+
"type": "string",
|
|
136
|
+
"length": "80"
|
|
137
|
+
},
|
|
138
|
+
"MaximumPermissionsAECommunityAccess": {
|
|
139
|
+
"field_label": "Use Assessment Envelope objects via Experience Cloud sites",
|
|
140
|
+
"type": "boolean"
|
|
141
|
+
},
|
|
142
|
+
"MaximumPermissionsAICreateInsightObjects": {
|
|
143
|
+
"field_label": "Create AI Insight Objects",
|
|
144
|
+
"type": "boolean"
|
|
145
|
+
},
|
|
146
|
+
"MaximumPermissionsAITestingUser": {
|
|
147
|
+
"field_label": "Manage Agentforce Testing",
|
|
148
|
+
"type": "boolean"
|
|
149
|
+
},
|
|
150
|
+
"MaximumPermissionsAIViewInsightObjects": {
|
|
151
|
+
"field_label": "View AI Insight Objects",
|
|
152
|
+
"type": "boolean"
|
|
153
|
+
},
|
|
154
|
+
"MaximumPermissionsAIWorkbenchUser": {
|
|
155
|
+
"field_label": "Manage Agentforce Grids",
|
|
156
|
+
"type": "boolean"
|
|
157
|
+
},
|
|
158
|
+
"MaximumPermissionsAcceptInboundBundling": {
|
|
159
|
+
"field_label": "Accept Inbound Bundling",
|
|
160
|
+
"type": "boolean"
|
|
161
|
+
},
|
|
162
|
+
"MaximumPermissionsAcceptRiskForProblems": {
|
|
163
|
+
"field_label": "Accept Risk For Problems",
|
|
164
|
+
"type": "boolean"
|
|
165
|
+
},
|
|
166
|
+
"MaximumPermissionsAccessActivation": {
|
|
167
|
+
"field_label": "Allows user access activations",
|
|
168
|
+
"type": "boolean"
|
|
169
|
+
},
|
|
170
|
+
"MaximumPermissionsAccessApplicationFormObjects": {
|
|
171
|
+
"field_label": "Access Application Form-Related Functionality",
|
|
172
|
+
"type": "boolean"
|
|
173
|
+
},
|
|
174
|
+
"MaximumPermissionsAccessBankingRelationshipAssistance": {
|
|
175
|
+
"field_label": "Access Banking Relationship Assistance",
|
|
176
|
+
"type": "boolean"
|
|
177
|
+
},
|
|
178
|
+
"MaximumPermissionsAccessBankingServiceAgent": {
|
|
179
|
+
"field_label": "Access Banking Service Agent",
|
|
180
|
+
"type": "boolean"
|
|
181
|
+
},
|
|
182
|
+
"MaximumPermissionsAccessBudgetManagement": {
|
|
183
|
+
"field_label": "Manage Budgets",
|
|
184
|
+
"type": "boolean"
|
|
185
|
+
},
|
|
186
|
+
"MaximumPermissionsAccessCMC": {
|
|
187
|
+
"field_label": "Access Experience Management",
|
|
188
|
+
"type": "boolean"
|
|
189
|
+
},
|
|
190
|
+
"MaximumPermissionsAccessCdpDataExplorer": {
|
|
191
|
+
"field_label": "Access Data Cloud Data Explorer",
|
|
192
|
+
"type": "boolean"
|
|
193
|
+
},
|
|
194
|
+
"MaximumPermissionsAccessCdpProfileExplorer": {
|
|
195
|
+
"field_label": "Access Data Cloud Profile Explorer",
|
|
196
|
+
"type": "boolean"
|
|
197
|
+
},
|
|
198
|
+
"MaximumPermissionsAccessContentBuilder": {
|
|
199
|
+
"field_label": "Access drag-and-drop content builder",
|
|
200
|
+
"type": "boolean"
|
|
201
|
+
},
|
|
202
|
+
"MaximumPermissionsAccessCustomerDataCloudSetup": {
|
|
203
|
+
"field_label": "Allows user access Data Cloud setup menu",
|
|
204
|
+
"type": "boolean"
|
|
205
|
+
},
|
|
206
|
+
"MaximumPermissionsAccessDispatchConsoleMap": {
|
|
207
|
+
"field_label": "Access Scheduling Console Map",
|
|
208
|
+
"type": "boolean"
|
|
209
|
+
},
|
|
210
|
+
"MaximumPermissionsAccessDisputePrompts": {
|
|
211
|
+
"field_label": "Provides access to Financial Services Email prompt templates",
|
|
212
|
+
"type": "boolean"
|
|
213
|
+
},
|
|
214
|
+
"MaximumPermissionsAccessEduCloudAdvncdAcadOperExprcCloud": {
|
|
215
|
+
"field_label": "Access Education Cloud Advanced Academic Operations for Experience Cloud users",
|
|
216
|
+
"type": "boolean"
|
|
217
|
+
},
|
|
218
|
+
"MaximumPermissionsAccessEducationCloudCmty": {
|
|
219
|
+
"field_label": "Education Cloud for Experience Cloud User",
|
|
220
|
+
"type": "boolean"
|
|
221
|
+
},
|
|
222
|
+
"MaximumPermissionsAccessEinsteinAutofill": {
|
|
223
|
+
"field_label": "Access Einstein Autofill",
|
|
224
|
+
"type": "boolean"
|
|
225
|
+
},
|
|
226
|
+
"MaximumPermissionsAccessFinancialAccounts": {
|
|
227
|
+
"field_label": "Financial Accounts User",
|
|
228
|
+
"type": "boolean"
|
|
229
|
+
},
|
|
230
|
+
"MaximumPermissionsAccessGeniePlatform": {
|
|
231
|
+
"field_label": "Allows user access Data Cloud",
|
|
232
|
+
"type": "boolean"
|
|
233
|
+
},
|
|
234
|
+
"MaximumPermissionsAccessKnowledgeSpace": {
|
|
235
|
+
"field_label": "Create, edit, and delete knowledge spaces",
|
|
236
|
+
"type": "boolean"
|
|
237
|
+
},
|
|
238
|
+
"MaximumPermissionsAccessOrchestrationObjects": {
|
|
239
|
+
"field_label": "Access Orchestration Objects",
|
|
240
|
+
"type": "boolean"
|
|
241
|
+
},
|
|
242
|
+
"MaximumPermissionsAccessPSPasCaseAgents": {
|
|
243
|
+
"field_label": "Access Patient Support Programs as a Case Agent",
|
|
244
|
+
"type": "boolean"
|
|
245
|
+
},
|
|
246
|
+
"MaximumPermissionsAccessPSPasProgramLead": {
|
|
247
|
+
"field_label": "Access Patient Support Programs as a Program Lead",
|
|
248
|
+
"type": "boolean"
|
|
249
|
+
},
|
|
250
|
+
"MaximumPermissionsAccessPolicyAgent": {
|
|
251
|
+
"field_label": "Access Policy Agent",
|
|
252
|
+
"type": "boolean"
|
|
253
|
+
},
|
|
254
|
+
"MaximumPermissionsAccessProgramManagementAsGuest": {
|
|
255
|
+
"field_label": "Access Program Management as Guest",
|
|
256
|
+
"type": "boolean"
|
|
257
|
+
},
|
|
258
|
+
"MaximumPermissionsAccessRecordEngagementActions": {
|
|
259
|
+
"field_label": "Access Record Engagement Actions",
|
|
260
|
+
"type": "boolean"
|
|
261
|
+
},
|
|
262
|
+
"MaximumPermissionsAccessRevCmnyUnmetered": {
|
|
263
|
+
"field_label": "Revenue Management: Community user access",
|
|
264
|
+
"type": "boolean"
|
|
265
|
+
},
|
|
266
|
+
"MaximumPermissionsAccessSegment": {
|
|
267
|
+
"field_label": "Allows user access segments",
|
|
268
|
+
"type": "boolean"
|
|
269
|
+
},
|
|
270
|
+
"MaximumPermissionsAccessServiceEinstein": {
|
|
271
|
+
"field_label": "Access Service Einstein",
|
|
272
|
+
"type": "boolean"
|
|
273
|
+
},
|
|
274
|
+
"MaximumPermissionsAccessSfDrive": {
|
|
275
|
+
"field_label": "Grant users permission to SfDrive",
|
|
276
|
+
"type": "boolean"
|
|
277
|
+
},
|
|
278
|
+
"MaximumPermissionsAccessStuFinancialsCmty": {
|
|
279
|
+
"field_label": "Access Education Cloud Student Financials for Experience Cloud users",
|
|
280
|
+
"type": "boolean"
|
|
281
|
+
},
|
|
282
|
+
"MaximumPermissionsAccessToComplaintAgent": {
|
|
283
|
+
"field_label": "Provides access to Complaint Fulfilment Agent",
|
|
284
|
+
"type": "boolean"
|
|
285
|
+
},
|
|
286
|
+
"MaximumPermissionsAccessToComplaintMgmt": {
|
|
287
|
+
"field_label": "Public Complaint Management User",
|
|
288
|
+
"type": "boolean"
|
|
289
|
+
},
|
|
290
|
+
"MaximumPermissionsAccessToDisputeManagement": {
|
|
291
|
+
"field_label": "Dispute Management User",
|
|
292
|
+
"type": "boolean"
|
|
293
|
+
},
|
|
294
|
+
"MaximumPermissionsAccessToServiceProcess": {
|
|
295
|
+
"field_label": "Service Process User",
|
|
296
|
+
"type": "boolean"
|
|
297
|
+
},
|
|
298
|
+
"MaximumPermissionsAccessTrialInfoGuestUser": {
|
|
299
|
+
"field_label": "Access Clinical Trial Information as Guest User",
|
|
300
|
+
"type": "boolean"
|
|
301
|
+
},
|
|
302
|
+
"MaximumPermissionsAccessWalkthroughs": {
|
|
303
|
+
"field_label": "Take Custom Walkthroughs",
|
|
304
|
+
"type": "boolean"
|
|
305
|
+
},
|
|
306
|
+
"MaximumPermissionsAccessWealthAdvisorAgent": {
|
|
307
|
+
"field_label": "Financial Advisor Assistance Agent",
|
|
308
|
+
"type": "boolean"
|
|
309
|
+
},
|
|
310
|
+
"MaximumPermissionsAccountAddressManager": {
|
|
311
|
+
"field_label": "Manage Account Addresses",
|
|
312
|
+
"type": "boolean"
|
|
313
|
+
},
|
|
314
|
+
"MaximumPermissionsAccountSwitcherUser": {
|
|
315
|
+
"field_label": "Account Switcher User",
|
|
316
|
+
"type": "boolean"
|
|
317
|
+
},
|
|
318
|
+
"MaximumPermissionsAccsPtntSuptPgmUseEinstein": {
|
|
319
|
+
"field_label": "Expose patient support programs powered by Einstein generative AI",
|
|
320
|
+
"type": "boolean"
|
|
321
|
+
},
|
|
322
|
+
"MaximumPermissionsActionPlansUserAccess": {
|
|
323
|
+
"field_label": "Permission to access the Action Plans feature",
|
|
324
|
+
"type": "boolean"
|
|
325
|
+
},
|
|
326
|
+
"MaximumPermissionsActionableListCompUser": {
|
|
327
|
+
"field_label": "Actionable Segmentation Outreach",
|
|
328
|
+
"type": "boolean"
|
|
329
|
+
},
|
|
330
|
+
"MaximumPermissionsActionableListConfigUser": {
|
|
331
|
+
"field_label": "Actionable Segmentation Admin",
|
|
332
|
+
"type": "boolean"
|
|
333
|
+
},
|
|
334
|
+
"MaximumPermissionsActionableListCreator": {
|
|
335
|
+
"field_label": "Actionable Segmentation List Manager",
|
|
336
|
+
"type": "boolean"
|
|
337
|
+
},
|
|
338
|
+
"MaximumPermissionsActionableListUser": {
|
|
339
|
+
"field_label": "Actionable Segmentation Objects",
|
|
340
|
+
"type": "boolean"
|
|
341
|
+
},
|
|
342
|
+
"MaximumPermissionsActivateContract": {
|
|
343
|
+
"field_label": "Activate Contracts",
|
|
344
|
+
"type": "boolean"
|
|
345
|
+
},
|
|
346
|
+
"MaximumPermissionsActivateDeactivateNonSetupFlow": {
|
|
347
|
+
"field_label": "Activate or Deactivate Flows",
|
|
348
|
+
"type": "boolean"
|
|
349
|
+
},
|
|
350
|
+
"MaximumPermissionsActivateOrder": {
|
|
351
|
+
"field_label": "Activate Orders",
|
|
352
|
+
"type": "boolean"
|
|
353
|
+
},
|
|
354
|
+
"MaximumPermissionsActivateSystemModeFlows": {
|
|
355
|
+
"field_label": "Enable System Mode Flow Activation",
|
|
356
|
+
"type": "boolean"
|
|
357
|
+
},
|
|
358
|
+
"MaximumPermissionsActivationWrite": {
|
|
359
|
+
"field_label": "Allows use to hit cleanroom API while creating activations.",
|
|
360
|
+
"type": "boolean"
|
|
361
|
+
},
|
|
362
|
+
"MaximumPermissionsActivitiesAccess": {
|
|
363
|
+
"field_label": "Access Activities",
|
|
364
|
+
"type": "boolean"
|
|
365
|
+
},
|
|
366
|
+
"MaximumPermissionsAddAnalyticsRemoteConnections": {
|
|
367
|
+
"field_label": "Add CRM Analytics Remote Connections",
|
|
368
|
+
"type": "boolean"
|
|
369
|
+
},
|
|
370
|
+
"MaximumPermissionsAddAsgntElmntToNonSetupFlow": {
|
|
371
|
+
"field_label": "Add Assignment Element to Flows",
|
|
372
|
+
"type": "boolean"
|
|
373
|
+
},
|
|
374
|
+
"MaximumPermissionsAddCollFltrElmntToNonSetupFlow": {
|
|
375
|
+
"field_label": "Add Collection Filter Element to Flows",
|
|
376
|
+
"type": "boolean"
|
|
377
|
+
},
|
|
378
|
+
"MaximumPermissionsAddCollSrtElmntToNonSetupFlow": {
|
|
379
|
+
"field_label": "Add Collection Sort Element to Flows",
|
|
380
|
+
"type": "boolean"
|
|
381
|
+
},
|
|
382
|
+
"MaximumPermissionsAddCreaRecElmntToNonSetupFlow": {
|
|
383
|
+
"field_label": "Add Create Records Element to Flows",
|
|
384
|
+
"type": "boolean"
|
|
385
|
+
},
|
|
386
|
+
"MaximumPermissionsAddDecisionElmntNonSetupFlow": {
|
|
387
|
+
"field_label": "Add Decision Element to Flows",
|
|
388
|
+
"type": "boolean"
|
|
389
|
+
},
|
|
390
|
+
"MaximumPermissionsAddDelRecElmntToNonSetupFlow": {
|
|
391
|
+
"field_label": "Add Delete Records Element to Flows",
|
|
392
|
+
"type": "boolean"
|
|
393
|
+
},
|
|
394
|
+
"MaximumPermissionsAddDirectMessageMembers": {
|
|
395
|
+
"field_label": "Add People to Direct Messages",
|
|
396
|
+
"type": "boolean"
|
|
397
|
+
},
|
|
398
|
+
"MaximumPermissionsAddGetRecElmntToNonSetupFlow": {
|
|
399
|
+
"field_label": "Add Get Records Element to Flows",
|
|
400
|
+
"type": "boolean"
|
|
401
|
+
},
|
|
402
|
+
"MaximumPermissionsAddLoopElmntToNonSetupFlow": {
|
|
403
|
+
"field_label": "Add Loop Element to Flows",
|
|
404
|
+
"type": "boolean"
|
|
405
|
+
},
|
|
406
|
+
"MaximumPermissionsAddSendToFlowElmntToNonSetupFlow": {
|
|
407
|
+
"field_label": "Add Send to a Flow Element to Flows",
|
|
408
|
+
"type": "boolean"
|
|
409
|
+
},
|
|
410
|
+
"MaximumPermissionsAddSubflowElmntToNonSetupFlow": {
|
|
411
|
+
"field_label": "Add Subflow Element to Flows",
|
|
412
|
+
"type": "boolean"
|
|
413
|
+
},
|
|
414
|
+
"MaximumPermissionsAddTrfmElmntToNonSetupFlow": {
|
|
415
|
+
"field_label": "Add Transform Element to Flows",
|
|
416
|
+
"type": "boolean"
|
|
417
|
+
},
|
|
418
|
+
"MaximumPermissionsAddUpdtRecElmntToNonSetupFlow": {
|
|
419
|
+
"field_label": "Add Update Records Element to Flows",
|
|
420
|
+
"type": "boolean"
|
|
421
|
+
},
|
|
422
|
+
"MaximumPermissionsAddWaitToNonSetupFlow": {
|
|
423
|
+
"field_label": "Add Wait Element to Flows",
|
|
424
|
+
"type": "boolean"
|
|
425
|
+
},
|
|
426
|
+
"MaximumPermissionsAddWaveNotificationRecipients": {
|
|
427
|
+
"field_label": "Add Recipients to CRM Analytics Notifications",
|
|
428
|
+
"type": "boolean"
|
|
429
|
+
},
|
|
430
|
+
"MaximumPermissionsAdoptionAnalyticsUser": {
|
|
431
|
+
"field_label": "Access Adoption Analytics Templates and Apps",
|
|
432
|
+
"type": "boolean"
|
|
433
|
+
},
|
|
434
|
+
"MaximumPermissionsAdvancedCsvDataImportUser": {
|
|
435
|
+
"field_label": "Advanced Csv Data Import User Permission",
|
|
436
|
+
"type": "boolean"
|
|
437
|
+
},
|
|
438
|
+
"MaximumPermissionsAgentforceSalesChatGPT": {
|
|
439
|
+
"field_label": "Use Agentforce Sales ChatGPT App",
|
|
440
|
+
"type": "boolean"
|
|
441
|
+
},
|
|
442
|
+
"MaximumPermissionsAgentforceSchedulingSupervisorView": {
|
|
443
|
+
"field_label": "Access Agentforce Scheduling Supervisor View",
|
|
444
|
+
"type": "boolean"
|
|
445
|
+
},
|
|
446
|
+
"MaximumPermissionsAgentforceServiceAgentUser": {
|
|
447
|
+
"field_label": "Agentforce Service Agent User",
|
|
448
|
+
"type": "boolean"
|
|
449
|
+
},
|
|
450
|
+
"MaximumPermissionsAllowAIAccelerator": {
|
|
451
|
+
"field_label": "View AI Accelerator Predictions.",
|
|
452
|
+
"type": "boolean"
|
|
453
|
+
},
|
|
454
|
+
"MaximumPermissionsAllowEmailIC": {
|
|
455
|
+
"field_label": "Email-Based Identity Verification Option",
|
|
456
|
+
"type": "boolean"
|
|
457
|
+
},
|
|
458
|
+
"MaximumPermissionsAllowLightningLogin": {
|
|
459
|
+
"field_label": "Lightning Login User",
|
|
460
|
+
"type": "boolean"
|
|
461
|
+
},
|
|
462
|
+
"MaximumPermissionsAllowOCIAvailabilityAPIs": {
|
|
463
|
+
"field_label": "Use Omnichannel Inventory Availability APIs",
|
|
464
|
+
"type": "boolean"
|
|
465
|
+
},
|
|
466
|
+
"MaximumPermissionsAllowSurveyAdvancedFeatures": {
|
|
467
|
+
"field_label": "Salesforce Surveys Advanced Features",
|
|
468
|
+
"type": "boolean"
|
|
469
|
+
},
|
|
470
|
+
"MaximumPermissionsAllowSurveyLimitedAdvFeatures": {
|
|
471
|
+
"field_label": "Surveys Advanced Features Starter",
|
|
472
|
+
"type": "boolean"
|
|
473
|
+
},
|
|
474
|
+
"MaximumPermissionsAllowUniversalSearch": {
|
|
475
|
+
"field_label": "Knowledge One",
|
|
476
|
+
"type": "boolean"
|
|
477
|
+
},
|
|
478
|
+
"MaximumPermissionsAllowViewEditConvertedLeads": {
|
|
479
|
+
"field_label": "View and Edit Converted Leads",
|
|
480
|
+
"type": "boolean"
|
|
481
|
+
},
|
|
482
|
+
"MaximumPermissionsAllowViewKnowledge": {
|
|
483
|
+
"field_label": "Allow View Knowledge",
|
|
484
|
+
"type": "boolean"
|
|
485
|
+
},
|
|
486
|
+
"MaximumPermissionsAlumniCommunityPages": {
|
|
487
|
+
"field_label": "Alumni Community Pages",
|
|
488
|
+
"type": "boolean"
|
|
489
|
+
},
|
|
490
|
+
"MaximumPermissionsAmendAssets": {
|
|
491
|
+
"field_label": "Amend Assets",
|
|
492
|
+
"type": "boolean"
|
|
493
|
+
},
|
|
494
|
+
"MaximumPermissionsAnalyticsQueryServiceConsumer": {
|
|
495
|
+
"field_label": "Allow the user to run queries with the Analytics Query Service",
|
|
496
|
+
"type": "boolean"
|
|
497
|
+
},
|
|
498
|
+
"MaximumPermissionsApexRestServices": {
|
|
499
|
+
"field_label": "Apex REST Services",
|
|
500
|
+
"type": "boolean"
|
|
501
|
+
},
|
|
502
|
+
"MaximumPermissionsApiEnabled": {
|
|
503
|
+
"field_label": "API Enabled",
|
|
504
|
+
"type": "boolean"
|
|
505
|
+
},
|
|
506
|
+
"MaximumPermissionsApiUserOnly": {
|
|
507
|
+
"field_label": "API Only User",
|
|
508
|
+
"type": "boolean"
|
|
509
|
+
},
|
|
510
|
+
"MaximumPermissionsAppFrameworkManageApp": {
|
|
511
|
+
"field_label": "Access to manage the template framework apps",
|
|
512
|
+
"type": "boolean"
|
|
513
|
+
},
|
|
514
|
+
"MaximumPermissionsAppFrameworkManageTemplate": {
|
|
515
|
+
"field_label": "Access to manage the template framework templates",
|
|
516
|
+
"type": "boolean"
|
|
517
|
+
},
|
|
518
|
+
"MaximumPermissionsAppFrameworkViewApp": {
|
|
519
|
+
"field_label": "Access to view templated apps and assets",
|
|
520
|
+
"type": "boolean"
|
|
521
|
+
},
|
|
522
|
+
"MaximumPermissionsApplicantCommunityPages": {
|
|
523
|
+
"field_label": "Applicant Community Pages",
|
|
524
|
+
"type": "boolean"
|
|
525
|
+
},
|
|
526
|
+
"MaximumPermissionsAppointmentBookingUserAccess": {
|
|
527
|
+
"field_label": "Enables the Appointment Booking feature",
|
|
528
|
+
"type": "boolean"
|
|
529
|
+
},
|
|
530
|
+
"MaximumPermissionsApprovalAdmin": {
|
|
531
|
+
"field_label": "Approval Admin",
|
|
532
|
+
"type": "boolean"
|
|
533
|
+
},
|
|
534
|
+
"MaximumPermissionsApprovalDesigner": {
|
|
535
|
+
"field_label": "Approval Designer",
|
|
536
|
+
"type": "boolean"
|
|
537
|
+
},
|
|
538
|
+
"MaximumPermissionsArchiveArticles": {
|
|
539
|
+
"field_label": "Archive Articles",
|
|
540
|
+
"type": "boolean"
|
|
541
|
+
},
|
|
542
|
+
"MaximumPermissionsAssessmentPlatformUser": {
|
|
543
|
+
"field_label": "Discovery Framework Platform User",
|
|
544
|
+
"type": "boolean"
|
|
545
|
+
},
|
|
546
|
+
"MaximumPermissionsAssignConsumptionTags": {
|
|
547
|
+
"field_label": "Assign Consumption Tags",
|
|
548
|
+
"type": "boolean"
|
|
549
|
+
},
|
|
550
|
+
"MaximumPermissionsAssignPermissionSets": {
|
|
551
|
+
"field_label": "Assign Permission Sets",
|
|
552
|
+
"type": "boolean"
|
|
553
|
+
},
|
|
554
|
+
"MaximumPermissionsAssignTopics": {
|
|
555
|
+
"field_label": "Assign Topics",
|
|
556
|
+
"type": "boolean"
|
|
557
|
+
},
|
|
558
|
+
"MaximumPermissionsAssignUserToSkill": {
|
|
559
|
+
"field_label": "Assign Chat Skills to Users",
|
|
560
|
+
"type": "boolean"
|
|
561
|
+
},
|
|
562
|
+
"MaximumPermissionsAssocChgRqstAndProb": {
|
|
563
|
+
"field_label": "Associate Change Requests and Problems",
|
|
564
|
+
"type": "boolean"
|
|
565
|
+
},
|
|
566
|
+
"MaximumPermissionsAssocIncAndChgRqst": {
|
|
567
|
+
"field_label": "Associate Incidents and Change Requests",
|
|
568
|
+
"type": "boolean"
|
|
569
|
+
},
|
|
570
|
+
"MaximumPermissionsAssocIncAndProb": {
|
|
571
|
+
"field_label": "Associate Incidents and Problems",
|
|
572
|
+
"type": "boolean"
|
|
573
|
+
},
|
|
574
|
+
"MaximumPermissionsAssocRelAndChgRqst": {
|
|
575
|
+
"field_label": "Associate Releases and Change Requests",
|
|
576
|
+
"type": "boolean"
|
|
577
|
+
},
|
|
578
|
+
"MaximumPermissionsAssocRelAndInc": {
|
|
579
|
+
"field_label": "Associate Releases and Incidents",
|
|
580
|
+
"type": "boolean"
|
|
581
|
+
},
|
|
582
|
+
"MaximumPermissionsAssocRelAndProb": {
|
|
583
|
+
"field_label": "Associate Releases and Problems",
|
|
584
|
+
"type": "boolean"
|
|
585
|
+
},
|
|
586
|
+
"MaximumPermissionsAssociationEngineUserAccess": {
|
|
587
|
+
"field_label": "User license to access Record Association Builder in Financial Services Cloud.",
|
|
588
|
+
"type": "boolean"
|
|
589
|
+
},
|
|
590
|
+
"MaximumPermissionsAttributionModelUser": {
|
|
591
|
+
"field_label": "Attribution Model User",
|
|
592
|
+
"type": "boolean"
|
|
593
|
+
},
|
|
594
|
+
"MaximumPermissionsAuthorApex": {
|
|
595
|
+
"field_label": "Author Apex",
|
|
596
|
+
"type": "boolean"
|
|
597
|
+
},
|
|
598
|
+
"MaximumPermissionsAuthorizePayments": {
|
|
599
|
+
"field_label": "Authorize Payments",
|
|
600
|
+
"type": "boolean"
|
|
601
|
+
},
|
|
602
|
+
"MaximumPermissionsAutomatedActionsUser": {
|
|
603
|
+
"field_label": "Automated Actions User",
|
|
604
|
+
"type": "boolean"
|
|
605
|
+
},
|
|
606
|
+
"MaximumPermissionsAutomaticActivityCapture": {
|
|
607
|
+
"field_label": "Use Einstein Activity Capture",
|
|
608
|
+
"type": "boolean"
|
|
609
|
+
},
|
|
610
|
+
"MaximumPermissionsAutonomousAnalyticsPrivacy": {
|
|
611
|
+
"field_label": "Manage Autonomous Insights Data Privacy",
|
|
612
|
+
"type": "boolean"
|
|
613
|
+
},
|
|
614
|
+
"MaximumPermissionsB2BCommerceIntegrator": {
|
|
615
|
+
"field_label": "Commerce Integrator User",
|
|
616
|
+
"type": "boolean"
|
|
617
|
+
},
|
|
618
|
+
"MaximumPermissionsB2BCommerceSuperUser": {
|
|
619
|
+
"field_label": "B2B Commerce Super User",
|
|
620
|
+
"type": "boolean"
|
|
621
|
+
},
|
|
622
|
+
"MaximumPermissionsB2BCommerceUser": {
|
|
623
|
+
"field_label": "Commerce User",
|
|
624
|
+
"type": "boolean"
|
|
625
|
+
},
|
|
626
|
+
"MaximumPermissionsB2BMarketingAnalyticsUser": {
|
|
627
|
+
"field_label": "Create B2B Marketing Analytics Apps",
|
|
628
|
+
"type": "boolean"
|
|
629
|
+
},
|
|
630
|
+
"MaximumPermissionsB2CCommerceUser": {
|
|
631
|
+
"field_label": "B2C Commerce User",
|
|
632
|
+
"type": "boolean"
|
|
633
|
+
},
|
|
634
|
+
"MaximumPermissionsBACommunityAccess": {
|
|
635
|
+
"field_label": "Enable community users to access Benefit Assistance objects and features.",
|
|
636
|
+
"type": "boolean"
|
|
637
|
+
},
|
|
638
|
+
"MaximumPermissionsBREAlertsUserAccess": {
|
|
639
|
+
"field_label": "Access Record Alerts for Business Rules Engine",
|
|
640
|
+
"type": "boolean"
|
|
641
|
+
},
|
|
642
|
+
"MaximumPermissionsBatchManagementUser": {
|
|
643
|
+
"field_label": "Batch Management User",
|
|
644
|
+
"type": "boolean"
|
|
645
|
+
},
|
|
646
|
+
"MaximumPermissionsBenefitManagementAccess": {
|
|
647
|
+
"field_label": "Allows internal org users to access Programs, Benefits, and Goal objects and features.",
|
|
648
|
+
"type": "boolean"
|
|
649
|
+
},
|
|
650
|
+
"MaximumPermissionsBillingInvoiceSuperUser": {
|
|
651
|
+
"field_label": "Delete Invoice and Invoice Lines",
|
|
652
|
+
"type": "boolean"
|
|
653
|
+
},
|
|
654
|
+
"MaximumPermissionsBillingParameterUpdateAccess": {
|
|
655
|
+
"field_label": "Edit Billing Fields",
|
|
656
|
+
"type": "boolean"
|
|
657
|
+
},
|
|
658
|
+
"MaximumPermissionsBillingPaymentApiUser": {
|
|
659
|
+
"field_label": "Apply and Unapply Payments Using APIs",
|
|
660
|
+
"type": "boolean"
|
|
661
|
+
},
|
|
662
|
+
"MaximumPermissionsBillingRefundApiUser": {
|
|
663
|
+
"field_label": "Apply and Unapply Refunds Using APIs",
|
|
664
|
+
"type": "boolean"
|
|
665
|
+
},
|
|
666
|
+
"MaximumPermissionsBillingSetupAccess": {
|
|
667
|
+
"field_label": "Configure Billing Settings",
|
|
668
|
+
"type": "boolean"
|
|
669
|
+
},
|
|
670
|
+
"MaximumPermissionsBillingTransactionToBSApiUser": {
|
|
671
|
+
"field_label": "Access Billing Transaction to Billing Schedule API",
|
|
672
|
+
"type": "boolean"
|
|
673
|
+
},
|
|
674
|
+
"MaximumPermissionsBotManageBots": {
|
|
675
|
+
"field_label": "Manage Bots",
|
|
676
|
+
"type": "boolean"
|
|
677
|
+
},
|
|
678
|
+
"MaximumPermissionsBotManageBotsTrainingData": {
|
|
679
|
+
"field_label": "Manage Bots Training Data",
|
|
680
|
+
"type": "boolean"
|
|
681
|
+
},
|
|
682
|
+
"MaximumPermissionsBranchManagementUserAccess": {
|
|
683
|
+
"field_label": "User license to access Branch Management in Financial Services Cloud.",
|
|
684
|
+
"type": "boolean"
|
|
685
|
+
},
|
|
686
|
+
"MaximumPermissionsBroadcaster": {
|
|
687
|
+
"field_label": "Send One-to-Many Messages",
|
|
688
|
+
"type": "boolean"
|
|
689
|
+
},
|
|
690
|
+
"MaximumPermissionsBulkApiHardDelete": {
|
|
691
|
+
"field_label": "Bulk API Hard Delete",
|
|
692
|
+
"type": "boolean"
|
|
693
|
+
},
|
|
694
|
+
"MaximumPermissionsBulkMacrosAllowed": {
|
|
695
|
+
"field_label": "Run Macros on Multiple Records",
|
|
696
|
+
"type": "boolean"
|
|
697
|
+
},
|
|
698
|
+
"MaximumPermissionsBypassMFAForUiLogins": {
|
|
699
|
+
"field_label": "Waive Multi-Factor Authentication for Exempt Users",
|
|
700
|
+
"type": "boolean"
|
|
701
|
+
},
|
|
702
|
+
"MaximumPermissionsCCMCommunityAccess": {
|
|
703
|
+
"field_label": "Allows community users to access Composable Case Management objects and features.",
|
|
704
|
+
"type": "boolean"
|
|
705
|
+
},
|
|
706
|
+
"MaximumPermissionsCCUserHasBillingAccount": {
|
|
707
|
+
"field_label": "Manage Energy & Utilities Billing Accounts for Experience Cloud",
|
|
708
|
+
"type": "boolean"
|
|
709
|
+
},
|
|
710
|
+
"MaximumPermissionsCCUserHasEAndUProgramAccess": {
|
|
711
|
+
"field_label": "EU Experience Cloud User Program Access",
|
|
712
|
+
"type": "boolean"
|
|
713
|
+
},
|
|
714
|
+
"MaximumPermissionsCCUserHasEUCore": {
|
|
715
|
+
"field_label": "Manage Energy & Utilities Objects for Experience Cloud",
|
|
716
|
+
"type": "boolean"
|
|
717
|
+
},
|
|
718
|
+
"MaximumPermissionsCIPartnerIntegrationUser": {
|
|
719
|
+
"field_label": "Conversation Insights Partner Integration User",
|
|
720
|
+
"type": "boolean"
|
|
721
|
+
},
|
|
722
|
+
"MaximumPermissionsCMSECEAuthoringAccess": {
|
|
723
|
+
"field_label": "Migrate Enablement Content",
|
|
724
|
+
"type": "boolean"
|
|
725
|
+
},
|
|
726
|
+
"MaximumPermissionsCallCoachingUser": {
|
|
727
|
+
"field_label": "Use Conversation Insights for Sales",
|
|
728
|
+
"type": "boolean"
|
|
729
|
+
},
|
|
730
|
+
"MaximumPermissionsCallExplorer": {
|
|
731
|
+
"field_label": "Einstein Question and Answer for ECI Calls",
|
|
732
|
+
"type": "boolean"
|
|
733
|
+
},
|
|
734
|
+
"MaximumPermissionsCalmSobjectAccessUser": {
|
|
735
|
+
"field_label": "Access Lifecycle-Managed Assets",
|
|
736
|
+
"type": "boolean"
|
|
737
|
+
},
|
|
738
|
+
"MaximumPermissionsCampaignInfluence2": {
|
|
739
|
+
"field_label": "Campaign Influence",
|
|
740
|
+
"type": "boolean"
|
|
741
|
+
},
|
|
742
|
+
"MaximumPermissionsCanAccessCE": {
|
|
743
|
+
"field_label": "Access Conversation Entries",
|
|
744
|
+
"type": "boolean"
|
|
745
|
+
},
|
|
746
|
+
"MaximumPermissionsCanApproveFeedPost": {
|
|
747
|
+
"field_label": "Can Approve Feed Post and Comment",
|
|
748
|
+
"type": "boolean"
|
|
749
|
+
},
|
|
750
|
+
"MaximumPermissionsCanApproveUninstalledApps": {
|
|
751
|
+
"field_label": "Approve Uninstalled Connected Apps",
|
|
752
|
+
"type": "boolean"
|
|
753
|
+
},
|
|
754
|
+
"MaximumPermissionsCanDoActAsUser": {
|
|
755
|
+
"field_label": "Act As User",
|
|
756
|
+
"type": "boolean"
|
|
757
|
+
},
|
|
758
|
+
"MaximumPermissionsCanEditDataPrepRecipe": {
|
|
759
|
+
"field_label": "Edit Dataset Recipes",
|
|
760
|
+
"type": "boolean"
|
|
761
|
+
},
|
|
762
|
+
"MaximumPermissionsCanEditPrompts": {
|
|
763
|
+
"field_label": "Design and Deliver In-App Guidance",
|
|
764
|
+
"type": "boolean"
|
|
765
|
+
},
|
|
766
|
+
"MaximumPermissionsCanExitFlowViaAPI": {
|
|
767
|
+
"field_label": "Exit Flow Via API",
|
|
768
|
+
"type": "boolean"
|
|
769
|
+
},
|
|
770
|
+
"MaximumPermissionsCanInitiateMessagingSessions": {
|
|
771
|
+
"field_label": "Initiate Messaging Sessions",
|
|
772
|
+
"type": "boolean"
|
|
773
|
+
},
|
|
774
|
+
"MaximumPermissionsCanInsertFeedSystemFields": {
|
|
775
|
+
"field_label": "Insert System Field Values for Chatter Feeds",
|
|
776
|
+
"type": "boolean"
|
|
777
|
+
},
|
|
778
|
+
"MaximumPermissionsCanManageMaps": {
|
|
779
|
+
"field_label": "Manage CRM Analytics Custom Maps",
|
|
780
|
+
"type": "boolean"
|
|
781
|
+
},
|
|
782
|
+
"MaximumPermissionsCanMarketingUserDebugFlow": {
|
|
783
|
+
"field_label": "Can Marketing User Debug Marketing Flows",
|
|
784
|
+
"type": "boolean"
|
|
785
|
+
},
|
|
786
|
+
"MaximumPermissionsCanRunAnalysis": {
|
|
787
|
+
"field_label": "Can Run Einstein Discovery for Reports",
|
|
788
|
+
"type": "boolean"
|
|
789
|
+
},
|
|
790
|
+
"MaximumPermissionsCanSendInitialSMSToIndividual": {
|
|
791
|
+
"field_label": "Send Initial SMS Message to Individual",
|
|
792
|
+
"type": "boolean"
|
|
793
|
+
},
|
|
794
|
+
"MaximumPermissionsCanToggleCallRecordings": {
|
|
795
|
+
"field_label": "Control Call Recording",
|
|
796
|
+
"type": "boolean"
|
|
797
|
+
},
|
|
798
|
+
"MaximumPermissionsCanTranslateScrt2Conversation": {
|
|
799
|
+
"field_label": "Translate Enhanced Conversations",
|
|
800
|
+
"type": "boolean"
|
|
801
|
+
},
|
|
802
|
+
"MaximumPermissionsCanUpdateEmailMessage": {
|
|
803
|
+
"field_label": "Update Email Messages",
|
|
804
|
+
"type": "boolean"
|
|
805
|
+
},
|
|
806
|
+
"MaximumPermissionsCanUseNewDashboardBuilder": {
|
|
807
|
+
"field_label": "Drag-and-Drop Dashboard Builder",
|
|
808
|
+
"type": "boolean"
|
|
809
|
+
},
|
|
810
|
+
"MaximumPermissionsCanVerifyComment": {
|
|
811
|
+
"field_label": "Verify Answers to Chatter Questions",
|
|
812
|
+
"type": "boolean"
|
|
813
|
+
},
|
|
814
|
+
"MaximumPermissionsCanViewDataPrepRecipe": {
|
|
815
|
+
"field_label": "Recipes View Only",
|
|
816
|
+
"type": "boolean"
|
|
817
|
+
},
|
|
818
|
+
"MaximumPermissionsCanWriteWithAiScrt2Conversation": {
|
|
819
|
+
"field_label": "Write with AI",
|
|
820
|
+
"type": "boolean"
|
|
821
|
+
},
|
|
822
|
+
"MaximumPermissionsCancelAssets": {
|
|
823
|
+
"field_label": "Cancel Assets",
|
|
824
|
+
"type": "boolean"
|
|
825
|
+
},
|
|
826
|
+
"MaximumPermissionsCaptureAndReversePayments": {
|
|
827
|
+
"field_label": "Capture and Reverse Payments",
|
|
828
|
+
"type": "boolean"
|
|
829
|
+
},
|
|
830
|
+
"MaximumPermissionsCareManagementUserAccess": {
|
|
831
|
+
"field_label": "Enable the Integrated Care Management User Access in a Salesforce org.",
|
|
832
|
+
"type": "boolean"
|
|
833
|
+
},
|
|
834
|
+
"MaximumPermissionsCarePlansAccess": {
|
|
835
|
+
"field_label": "Allows internal org users to access Care Plans objects and features.",
|
|
836
|
+
"type": "boolean"
|
|
837
|
+
},
|
|
838
|
+
"MaximumPermissionsCaseReferralAccess": {
|
|
839
|
+
"field_label": "Allows internal org users to access referral feature.",
|
|
840
|
+
"type": "boolean"
|
|
841
|
+
},
|
|
842
|
+
"MaximumPermissionsCdcReportingCreateReports": {
|
|
843
|
+
"field_label": "Allow access to creating and editing reports in Data Cloud Reporting",
|
|
844
|
+
"type": "boolean"
|
|
845
|
+
},
|
|
846
|
+
"MaximumPermissionsCdcReportingManageFolders": {
|
|
847
|
+
"field_label": "Allow access to managing folders in Data Cloud Reporting",
|
|
848
|
+
"type": "boolean"
|
|
849
|
+
},
|
|
850
|
+
"MaximumPermissionsCdcReportingViewReports": {
|
|
851
|
+
"field_label": "Allow access to viewing reports in Data Cloud Reporting",
|
|
852
|
+
"type": "boolean"
|
|
853
|
+
},
|
|
854
|
+
"MaximumPermissionsCdpConnectionManagementUser": {
|
|
855
|
+
"field_label": "Manage Data Cloud connections",
|
|
856
|
+
"type": "boolean"
|
|
857
|
+
},
|
|
858
|
+
"MaximumPermissionsChainOfCustodyUser": {
|
|
859
|
+
"field_label": "Manage Chain Of Custody Features",
|
|
860
|
+
"type": "boolean"
|
|
861
|
+
},
|
|
862
|
+
"MaximumPermissionsChangeDashboardColors": {
|
|
863
|
+
"field_label": "Change Dashboard Colors",
|
|
864
|
+
"type": "boolean"
|
|
865
|
+
},
|
|
866
|
+
"MaximumPermissionsChangeTargetAssignee": {
|
|
867
|
+
"field_label": "Change Cadence Target Assignees",
|
|
868
|
+
"type": "boolean"
|
|
869
|
+
},
|
|
870
|
+
"MaximumPermissionsChannelPartnerInventoryReadOnlyUser": {
|
|
871
|
+
"field_label": "View Channel Partner Inventory",
|
|
872
|
+
"type": "boolean"
|
|
873
|
+
},
|
|
874
|
+
"MaximumPermissionsChatterComposeUiCodesnippet": {
|
|
875
|
+
"field_label": "Allow Inclusion of Code Snippets from UI",
|
|
876
|
+
"type": "boolean"
|
|
877
|
+
},
|
|
878
|
+
"MaximumPermissionsChatterEditOwnPost": {
|
|
879
|
+
"field_label": "Edit My Own Posts",
|
|
880
|
+
"type": "boolean"
|
|
881
|
+
},
|
|
882
|
+
"MaximumPermissionsChatterEditOwnRecordPost": {
|
|
883
|
+
"field_label": "Edit Posts on Records I Own",
|
|
884
|
+
"type": "boolean"
|
|
885
|
+
},
|
|
886
|
+
"MaximumPermissionsChatterFileLink": {
|
|
887
|
+
"field_label": "Create Public Links",
|
|
888
|
+
"type": "boolean"
|
|
889
|
+
},
|
|
890
|
+
"MaximumPermissionsChatterInternalUser": {
|
|
891
|
+
"field_label": "Chatter Internal User",
|
|
892
|
+
"type": "boolean"
|
|
893
|
+
},
|
|
894
|
+
"MaximumPermissionsChatterInviteExternalUsers": {
|
|
895
|
+
"field_label": "Invite Customers To Chatter",
|
|
896
|
+
"type": "boolean"
|
|
897
|
+
},
|
|
898
|
+
"MaximumPermissionsChatterOwnGroups": {
|
|
899
|
+
"field_label": "Create and Own New Chatter Groups",
|
|
900
|
+
"type": "boolean"
|
|
901
|
+
},
|
|
902
|
+
"MaximumPermissionsCitrixVDIPlatform": {
|
|
903
|
+
"field_label": "Access Virtual Desktop Infrastructure for Voice Calls through Citrix",
|
|
904
|
+
"type": "boolean"
|
|
905
|
+
},
|
|
906
|
+
"MaximumPermissionsClaimUnclaimNumber": {
|
|
907
|
+
"field_label": "Manage Numbers",
|
|
908
|
+
"type": "boolean"
|
|
909
|
+
},
|
|
910
|
+
"MaximumPermissionsClauseDEUser": {
|
|
911
|
+
"field_label": "Allows users to use clauses in Digital Experience sites",
|
|
912
|
+
"type": "boolean"
|
|
913
|
+
},
|
|
914
|
+
"MaximumPermissionsClauseDesigner": {
|
|
915
|
+
"field_label": "Allows clause designers to create and manage clauses",
|
|
916
|
+
"type": "boolean"
|
|
917
|
+
},
|
|
918
|
+
"MaximumPermissionsClauseUser": {
|
|
919
|
+
"field_label": "Allows users to use clauses within documents",
|
|
920
|
+
"type": "boolean"
|
|
921
|
+
},
|
|
922
|
+
"MaximumPermissionsClientSecretRotation": {
|
|
923
|
+
"field_label": "Allow consumer key and secret rotation",
|
|
924
|
+
"type": "boolean"
|
|
925
|
+
},
|
|
926
|
+
"MaximumPermissionsCloseConversations": {
|
|
927
|
+
"field_label": "Close Conversation Threads",
|
|
928
|
+
"type": "boolean"
|
|
929
|
+
},
|
|
930
|
+
"MaximumPermissionsCodeBuilderUser": {
|
|
931
|
+
"field_label": "Code Builder User",
|
|
932
|
+
"type": "boolean"
|
|
933
|
+
},
|
|
934
|
+
"MaximumPermissionsCollectionsAndRecoveryAdmin": {
|
|
935
|
+
"field_label": "Create promise to pay records, view collection plan details, and update the status of collections.",
|
|
936
|
+
"type": "boolean"
|
|
937
|
+
},
|
|
938
|
+
"MaximumPermissionsCollectionsAndRecoverySpecialist": {
|
|
939
|
+
"field_label": "Set up and manage collections.",
|
|
940
|
+
"type": "boolean"
|
|
941
|
+
},
|
|
942
|
+
"MaximumPermissionsCombAuthAndCapPayments": {
|
|
943
|
+
"field_label": "Allow Sale Payments",
|
|
944
|
+
"type": "boolean"
|
|
945
|
+
},
|
|
946
|
+
"MaximumPermissionsCommerceEntitlementIntegrator": {
|
|
947
|
+
"field_label": "Commerce Buyer and Entitlements Integrator",
|
|
948
|
+
"type": "boolean"
|
|
949
|
+
},
|
|
950
|
+
"MaximumPermissionsCommerceShipmentIntegrator": {
|
|
951
|
+
"field_label": "Commerce Shipment User",
|
|
952
|
+
"type": "boolean"
|
|
953
|
+
},
|
|
954
|
+
"MaximumPermissionsCommerceTaxApiUser": {
|
|
955
|
+
"field_label": "Tax API User",
|
|
956
|
+
"type": "boolean"
|
|
957
|
+
},
|
|
958
|
+
"MaximumPermissionsComplaintsManagementAccess": {
|
|
959
|
+
"field_label": "Provides access to Complaints Management features and objects.",
|
|
960
|
+
"type": "boolean"
|
|
961
|
+
},
|
|
962
|
+
"MaximumPermissionsConfigCompliantDataSharing": {
|
|
963
|
+
"field_label": "Configure Compliant Data Sharing",
|
|
964
|
+
"type": "boolean"
|
|
965
|
+
},
|
|
966
|
+
"MaximumPermissionsConfigCustomRecs": {
|
|
967
|
+
"field_label": "Configure Custom Recommendations",
|
|
968
|
+
"type": "boolean"
|
|
969
|
+
},
|
|
970
|
+
"MaximumPermissionsConfigureCCTarget": {
|
|
971
|
+
"field_label": "Allow user to configure communication capping activation target.",
|
|
972
|
+
"type": "boolean"
|
|
973
|
+
},
|
|
974
|
+
"MaximumPermissionsConfigureCommunicationCapping": {
|
|
975
|
+
"field_label": "Allow user to configure communication capping.",
|
|
976
|
+
"type": "boolean"
|
|
977
|
+
},
|
|
978
|
+
"MaximumPermissionsConfigureDataspaceScope": {
|
|
979
|
+
"field_label": "Configure Dataspace Scope",
|
|
980
|
+
"type": "boolean"
|
|
981
|
+
},
|
|
982
|
+
"MaximumPermissionsConfigureLiveMessage": {
|
|
983
|
+
"field_label": "Configure Messaging",
|
|
984
|
+
"type": "boolean"
|
|
985
|
+
},
|
|
986
|
+
"MaximumPermissionsConfigureMerchantAccounts": {
|
|
987
|
+
"field_label": "Set up Payments Merchant Accounts",
|
|
988
|
+
"type": "boolean"
|
|
989
|
+
},
|
|
990
|
+
"MaximumPermissionsConfigurePayments": {
|
|
991
|
+
"field_label": "Configure Payments",
|
|
992
|
+
"type": "boolean"
|
|
993
|
+
},
|
|
994
|
+
"MaximumPermissionsConnectOrgToEnvironmentHub": {
|
|
995
|
+
"field_label": "Connect Organization to Environment Hub",
|
|
996
|
+
"type": "boolean"
|
|
997
|
+
},
|
|
998
|
+
"MaximumPermissionsConsentApiUpdate": {
|
|
999
|
+
"field_label": "Update Consent Preferences Using REST API",
|
|
1000
|
+
"type": "boolean"
|
|
1001
|
+
},
|
|
1002
|
+
"MaximumPermissionsContactInspectorUser": {
|
|
1003
|
+
"field_label": "Access Contact Intelligence View in Partner Sites",
|
|
1004
|
+
"type": "boolean"
|
|
1005
|
+
},
|
|
1006
|
+
"MaximumPermissionsContentAdministrator": {
|
|
1007
|
+
"field_label": "Manage Salesforce CRM Content",
|
|
1008
|
+
"type": "boolean"
|
|
1009
|
+
},
|
|
1010
|
+
"MaximumPermissionsContentHubUser": {
|
|
1011
|
+
"field_label": "Files Connect Cloud",
|
|
1012
|
+
"type": "boolean"
|
|
1013
|
+
},
|
|
1014
|
+
"MaximumPermissionsContentWorkspaces": {
|
|
1015
|
+
"field_label": "Access Libraries",
|
|
1016
|
+
"type": "boolean"
|
|
1017
|
+
},
|
|
1018
|
+
"MaximumPermissionsContextServiceAdmin": {
|
|
1019
|
+
"field_label": "Context Service Admin user.",
|
|
1020
|
+
"type": "boolean"
|
|
1021
|
+
},
|
|
1022
|
+
"MaximumPermissionsContextServiceEmbedAdmin": {
|
|
1023
|
+
"field_label": "Context Service Embed Admin user.",
|
|
1024
|
+
"type": "boolean"
|
|
1025
|
+
},
|
|
1026
|
+
"MaximumPermissionsContextServiceRuntime": {
|
|
1027
|
+
"field_label": "Context Service Run time user.",
|
|
1028
|
+
"type": "boolean"
|
|
1029
|
+
},
|
|
1030
|
+
"MaximumPermissionsContractorHasEUProgramAccess": {
|
|
1031
|
+
"field_label": "Contractor Program Access",
|
|
1032
|
+
"type": "boolean"
|
|
1033
|
+
},
|
|
1034
|
+
"MaximumPermissionsContractorHasWorkReportAccess": {
|
|
1035
|
+
"field_label": "Manage Contractor Work Report",
|
|
1036
|
+
"type": "boolean"
|
|
1037
|
+
},
|
|
1038
|
+
"MaximumPermissionsConversationCatchupUser": {
|
|
1039
|
+
"field_label": "View Conversation Catch-Up",
|
|
1040
|
+
"type": "boolean"
|
|
1041
|
+
},
|
|
1042
|
+
"MaximumPermissionsConvertLeads": {
|
|
1043
|
+
"field_label": "Convert Leads",
|
|
1044
|
+
"type": "boolean"
|
|
1045
|
+
},
|
|
1046
|
+
"MaximumPermissionsCoordinateClinicalTrials": {
|
|
1047
|
+
"field_label": "Coordinate clinical trial tasks like candidate outreach programs.",
|
|
1048
|
+
"type": "boolean"
|
|
1049
|
+
},
|
|
1050
|
+
"MaximumPermissionsCoordinateClnclTrialExprcUsr": {
|
|
1051
|
+
"field_label": "Coordinate clinical trial tasks like candidate outreach programs as an Experience Cloud user.",
|
|
1052
|
+
"type": "boolean"
|
|
1053
|
+
},
|
|
1054
|
+
"MaximumPermissionsCoreCPQUser": {
|
|
1055
|
+
"field_label": "Manage Revenue Cloud",
|
|
1056
|
+
"type": "boolean"
|
|
1057
|
+
},
|
|
1058
|
+
"MaximumPermissionsCorePricingAdmin": {
|
|
1059
|
+
"field_label": "Salesforce Pricing: Admin user",
|
|
1060
|
+
"type": "boolean"
|
|
1061
|
+
},
|
|
1062
|
+
"MaximumPermissionsCorePricingDesignTimeUser": {
|
|
1063
|
+
"field_label": "Salesforce Pricing: Design time user",
|
|
1064
|
+
"type": "boolean"
|
|
1065
|
+
},
|
|
1066
|
+
"MaximumPermissionsCorePricingManager": {
|
|
1067
|
+
"field_label": "Salesforce Pricing: Manager",
|
|
1068
|
+
"type": "boolean"
|
|
1069
|
+
},
|
|
1070
|
+
"MaximumPermissionsCorePricingRunTimeUser": {
|
|
1071
|
+
"field_label": "Salesforce Pricing: Run time user",
|
|
1072
|
+
"type": "boolean"
|
|
1073
|
+
},
|
|
1074
|
+
"MaximumPermissionsCosellAuthSetupUser": {
|
|
1075
|
+
"field_label": "Establish an Approved PRM External Integration",
|
|
1076
|
+
"type": "boolean"
|
|
1077
|
+
},
|
|
1078
|
+
"MaximumPermissionsCosellExportUser": {
|
|
1079
|
+
"field_label": "Export Vendor Records to an Authorized Partner Org",
|
|
1080
|
+
"type": "boolean"
|
|
1081
|
+
},
|
|
1082
|
+
"MaximumPermissionsCreateClosePlan": {
|
|
1083
|
+
"field_label": "Allow access to Einstein Close Plan in Einstein Copilot",
|
|
1084
|
+
"type": "boolean"
|
|
1085
|
+
},
|
|
1086
|
+
"MaximumPermissionsCreateCustomizeDashboards": {
|
|
1087
|
+
"field_label": "Create and Customize Dashboards",
|
|
1088
|
+
"type": "boolean"
|
|
1089
|
+
},
|
|
1090
|
+
"MaximumPermissionsCreateCustomizeFilters": {
|
|
1091
|
+
"field_label": "Create and Customize List Views",
|
|
1092
|
+
"type": "boolean"
|
|
1093
|
+
},
|
|
1094
|
+
"MaximumPermissionsCreateCustomizeReports": {
|
|
1095
|
+
"field_label": "Create and Customize Reports",
|
|
1096
|
+
"type": "boolean"
|
|
1097
|
+
},
|
|
1098
|
+
"MaximumPermissionsCreateDPEDefinitionWithDerivedFields": {
|
|
1099
|
+
"field_label": "Create DPE Definition With Derived Fields",
|
|
1100
|
+
"type": "boolean"
|
|
1101
|
+
},
|
|
1102
|
+
"MaximumPermissionsCreateDashboardFolders": {
|
|
1103
|
+
"field_label": "Create Dashboard Folders",
|
|
1104
|
+
"type": "boolean"
|
|
1105
|
+
},
|
|
1106
|
+
"MaximumPermissionsCreateEditNonSetupFlow": {
|
|
1107
|
+
"field_label": "Create or Edit Flows",
|
|
1108
|
+
"type": "boolean"
|
|
1109
|
+
},
|
|
1110
|
+
"MaximumPermissionsCreateLtngTempFolder": {
|
|
1111
|
+
"field_label": "Create Folders for Lightning Email Templates",
|
|
1112
|
+
"type": "boolean"
|
|
1113
|
+
},
|
|
1114
|
+
"MaximumPermissionsCreateLtngTempInPub": {
|
|
1115
|
+
"field_label": "Manage Public Lightning Email Templates",
|
|
1116
|
+
"type": "boolean"
|
|
1117
|
+
},
|
|
1118
|
+
"MaximumPermissionsCreateModActTrigNonSetupFlow": {
|
|
1119
|
+
"field_label": "Create or Modify Activation-Triggered Flows",
|
|
1120
|
+
"type": "boolean"
|
|
1121
|
+
},
|
|
1122
|
+
"MaximumPermissionsCreateModCampaignMemberTrigNonSetupFlow": {
|
|
1123
|
+
"field_label": "Create or Modify Campaign Member-Triggered Flows",
|
|
1124
|
+
"type": "boolean"
|
|
1125
|
+
},
|
|
1126
|
+
"MaximumPermissionsCreateModCrmRecordQueryFlow": {
|
|
1127
|
+
"field_label": "Create or Modify CRM Record Query Flows",
|
|
1128
|
+
"type": "boolean"
|
|
1129
|
+
},
|
|
1130
|
+
"MaximumPermissionsCreateModDGTrigNonSetupFlow": {
|
|
1131
|
+
"field_label": "Create or Modify Flows with Data Graph Event Triggers",
|
|
1132
|
+
"type": "boolean"
|
|
1133
|
+
},
|
|
1134
|
+
"MaximumPermissionsCreateModIndRecNonSetupFlow": {
|
|
1135
|
+
"field_label": "Create or Modify Flows with Individual Related Record Event Triggers",
|
|
1136
|
+
"type": "boolean"
|
|
1137
|
+
},
|
|
1138
|
+
"MaximumPermissionsCreateModListTrigNonSetupFlow": {
|
|
1139
|
+
"field_label": "Create or Modify List Triggered Flows",
|
|
1140
|
+
"type": "boolean"
|
|
1141
|
+
},
|
|
1142
|
+
"MaximumPermissionsCreatePackaging": {
|
|
1143
|
+
"field_label": "Create AppExchange Packages",
|
|
1144
|
+
"type": "boolean"
|
|
1145
|
+
},
|
|
1146
|
+
"MaximumPermissionsCreateQuickCadence": {
|
|
1147
|
+
"field_label": "Create and Edit Quick Cadences",
|
|
1148
|
+
"type": "boolean"
|
|
1149
|
+
},
|
|
1150
|
+
"MaximumPermissionsCreateReductionOrder": {
|
|
1151
|
+
"field_label": "Create Reduction Orders",
|
|
1152
|
+
"type": "boolean"
|
|
1153
|
+
},
|
|
1154
|
+
"MaximumPermissionsCreateReportFolders": {
|
|
1155
|
+
"field_label": "Create Report Folders",
|
|
1156
|
+
"type": "boolean"
|
|
1157
|
+
},
|
|
1158
|
+
"MaximumPermissionsCreateReportInLightning": {
|
|
1159
|
+
"field_label": "Report Builder (Lightning Experience)",
|
|
1160
|
+
"type": "boolean"
|
|
1161
|
+
},
|
|
1162
|
+
"MaximumPermissionsCreateStandardCadence": {
|
|
1163
|
+
"field_label": "Create and Edit Standard Cadences",
|
|
1164
|
+
"type": "boolean"
|
|
1165
|
+
},
|
|
1166
|
+
"MaximumPermissionsCreateTopics": {
|
|
1167
|
+
"field_label": "Create Topics",
|
|
1168
|
+
"type": "boolean"
|
|
1169
|
+
},
|
|
1170
|
+
"MaximumPermissionsCreateUpdateSDDDataset": {
|
|
1171
|
+
"field_label": "Create and Update Einstein Discovery Datasets",
|
|
1172
|
+
"type": "boolean"
|
|
1173
|
+
},
|
|
1174
|
+
"MaximumPermissionsCreateUpdateSDDStory": {
|
|
1175
|
+
"field_label": "Create and Update Einstein Discovery Models",
|
|
1176
|
+
"type": "boolean"
|
|
1177
|
+
},
|
|
1178
|
+
"MaximumPermissionsCreateWorkBadgeDefinition": {
|
|
1179
|
+
"field_label": "Create custom Badge Definitions",
|
|
1180
|
+
"type": "boolean"
|
|
1181
|
+
},
|
|
1182
|
+
"MaximumPermissionsCreateWorkspaces": {
|
|
1183
|
+
"field_label": "Create Libraries",
|
|
1184
|
+
"type": "boolean"
|
|
1185
|
+
},
|
|
1186
|
+
"MaximumPermissionsCreditMemoAPIUser": {
|
|
1187
|
+
"field_label": "Credit Memo API User",
|
|
1188
|
+
"type": "boolean"
|
|
1189
|
+
},
|
|
1190
|
+
"MaximumPermissionsCustomAppsOnFSMobile": {
|
|
1191
|
+
"field_label": "Custom Applications for Field Service Mobile",
|
|
1192
|
+
"type": "boolean"
|
|
1193
|
+
},
|
|
1194
|
+
"MaximumPermissionsCustomMobileAppsAccess": {
|
|
1195
|
+
"field_label": "Access Custom Mobile Apps",
|
|
1196
|
+
"type": "boolean"
|
|
1197
|
+
},
|
|
1198
|
+
"MaximumPermissionsCustomSidebarOnAllPages": {
|
|
1199
|
+
"field_label": "Show Custom Sidebar On All Pages",
|
|
1200
|
+
"type": "boolean"
|
|
1201
|
+
},
|
|
1202
|
+
"MaximumPermissionsCustomizeApplication": {
|
|
1203
|
+
"field_label": "Customize Application",
|
|
1204
|
+
"type": "boolean"
|
|
1205
|
+
},
|
|
1206
|
+
"MaximumPermissionsDFODesignerUser": {
|
|
1207
|
+
"field_label": "Allows user to gain Fulfillment Designer level access to DRO",
|
|
1208
|
+
"type": "boolean"
|
|
1209
|
+
},
|
|
1210
|
+
"MaximumPermissionsDFOManagerOperatorUser": {
|
|
1211
|
+
"field_label": "Allows user to gain Fulfillment Manager or Fulfillment Operator level access to DRO",
|
|
1212
|
+
"type": "boolean"
|
|
1213
|
+
},
|
|
1214
|
+
"MaximumPermissionsDPEOnDemandAccess": {
|
|
1215
|
+
"field_label": "DPEOnDemandAccess",
|
|
1216
|
+
"type": "boolean"
|
|
1217
|
+
},
|
|
1218
|
+
"MaximumPermissionsDROOrchestrateTransactionUser": {
|
|
1219
|
+
"field_label": "Submit Transactions and Orchestrate User",
|
|
1220
|
+
"type": "boolean"
|
|
1221
|
+
},
|
|
1222
|
+
"MaximumPermissionsDROOrderSubmitInitiateUser": {
|
|
1223
|
+
"field_label": "Submit Transactions User",
|
|
1224
|
+
"type": "boolean"
|
|
1225
|
+
},
|
|
1226
|
+
"MaximumPermissionsDataCleanRoomQueryAccess": {
|
|
1227
|
+
"field_label": "DataCleanRoomQueryAccess",
|
|
1228
|
+
"type": "boolean"
|
|
1229
|
+
},
|
|
1230
|
+
"MaximumPermissionsDataCleanRoomReadAccess": {
|
|
1231
|
+
"field_label": "DataCleanRoomReadAccess",
|
|
1232
|
+
"type": "boolean"
|
|
1233
|
+
},
|
|
1234
|
+
"MaximumPermissionsDataCleanRoomSetupAccess": {
|
|
1235
|
+
"field_label": "DataCleanRoomSetupAccess",
|
|
1236
|
+
"type": "boolean"
|
|
1237
|
+
},
|
|
1238
|
+
"MaximumPermissionsDataCleanRoomWriteAccess": {
|
|
1239
|
+
"field_label": "DataCleanRoomWriteAccess",
|
|
1240
|
+
"type": "boolean"
|
|
1241
|
+
},
|
|
1242
|
+
"MaximumPermissionsDataExport": {
|
|
1243
|
+
"field_label": "Weekly Data Export",
|
|
1244
|
+
"type": "boolean"
|
|
1245
|
+
},
|
|
1246
|
+
"MaximumPermissionsDataPipelinesAppConsumer": {
|
|
1247
|
+
"field_label": "Permission to access Data Pipelines license",
|
|
1248
|
+
"type": "boolean"
|
|
1249
|
+
},
|
|
1250
|
+
"MaximumPermissionsDebitMemoAPIUser": {
|
|
1251
|
+
"field_label": "Manage Debit Memos",
|
|
1252
|
+
"type": "boolean"
|
|
1253
|
+
},
|
|
1254
|
+
"MaximumPermissionsDecimalQuantityDesigntime": {
|
|
1255
|
+
"field_label": "Decimal Quantity Design time Access",
|
|
1256
|
+
"type": "boolean"
|
|
1257
|
+
},
|
|
1258
|
+
"MaximumPermissionsDecimalQuantityRuntime": {
|
|
1259
|
+
"field_label": "Decimal Quantity Runtime Access",
|
|
1260
|
+
"type": "boolean"
|
|
1261
|
+
},
|
|
1262
|
+
"MaximumPermissionsDecisionTableExecUserAccess": {
|
|
1263
|
+
"field_label": "Run Decision Tables",
|
|
1264
|
+
"type": "boolean"
|
|
1265
|
+
},
|
|
1266
|
+
"MaximumPermissionsDelegatedContactCenterAdmin": {
|
|
1267
|
+
"field_label": "Salesforce Voice Delegated Contact Center Admin",
|
|
1268
|
+
"type": "boolean"
|
|
1269
|
+
},
|
|
1270
|
+
"MaximumPermissionsDelegatedPortalUserAdmin": {
|
|
1271
|
+
"field_label": "Delegated External User Administrator",
|
|
1272
|
+
"type": "boolean"
|
|
1273
|
+
},
|
|
1274
|
+
"MaximumPermissionsDelegatedTwoFactor": {
|
|
1275
|
+
"field_label": "Manage MFA in User Interface",
|
|
1276
|
+
"type": "boolean"
|
|
1277
|
+
},
|
|
1278
|
+
"MaximumPermissionsDeleteActivatedContract": {
|
|
1279
|
+
"field_label": "Delete Activated Contracts",
|
|
1280
|
+
"type": "boolean"
|
|
1281
|
+
},
|
|
1282
|
+
"MaximumPermissionsDeleteChangeRequest": {
|
|
1283
|
+
"field_label": "Delete Change Request",
|
|
1284
|
+
"type": "boolean"
|
|
1285
|
+
},
|
|
1286
|
+
"MaximumPermissionsDeleteCrMemoAndInvoice": {
|
|
1287
|
+
"field_label": "Delete Credit Memo and Invoice",
|
|
1288
|
+
"type": "boolean"
|
|
1289
|
+
},
|
|
1290
|
+
"MaximumPermissionsDeleteIncident": {
|
|
1291
|
+
"field_label": "Delete Incident",
|
|
1292
|
+
"type": "boolean"
|
|
1293
|
+
},
|
|
1294
|
+
"MaximumPermissionsDeleteNonSetupFlow": {
|
|
1295
|
+
"field_label": "Delete Flows",
|
|
1296
|
+
"type": "boolean"
|
|
1297
|
+
},
|
|
1298
|
+
"MaximumPermissionsDeleteProblem": {
|
|
1299
|
+
"field_label": "Delete Problem",
|
|
1300
|
+
"type": "boolean"
|
|
1301
|
+
},
|
|
1302
|
+
"MaximumPermissionsDeleteRevenueRecords": {
|
|
1303
|
+
"field_label": "Allow Revenue Records Deletion",
|
|
1304
|
+
"type": "boolean"
|
|
1305
|
+
},
|
|
1306
|
+
"MaximumPermissionsDeleteSalesforceFiles": {
|
|
1307
|
+
"field_label": "Delete Salesforce Files",
|
|
1308
|
+
"type": "boolean"
|
|
1309
|
+
},
|
|
1310
|
+
"MaximumPermissionsDeleteTopics": {
|
|
1311
|
+
"field_label": "Delete Topics",
|
|
1312
|
+
"type": "boolean"
|
|
1313
|
+
},
|
|
1314
|
+
"MaximumPermissionsDerivedPricing": {
|
|
1315
|
+
"field_label": "Provides create, read, and edit access to all derived pricing objects and features.",
|
|
1316
|
+
"type": "boolean"
|
|
1317
|
+
},
|
|
1318
|
+
"MaximumPermissionsDesignContextRule": {
|
|
1319
|
+
"field_label": "Manage Context Rules",
|
|
1320
|
+
"type": "boolean"
|
|
1321
|
+
},
|
|
1322
|
+
"MaximumPermissionsDfoAdminUser": {
|
|
1323
|
+
"field_label": "System Administrator access for DRO",
|
|
1324
|
+
"type": "boolean"
|
|
1325
|
+
},
|
|
1326
|
+
"MaximumPermissionsDigitalAgentUser": {
|
|
1327
|
+
"field_label": "Use Custom Agents",
|
|
1328
|
+
"type": "boolean"
|
|
1329
|
+
},
|
|
1330
|
+
"MaximumPermissionsDigitalLendingAdminUser": {
|
|
1331
|
+
"field_label": "Digital Lending Admin User",
|
|
1332
|
+
"type": "boolean"
|
|
1333
|
+
},
|
|
1334
|
+
"MaximumPermissionsDigitalLendingEditReadOnly": {
|
|
1335
|
+
"field_label": "Digital Lending Edit Read Only Party Related Records",
|
|
1336
|
+
"type": "boolean"
|
|
1337
|
+
},
|
|
1338
|
+
"MaximumPermissionsDigitalLendingIndiaAdminUser": {
|
|
1339
|
+
"field_label": "Digital Lending India Admin User",
|
|
1340
|
+
"type": "boolean"
|
|
1341
|
+
},
|
|
1342
|
+
"MaximumPermissionsDigitalLendingUser": {
|
|
1343
|
+
"field_label": "Digital Lending User",
|
|
1344
|
+
"type": "boolean"
|
|
1345
|
+
},
|
|
1346
|
+
"MaximumPermissionsDigitalLendingWorkbench": {
|
|
1347
|
+
"field_label": "Digital Lending Workbench",
|
|
1348
|
+
"type": "boolean"
|
|
1349
|
+
},
|
|
1350
|
+
"MaximumPermissionsDisbursementUserAccess": {
|
|
1351
|
+
"field_label": "Grant users access to Benefit Disbursement features.",
|
|
1352
|
+
"type": "boolean"
|
|
1353
|
+
},
|
|
1354
|
+
"MaximumPermissionsDistributeFromPersWksp": {
|
|
1355
|
+
"field_label": "Create Content Deliveries",
|
|
1356
|
+
"type": "boolean"
|
|
1357
|
+
},
|
|
1358
|
+
"MaximumPermissionsDocGenDesigner": {
|
|
1359
|
+
"field_label": "Enables Designers to create Document Templates.",
|
|
1360
|
+
"type": "boolean"
|
|
1361
|
+
},
|
|
1362
|
+
"MaximumPermissionsDocGenRuntimeCCUser": {
|
|
1363
|
+
"field_label": "Enables Customers and Partners to generate documents via communities.",
|
|
1364
|
+
"type": "boolean"
|
|
1365
|
+
},
|
|
1366
|
+
"MaximumPermissionsDocGenRuntimeUser": {
|
|
1367
|
+
"field_label": "Enables Business users to generate documents.",
|
|
1368
|
+
"type": "boolean"
|
|
1369
|
+
},
|
|
1370
|
+
"MaximumPermissionsDocumentAutomationUserAccess": {
|
|
1371
|
+
"field_label": "User license to access IntelligentDocumentAutomation in Financial Services Cloud.",
|
|
1372
|
+
"type": "boolean"
|
|
1373
|
+
},
|
|
1374
|
+
"MaximumPermissionsDocumentBuilder": {
|
|
1375
|
+
"field_label": "Document Builder",
|
|
1376
|
+
"type": "boolean"
|
|
1377
|
+
},
|
|
1378
|
+
"MaximumPermissionsDocumentChecklistUserAccess": {
|
|
1379
|
+
"field_label": "User license to access the Document Checklist features.",
|
|
1380
|
+
"type": "boolean"
|
|
1381
|
+
},
|
|
1382
|
+
"MaximumPermissionsDocumentWorkspaceCmtyAccess": {
|
|
1383
|
+
"field_label": "Permission to access Intelligent Document Workspace for community users",
|
|
1384
|
+
"type": "boolean"
|
|
1385
|
+
},
|
|
1386
|
+
"MaximumPermissionsDocumentWorkspaceUserAccess": {
|
|
1387
|
+
"field_label": "Permission to access Intelligent Document Workspace",
|
|
1388
|
+
"type": "boolean"
|
|
1389
|
+
},
|
|
1390
|
+
"MaximumPermissionsDownloadMaliciousFiles": {
|
|
1391
|
+
"field_label": "Download Malicious Files",
|
|
1392
|
+
"type": "boolean"
|
|
1393
|
+
},
|
|
1394
|
+
"MaximumPermissionsDownloadPackageVersionZips": {
|
|
1395
|
+
"field_label": "Download Package Version Zip Files",
|
|
1396
|
+
"type": "boolean"
|
|
1397
|
+
},
|
|
1398
|
+
"MaximumPermissionsDynamicCommonOrchestratorUser": {
|
|
1399
|
+
"field_label": "Dynamic Common Orchestrator User",
|
|
1400
|
+
"type": "boolean"
|
|
1401
|
+
},
|
|
1402
|
+
"MaximumPermissionsEGPTSalesSummariesUser": {
|
|
1403
|
+
"field_label": "Einstein Sales Summaries User",
|
|
1404
|
+
"type": "boolean"
|
|
1405
|
+
},
|
|
1406
|
+
"MaximumPermissionsEGPTServiceEmailUser": {
|
|
1407
|
+
"field_label": "Use Einstein Service Email Assistant",
|
|
1408
|
+
"type": "boolean"
|
|
1409
|
+
},
|
|
1410
|
+
"MaximumPermissionsEditASEFields": {
|
|
1411
|
+
"field_label": "Update One Sync Engine Data",
|
|
1412
|
+
"type": "boolean"
|
|
1413
|
+
},
|
|
1414
|
+
"MaximumPermissionsEditAccountScoreFields": {
|
|
1415
|
+
"field_label": "View Account Scores",
|
|
1416
|
+
"type": "boolean"
|
|
1417
|
+
},
|
|
1418
|
+
"MaximumPermissionsEditActivatedOrders": {
|
|
1419
|
+
"field_label": "Edit Activated Orders",
|
|
1420
|
+
"type": "boolean"
|
|
1421
|
+
},
|
|
1422
|
+
"MaximumPermissionsEditBillingInfo": {
|
|
1423
|
+
"field_label": "Manage Billing",
|
|
1424
|
+
"type": "boolean"
|
|
1425
|
+
},
|
|
1426
|
+
"MaximumPermissionsEditBrandTemplates": {
|
|
1427
|
+
"field_label": "Manage Letterheads",
|
|
1428
|
+
"type": "boolean"
|
|
1429
|
+
},
|
|
1430
|
+
"MaximumPermissionsEditCalculationStatusOnQuoteOrder": {
|
|
1431
|
+
"field_label": "Edit Calculation Status on Quote and Order",
|
|
1432
|
+
"type": "boolean"
|
|
1433
|
+
},
|
|
1434
|
+
"MaximumPermissionsEditCaseComments": {
|
|
1435
|
+
"field_label": "Edit Case Comments",
|
|
1436
|
+
"type": "boolean"
|
|
1437
|
+
},
|
|
1438
|
+
"MaximumPermissionsEditDeliveryInformation": {
|
|
1439
|
+
"field_label": "Edit Delivery Information",
|
|
1440
|
+
"type": "boolean"
|
|
1441
|
+
},
|
|
1442
|
+
"MaximumPermissionsEditEvent": {
|
|
1443
|
+
"field_label": "Edit Events",
|
|
1444
|
+
"type": "boolean"
|
|
1445
|
+
},
|
|
1446
|
+
"MaximumPermissionsEditHtmlTemplates": {
|
|
1447
|
+
"field_label": "Edit HTML Templates",
|
|
1448
|
+
"type": "boolean"
|
|
1449
|
+
},
|
|
1450
|
+
"MaximumPermissionsEditIQFields": {
|
|
1451
|
+
"field_label": "Update Activity Metrics Data",
|
|
1452
|
+
"type": "boolean"
|
|
1453
|
+
},
|
|
1454
|
+
"MaximumPermissionsEditKnowledge": {
|
|
1455
|
+
"field_label": "Manage Articles",
|
|
1456
|
+
"type": "boolean"
|
|
1457
|
+
},
|
|
1458
|
+
"MaximumPermissionsEditManagedOrderSummaries": {
|
|
1459
|
+
"field_label": "Edit Managed Order Summaries",
|
|
1460
|
+
"type": "boolean"
|
|
1461
|
+
},
|
|
1462
|
+
"MaximumPermissionsEditMyDashboards": {
|
|
1463
|
+
"field_label": "Edit My Dashboards",
|
|
1464
|
+
"type": "boolean"
|
|
1465
|
+
},
|
|
1466
|
+
"MaximumPermissionsEditMyReports": {
|
|
1467
|
+
"field_label": "Edit My Reports",
|
|
1468
|
+
"type": "boolean"
|
|
1469
|
+
},
|
|
1470
|
+
"MaximumPermissionsEditOppLineItemUnitPrice": {
|
|
1471
|
+
"field_label": "Edit Opportunity Product Sales Price",
|
|
1472
|
+
"type": "boolean"
|
|
1473
|
+
},
|
|
1474
|
+
"MaximumPermissionsEditOrderManagementBillingType": {
|
|
1475
|
+
"field_label": "Edit the OrderManagementBillingType field in the SalesChannel object.",
|
|
1476
|
+
"type": "boolean"
|
|
1477
|
+
},
|
|
1478
|
+
"MaximumPermissionsEditPublicDocuments": {
|
|
1479
|
+
"field_label": "Manage Public Documents",
|
|
1480
|
+
"type": "boolean"
|
|
1481
|
+
},
|
|
1482
|
+
"MaximumPermissionsEditPublicFilters": {
|
|
1483
|
+
"field_label": "Manage Public List Views",
|
|
1484
|
+
"type": "boolean"
|
|
1485
|
+
},
|
|
1486
|
+
"MaximumPermissionsEditPublicTemplates": {
|
|
1487
|
+
"field_label": "Manage Public Classic Email Templates",
|
|
1488
|
+
"type": "boolean"
|
|
1489
|
+
},
|
|
1490
|
+
"MaximumPermissionsEditReadonlyFields": {
|
|
1491
|
+
"field_label": "Edit Read Only Fields",
|
|
1492
|
+
"type": "boolean"
|
|
1493
|
+
},
|
|
1494
|
+
"MaximumPermissionsEditRepricing": {
|
|
1495
|
+
"field_label": "Edit Repricing Information",
|
|
1496
|
+
"type": "boolean"
|
|
1497
|
+
},
|
|
1498
|
+
"MaximumPermissionsEditTask": {
|
|
1499
|
+
"field_label": "Edit Tasks",
|
|
1500
|
+
"type": "boolean"
|
|
1501
|
+
},
|
|
1502
|
+
"MaximumPermissionsEditTopics": {
|
|
1503
|
+
"field_label": "Edit Topics",
|
|
1504
|
+
"type": "boolean"
|
|
1505
|
+
},
|
|
1506
|
+
"MaximumPermissionsEditTranslation": {
|
|
1507
|
+
"field_label": "Article Translation - Edit",
|
|
1508
|
+
"type": "boolean"
|
|
1509
|
+
},
|
|
1510
|
+
"MaximumPermissionsEditUnmanagedOrderSummaries": {
|
|
1511
|
+
"field_label": "Edit Unmanaged Order Summaries",
|
|
1512
|
+
"type": "boolean"
|
|
1513
|
+
},
|
|
1514
|
+
"MaximumPermissionsEinsteinAgentPlatformBuilder": {
|
|
1515
|
+
"field_label": "Manage AI Agents",
|
|
1516
|
+
"type": "boolean"
|
|
1517
|
+
},
|
|
1518
|
+
"MaximumPermissionsEinsteinCopilotBuilder": {
|
|
1519
|
+
"field_label": "Manage Agentforce Default Agent",
|
|
1520
|
+
"type": "boolean"
|
|
1521
|
+
},
|
|
1522
|
+
"MaximumPermissionsEinsteinCopilotUser": {
|
|
1523
|
+
"field_label": "Use Agentforce Default Agent",
|
|
1524
|
+
"type": "boolean"
|
|
1525
|
+
},
|
|
1526
|
+
"MaximumPermissionsEinsteinGPTSalesEmailsUser": {
|
|
1527
|
+
"field_label": "Use Einstein Sales Emails",
|
|
1528
|
+
"type": "boolean"
|
|
1529
|
+
},
|
|
1530
|
+
"MaximumPermissionsEinsteinReplyManager": {
|
|
1531
|
+
"field_label": "Manage Replies for Einstein Reply Recommendations",
|
|
1532
|
+
"type": "boolean"
|
|
1533
|
+
},
|
|
1534
|
+
"MaximumPermissionsEinsteinSalesCoachAgent": {
|
|
1535
|
+
"field_label": "Agentforce Sales Coach",
|
|
1536
|
+
"type": "boolean"
|
|
1537
|
+
},
|
|
1538
|
+
"MaximumPermissionsEinsteinSalesRepFdbkUser": {
|
|
1539
|
+
"field_label": "Use Einstein Coach",
|
|
1540
|
+
"type": "boolean"
|
|
1541
|
+
},
|
|
1542
|
+
"MaximumPermissionsEinsteinSdrAAPerm": {
|
|
1543
|
+
"field_label": "Enables users to assign EinsteinSdr Automated Action rule.",
|
|
1544
|
+
"type": "boolean"
|
|
1545
|
+
},
|
|
1546
|
+
"MaximumPermissionsEinsteinSdrAccessPerm": {
|
|
1547
|
+
"field_label": "Use Agentforce SDR Agent App",
|
|
1548
|
+
"type": "boolean"
|
|
1549
|
+
},
|
|
1550
|
+
"MaximumPermissionsEinsteinSdrConfigPerm": {
|
|
1551
|
+
"field_label": "Configure Agentforce SDR Agent App",
|
|
1552
|
+
"type": "boolean"
|
|
1553
|
+
},
|
|
1554
|
+
"MaximumPermissionsEinsteinSdrWorkerPerm": {
|
|
1555
|
+
"field_label": "Engage Prospects as an Agentforce Sales Development Agent",
|
|
1556
|
+
"type": "boolean"
|
|
1557
|
+
},
|
|
1558
|
+
"MaximumPermissionsEmailAdministration": {
|
|
1559
|
+
"field_label": "Email Administration",
|
|
1560
|
+
"type": "boolean"
|
|
1561
|
+
},
|
|
1562
|
+
"MaximumPermissionsEmailMass": {
|
|
1563
|
+
"field_label": "Mass Email",
|
|
1564
|
+
"type": "boolean"
|
|
1565
|
+
},
|
|
1566
|
+
"MaximumPermissionsEmailSingle": {
|
|
1567
|
+
"field_label": "Send Email",
|
|
1568
|
+
"type": "boolean"
|
|
1569
|
+
},
|
|
1570
|
+
"MaximumPermissionsEmailTemplateManagement": {
|
|
1571
|
+
"field_label": "Manage Email Templates",
|
|
1572
|
+
"type": "boolean"
|
|
1573
|
+
},
|
|
1574
|
+
"MaximumPermissionsEmbeddedMessagingAgent": {
|
|
1575
|
+
"field_label": "Enhanced Chat Rep",
|
|
1576
|
+
"type": "boolean"
|
|
1577
|
+
},
|
|
1578
|
+
"MaximumPermissionsEmployee2Access": {
|
|
1579
|
+
"field_label": "Access Employee2",
|
|
1580
|
+
"type": "boolean"
|
|
1581
|
+
},
|
|
1582
|
+
"MaximumPermissionsEmployeeAccess": {
|
|
1583
|
+
"field_label": "Access Employee",
|
|
1584
|
+
"type": "boolean"
|
|
1585
|
+
},
|
|
1586
|
+
"MaximumPermissionsEmployeeExperience": {
|
|
1587
|
+
"field_label": "Access Employee Experience",
|
|
1588
|
+
"type": "boolean"
|
|
1589
|
+
},
|
|
1590
|
+
"MaximumPermissionsEnableBCTransactionPolling": {
|
|
1591
|
+
"field_label": "Enable blockchain transaction polling API",
|
|
1592
|
+
"type": "boolean"
|
|
1593
|
+
},
|
|
1594
|
+
"MaximumPermissionsEnableCommunityAppLauncher": {
|
|
1595
|
+
"field_label": "Show App Launcher in Experience Cloud Sites",
|
|
1596
|
+
"type": "boolean"
|
|
1597
|
+
},
|
|
1598
|
+
"MaximumPermissionsEnableConfigurationLogAccess": {
|
|
1599
|
+
"field_label": "Read and write configuration logs",
|
|
1600
|
+
"type": "boolean"
|
|
1601
|
+
},
|
|
1602
|
+
"MaximumPermissionsEnableIPFSUpload": {
|
|
1603
|
+
"field_label": "Allow blockchain data upload",
|
|
1604
|
+
"type": "boolean"
|
|
1605
|
+
},
|
|
1606
|
+
"MaximumPermissionsEnableNotifications": {
|
|
1607
|
+
"field_label": "Send Outbound Messages",
|
|
1608
|
+
"type": "boolean"
|
|
1609
|
+
},
|
|
1610
|
+
"MaximumPermissionsEnablementAdmin": {
|
|
1611
|
+
"field_label": "Design and Deliver Enablement Programs",
|
|
1612
|
+
"type": "boolean"
|
|
1613
|
+
},
|
|
1614
|
+
"MaximumPermissionsEnablementUser": {
|
|
1615
|
+
"field_label": "Take Enablement Programs",
|
|
1616
|
+
"type": "boolean"
|
|
1617
|
+
},
|
|
1618
|
+
"MaximumPermissionsEngagementConfigUser": {
|
|
1619
|
+
"field_label": "Engagement Config User",
|
|
1620
|
+
"type": "boolean"
|
|
1621
|
+
},
|
|
1622
|
+
"MaximumPermissionsEnhancedSalesMobileExp": {
|
|
1623
|
+
"field_label": "Salesforce Mobile App: Native Seller Experience",
|
|
1624
|
+
"type": "boolean"
|
|
1625
|
+
},
|
|
1626
|
+
"MaximumPermissionsExecutePromptTemplates": {
|
|
1627
|
+
"field_label": "Execute Prompt Templates",
|
|
1628
|
+
"type": "boolean"
|
|
1629
|
+
},
|
|
1630
|
+
"MaximumPermissionsExplainabilityCmtyAccess": {
|
|
1631
|
+
"field_label": "Provides site users with access to Decision Explainers features and APIs.",
|
|
1632
|
+
"type": "boolean"
|
|
1633
|
+
},
|
|
1634
|
+
"MaximumPermissionsExplainabilityUserAccess": {
|
|
1635
|
+
"field_label": "Provides internal Org users with access to Decision Explainer features and APIs.",
|
|
1636
|
+
"type": "boolean"
|
|
1637
|
+
},
|
|
1638
|
+
"MaximumPermissionsExportReport": {
|
|
1639
|
+
"field_label": "Export Reports",
|
|
1640
|
+
"type": "boolean"
|
|
1641
|
+
},
|
|
1642
|
+
"MaximumPermissionsExternalClientAppAdmin": {
|
|
1643
|
+
"field_label": "View all External Client Apps, view their settings, and edit their policies",
|
|
1644
|
+
"type": "boolean"
|
|
1645
|
+
},
|
|
1646
|
+
"MaximumPermissionsExternalClientAppDeveloper": {
|
|
1647
|
+
"field_label": "Create, edit, and delete External Client Apps",
|
|
1648
|
+
"type": "boolean"
|
|
1649
|
+
},
|
|
1650
|
+
"MaximumPermissionsExternalClientAppViewer": {
|
|
1651
|
+
"field_label": "View all External Client Apps",
|
|
1652
|
+
"type": "boolean"
|
|
1653
|
+
},
|
|
1654
|
+
"MaximumPermissionsFSCAlertFrameworkUserAccess": {
|
|
1655
|
+
"field_label": "Access Record Alerts",
|
|
1656
|
+
"type": "boolean"
|
|
1657
|
+
},
|
|
1658
|
+
"MaximumPermissionsFSCArcGraphCommunityUser": {
|
|
1659
|
+
"field_label": "Access Actionable Relationship Center for partner users",
|
|
1660
|
+
"type": "boolean"
|
|
1661
|
+
},
|
|
1662
|
+
"MaximumPermissionsFSCB2BUserAccess": {
|
|
1663
|
+
"field_label": "Grants access to B2B features",
|
|
1664
|
+
"type": "boolean"
|
|
1665
|
+
},
|
|
1666
|
+
"MaximumPermissionsFSCInsClaimMgmtPlatformUser": {
|
|
1667
|
+
"field_label": "Insurance Claim Management Platform User",
|
|
1668
|
+
"type": "boolean"
|
|
1669
|
+
},
|
|
1670
|
+
"MaximumPermissionsFSCInsPolicyAdminPlatformUser": {
|
|
1671
|
+
"field_label": "Insurance Policy Administration Platform User",
|
|
1672
|
+
"type": "boolean"
|
|
1673
|
+
},
|
|
1674
|
+
"MaximumPermissionsFSCInsuranceCmpCmtyAccess": {
|
|
1675
|
+
"field_label": "Access Insurance Lightning Components",
|
|
1676
|
+
"type": "boolean"
|
|
1677
|
+
},
|
|
1678
|
+
"MaximumPermissionsFSCInsuranceCmpLexOnlyAccess": {
|
|
1679
|
+
"field_label": "Access Insurance Lightning Components",
|
|
1680
|
+
"type": "boolean"
|
|
1681
|
+
},
|
|
1682
|
+
"MaximumPermissionsFSCInsurancePlatformUser": {
|
|
1683
|
+
"field_label": "Access Insurance Objects",
|
|
1684
|
+
"type": "boolean"
|
|
1685
|
+
},
|
|
1686
|
+
"MaximumPermissionsFSCReferralUserPerm": {
|
|
1687
|
+
"field_label": "Manage FSC Referral",
|
|
1688
|
+
"type": "boolean"
|
|
1689
|
+
},
|
|
1690
|
+
"MaximumPermissionsFeedPinning": {
|
|
1691
|
+
"field_label": "Pin Posts in Feeds",
|
|
1692
|
+
"type": "boolean"
|
|
1693
|
+
},
|
|
1694
|
+
"MaximumPermissionsFieldServiceAccess": {
|
|
1695
|
+
"field_label": "Field Service Standard",
|
|
1696
|
+
"type": "boolean"
|
|
1697
|
+
},
|
|
1698
|
+
"MaximumPermissionsFieldServiceCopilotActions": {
|
|
1699
|
+
"field_label": "Access Agent Topics and Actions for Field Service",
|
|
1700
|
+
"type": "boolean"
|
|
1701
|
+
},
|
|
1702
|
+
"MaximumPermissionsFieldServiceDispatcher": {
|
|
1703
|
+
"field_label": "Field Service Dispatcher",
|
|
1704
|
+
"type": "boolean"
|
|
1705
|
+
},
|
|
1706
|
+
"MaximumPermissionsFieldServiceLastMile": {
|
|
1707
|
+
"field_label": "Field Service Appointment Assistant",
|
|
1708
|
+
"type": "boolean"
|
|
1709
|
+
},
|
|
1710
|
+
"MaximumPermissionsFieldServiceMobileApp": {
|
|
1711
|
+
"field_label": "Field Service Mobile",
|
|
1712
|
+
"type": "boolean"
|
|
1713
|
+
},
|
|
1714
|
+
"MaximumPermissionsFieldServiceScheduling": {
|
|
1715
|
+
"field_label": "Field Service Scheduling",
|
|
1716
|
+
"type": "boolean"
|
|
1717
|
+
},
|
|
1718
|
+
"MaximumPermissionsFieldServiceVoiceToForm": {
|
|
1719
|
+
"field_label": "Access Field Service Data Capture Voice to Form",
|
|
1720
|
+
"type": "boolean"
|
|
1721
|
+
},
|
|
1722
|
+
"MaximumPermissionsFieldServiceVoiceToRecordEdit": {
|
|
1723
|
+
"field_label": "Access Field Service Voice to Record Edit",
|
|
1724
|
+
"type": "boolean"
|
|
1725
|
+
},
|
|
1726
|
+
"MaximumPermissionsFinancialServices2UserAccess": {
|
|
1727
|
+
"field_label": "Access Actionable Relationship Center",
|
|
1728
|
+
"type": "boolean"
|
|
1729
|
+
},
|
|
1730
|
+
"MaximumPermissionsFindPastCollaborators": {
|
|
1731
|
+
"field_label": "Allow access to Find Past Collaborators in Einstein Copilot.",
|
|
1732
|
+
"type": "boolean"
|
|
1733
|
+
},
|
|
1734
|
+
"MaximumPermissionsFlowUFLRequired": {
|
|
1735
|
+
"field_label": "Require Flow User Feature License",
|
|
1736
|
+
"type": "boolean"
|
|
1737
|
+
},
|
|
1738
|
+
"MaximumPermissionsForceTwoFactor": {
|
|
1739
|
+
"field_label": "Multi-Factor Authentication for User Interface Logins",
|
|
1740
|
+
"type": "boolean"
|
|
1741
|
+
},
|
|
1742
|
+
"MaximumPermissionsFreezeUsers": {
|
|
1743
|
+
"field_label": "Freeze Users",
|
|
1744
|
+
"type": "boolean"
|
|
1745
|
+
},
|
|
1746
|
+
"MaximumPermissionsFscPlansAndGoalsUser": {
|
|
1747
|
+
"field_label": "Plans and Goals User",
|
|
1748
|
+
"type": "boolean"
|
|
1749
|
+
},
|
|
1750
|
+
"MaximumPermissionsGenEmailResponseUser": {
|
|
1751
|
+
"field_label": "View, Edit, and Post Service Emails",
|
|
1752
|
+
"type": "boolean"
|
|
1753
|
+
},
|
|
1754
|
+
"MaximumPermissionsGenReplyRecommendationUser": {
|
|
1755
|
+
"field_label": "View, Edit, and Post Service Replies",
|
|
1756
|
+
"type": "boolean"
|
|
1757
|
+
},
|
|
1758
|
+
"MaximumPermissionsGetConversationTranscripts": {
|
|
1759
|
+
"field_label": "Get Conversation Transcripts",
|
|
1760
|
+
"type": "boolean"
|
|
1761
|
+
},
|
|
1762
|
+
"MaximumPermissionsGetProductPricing": {
|
|
1763
|
+
"field_label": "Allow access to Get Product Pricing in Einstein Copilot",
|
|
1764
|
+
"type": "boolean"
|
|
1765
|
+
},
|
|
1766
|
+
"MaximumPermissionsGetRecordDetailsUserAccess": {
|
|
1767
|
+
"field_label": "Get Record Details",
|
|
1768
|
+
"type": "boolean"
|
|
1769
|
+
},
|
|
1770
|
+
"MaximumPermissionsGetSmartDataDiscovery": {
|
|
1771
|
+
"field_label": "View Einstein Discovery Recommendations",
|
|
1772
|
+
"type": "boolean"
|
|
1773
|
+
},
|
|
1774
|
+
"MaximumPermissionsGetSmartDataDiscoveryExternal": {
|
|
1775
|
+
"field_label": "View Einstein Discovery Recommendations Via Connect API",
|
|
1776
|
+
"type": "boolean"
|
|
1777
|
+
},
|
|
1778
|
+
"MaximumPermissionsGiveRecognitionBadge": {
|
|
1779
|
+
"field_label": "Give Recognition Badges in Experience Builder Sites",
|
|
1780
|
+
"type": "boolean"
|
|
1781
|
+
},
|
|
1782
|
+
"MaximumPermissionsGovernNetworks": {
|
|
1783
|
+
"field_label": "Manage Experiences",
|
|
1784
|
+
"type": "boolean"
|
|
1785
|
+
},
|
|
1786
|
+
"MaximumPermissionsGrantOutboundBundling": {
|
|
1787
|
+
"field_label": "Grant Outbound Bundling",
|
|
1788
|
+
"type": "boolean"
|
|
1789
|
+
},
|
|
1790
|
+
"MaximumPermissionsGroupMembershipCmtyUsr": {
|
|
1791
|
+
"field_label": "Group Membership Experience Cloud User",
|
|
1792
|
+
"type": "boolean"
|
|
1793
|
+
},
|
|
1794
|
+
"MaximumPermissionsGroupMembershipPsl": {
|
|
1795
|
+
"field_label": "Group Membership",
|
|
1796
|
+
"type": "boolean"
|
|
1797
|
+
},
|
|
1798
|
+
"MaximumPermissionsHasUnlimitedErbScoringRequests": {
|
|
1799
|
+
"field_label": "User Has Unlimited Erb Model Scoring",
|
|
1800
|
+
"type": "boolean"
|
|
1801
|
+
},
|
|
1802
|
+
"MaximumPermissionsHasUnlimitedNBAExecutions": {
|
|
1803
|
+
"field_label": "User Has Unlimited Next Best Action Strategy Executions",
|
|
1804
|
+
"type": "boolean"
|
|
1805
|
+
},
|
|
1806
|
+
"MaximumPermissionsHcAdvancedTherapyUser": {
|
|
1807
|
+
"field_label": "Manage Advanced Therapy Orchestration features",
|
|
1808
|
+
"type": "boolean"
|
|
1809
|
+
},
|
|
1810
|
+
"MaximumPermissionsHeadlessCMSAccess": {
|
|
1811
|
+
"field_label": "Enable Salesforce CMS Integration",
|
|
1812
|
+
"type": "boolean"
|
|
1813
|
+
},
|
|
1814
|
+
"MaximumPermissionsHeadlessConfiguratorUser": {
|
|
1815
|
+
"field_label": "Product Configurator API User",
|
|
1816
|
+
"type": "boolean"
|
|
1817
|
+
},
|
|
1818
|
+
"MaximumPermissionsHeadlessPublishNudges": {
|
|
1819
|
+
"field_label": "Headless Publish Nudges User",
|
|
1820
|
+
"type": "boolean"
|
|
1821
|
+
},
|
|
1822
|
+
"MaximumPermissionsHealthCloudStarter": {
|
|
1823
|
+
"field_label": "Health Cloud Starter",
|
|
1824
|
+
"type": "boolean"
|
|
1825
|
+
},
|
|
1826
|
+
"MaximumPermissionsHideReadByList": {
|
|
1827
|
+
"field_label": "Hide the Seen By List",
|
|
1828
|
+
"type": "boolean"
|
|
1829
|
+
},
|
|
1830
|
+
"MaximumPermissionsHighVelocitySalesUser": {
|
|
1831
|
+
"field_label": "Sales Engagement User",
|
|
1832
|
+
"type": "boolean"
|
|
1833
|
+
},
|
|
1834
|
+
"MaximumPermissionsHydratePromptTemplateIA": {
|
|
1835
|
+
"field_label": "Hydrate Prompt Template IA",
|
|
1836
|
+
"type": "boolean"
|
|
1837
|
+
},
|
|
1838
|
+
"MaximumPermissionsIdentityConnect": {
|
|
1839
|
+
"field_label": "Use Identity Connect",
|
|
1840
|
+
"type": "boolean"
|
|
1841
|
+
},
|
|
1842
|
+
"MaximumPermissionsIdentityEnabled": {
|
|
1843
|
+
"field_label": "Use Identity Features",
|
|
1844
|
+
"type": "boolean"
|
|
1845
|
+
},
|
|
1846
|
+
"MaximumPermissionsIdentityVerificationUserAccess": {
|
|
1847
|
+
"field_label": "Permission to access Identity Verification",
|
|
1848
|
+
"type": "boolean"
|
|
1849
|
+
},
|
|
1850
|
+
"MaximumPermissionsImportCustomObjects": {
|
|
1851
|
+
"field_label": "Import Custom Objects",
|
|
1852
|
+
"type": "boolean"
|
|
1853
|
+
},
|
|
1854
|
+
"MaximumPermissionsImportLeads": {
|
|
1855
|
+
"field_label": "Import Leads",
|
|
1856
|
+
"type": "boolean"
|
|
1857
|
+
},
|
|
1858
|
+
"MaximumPermissionsImportPersonal": {
|
|
1859
|
+
"field_label": "Import Personal Contacts",
|
|
1860
|
+
"type": "boolean"
|
|
1861
|
+
},
|
|
1862
|
+
"MaximumPermissionsInboundLeadGenAgentConfigurePerm": {
|
|
1863
|
+
"field_label": "Set Up Inbound Lead Generation",
|
|
1864
|
+
"type": "boolean"
|
|
1865
|
+
},
|
|
1866
|
+
"MaximumPermissionsInboundLeadGenAgentPerm": {
|
|
1867
|
+
"field_label": "Inbound Lead Generation Autonomous User",
|
|
1868
|
+
"type": "boolean"
|
|
1869
|
+
},
|
|
1870
|
+
"MaximumPermissionsInboundMigrationToolsUser": {
|
|
1871
|
+
"field_label": "Deploy Change Sets",
|
|
1872
|
+
"type": "boolean"
|
|
1873
|
+
},
|
|
1874
|
+
"MaximumPermissionsIndustriesEpcNextPilot": {
|
|
1875
|
+
"field_label": "Industries Epc Next Pilot",
|
|
1876
|
+
"type": "boolean"
|
|
1877
|
+
},
|
|
1878
|
+
"MaximumPermissionsIndustryMilestonePlatformUser": {
|
|
1879
|
+
"field_label": "Access Life Events or Business Milestones Component",
|
|
1880
|
+
"type": "boolean"
|
|
1881
|
+
},
|
|
1882
|
+
"MaximumPermissionsInsightsAppAdmin": {
|
|
1883
|
+
"field_label": "Manage CRM Analytics",
|
|
1884
|
+
"type": "boolean"
|
|
1885
|
+
},
|
|
1886
|
+
"MaximumPermissionsInsightsAppDashboardEditor": {
|
|
1887
|
+
"field_label": "Create and Edit CRM Analytics Dashboards",
|
|
1888
|
+
"type": "boolean"
|
|
1889
|
+
},
|
|
1890
|
+
"MaximumPermissionsInsightsAppEltEditor": {
|
|
1891
|
+
"field_label": "Edit CRM Analytics Dataflows",
|
|
1892
|
+
"type": "boolean"
|
|
1893
|
+
},
|
|
1894
|
+
"MaximumPermissionsInsightsAppUploadUser": {
|
|
1895
|
+
"field_label": "Upload External Data to CRM Analytics",
|
|
1896
|
+
"type": "boolean"
|
|
1897
|
+
},
|
|
1898
|
+
"MaximumPermissionsInsightsAppUser": {
|
|
1899
|
+
"field_label": "Use CRM Analytics",
|
|
1900
|
+
"type": "boolean"
|
|
1901
|
+
},
|
|
1902
|
+
"MaximumPermissionsInsightsCreateApplication": {
|
|
1903
|
+
"field_label": "Create CRM Analytics Apps",
|
|
1904
|
+
"type": "boolean"
|
|
1905
|
+
},
|
|
1906
|
+
"MaximumPermissionsInsightsIntelAppUser": {
|
|
1907
|
+
"field_label": "Use Intelligent Apps",
|
|
1908
|
+
"type": "boolean"
|
|
1909
|
+
},
|
|
1910
|
+
"MaximumPermissionsInstallPackaging": {
|
|
1911
|
+
"field_label": "Download AppExchange Packages",
|
|
1912
|
+
"type": "boolean"
|
|
1913
|
+
},
|
|
1914
|
+
"MaximumPermissionsInsuranceGroupBenefitsUser": {
|
|
1915
|
+
"field_label": "Insurance Group Benefits User",
|
|
1916
|
+
"type": "boolean"
|
|
1917
|
+
},
|
|
1918
|
+
"MaximumPermissionsIntelligentDocumentProcessing": {
|
|
1919
|
+
"field_label": "Use generic Intelligent Document Processing",
|
|
1920
|
+
"type": "boolean"
|
|
1921
|
+
},
|
|
1922
|
+
"MaximumPermissionsInteractionCalcAdminPerm": {
|
|
1923
|
+
"field_label": "Grant administrators access to Industries Interaction Calculation features.",
|
|
1924
|
+
"type": "boolean"
|
|
1925
|
+
},
|
|
1926
|
+
"MaximumPermissionsInteractionCalcUserPerm": {
|
|
1927
|
+
"field_label": "Grant users access to Industries Interaction Calculation features.",
|
|
1928
|
+
"type": "boolean"
|
|
1929
|
+
},
|
|
1930
|
+
"MaximumPermissionsInteractionObjStateDefUserPerm": {
|
|
1931
|
+
"field_label": "Grant users access to Industries Interaction Object State Definition features.",
|
|
1932
|
+
"type": "boolean"
|
|
1933
|
+
},
|
|
1934
|
+
"MaximumPermissionsInterestTaggingUserAccess": {
|
|
1935
|
+
"field_label": "Access Interest Tags for Financial Services Cloud.",
|
|
1936
|
+
"type": "boolean"
|
|
1937
|
+
},
|
|
1938
|
+
"MaximumPermissionsInviteBuyerToReorderPortal": {
|
|
1939
|
+
"field_label": "Invite Buyer to Reorder Portal",
|
|
1940
|
+
"type": "boolean"
|
|
1941
|
+
},
|
|
1942
|
+
"MaximumPermissionsInvoiceOrErrorRecoveryAPI": {
|
|
1943
|
+
"field_label": "Invoice or Recovery API",
|
|
1944
|
+
"type": "boolean"
|
|
1945
|
+
},
|
|
1946
|
+
"MaximumPermissionsInvoicePreview": {
|
|
1947
|
+
"field_label": "Preview Invoices",
|
|
1948
|
+
"type": "boolean"
|
|
1949
|
+
},
|
|
1950
|
+
"MaximumPermissionsInvoiceSchedulerUser": {
|
|
1951
|
+
"field_label": "Invoice Scheduler User",
|
|
1952
|
+
"type": "boolean"
|
|
1953
|
+
},
|
|
1954
|
+
"MaximumPermissionsIsContactCenterAdmin": {
|
|
1955
|
+
"field_label": "Salesforce Voice Contact Center Admin",
|
|
1956
|
+
"type": "boolean"
|
|
1957
|
+
},
|
|
1958
|
+
"MaximumPermissionsIsContactCenterAdminBYOT": {
|
|
1959
|
+
"field_label": "Salesforce Voice Contact Center Admin (Partner Telephony)",
|
|
1960
|
+
"type": "boolean"
|
|
1961
|
+
},
|
|
1962
|
+
"MaximumPermissionsIsContactCenterAgent": {
|
|
1963
|
+
"field_label": "Salesforce Voice Contact Center Rep",
|
|
1964
|
+
"type": "boolean"
|
|
1965
|
+
},
|
|
1966
|
+
"MaximumPermissionsIsContactCenterAgentBYOT": {
|
|
1967
|
+
"field_label": "Salesforce Voice Contact Center Rep (Partner Telephony)",
|
|
1968
|
+
"type": "boolean"
|
|
1969
|
+
},
|
|
1970
|
+
"MaximumPermissionsIsContactCenterSupervisor": {
|
|
1971
|
+
"field_label": "Salesforce Voice Contact Center Supervisor",
|
|
1972
|
+
"type": "boolean"
|
|
1973
|
+
},
|
|
1974
|
+
"MaximumPermissionsIsSsoEnabled": {
|
|
1975
|
+
"field_label": "Is Single Sign-On Enabled",
|
|
1976
|
+
"type": "boolean"
|
|
1977
|
+
},
|
|
1978
|
+
"MaximumPermissionsIsotopeAccess": {
|
|
1979
|
+
"field_label": "Salesforce Anywhere on Mobile",
|
|
1980
|
+
"type": "boolean"
|
|
1981
|
+
},
|
|
1982
|
+
"MaximumPermissionsIsotopeCToCUser": {
|
|
1983
|
+
"field_label": "Salesforce Anywhere Integration Access",
|
|
1984
|
+
"type": "boolean"
|
|
1985
|
+
},
|
|
1986
|
+
"MaximumPermissionsIsotopeLEX": {
|
|
1987
|
+
"field_label": "Salesforce Anywhere in Lightning Experience",
|
|
1988
|
+
"type": "boolean"
|
|
1989
|
+
},
|
|
1990
|
+
"MaximumPermissionsKGERMultiArticlesUser": {
|
|
1991
|
+
"field_label": "Access KGER with Multi-Articles",
|
|
1992
|
+
"type": "boolean"
|
|
1993
|
+
},
|
|
1994
|
+
"MaximumPermissionsKycPlatformUser": {
|
|
1995
|
+
"field_label": "Identity Verification and Screening User",
|
|
1996
|
+
"type": "boolean"
|
|
1997
|
+
},
|
|
1998
|
+
"MaximumPermissionsLMEndMessagingSessionUserPerm": {
|
|
1999
|
+
"field_label": "End Messaging Session",
|
|
2000
|
+
"type": "boolean"
|
|
2001
|
+
},
|
|
2002
|
+
"MaximumPermissionsLMOutboundMessagingUserPerm": {
|
|
2003
|
+
"field_label": "Agent Initiated Outbound Messaging",
|
|
2004
|
+
"type": "boolean"
|
|
2005
|
+
},
|
|
2006
|
+
"MaximumPermissionsLPICommunityAccess": {
|
|
2007
|
+
"field_label": "Grant community users access to LPI features.",
|
|
2008
|
+
"type": "boolean"
|
|
2009
|
+
},
|
|
2010
|
+
"MaximumPermissionsLeadInspectorUser": {
|
|
2011
|
+
"field_label": "Access Lead Intelligence View in Partner Sites",
|
|
2012
|
+
"type": "boolean"
|
|
2013
|
+
},
|
|
2014
|
+
"MaximumPermissionsLeadScoreResultPublisher": {
|
|
2015
|
+
"field_label": "Publish Einstein Lead Scoring results",
|
|
2016
|
+
"type": "boolean"
|
|
2017
|
+
},
|
|
2018
|
+
"MaximumPermissionsLeadScoreUser": {
|
|
2019
|
+
"field_label": "Use Einstein Lead Scoring",
|
|
2020
|
+
"type": "boolean"
|
|
2021
|
+
},
|
|
2022
|
+
"MaximumPermissionsLearningManager": {
|
|
2023
|
+
"field_label": "Manage Learning",
|
|
2024
|
+
"type": "boolean"
|
|
2025
|
+
},
|
|
2026
|
+
"MaximumPermissionsLifecycleManagementAPIUser": {
|
|
2027
|
+
"field_label": "Access Customer Asset Lifecycle Management APIs",
|
|
2028
|
+
"type": "boolean"
|
|
2029
|
+
},
|
|
2030
|
+
"MaximumPermissionsLightningConsoleAllowedForUser": {
|
|
2031
|
+
"field_label": "Lightning Console User",
|
|
2032
|
+
"type": "boolean"
|
|
2033
|
+
},
|
|
2034
|
+
"MaximumPermissionsLightningExperienceUser": {
|
|
2035
|
+
"field_label": "Lightning Experience User",
|
|
2036
|
+
"type": "boolean"
|
|
2037
|
+
},
|
|
2038
|
+
"MaximumPermissionsLightningOnFSMobile": {
|
|
2039
|
+
"field_label": "Lightning SDK for Field Service Mobile",
|
|
2040
|
+
"type": "boolean"
|
|
2041
|
+
},
|
|
2042
|
+
"MaximumPermissionsLightningSchedulerUserAccess": {
|
|
2043
|
+
"field_label": "Let a user be included in appointments in Salesforce Scheduler.",
|
|
2044
|
+
"type": "boolean"
|
|
2045
|
+
},
|
|
2046
|
+
"MaximumPermissionsListEmailSend": {
|
|
2047
|
+
"field_label": "Allow sending of List Emails",
|
|
2048
|
+
"type": "boolean"
|
|
2049
|
+
},
|
|
2050
|
+
"MaximumPermissionsLiveMessageAgent": {
|
|
2051
|
+
"field_label": "Messaging Agent",
|
|
2052
|
+
"type": "boolean"
|
|
2053
|
+
},
|
|
2054
|
+
"MaximumPermissionsLobbyManagementUserAccess": {
|
|
2055
|
+
"field_label": "Let greeters access the Lobby Management tab.",
|
|
2056
|
+
"type": "boolean"
|
|
2057
|
+
},
|
|
2058
|
+
"MaximumPermissionsLtngPromoReserved01UserPerm": {
|
|
2059
|
+
"field_label": "Remain in Salesforce Classic",
|
|
2060
|
+
"type": "boolean"
|
|
2061
|
+
},
|
|
2062
|
+
"MaximumPermissionsMCPMetadataApi": {
|
|
2063
|
+
"field_label": "MCPMetadataApi",
|
|
2064
|
+
"type": "boolean"
|
|
2065
|
+
},
|
|
2066
|
+
"MaximumPermissionsMakePayments": {
|
|
2067
|
+
"field_label": "Make Payments",
|
|
2068
|
+
"type": "boolean"
|
|
2069
|
+
},
|
|
2070
|
+
"MaximumPermissionsManageAccessPolicies": {
|
|
2071
|
+
"field_label": "Manage Access Policies",
|
|
2072
|
+
"type": "boolean"
|
|
2073
|
+
},
|
|
2074
|
+
"MaximumPermissionsManageAdvancedConfigurator": {
|
|
2075
|
+
"field_label": "Manage Configurator with Constraint Rules Engine",
|
|
2076
|
+
"type": "boolean"
|
|
2077
|
+
},
|
|
2078
|
+
"MaximumPermissionsManageAgentforceServiceAgent": {
|
|
2079
|
+
"field_label": "Manage Agentforce Service Agents",
|
|
2080
|
+
"type": "boolean"
|
|
2081
|
+
},
|
|
2082
|
+
"MaximumPermissionsManageAnalyticSnapshots": {
|
|
2083
|
+
"field_label": "Manage Reporting Snapshots",
|
|
2084
|
+
"type": "boolean"
|
|
2085
|
+
},
|
|
2086
|
+
"MaximumPermissionsManageApiNamedQueries": {
|
|
2087
|
+
"field_label": "Allows users to create, read, update and delete Named Query records",
|
|
2088
|
+
"type": "boolean"
|
|
2089
|
+
},
|
|
2090
|
+
"MaximumPermissionsManageAssets": {
|
|
2091
|
+
"field_label": "Manage Assets",
|
|
2092
|
+
"type": "boolean"
|
|
2093
|
+
},
|
|
2094
|
+
"MaximumPermissionsManageAuthProviders": {
|
|
2095
|
+
"field_label": "Manage Auth. Providers",
|
|
2096
|
+
"type": "boolean"
|
|
2097
|
+
},
|
|
2098
|
+
"MaximumPermissionsManageB2bReferrals": {
|
|
2099
|
+
"field_label": "B2B Referral Management App",
|
|
2100
|
+
"type": "boolean"
|
|
2101
|
+
},
|
|
2102
|
+
"MaximumPermissionsManageBusinessHourHolidays": {
|
|
2103
|
+
"field_label": "Manage Business Hours Holidays",
|
|
2104
|
+
"type": "boolean"
|
|
2105
|
+
},
|
|
2106
|
+
"MaximumPermissionsManageC2CHighVolumePriming": {
|
|
2107
|
+
"field_label": "Manage Cross-Cloud High-Volume Priming",
|
|
2108
|
+
"type": "boolean"
|
|
2109
|
+
},
|
|
2110
|
+
"MaximumPermissionsManageC360AConnections": {
|
|
2111
|
+
"field_label": "Connect Org to Data Cloud",
|
|
2112
|
+
"type": "boolean"
|
|
2113
|
+
},
|
|
2114
|
+
"MaximumPermissionsManageCMS": {
|
|
2115
|
+
"field_label": "Create CMS Workspaces and Channels",
|
|
2116
|
+
"type": "boolean"
|
|
2117
|
+
},
|
|
2118
|
+
"MaximumPermissionsManageCallCenters": {
|
|
2119
|
+
"field_label": "Manage Call Centers",
|
|
2120
|
+
"type": "boolean"
|
|
2121
|
+
},
|
|
2122
|
+
"MaximumPermissionsManageCases": {
|
|
2123
|
+
"field_label": "Manage Cases",
|
|
2124
|
+
"type": "boolean"
|
|
2125
|
+
},
|
|
2126
|
+
"MaximumPermissionsManageCategories": {
|
|
2127
|
+
"field_label": "Manage Categories",
|
|
2128
|
+
"type": "boolean"
|
|
2129
|
+
},
|
|
2130
|
+
"MaximumPermissionsManageCdpMlModels": {
|
|
2131
|
+
"field_label": "Allow users to manage models in Einstein Studio",
|
|
2132
|
+
"type": "boolean"
|
|
2133
|
+
},
|
|
2134
|
+
"MaximumPermissionsManageCertificates": {
|
|
2135
|
+
"field_label": "Manage Certificates",
|
|
2136
|
+
"type": "boolean"
|
|
2137
|
+
},
|
|
2138
|
+
"MaximumPermissionsManageCertificatesExpiration": {
|
|
2139
|
+
"field_label": "Receive Certificate Expiration Notifications",
|
|
2140
|
+
"type": "boolean"
|
|
2141
|
+
},
|
|
2142
|
+
"MaximumPermissionsManageChatterMessages": {
|
|
2143
|
+
"field_label": "Manage Chatter Messages and Direct Messages",
|
|
2144
|
+
"type": "boolean"
|
|
2145
|
+
},
|
|
2146
|
+
"MaximumPermissionsManageClinicalDataModel": {
|
|
2147
|
+
"field_label": "Provides access to Clinical Data Model entities for LifeSciences Users",
|
|
2148
|
+
"type": "boolean"
|
|
2149
|
+
},
|
|
2150
|
+
"MaximumPermissionsManageClinicalTrials": {
|
|
2151
|
+
"field_label": "Design and run clinical trials.",
|
|
2152
|
+
"type": "boolean"
|
|
2153
|
+
},
|
|
2154
|
+
"MaximumPermissionsManageConsumptionTags": {
|
|
2155
|
+
"field_label": "Manage Consumption Tags",
|
|
2156
|
+
"type": "boolean"
|
|
2157
|
+
},
|
|
2158
|
+
"MaximumPermissionsManageContentLinks": {
|
|
2159
|
+
"field_label": "Manage Content Links",
|
|
2160
|
+
"type": "boolean"
|
|
2161
|
+
},
|
|
2162
|
+
"MaximumPermissionsManageContentPermissions": {
|
|
2163
|
+
"field_label": "Manage Content Permissions",
|
|
2164
|
+
"type": "boolean"
|
|
2165
|
+
},
|
|
2166
|
+
"MaximumPermissionsManageContentProperties": {
|
|
2167
|
+
"field_label": "Manage Content Properties",
|
|
2168
|
+
"type": "boolean"
|
|
2169
|
+
},
|
|
2170
|
+
"MaximumPermissionsManageContentTaxonomy": {
|
|
2171
|
+
"field_label": "Manage Content Taxonomy",
|
|
2172
|
+
"type": "boolean"
|
|
2173
|
+
},
|
|
2174
|
+
"MaximumPermissionsManageContentTypes": {
|
|
2175
|
+
"field_label": "Manage record types and layouts for Files",
|
|
2176
|
+
"type": "boolean"
|
|
2177
|
+
},
|
|
2178
|
+
"MaximumPermissionsManageConvMiningReports": {
|
|
2179
|
+
"field_label": "View and generate Einstein Conversation Mining reports",
|
|
2180
|
+
"type": "boolean"
|
|
2181
|
+
},
|
|
2182
|
+
"MaximumPermissionsManageCssUsers": {
|
|
2183
|
+
"field_label": "Manage Customer Users",
|
|
2184
|
+
"type": "boolean"
|
|
2185
|
+
},
|
|
2186
|
+
"MaximumPermissionsManageCustomDomains": {
|
|
2187
|
+
"field_label": "Manage Custom Domains",
|
|
2188
|
+
"type": "boolean"
|
|
2189
|
+
},
|
|
2190
|
+
"MaximumPermissionsManageCustomPermissions": {
|
|
2191
|
+
"field_label": "Manage Custom Permissions",
|
|
2192
|
+
"type": "boolean"
|
|
2193
|
+
},
|
|
2194
|
+
"MaximumPermissionsManageCustomReportTypes": {
|
|
2195
|
+
"field_label": "Manage Custom Report Types",
|
|
2196
|
+
"type": "boolean"
|
|
2197
|
+
},
|
|
2198
|
+
"MaximumPermissionsManageCustomerDataOptOut": {
|
|
2199
|
+
"field_label": "Manage Opt Out for Customer Data Access",
|
|
2200
|
+
"type": "boolean"
|
|
2201
|
+
},
|
|
2202
|
+
"MaximumPermissionsManageCustomerExperienceAnalytics": {
|
|
2203
|
+
"field_label": "Manage Customer Experience Analytics",
|
|
2204
|
+
"type": "boolean"
|
|
2205
|
+
},
|
|
2206
|
+
"MaximumPermissionsManageDashbdsInPubFolders": {
|
|
2207
|
+
"field_label": "Manage Dashboards in Public Folders",
|
|
2208
|
+
"type": "boolean"
|
|
2209
|
+
},
|
|
2210
|
+
"MaximumPermissionsManageDataAnalyticsGroups": {
|
|
2211
|
+
"field_label": "Manage Data Analytics Groups",
|
|
2212
|
+
"type": "boolean"
|
|
2213
|
+
},
|
|
2214
|
+
"MaximumPermissionsManageDataCategories": {
|
|
2215
|
+
"field_label": "Manage Data Categories",
|
|
2216
|
+
"type": "boolean"
|
|
2217
|
+
},
|
|
2218
|
+
"MaximumPermissionsManageDataCloudSegmentsGPM": {
|
|
2219
|
+
"field_label": "Lets users select a Data Cloud segment as the target audience for promotions created using Global Promotions Management.",
|
|
2220
|
+
"type": "boolean"
|
|
2221
|
+
},
|
|
2222
|
+
"MaximumPermissionsManageDataIntegrations": {
|
|
2223
|
+
"field_label": "Manage Data Integrations",
|
|
2224
|
+
"type": "boolean"
|
|
2225
|
+
},
|
|
2226
|
+
"MaximumPermissionsManageDataMaskPolicies": {
|
|
2227
|
+
"field_label": "Manage Data Mask Policies",
|
|
2228
|
+
"type": "boolean"
|
|
2229
|
+
},
|
|
2230
|
+
"MaximumPermissionsManageDataProcessingEngine": {
|
|
2231
|
+
"field_label": "Allow users to access the features of Data Processing Engine to transform data that’s available in your Salesforce org.",
|
|
2232
|
+
"type": "boolean"
|
|
2233
|
+
},
|
|
2234
|
+
"MaximumPermissionsManageDataspaceScope": {
|
|
2235
|
+
"field_label": "Manage Dataspace Scope",
|
|
2236
|
+
"type": "boolean"
|
|
2237
|
+
},
|
|
2238
|
+
"MaximumPermissionsManageDevSandboxes": {
|
|
2239
|
+
"field_label": "Manage Dev Sandboxes",
|
|
2240
|
+
"type": "boolean"
|
|
2241
|
+
},
|
|
2242
|
+
"MaximumPermissionsManageDynamicDashboards": {
|
|
2243
|
+
"field_label": "Manage Dynamic Dashboards",
|
|
2244
|
+
"type": "boolean"
|
|
2245
|
+
},
|
|
2246
|
+
"MaximumPermissionsManageEinsteinSalesCoach": {
|
|
2247
|
+
"field_label": "Configure Agentforce Sales Coach",
|
|
2248
|
+
"type": "boolean"
|
|
2249
|
+
},
|
|
2250
|
+
"MaximumPermissionsManageEmailClientConfig": {
|
|
2251
|
+
"field_label": "Manage Email Client Configurations",
|
|
2252
|
+
"type": "boolean"
|
|
2253
|
+
},
|
|
2254
|
+
"MaximumPermissionsManageEmailMessagingSetup": {
|
|
2255
|
+
"field_label": "Manage Email Messaging Setup",
|
|
2256
|
+
"type": "boolean"
|
|
2257
|
+
},
|
|
2258
|
+
"MaximumPermissionsManageEncryptionKeys": {
|
|
2259
|
+
"field_label": "Manage Encryption Keys",
|
|
2260
|
+
"type": "boolean"
|
|
2261
|
+
},
|
|
2262
|
+
"MaximumPermissionsManageEntitlements": {
|
|
2263
|
+
"field_label": "Manage Entitlements",
|
|
2264
|
+
"type": "boolean"
|
|
2265
|
+
},
|
|
2266
|
+
"MaximumPermissionsManageExchangeConfig": {
|
|
2267
|
+
"field_label": "Manage Lightning Sync",
|
|
2268
|
+
"type": "boolean"
|
|
2269
|
+
},
|
|
2270
|
+
"MaximumPermissionsManageExternalConnections": {
|
|
2271
|
+
"field_label": "Allow user to modify Private Connections",
|
|
2272
|
+
"type": "boolean"
|
|
2273
|
+
},
|
|
2274
|
+
"MaximumPermissionsManageFilesAndAttachments": {
|
|
2275
|
+
"field_label": "Manage Policies' Files And Attachments",
|
|
2276
|
+
"type": "boolean"
|
|
2277
|
+
},
|
|
2278
|
+
"MaximumPermissionsManageForecastingCustomData": {
|
|
2279
|
+
"field_label": "Manage Forecasts Custom Data",
|
|
2280
|
+
"type": "boolean"
|
|
2281
|
+
},
|
|
2282
|
+
"MaximumPermissionsManageHcProviderRelMgmt": {
|
|
2283
|
+
"field_label": "Manage Health Cloud Provider Relationship Management",
|
|
2284
|
+
"type": "boolean"
|
|
2285
|
+
},
|
|
2286
|
+
"MaximumPermissionsManageHealthCheck": {
|
|
2287
|
+
"field_label": "Manage Health Check",
|
|
2288
|
+
"type": "boolean"
|
|
2289
|
+
},
|
|
2290
|
+
"MaximumPermissionsManageHealthCloudFinancialData": {
|
|
2291
|
+
"field_label": "Manage Health Cloud Financial Data",
|
|
2292
|
+
"type": "boolean"
|
|
2293
|
+
},
|
|
2294
|
+
"MaximumPermissionsManageHerokuAppLink": {
|
|
2295
|
+
"field_label": "Manage Heroku AppLink",
|
|
2296
|
+
"type": "boolean"
|
|
2297
|
+
},
|
|
2298
|
+
"MaximumPermissionsManageHubConnections": {
|
|
2299
|
+
"field_label": "Connect Org to Customer 360 Data Manager",
|
|
2300
|
+
"type": "boolean"
|
|
2301
|
+
},
|
|
2302
|
+
"MaximumPermissionsManageInAppGuidanceForSites": {
|
|
2303
|
+
"field_label": "Design and Deliver In-App Guidance for Partners",
|
|
2304
|
+
"type": "boolean"
|
|
2305
|
+
},
|
|
2306
|
+
"MaximumPermissionsManageIndustriesVisit": {
|
|
2307
|
+
"field_label": "Manage Industries Visit",
|
|
2308
|
+
"type": "boolean"
|
|
2309
|
+
},
|
|
2310
|
+
"MaximumPermissionsManageIntegrationConnections": {
|
|
2311
|
+
"field_label": "Manage Integration Connections",
|
|
2312
|
+
"type": "boolean"
|
|
2313
|
+
},
|
|
2314
|
+
"MaximumPermissionsManageIntegrationPortals": {
|
|
2315
|
+
"field_label": "Manage Integration Portals",
|
|
2316
|
+
"type": "boolean"
|
|
2317
|
+
},
|
|
2318
|
+
"MaximumPermissionsManageIntelligenceApp": {
|
|
2319
|
+
"field_label": "Manage Commerce Intelligence App",
|
|
2320
|
+
"type": "boolean"
|
|
2321
|
+
},
|
|
2322
|
+
"MaximumPermissionsManageInteraction": {
|
|
2323
|
+
"field_label": "Manage Flow",
|
|
2324
|
+
"type": "boolean"
|
|
2325
|
+
},
|
|
2326
|
+
"MaximumPermissionsManageInternalUsers": {
|
|
2327
|
+
"field_label": "Manage Internal Users",
|
|
2328
|
+
"type": "boolean"
|
|
2329
|
+
},
|
|
2330
|
+
"MaximumPermissionsManageIpAddresses": {
|
|
2331
|
+
"field_label": "Manage IP Addresses",
|
|
2332
|
+
"type": "boolean"
|
|
2333
|
+
},
|
|
2334
|
+
"MaximumPermissionsManageJourneys": {
|
|
2335
|
+
"field_label": "Manage Journeys",
|
|
2336
|
+
"type": "boolean"
|
|
2337
|
+
},
|
|
2338
|
+
"MaximumPermissionsManageKnowledge": {
|
|
2339
|
+
"field_label": "Manage Salesforce Knowledge",
|
|
2340
|
+
"type": "boolean"
|
|
2341
|
+
},
|
|
2342
|
+
"MaximumPermissionsManageKnowledgeImportExport": {
|
|
2343
|
+
"field_label": "Manage Knowledge Article Import/Export",
|
|
2344
|
+
"type": "boolean"
|
|
2345
|
+
},
|
|
2346
|
+
"MaximumPermissionsManageLeads": {
|
|
2347
|
+
"field_label": "Manage Leads",
|
|
2348
|
+
"type": "boolean"
|
|
2349
|
+
},
|
|
2350
|
+
"MaximumPermissionsManageLearningReporting": {
|
|
2351
|
+
"field_label": "Manage Learning Reporting",
|
|
2352
|
+
"type": "boolean"
|
|
2353
|
+
},
|
|
2354
|
+
"MaximumPermissionsManageLiteLoyaltyProgram": {
|
|
2355
|
+
"field_label": "Create, manage, and run a lite loyalty program.",
|
|
2356
|
+
"type": "boolean"
|
|
2357
|
+
},
|
|
2358
|
+
"MaximumPermissionsManageLoginAccessPolicies": {
|
|
2359
|
+
"field_label": "Manage Login Access Policies",
|
|
2360
|
+
"type": "boolean"
|
|
2361
|
+
},
|
|
2362
|
+
"MaximumPermissionsManageLoyalty": {
|
|
2363
|
+
"field_label": "Allow users to access the features of Loyalty that’s available in your Salesforce org.",
|
|
2364
|
+
"type": "boolean"
|
|
2365
|
+
},
|
|
2366
|
+
"MaximumPermissionsManageLoyaltyAnalytics": {
|
|
2367
|
+
"field_label": "Manage Loyalty Analytics",
|
|
2368
|
+
"type": "boolean"
|
|
2369
|
+
},
|
|
2370
|
+
"MaximumPermissionsManageLoyaltyPrograms": {
|
|
2371
|
+
"field_label": "Lets users design loyalty programs.",
|
|
2372
|
+
"type": "boolean"
|
|
2373
|
+
},
|
|
2374
|
+
"MaximumPermissionsManageLoyaltyPromotionsGPM": {
|
|
2375
|
+
"field_label": "Lets users create and run promotions for a loyalty program using capabilities of Global Promotion Management.",
|
|
2376
|
+
"type": "boolean"
|
|
2377
|
+
},
|
|
2378
|
+
"MaximumPermissionsManageMCEEmails": {
|
|
2379
|
+
"field_label": "Manage Marketing Cloud Engagement Emails",
|
|
2380
|
+
"type": "boolean"
|
|
2381
|
+
},
|
|
2382
|
+
"MaximumPermissionsManageMaliciousFiles": {
|
|
2383
|
+
"field_label": "Manage Malicious Files",
|
|
2384
|
+
"type": "boolean"
|
|
2385
|
+
},
|
|
2386
|
+
"MaximumPermissionsManageMobile": {
|
|
2387
|
+
"field_label": "Manage Mobile Configurations",
|
|
2388
|
+
"type": "boolean"
|
|
2389
|
+
},
|
|
2390
|
+
"MaximumPermissionsManageMobileAppSecurity": {
|
|
2391
|
+
"field_label": "Manage Enhanced Mobile App Security",
|
|
2392
|
+
"type": "boolean"
|
|
2393
|
+
},
|
|
2394
|
+
"MaximumPermissionsManageMyExternalUsers": {
|
|
2395
|
+
"field_label": "Manage External Users (Limited)",
|
|
2396
|
+
"type": "boolean"
|
|
2397
|
+
},
|
|
2398
|
+
"MaximumPermissionsManageMySavedPaymentMethods": {
|
|
2399
|
+
"field_label": "Manage My Saved Payment Methods",
|
|
2400
|
+
"type": "boolean"
|
|
2401
|
+
},
|
|
2402
|
+
"MaximumPermissionsManageNamedCredentials": {
|
|
2403
|
+
"field_label": "Allows users to modify Named Credentials and External Credentials",
|
|
2404
|
+
"type": "boolean"
|
|
2405
|
+
},
|
|
2406
|
+
"MaximumPermissionsManageNetworks": {
|
|
2407
|
+
"field_label": "Create and Set Up Experiences",
|
|
2408
|
+
"type": "boolean"
|
|
2409
|
+
},
|
|
2410
|
+
"MaximumPermissionsManageOCIRecords": {
|
|
2411
|
+
"field_label": "Manage Omnichannel Inventory Records",
|
|
2412
|
+
"type": "boolean"
|
|
2413
|
+
},
|
|
2414
|
+
"MaximumPermissionsManageOrchInstsAndWorkItems": {
|
|
2415
|
+
"field_label": "Manage Orchestration Runs and Work Items",
|
|
2416
|
+
"type": "boolean"
|
|
2417
|
+
},
|
|
2418
|
+
"MaximumPermissionsManageOrchestrationRuns": {
|
|
2419
|
+
"field_label": "Manage Orchestration Runs",
|
|
2420
|
+
"type": "boolean"
|
|
2421
|
+
},
|
|
2422
|
+
"MaximumPermissionsManageOutcomeManagement": {
|
|
2423
|
+
"field_label": "Manage Outcomes",
|
|
2424
|
+
"type": "boolean"
|
|
2425
|
+
},
|
|
2426
|
+
"MaximumPermissionsManagePartners": {
|
|
2427
|
+
"field_label": "Manage External Users",
|
|
2428
|
+
"type": "boolean"
|
|
2429
|
+
},
|
|
2430
|
+
"MaximumPermissionsManagePasswordPolicies": {
|
|
2431
|
+
"field_label": "Manage Password Policies",
|
|
2432
|
+
"type": "boolean"
|
|
2433
|
+
},
|
|
2434
|
+
"MaximumPermissionsManagePatientProgramOutcomes": {
|
|
2435
|
+
"field_label": "Manage Patient Program Outcomes",
|
|
2436
|
+
"type": "boolean"
|
|
2437
|
+
},
|
|
2438
|
+
"MaximumPermissionsManagePaymentLinks": {
|
|
2439
|
+
"field_label": "Manage Payment Links",
|
|
2440
|
+
"type": "boolean"
|
|
2441
|
+
},
|
|
2442
|
+
"MaximumPermissionsManagePharmacyBenefitsVerf": {
|
|
2443
|
+
"field_label": "Gives users access to verify and reverify pharmacy benefits.",
|
|
2444
|
+
"type": "boolean"
|
|
2445
|
+
},
|
|
2446
|
+
"MaximumPermissionsManageProductCatalog": {
|
|
2447
|
+
"field_label": "Manage Product Catalog",
|
|
2448
|
+
"type": "boolean"
|
|
2449
|
+
},
|
|
2450
|
+
"MaximumPermissionsManageProductDetailsApiCache": {
|
|
2451
|
+
"field_label": "Product Catalog Management Cache Access",
|
|
2452
|
+
"type": "boolean"
|
|
2453
|
+
},
|
|
2454
|
+
"MaximumPermissionsManageProductDiscovery": {
|
|
2455
|
+
"field_label": "Manage Product Discovery",
|
|
2456
|
+
"type": "boolean"
|
|
2457
|
+
},
|
|
2458
|
+
"MaximumPermissionsManageProductIndexAndSearch": {
|
|
2459
|
+
"field_label": "Create and delete indexes for Product Catalog Management, and configure product browsing options.",
|
|
2460
|
+
"type": "boolean"
|
|
2461
|
+
},
|
|
2462
|
+
"MaximumPermissionsManageProfilesPermissionsets": {
|
|
2463
|
+
"field_label": "Manage Profiles and Permission Sets",
|
|
2464
|
+
"type": "boolean"
|
|
2465
|
+
},
|
|
2466
|
+
"MaximumPermissionsManageProgramManagement": {
|
|
2467
|
+
"field_label": "Advanced Program Management",
|
|
2468
|
+
"type": "boolean"
|
|
2469
|
+
},
|
|
2470
|
+
"MaximumPermissionsManagePromotionDistributionGPM": {
|
|
2471
|
+
"field_label": "Lets users design emails and select the Marketing Cloud business unit for promotions created using Global Promotions Management.",
|
|
2472
|
+
"type": "boolean"
|
|
2473
|
+
},
|
|
2474
|
+
"MaximumPermissionsManagePromotionWithGPM": {
|
|
2475
|
+
"field_label": "Lets users create and run promotions using the capabilities of Global Promotions Management.",
|
|
2476
|
+
"type": "boolean"
|
|
2477
|
+
},
|
|
2478
|
+
"MaximumPermissionsManagePromptTemplates": {
|
|
2479
|
+
"field_label": "Manage Prompt Templates",
|
|
2480
|
+
"type": "boolean"
|
|
2481
|
+
},
|
|
2482
|
+
"MaximumPermissionsManagePropositions": {
|
|
2483
|
+
"field_label": "Manage Next Best Action Recommendations",
|
|
2484
|
+
"type": "boolean"
|
|
2485
|
+
},
|
|
2486
|
+
"MaximumPermissionsManageProviderSearch": {
|
|
2487
|
+
"field_label": "Manage Provider Search",
|
|
2488
|
+
"type": "boolean"
|
|
2489
|
+
},
|
|
2490
|
+
"MaximumPermissionsManagePvtRptsAndDashbds": {
|
|
2491
|
+
"field_label": "Manage All Private Reports and Dashboards",
|
|
2492
|
+
"type": "boolean"
|
|
2493
|
+
},
|
|
2494
|
+
"MaximumPermissionsManageQuickAttributes": {
|
|
2495
|
+
"field_label": "Manage Quick Attributes",
|
|
2496
|
+
"type": "boolean"
|
|
2497
|
+
},
|
|
2498
|
+
"MaximumPermissionsManageQuotas": {
|
|
2499
|
+
"field_label": "Manage Quotas",
|
|
2500
|
+
"type": "boolean"
|
|
2501
|
+
},
|
|
2502
|
+
"MaximumPermissionsManageRecommendationStrategies": {
|
|
2503
|
+
"field_label": "Manage Next Best Action Strategies",
|
|
2504
|
+
"type": "boolean"
|
|
2505
|
+
},
|
|
2506
|
+
"MaximumPermissionsManageReferralRecords": {
|
|
2507
|
+
"field_label": "Manage Referral Record",
|
|
2508
|
+
"type": "boolean"
|
|
2509
|
+
},
|
|
2510
|
+
"MaximumPermissionsManageReleaseUpdates": {
|
|
2511
|
+
"field_label": "Manage Release Updates",
|
|
2512
|
+
"type": "boolean"
|
|
2513
|
+
},
|
|
2514
|
+
"MaximumPermissionsManageRemoteAccess": {
|
|
2515
|
+
"field_label": "Manage Connected Apps",
|
|
2516
|
+
"type": "boolean"
|
|
2517
|
+
},
|
|
2518
|
+
"MaximumPermissionsManageReportsInPubFolders": {
|
|
2519
|
+
"field_label": "Manage Reports in Public Folders",
|
|
2520
|
+
"type": "boolean"
|
|
2521
|
+
},
|
|
2522
|
+
"MaximumPermissionsManageRoles": {
|
|
2523
|
+
"field_label": "Manage Roles",
|
|
2524
|
+
"type": "boolean"
|
|
2525
|
+
},
|
|
2526
|
+
"MaximumPermissionsManageSALifecycle": {
|
|
2527
|
+
"field_label": "Manage Service Appointment Lifecycle",
|
|
2528
|
+
"type": "boolean"
|
|
2529
|
+
},
|
|
2530
|
+
"MaximumPermissionsManageSandboxes": {
|
|
2531
|
+
"field_label": "Manage Sandboxes",
|
|
2532
|
+
"type": "boolean"
|
|
2533
|
+
},
|
|
2534
|
+
"MaximumPermissionsManageSavedPaymentMethods": {
|
|
2535
|
+
"field_label": "Manage Saved Payment Methods",
|
|
2536
|
+
"type": "boolean"
|
|
2537
|
+
},
|
|
2538
|
+
"MaximumPermissionsManageSearchPromotionRules": {
|
|
2539
|
+
"field_label": "Manage Promoted Search Terms",
|
|
2540
|
+
"type": "boolean"
|
|
2541
|
+
},
|
|
2542
|
+
"MaximumPermissionsManageSecurityCommandCenter": {
|
|
2543
|
+
"field_label": "Manage Security Center",
|
|
2544
|
+
"type": "boolean"
|
|
2545
|
+
},
|
|
2546
|
+
"MaximumPermissionsManageServicePlanner": {
|
|
2547
|
+
"field_label": "Service Planner Admin",
|
|
2548
|
+
"type": "boolean"
|
|
2549
|
+
},
|
|
2550
|
+
"MaximumPermissionsManageSessionPermissionSets": {
|
|
2551
|
+
"field_label": "Manage Session Permission Set Activations",
|
|
2552
|
+
"type": "boolean"
|
|
2553
|
+
},
|
|
2554
|
+
"MaximumPermissionsManageSharedListViews": {
|
|
2555
|
+
"field_label": "Manage Shared List Views",
|
|
2556
|
+
"type": "boolean"
|
|
2557
|
+
},
|
|
2558
|
+
"MaximumPermissionsManageSharing": {
|
|
2559
|
+
"field_label": "Manage Sharing",
|
|
2560
|
+
"type": "boolean"
|
|
2561
|
+
},
|
|
2562
|
+
"MaximumPermissionsManageSiteManagement": {
|
|
2563
|
+
"field_label": "Manage Site Management",
|
|
2564
|
+
"type": "boolean"
|
|
2565
|
+
},
|
|
2566
|
+
"MaximumPermissionsManageSiteProfile": {
|
|
2567
|
+
"field_label": "Manage Site and Investigator Profile",
|
|
2568
|
+
"type": "boolean"
|
|
2569
|
+
},
|
|
2570
|
+
"MaximumPermissionsManageSmartDataDiscovery": {
|
|
2571
|
+
"field_label": "Manage Einstein Discovery",
|
|
2572
|
+
"type": "boolean"
|
|
2573
|
+
},
|
|
2574
|
+
"MaximumPermissionsManageSmartDataDiscoveryModel": {
|
|
2575
|
+
"field_label": "Can Deploy and Manage Einstein Discovery predictions",
|
|
2576
|
+
"type": "boolean"
|
|
2577
|
+
},
|
|
2578
|
+
"MaximumPermissionsManageSocialDeterminant": {
|
|
2579
|
+
"field_label": "Enable access to the Manage Social Determinants Data Model for Life Sciences users in a Salesforce org.",
|
|
2580
|
+
"type": "boolean"
|
|
2581
|
+
},
|
|
2582
|
+
"MaximumPermissionsManageSolutions": {
|
|
2583
|
+
"field_label": "Manage Published Solutions",
|
|
2584
|
+
"type": "boolean"
|
|
2585
|
+
},
|
|
2586
|
+
"MaximumPermissionsManageStores": {
|
|
2587
|
+
"field_label": "Manage Stores",
|
|
2588
|
+
"type": "boolean"
|
|
2589
|
+
},
|
|
2590
|
+
"MaximumPermissionsManageSubscriptions": {
|
|
2591
|
+
"field_label": "Manage CRM Analytics Subscriptions",
|
|
2592
|
+
"type": "boolean"
|
|
2593
|
+
},
|
|
2594
|
+
"MaximumPermissionsManageSurveys": {
|
|
2595
|
+
"field_label": "Manage Surveys",
|
|
2596
|
+
"type": "boolean"
|
|
2597
|
+
},
|
|
2598
|
+
"MaximumPermissionsManageSvcCatalog": {
|
|
2599
|
+
"field_label": "Manage Service Catalog",
|
|
2600
|
+
"type": "boolean"
|
|
2601
|
+
},
|
|
2602
|
+
"MaximumPermissionsManageSynonyms": {
|
|
2603
|
+
"field_label": "Manage Synonyms",
|
|
2604
|
+
"type": "boolean"
|
|
2605
|
+
},
|
|
2606
|
+
"MaximumPermissionsManageTemplatedApp": {
|
|
2607
|
+
"field_label": "Manage CRM Analytics Templated Apps",
|
|
2608
|
+
"type": "boolean"
|
|
2609
|
+
},
|
|
2610
|
+
"MaximumPermissionsManageTerritories": {
|
|
2611
|
+
"field_label": "Manage Territories",
|
|
2612
|
+
"type": "boolean"
|
|
2613
|
+
},
|
|
2614
|
+
"MaximumPermissionsManageTrialMgmtRandomization": {
|
|
2615
|
+
"field_label": "Manage Trial Management Randomization",
|
|
2616
|
+
"type": "boolean"
|
|
2617
|
+
},
|
|
2618
|
+
"MaximumPermissionsManageTrustMeasures": {
|
|
2619
|
+
"field_label": "Manage Trust Measures",
|
|
2620
|
+
"type": "boolean"
|
|
2621
|
+
},
|
|
2622
|
+
"MaximumPermissionsManageTwoFactor": {
|
|
2623
|
+
"field_label": "Manage MFA in API",
|
|
2624
|
+
"type": "boolean"
|
|
2625
|
+
},
|
|
2626
|
+
"MaximumPermissionsManageUnlistedGroups": {
|
|
2627
|
+
"field_label": "Manage Unlisted Groups",
|
|
2628
|
+
"type": "boolean"
|
|
2629
|
+
},
|
|
2630
|
+
"MaximumPermissionsManageUsers": {
|
|
2631
|
+
"field_label": "Manage Users",
|
|
2632
|
+
"type": "boolean"
|
|
2633
|
+
},
|
|
2634
|
+
"MaximumPermissionsMarketingExpertSystem": {
|
|
2635
|
+
"field_label": "Marketing Expert System",
|
|
2636
|
+
"type": "boolean"
|
|
2637
|
+
},
|
|
2638
|
+
"MaximumPermissionsMassInlineEdit": {
|
|
2639
|
+
"field_label": "Mass Edits from Lists",
|
|
2640
|
+
"type": "boolean"
|
|
2641
|
+
},
|
|
2642
|
+
"MaximumPermissionsMeetingEngagementUser": {
|
|
2643
|
+
"field_label": "Agentforce Meeting Concierge User",
|
|
2644
|
+
"type": "boolean"
|
|
2645
|
+
},
|
|
2646
|
+
"MaximumPermissionsMergeAndSplitGroups": {
|
|
2647
|
+
"field_label": "Merge and Split Groups",
|
|
2648
|
+
"type": "boolean"
|
|
2649
|
+
},
|
|
2650
|
+
"MaximumPermissionsMergeTopics": {
|
|
2651
|
+
"field_label": "Merge Topics",
|
|
2652
|
+
"type": "boolean"
|
|
2653
|
+
},
|
|
2654
|
+
"MaximumPermissionsMetadataStudioUser": {
|
|
2655
|
+
"field_label": "Metadata studio User",
|
|
2656
|
+
"type": "boolean"
|
|
2657
|
+
},
|
|
2658
|
+
"MaximumPermissionsMicrobatching": {
|
|
2659
|
+
"field_label": "Use Micro-Batching to Create Records",
|
|
2660
|
+
"type": "boolean"
|
|
2661
|
+
},
|
|
2662
|
+
"MaximumPermissionsMilestoneBillingAccess": {
|
|
2663
|
+
"field_label": "Manage Milestone Billing Plans",
|
|
2664
|
+
"type": "boolean"
|
|
2665
|
+
},
|
|
2666
|
+
"MaximumPermissionsMngBenVerfForAssistiveAgnt": {
|
|
2667
|
+
"field_label": "Gives AI agents access to the objects and fields required to reverify benefits.",
|
|
2668
|
+
"type": "boolean"
|
|
2669
|
+
},
|
|
2670
|
+
"MaximumPermissionsMngFinancialAssistanceProgram": {
|
|
2671
|
+
"field_label": "Access PSP Financial Assistance",
|
|
2672
|
+
"type": "boolean"
|
|
2673
|
+
},
|
|
2674
|
+
"MaximumPermissionsMobileAppSecurity": {
|
|
2675
|
+
"field_label": "Enforce Enhanced Mobile App Security",
|
|
2676
|
+
"type": "boolean"
|
|
2677
|
+
},
|
|
2678
|
+
"MaximumPermissionsMobileMessagingAgent": {
|
|
2679
|
+
"field_label": "Message on Mobile",
|
|
2680
|
+
"type": "boolean"
|
|
2681
|
+
},
|
|
2682
|
+
"MaximumPermissionsModerateChatter": {
|
|
2683
|
+
"field_label": "Moderate Chatter",
|
|
2684
|
+
"type": "boolean"
|
|
2685
|
+
},
|
|
2686
|
+
"MaximumPermissionsModerateNetworkFeeds": {
|
|
2687
|
+
"field_label": "Moderate Experience Cloud Site Feeds",
|
|
2688
|
+
"type": "boolean"
|
|
2689
|
+
},
|
|
2690
|
+
"MaximumPermissionsModerateNetworkFiles": {
|
|
2691
|
+
"field_label": "Moderate Files in Experience Cloud Sites",
|
|
2692
|
+
"type": "boolean"
|
|
2693
|
+
},
|
|
2694
|
+
"MaximumPermissionsModerateNetworkMessages": {
|
|
2695
|
+
"field_label": "Moderate Chatter Messages in Experience Cloud Sites",
|
|
2696
|
+
"type": "boolean"
|
|
2697
|
+
},
|
|
2698
|
+
"MaximumPermissionsModerateNetworkUsers": {
|
|
2699
|
+
"field_label": "Moderate Experience Cloud Site Users",
|
|
2700
|
+
"type": "boolean"
|
|
2701
|
+
},
|
|
2702
|
+
"MaximumPermissionsModifyAccessAllowPolicies": {
|
|
2703
|
+
"field_label": "Modify Allow Data Governance Policies",
|
|
2704
|
+
"type": "boolean"
|
|
2705
|
+
},
|
|
2706
|
+
"MaximumPermissionsModifyAccessDenyPolicies": {
|
|
2707
|
+
"field_label": "Modify Deny Data Governance Policies",
|
|
2708
|
+
"type": "boolean"
|
|
2709
|
+
},
|
|
2710
|
+
"MaximumPermissionsModifyAllData": {
|
|
2711
|
+
"field_label": "Modify All Data",
|
|
2712
|
+
"type": "boolean"
|
|
2713
|
+
},
|
|
2714
|
+
"MaximumPermissionsModifyAllDataGovClassif": {
|
|
2715
|
+
"field_label": "Modify All Data Governance Classification Tags",
|
|
2716
|
+
"type": "boolean"
|
|
2717
|
+
},
|
|
2718
|
+
"MaximumPermissionsModifyAllDataGovClsfTax": {
|
|
2719
|
+
"field_label": "Modify All Data Governance Classification Taxonomies",
|
|
2720
|
+
"type": "boolean"
|
|
2721
|
+
},
|
|
2722
|
+
"MaximumPermissionsModifyAllDataGovPolicies": {
|
|
2723
|
+
"field_label": "Modify All Data Governance Policies",
|
|
2724
|
+
"type": "boolean"
|
|
2725
|
+
},
|
|
2726
|
+
"MaximumPermissionsModifyAllDataGovTagAssign": {
|
|
2727
|
+
"field_label": "Modify All Data Governance Tag Assignments",
|
|
2728
|
+
"type": "boolean"
|
|
2729
|
+
},
|
|
2730
|
+
"MaximumPermissionsModifyAllDataGovTagPropagation": {
|
|
2731
|
+
"field_label": "Enable editing the propagation of tags in the Data Governance tab.",
|
|
2732
|
+
"type": "boolean"
|
|
2733
|
+
},
|
|
2734
|
+
"MaximumPermissionsModifyAllDataGovTags": {
|
|
2735
|
+
"field_label": "Modify All Data Governance Tags",
|
|
2736
|
+
"type": "boolean"
|
|
2737
|
+
},
|
|
2738
|
+
"MaximumPermissionsModifyAllDataGovTax": {
|
|
2739
|
+
"field_label": "Modify All Data Governance Tag Taxonomies",
|
|
2740
|
+
"type": "boolean"
|
|
2741
|
+
},
|
|
2742
|
+
"MaximumPermissionsModifyAllPolicyCenterPolicies": {
|
|
2743
|
+
"field_label": "Modify All Policy Center Policies",
|
|
2744
|
+
"type": "boolean"
|
|
2745
|
+
},
|
|
2746
|
+
"MaximumPermissionsModifyDataClassification": {
|
|
2747
|
+
"field_label": "Modify Data Classification",
|
|
2748
|
+
"type": "boolean"
|
|
2749
|
+
},
|
|
2750
|
+
"MaximumPermissionsModifyMetadata": {
|
|
2751
|
+
"field_label": "Modify Metadata Through Metadata API Functions",
|
|
2752
|
+
"type": "boolean"
|
|
2753
|
+
},
|
|
2754
|
+
"MaximumPermissionsModifyTransactionSecurityPolicies": {
|
|
2755
|
+
"field_label": "Modify Transaction Security Policies",
|
|
2756
|
+
"type": "boolean"
|
|
2757
|
+
},
|
|
2758
|
+
"MaximumPermissionsMonitorLoginHistory": {
|
|
2759
|
+
"field_label": "Monitor Login History",
|
|
2760
|
+
"type": "boolean"
|
|
2761
|
+
},
|
|
2762
|
+
"MaximumPermissionsMortgageUserAccess": {
|
|
2763
|
+
"field_label": "User license to access Mortgage in Financial Services Cloud.",
|
|
2764
|
+
"type": "boolean"
|
|
2765
|
+
},
|
|
2766
|
+
"MaximumPermissionsMultiStepSchedulingUser": {
|
|
2767
|
+
"field_label": "Manage Multi-Step Scheduling features",
|
|
2768
|
+
"type": "boolean"
|
|
2769
|
+
},
|
|
2770
|
+
"MaximumPermissionsMyTrailheadBranding": {
|
|
2771
|
+
"field_label": "Manage Site Settings",
|
|
2772
|
+
"type": "boolean"
|
|
2773
|
+
},
|
|
2774
|
+
"MaximumPermissionsMyTrailheadContentAccess": {
|
|
2775
|
+
"field_label": "View All Content",
|
|
2776
|
+
"type": "boolean"
|
|
2777
|
+
},
|
|
2778
|
+
"MaximumPermissionsMyTrailheadContentCreation": {
|
|
2779
|
+
"field_label": "Create Content",
|
|
2780
|
+
"type": "boolean"
|
|
2781
|
+
},
|
|
2782
|
+
"MaximumPermissionsMyTrailheadCustomSteps": {
|
|
2783
|
+
"field_label": "Manage Trailmix Custom Steps",
|
|
2784
|
+
"type": "boolean"
|
|
2785
|
+
},
|
|
2786
|
+
"MaximumPermissionsMyTrailheadManageCollections": {
|
|
2787
|
+
"field_label": "Manage Content Collections",
|
|
2788
|
+
"type": "boolean"
|
|
2789
|
+
},
|
|
2790
|
+
"MaximumPermissionsMyTrailheadPreviewMode": {
|
|
2791
|
+
"field_label": "Preview Release",
|
|
2792
|
+
"type": "boolean"
|
|
2793
|
+
},
|
|
2794
|
+
"MaximumPermissionsMyTrailheadReleaseMgmt": {
|
|
2795
|
+
"field_label": "Manage Releases",
|
|
2796
|
+
"type": "boolean"
|
|
2797
|
+
},
|
|
2798
|
+
"MaximumPermissionsNativeWebviewScrolling": {
|
|
2799
|
+
"field_label": "Salesforce Mobile App: Native scrolling on webviews",
|
|
2800
|
+
"type": "boolean"
|
|
2801
|
+
},
|
|
2802
|
+
"MaximumPermissionsNewReportBuilder": {
|
|
2803
|
+
"field_label": "Report Builder",
|
|
2804
|
+
"type": "boolean"
|
|
2805
|
+
},
|
|
2806
|
+
"MaximumPermissionsObligationAssignee": {
|
|
2807
|
+
"field_label": "Allows the obligation assignees to manage obligations within a parent object. For example, in the Contract object, monitor tasks and compliance status.",
|
|
2808
|
+
"type": "boolean"
|
|
2809
|
+
},
|
|
2810
|
+
"MaximumPermissionsObligationDEAssignee": {
|
|
2811
|
+
"field_label": "Allows the obligation assignees to manage obligations in a parent object on Digital Experience sites. For example, in the Contract object, monitor tasks and compliance status.",
|
|
2812
|
+
"type": "boolean"
|
|
2813
|
+
},
|
|
2814
|
+
"MaximumPermissionsObligationDEManager": {
|
|
2815
|
+
"field_label": "Allows obligation managers to create and define obligations in a parent object on Digital Experience sites. For example, in the Contract object, extract and define obligations, and assign obligations to an assignee.",
|
|
2816
|
+
"type": "boolean"
|
|
2817
|
+
},
|
|
2818
|
+
"MaximumPermissionsObligationDEUser": {
|
|
2819
|
+
"field_label": "Allows users to only view obligations in a parent object on Digital Experience sites. For example, Contract.",
|
|
2820
|
+
"type": "boolean"
|
|
2821
|
+
},
|
|
2822
|
+
"MaximumPermissionsObligationManager": {
|
|
2823
|
+
"field_label": "Allows obligation managers to create and define obligations in a parent object. For example, in the Contract object, extract and define obligations, and assign obligations to an assignee.",
|
|
2824
|
+
"type": "boolean"
|
|
2825
|
+
},
|
|
2826
|
+
"MaximumPermissionsObligationUser": {
|
|
2827
|
+
"field_label": "Allows users to only view obligations.",
|
|
2828
|
+
"type": "boolean"
|
|
2829
|
+
},
|
|
2830
|
+
"MaximumPermissionsOmniAssistiveActionUser": {
|
|
2831
|
+
"field_label": "Use Service Assistive Actions",
|
|
2832
|
+
"type": "boolean"
|
|
2833
|
+
},
|
|
2834
|
+
"MaximumPermissionsOmniStudioDesigner": {
|
|
2835
|
+
"field_label": "Enables admin/developer to create new OS/DR/VIP instances.",
|
|
2836
|
+
"type": "boolean"
|
|
2837
|
+
},
|
|
2838
|
+
"MaximumPermissionsOmniStudioRuntime": {
|
|
2839
|
+
"field_label": "Enables business users to execute OmniScripts, DRs, Cards, etc, in employee facing apps.",
|
|
2840
|
+
"type": "boolean"
|
|
2841
|
+
},
|
|
2842
|
+
"MaximumPermissionsOmniStudioRuntimeCC": {
|
|
2843
|
+
"field_label": "Enables consumers and partners to execute OmniScripts, DRs, Cards through a Community or off platform.",
|
|
2844
|
+
"type": "boolean"
|
|
2845
|
+
},
|
|
2846
|
+
"MaximumPermissionsOmniSupervisorManageQueue": {
|
|
2847
|
+
"field_label": "Manage Queue Memberships",
|
|
2848
|
+
"type": "boolean"
|
|
2849
|
+
},
|
|
2850
|
+
"MaximumPermissionsOmnichannelInventoryBasic": {
|
|
2851
|
+
"field_label": "Omnichannel Inventory Basic",
|
|
2852
|
+
"type": "boolean"
|
|
2853
|
+
},
|
|
2854
|
+
"MaximumPermissionsOmnichannelInventorySync": {
|
|
2855
|
+
"field_label": "Omnichannel Inventory Sync",
|
|
2856
|
+
"type": "boolean"
|
|
2857
|
+
},
|
|
2858
|
+
"MaximumPermissionsOnbrdDataGrpMDDsgnr": {
|
|
2859
|
+
"field_label": "Edit Onboarding Data Object Group Configuration",
|
|
2860
|
+
"type": "boolean"
|
|
2861
|
+
},
|
|
2862
|
+
"MaximumPermissionsOnbrdDataGrpMDReader": {
|
|
2863
|
+
"field_label": "View Onboarding Data Object Group Configuration",
|
|
2864
|
+
"type": "boolean"
|
|
2865
|
+
},
|
|
2866
|
+
"MaximumPermissionsOpportunityScoreUser": {
|
|
2867
|
+
"field_label": "Use Einstein Opportunity Scoring",
|
|
2868
|
+
"type": "boolean"
|
|
2869
|
+
},
|
|
2870
|
+
"MaximumPermissionsOptOutGeoLocationTracking": {
|
|
2871
|
+
"field_label": "Exclude Technician from Geolocation Tracking",
|
|
2872
|
+
"type": "boolean"
|
|
2873
|
+
},
|
|
2874
|
+
"MaximumPermissionsOrderSubmitUser": {
|
|
2875
|
+
"field_label": "Submit Transactions and Fulfillment User",
|
|
2876
|
+
"type": "boolean"
|
|
2877
|
+
},
|
|
2878
|
+
"MaximumPermissionsOrderToBSAPIUser": {
|
|
2879
|
+
"field_label": "Access Order to Billing Schedule API",
|
|
2880
|
+
"type": "boolean"
|
|
2881
|
+
},
|
|
2882
|
+
"MaximumPermissionsOrgPerformanceAccess": {
|
|
2883
|
+
"field_label": "Org Performance Access",
|
|
2884
|
+
"type": "boolean"
|
|
2885
|
+
},
|
|
2886
|
+
"MaximumPermissionsOutboundMigrationToolsUser": {
|
|
2887
|
+
"field_label": "Create and Upload Change Sets",
|
|
2888
|
+
"type": "boolean"
|
|
2889
|
+
},
|
|
2890
|
+
"MaximumPermissionsOverrideForecasts": {
|
|
2891
|
+
"field_label": "Override Forecasts",
|
|
2892
|
+
"type": "boolean"
|
|
2893
|
+
},
|
|
2894
|
+
"MaximumPermissionsPRMChannelMgmtConsoleUser": {
|
|
2895
|
+
"field_label": "View Channel Management Console",
|
|
2896
|
+
"type": "boolean"
|
|
2897
|
+
},
|
|
2898
|
+
"MaximumPermissionsPackaging2": {
|
|
2899
|
+
"field_label": "Create and Update Second-Generation Packages",
|
|
2900
|
+
"type": "boolean"
|
|
2901
|
+
},
|
|
2902
|
+
"MaximumPermissionsPackaging2Delete": {
|
|
2903
|
+
"field_label": "Delete Second-Generation Packages",
|
|
2904
|
+
"type": "boolean"
|
|
2905
|
+
},
|
|
2906
|
+
"MaximumPermissionsPackaging2PromoteVersion": {
|
|
2907
|
+
"field_label": "Promote a package version to released",
|
|
2908
|
+
"type": "boolean"
|
|
2909
|
+
},
|
|
2910
|
+
"MaximumPermissionsParticipateClinicalTrials": {
|
|
2911
|
+
"field_label": "Let external users view and enroll in research studies.",
|
|
2912
|
+
"type": "boolean"
|
|
2913
|
+
},
|
|
2914
|
+
"MaximumPermissionsPasswordNeverExpires": {
|
|
2915
|
+
"field_label": "Password Never Expires",
|
|
2916
|
+
"type": "boolean"
|
|
2917
|
+
},
|
|
2918
|
+
"MaximumPermissionsPaymentSchedulerUser": {
|
|
2919
|
+
"field_label": "Payments Scheduler User",
|
|
2920
|
+
"type": "boolean"
|
|
2921
|
+
},
|
|
2922
|
+
"MaximumPermissionsPaymentsAPIUser": {
|
|
2923
|
+
"field_label": "Payments API User",
|
|
2924
|
+
"type": "boolean"
|
|
2925
|
+
},
|
|
2926
|
+
"MaximumPermissionsPerformanceAnalysisAccess": {
|
|
2927
|
+
"field_label": "Performance Analysis Access",
|
|
2928
|
+
"type": "boolean"
|
|
2929
|
+
},
|
|
2930
|
+
"MaximumPermissionsPersonalizationDecisioningUser": {
|
|
2931
|
+
"field_label": "Provides users access to the Personalization Decisions invocable action.",
|
|
2932
|
+
"type": "boolean"
|
|
2933
|
+
},
|
|
2934
|
+
"MaximumPermissionsPersonalizationIntelUser": {
|
|
2935
|
+
"field_label": "Personalization Intelligence User",
|
|
2936
|
+
"type": "boolean"
|
|
2937
|
+
},
|
|
2938
|
+
"MaximumPermissionsPersonalizationPlatform": {
|
|
2939
|
+
"field_label": "Access Personalization Platform",
|
|
2940
|
+
"type": "boolean"
|
|
2941
|
+
},
|
|
2942
|
+
"MaximumPermissionsPersonalizedFinanceUserAccess": {
|
|
2943
|
+
"field_label": "Data Cloud FlexCards for Financial Services Cloud",
|
|
2944
|
+
"type": "boolean"
|
|
2945
|
+
},
|
|
2946
|
+
"MaximumPermissionsPipelineInspectorUser": {
|
|
2947
|
+
"field_label": "Pipeline Inspection User",
|
|
2948
|
+
"type": "boolean"
|
|
2949
|
+
},
|
|
2950
|
+
"MaximumPermissionsPlaceSupplementalTransactions": {
|
|
2951
|
+
"field_label": "Place Supplemental Transactions",
|
|
2952
|
+
"type": "boolean"
|
|
2953
|
+
},
|
|
2954
|
+
"MaximumPermissionsPortalSuperUser": {
|
|
2955
|
+
"field_label": "Portal Super User",
|
|
2956
|
+
"type": "boolean"
|
|
2957
|
+
},
|
|
2958
|
+
"MaximumPermissionsPreventClassicExperience": {
|
|
2959
|
+
"field_label": "Hide Option to Switch to Salesforce Classic",
|
|
2960
|
+
"type": "boolean"
|
|
2961
|
+
},
|
|
2962
|
+
"MaximumPermissionsPreviewExperienceUser": {
|
|
2963
|
+
"field_label": "Allow access to Preview Experience",
|
|
2964
|
+
"type": "boolean"
|
|
2965
|
+
},
|
|
2966
|
+
"MaximumPermissionsPreviewTestSendEmail": {
|
|
2967
|
+
"field_label": "Send Test Email",
|
|
2968
|
+
"type": "boolean"
|
|
2969
|
+
},
|
|
2970
|
+
"MaximumPermissionsPricingDiscovery": {
|
|
2971
|
+
"field_label": "Provides create, read, and edit access to all pricing discovery objects and features.",
|
|
2972
|
+
"type": "boolean"
|
|
2973
|
+
},
|
|
2974
|
+
"MaximumPermissionsPrismBackofficeUser": {
|
|
2975
|
+
"field_label": "Prism Backoffice User",
|
|
2976
|
+
"type": "boolean"
|
|
2977
|
+
},
|
|
2978
|
+
"MaximumPermissionsPrismPlaygroundUser": {
|
|
2979
|
+
"field_label": "Prism Playground User",
|
|
2980
|
+
"type": "boolean"
|
|
2981
|
+
},
|
|
2982
|
+
"MaximumPermissionsPrivacyDataAccess": {
|
|
2983
|
+
"field_label": "Allow user to access privacy data",
|
|
2984
|
+
"type": "boolean"
|
|
2985
|
+
},
|
|
2986
|
+
"MaximumPermissionsPrmEnhancedPortalUser": {
|
|
2987
|
+
"field_label": "PRM Enhanced Portal User",
|
|
2988
|
+
"type": "boolean"
|
|
2989
|
+
},
|
|
2990
|
+
"MaximumPermissionsPrmExtIntPrtnrAdminUser": {
|
|
2991
|
+
"field_label": "Set Up Partner Connect for a Partner Org",
|
|
2992
|
+
"type": "boolean"
|
|
2993
|
+
},
|
|
2994
|
+
"MaximumPermissionsProductAdmin": {
|
|
2995
|
+
"field_label": "Product Admin",
|
|
2996
|
+
"type": "boolean"
|
|
2997
|
+
},
|
|
2998
|
+
"MaximumPermissionsProductCatalogApiAccess": {
|
|
2999
|
+
"field_label": "View Product Catalog via API",
|
|
3000
|
+
"type": "boolean"
|
|
3001
|
+
},
|
|
3002
|
+
"MaximumPermissionsProductCatalogMgmtApiCCAccess": {
|
|
3003
|
+
"field_label": "View Product Catalog via API for Customer Community User",
|
|
3004
|
+
"type": "boolean"
|
|
3005
|
+
},
|
|
3006
|
+
"MaximumPermissionsProductCatalogMgmtApiPCAccess": {
|
|
3007
|
+
"field_label": "View Product Catalog via API for Partner Community User",
|
|
3008
|
+
"type": "boolean"
|
|
3009
|
+
},
|
|
3010
|
+
"MaximumPermissionsProductCatalogMgmtBaseCCUser": {
|
|
3011
|
+
"field_label": "View Product Catalog for Customer Community User",
|
|
3012
|
+
"type": "boolean"
|
|
3013
|
+
},
|
|
3014
|
+
"MaximumPermissionsProductCatalogMgmtBasePCUser": {
|
|
3015
|
+
"field_label": "View Product Catalog for Partner Community User",
|
|
3016
|
+
"type": "boolean"
|
|
3017
|
+
},
|
|
3018
|
+
"MaximumPermissionsProductConfigurationRuleAccess": {
|
|
3019
|
+
"field_label": "Manage Configurator with Business Rules Engine",
|
|
3020
|
+
"type": "boolean"
|
|
3021
|
+
},
|
|
3022
|
+
"MaximumPermissionsProductConfiguratorUser": {
|
|
3023
|
+
"field_label": "Product Configurator",
|
|
3024
|
+
"type": "boolean"
|
|
3025
|
+
},
|
|
3026
|
+
"MaximumPermissionsProductDiscoveryUser": {
|
|
3027
|
+
"field_label": "Allow access to Product Discovery",
|
|
3028
|
+
"type": "boolean"
|
|
3029
|
+
},
|
|
3030
|
+
"MaximumPermissionsProposeMajorIncidents": {
|
|
3031
|
+
"field_label": "Propose Major Incidents",
|
|
3032
|
+
"type": "boolean"
|
|
3033
|
+
},
|
|
3034
|
+
"MaximumPermissionsPublicSectorPlatformUserAccess": {
|
|
3035
|
+
"field_label": "Grant users access to Public Sector features.",
|
|
3036
|
+
"type": "boolean"
|
|
3037
|
+
},
|
|
3038
|
+
"MaximumPermissionsPublishArticles": {
|
|
3039
|
+
"field_label": "Publish Articles",
|
|
3040
|
+
"type": "boolean"
|
|
3041
|
+
},
|
|
3042
|
+
"MaximumPermissionsPublishPackaging": {
|
|
3043
|
+
"field_label": "Upload AppExchange Packages",
|
|
3044
|
+
"type": "boolean"
|
|
3045
|
+
},
|
|
3046
|
+
"MaximumPermissionsPublishTranslation": {
|
|
3047
|
+
"field_label": "Article Translation - Publish",
|
|
3048
|
+
"type": "boolean"
|
|
3049
|
+
},
|
|
3050
|
+
"MaximumPermissionsPulseRuntimeUser": {
|
|
3051
|
+
"field_label": "Pulse Runtime user",
|
|
3052
|
+
"type": "boolean"
|
|
3053
|
+
},
|
|
3054
|
+
"MaximumPermissionsQrCodeGeneratorMobilePublisherPlayground": {
|
|
3055
|
+
"field_label": "Mobile Publisher QR Code Generator Playground User",
|
|
3056
|
+
"type": "boolean"
|
|
3057
|
+
},
|
|
3058
|
+
"MaximumPermissionsQueryAllFiles": {
|
|
3059
|
+
"field_label": "Query All Files",
|
|
3060
|
+
"type": "boolean"
|
|
3061
|
+
},
|
|
3062
|
+
"MaximumPermissionsQueryNonVetoedFiles": {
|
|
3063
|
+
"field_label": "Query Non Vetoed Files",
|
|
3064
|
+
"type": "boolean"
|
|
3065
|
+
},
|
|
3066
|
+
"MaximumPermissionsQuipMetricsAccess": {
|
|
3067
|
+
"field_label": "Quip Metrics",
|
|
3068
|
+
"type": "boolean"
|
|
3069
|
+
},
|
|
3070
|
+
"MaximumPermissionsQuipUserEngagementMetrics": {
|
|
3071
|
+
"field_label": "Quip User Engagement Metrics",
|
|
3072
|
+
"type": "boolean"
|
|
3073
|
+
},
|
|
3074
|
+
"MaximumPermissionsQuoteToOrderUser": {
|
|
3075
|
+
"field_label": "Create Orders from Quotes",
|
|
3076
|
+
"type": "boolean"
|
|
3077
|
+
},
|
|
3078
|
+
"MaximumPermissionsRatingAdmin": {
|
|
3079
|
+
"field_label": "Rate Management: Admin user",
|
|
3080
|
+
"type": "boolean"
|
|
3081
|
+
},
|
|
3082
|
+
"MaximumPermissionsRatingDesignTimeUser": {
|
|
3083
|
+
"field_label": "Rate Management: Design time user",
|
|
3084
|
+
"type": "boolean"
|
|
3085
|
+
},
|
|
3086
|
+
"MaximumPermissionsRatingManager": {
|
|
3087
|
+
"field_label": "Rate Management: Manager",
|
|
3088
|
+
"type": "boolean"
|
|
3089
|
+
},
|
|
3090
|
+
"MaximumPermissionsRatingRunTimeUser": {
|
|
3091
|
+
"field_label": "Rate Management: Run time user",
|
|
3092
|
+
"type": "boolean"
|
|
3093
|
+
},
|
|
3094
|
+
"MaximumPermissionsReadConfigurationItemInformation": {
|
|
3095
|
+
"field_label": "Allows user to read CMDB associations details.",
|
|
3096
|
+
"type": "boolean"
|
|
3097
|
+
},
|
|
3098
|
+
"MaximumPermissionsReassignOrchestrationWorkItems": {
|
|
3099
|
+
"field_label": "Reassign Orchestration Work Items",
|
|
3100
|
+
"type": "boolean"
|
|
3101
|
+
},
|
|
3102
|
+
"MaximumPermissionsRebookWithAgentforceFromDispatchConsole": {
|
|
3103
|
+
"field_label": "Rebook with Agentforce from Dispatch Console",
|
|
3104
|
+
"type": "boolean"
|
|
3105
|
+
},
|
|
3106
|
+
"MaximumPermissionsRecommendedActions": {
|
|
3107
|
+
"field_label": "Recommended Actions",
|
|
3108
|
+
"type": "boolean"
|
|
3109
|
+
},
|
|
3110
|
+
"MaximumPermissionsRecordAggregationAccess": {
|
|
3111
|
+
"field_label": "Record Aggregation Access",
|
|
3112
|
+
"type": "boolean"
|
|
3113
|
+
},
|
|
3114
|
+
"MaximumPermissionsRecordVisibilityAPI": {
|
|
3115
|
+
"field_label": "Enable RecordVisibility API",
|
|
3116
|
+
"type": "boolean"
|
|
3117
|
+
},
|
|
3118
|
+
"MaximumPermissionsRecoveryAPIUser": {
|
|
3119
|
+
"field_label": "Access Credit Memo Recovery API",
|
|
3120
|
+
"type": "boolean"
|
|
3121
|
+
},
|
|
3122
|
+
"MaximumPermissionsRefundPayments": {
|
|
3123
|
+
"field_label": "Refund Payments",
|
|
3124
|
+
"type": "boolean"
|
|
3125
|
+
},
|
|
3126
|
+
"MaximumPermissionsRegrelloUser": {
|
|
3127
|
+
"field_label": "Provides user permission to access the Regrello App",
|
|
3128
|
+
"type": "boolean"
|
|
3129
|
+
},
|
|
3130
|
+
"MaximumPermissionsRemoteMediaVirtualDesktop": {
|
|
3131
|
+
"field_label": "Remote Media for Virtual Desktop",
|
|
3132
|
+
"type": "boolean"
|
|
3133
|
+
},
|
|
3134
|
+
"MaximumPermissionsRemoveDirectMessageMembers": {
|
|
3135
|
+
"field_label": "Remove People from Direct Messages",
|
|
3136
|
+
"type": "boolean"
|
|
3137
|
+
},
|
|
3138
|
+
"MaximumPermissionsRenewAssets": {
|
|
3139
|
+
"field_label": "Renew Assets",
|
|
3140
|
+
"type": "boolean"
|
|
3141
|
+
},
|
|
3142
|
+
"MaximumPermissionsReopenProblems": {
|
|
3143
|
+
"field_label": "Reopen Problems",
|
|
3144
|
+
"type": "boolean"
|
|
3145
|
+
},
|
|
3146
|
+
"MaximumPermissionsReplyRecommendationUser": {
|
|
3147
|
+
"field_label": "View and Act on Einstein Reply Recommendations",
|
|
3148
|
+
"type": "boolean"
|
|
3149
|
+
},
|
|
3150
|
+
"MaximumPermissionsResetPasswords": {
|
|
3151
|
+
"field_label": "Reset User Passwords and Unlock Users",
|
|
3152
|
+
"type": "boolean"
|
|
3153
|
+
},
|
|
3154
|
+
"MaximumPermissionsResolveBillingServiceRequestsAccess": {
|
|
3155
|
+
"field_label": "Resolve Service Requests",
|
|
3156
|
+
"type": "boolean"
|
|
3157
|
+
},
|
|
3158
|
+
"MaximumPermissionsResolveChgRqstAssoc": {
|
|
3159
|
+
"field_label": "Resolve Change Request Associations",
|
|
3160
|
+
"type": "boolean"
|
|
3161
|
+
},
|
|
3162
|
+
"MaximumPermissionsResolveIncAssoc": {
|
|
3163
|
+
"field_label": "Resolve Incident Associations",
|
|
3164
|
+
"type": "boolean"
|
|
3165
|
+
},
|
|
3166
|
+
"MaximumPermissionsResolveProbAssoc": {
|
|
3167
|
+
"field_label": "Resolve Problem Associations",
|
|
3168
|
+
"type": "boolean"
|
|
3169
|
+
},
|
|
3170
|
+
"MaximumPermissionsRespondToSocialInsuranceClaims": {
|
|
3171
|
+
"field_label": "Respond to Social Insurance Claims",
|
|
3172
|
+
"type": "boolean"
|
|
3173
|
+
},
|
|
3174
|
+
"MaximumPermissionsRevenueIntelligenceUser": {
|
|
3175
|
+
"field_label": "Revenue Intelligence User",
|
|
3176
|
+
"type": "boolean"
|
|
3177
|
+
},
|
|
3178
|
+
"MaximumPermissionsReviewBuyingCommittee": {
|
|
3179
|
+
"field_label": "Allow access to Review Buying Committee in Einstein Copilot",
|
|
3180
|
+
"type": "boolean"
|
|
3181
|
+
},
|
|
3182
|
+
"MaximumPermissionsReviewMyDay": {
|
|
3183
|
+
"field_label": "Review My Day",
|
|
3184
|
+
"type": "boolean"
|
|
3185
|
+
},
|
|
3186
|
+
"MaximumPermissionsRlmBillingAccess": {
|
|
3187
|
+
"field_label": "Manage Billing Access",
|
|
3188
|
+
"type": "boolean"
|
|
3189
|
+
},
|
|
3190
|
+
"MaximumPermissionsRunCatalogItemsOnBehalfOf": {
|
|
3191
|
+
"field_label": "Run Catalog Items As User",
|
|
3192
|
+
"type": "boolean"
|
|
3193
|
+
},
|
|
3194
|
+
"MaximumPermissionsRunContextRule": {
|
|
3195
|
+
"field_label": "Run Context Rules",
|
|
3196
|
+
"type": "boolean"
|
|
3197
|
+
},
|
|
3198
|
+
"MaximumPermissionsRunDPEDefForNextGenBilling": {
|
|
3199
|
+
"field_label": "Run Data Processing Engine Definitions for Billing",
|
|
3200
|
+
"type": "boolean"
|
|
3201
|
+
},
|
|
3202
|
+
"MaximumPermissionsRunDecisionMatrix": {
|
|
3203
|
+
"field_label": "Run Decision Matrices",
|
|
3204
|
+
"type": "boolean"
|
|
3205
|
+
},
|
|
3206
|
+
"MaximumPermissionsRunExpressionSet": {
|
|
3207
|
+
"field_label": "Run Expression Sets",
|
|
3208
|
+
"type": "boolean"
|
|
3209
|
+
},
|
|
3210
|
+
"MaximumPermissionsRunFlow": {
|
|
3211
|
+
"field_label": "Run Flows",
|
|
3212
|
+
"type": "boolean"
|
|
3213
|
+
},
|
|
3214
|
+
"MaximumPermissionsRunGlobalOptimization": {
|
|
3215
|
+
"field_label": "Run Global Optimization",
|
|
3216
|
+
"type": "boolean"
|
|
3217
|
+
},
|
|
3218
|
+
"MaximumPermissionsRunInDayOptimization": {
|
|
3219
|
+
"field_label": "Run In-Day Optimization",
|
|
3220
|
+
"type": "boolean"
|
|
3221
|
+
},
|
|
3222
|
+
"MaximumPermissionsRunReports": {
|
|
3223
|
+
"field_label": "Run Reports",
|
|
3224
|
+
"type": "boolean"
|
|
3225
|
+
},
|
|
3226
|
+
"MaximumPermissionsRunResourceScheduleOptimization": {
|
|
3227
|
+
"field_label": "Run Resource Schedule Optimization",
|
|
3228
|
+
"type": "boolean"
|
|
3229
|
+
},
|
|
3230
|
+
"MaximumPermissionsRunTrialMgmtRandomization": {
|
|
3231
|
+
"field_label": "Run Trial Management Randomization",
|
|
3232
|
+
"type": "boolean"
|
|
3233
|
+
},
|
|
3234
|
+
"MaximumPermissionsSCEViewAllData": {
|
|
3235
|
+
"field_label": "View Opportunity Scoring Model Factors",
|
|
3236
|
+
"type": "boolean"
|
|
3237
|
+
},
|
|
3238
|
+
"MaximumPermissionsSCVVoicemailDropUser": {
|
|
3239
|
+
"field_label": "Use Voicemail Drops",
|
|
3240
|
+
"type": "boolean"
|
|
3241
|
+
},
|
|
3242
|
+
"MaximumPermissionsSCVVoicemailGreetingUser": {
|
|
3243
|
+
"field_label": "Manage Voicemail greetings",
|
|
3244
|
+
"type": "boolean"
|
|
3245
|
+
},
|
|
3246
|
+
"MaximumPermissionsSalesAnalyticsUser": {
|
|
3247
|
+
"field_label": "Access Sales Cloud Analytics Templates and Apps",
|
|
3248
|
+
"type": "boolean"
|
|
3249
|
+
},
|
|
3250
|
+
"MaximumPermissionsSalesConsole": {
|
|
3251
|
+
"field_label": "Sales Console",
|
|
3252
|
+
"type": "boolean"
|
|
3253
|
+
},
|
|
3254
|
+
"MaximumPermissionsSalesInsightsUser": {
|
|
3255
|
+
"field_label": "Sales Insights Admin",
|
|
3256
|
+
"type": "boolean"
|
|
3257
|
+
},
|
|
3258
|
+
"MaximumPermissionsSalesManagementAutonomousUser": {
|
|
3259
|
+
"field_label": "Sales Management Autonomous User",
|
|
3260
|
+
"type": "boolean"
|
|
3261
|
+
},
|
|
3262
|
+
"MaximumPermissionsSalesMeetingFollowUpEmail": {
|
|
3263
|
+
"field_label": "Sales Meeting Follow-Up Emails",
|
|
3264
|
+
"type": "boolean"
|
|
3265
|
+
},
|
|
3266
|
+
"MaximumPermissionsSalesforceForecastingUser": {
|
|
3267
|
+
"field_label": "Forecast on Any Business Model",
|
|
3268
|
+
"type": "boolean"
|
|
3269
|
+
},
|
|
3270
|
+
"MaximumPermissionsSalesforceIQInbox": {
|
|
3271
|
+
"field_label": "Use Inbox",
|
|
3272
|
+
"type": "boolean"
|
|
3273
|
+
},
|
|
3274
|
+
"MaximumPermissionsSalesforceIQInternal": {
|
|
3275
|
+
"field_label": "Allows the Cloud Integration User to perform SalesforceIQ internal operations",
|
|
3276
|
+
"type": "boolean"
|
|
3277
|
+
},
|
|
3278
|
+
"MaximumPermissionsSandboxTestingInCommunityApp": {
|
|
3279
|
+
"field_label": "Test Sandboxes in Mobile Publisher for Experience Cloud",
|
|
3280
|
+
"type": "boolean"
|
|
3281
|
+
},
|
|
3282
|
+
"MaximumPermissionsScheduleJob": {
|
|
3283
|
+
"field_label": "Schedule Dashboards",
|
|
3284
|
+
"type": "boolean"
|
|
3285
|
+
},
|
|
3286
|
+
"MaximumPermissionsScheduleReports": {
|
|
3287
|
+
"field_label": "Schedule Reports",
|
|
3288
|
+
"type": "boolean"
|
|
3289
|
+
},
|
|
3290
|
+
"MaximumPermissionsScoringFrameworkAdmin": {
|
|
3291
|
+
"field_label": "Scoring Framework Admin",
|
|
3292
|
+
"type": "boolean"
|
|
3293
|
+
},
|
|
3294
|
+
"MaximumPermissionsScoringFrameworkUser": {
|
|
3295
|
+
"field_label": "Scoring Framework User",
|
|
3296
|
+
"type": "boolean"
|
|
3297
|
+
},
|
|
3298
|
+
"MaximumPermissionsSegmentIntelligenceUser": {
|
|
3299
|
+
"field_label": "Segment Intelligence User",
|
|
3300
|
+
"type": "boolean"
|
|
3301
|
+
},
|
|
3302
|
+
"MaximumPermissionsSelectFilesFromSalesforce": {
|
|
3303
|
+
"field_label": "Select Files from Salesforce",
|
|
3304
|
+
"type": "boolean"
|
|
3305
|
+
},
|
|
3306
|
+
"MaximumPermissionsSendAnnouncementEmails": {
|
|
3307
|
+
"field_label": "Send announcement emails",
|
|
3308
|
+
"type": "boolean"
|
|
3309
|
+
},
|
|
3310
|
+
"MaximumPermissionsSendCustomNotifications": {
|
|
3311
|
+
"field_label": "Send Custom Notifications",
|
|
3312
|
+
"type": "boolean"
|
|
3313
|
+
},
|
|
3314
|
+
"MaximumPermissionsSendEmail": {
|
|
3315
|
+
"field_label": "Send Unified Messaging Email",
|
|
3316
|
+
"type": "boolean"
|
|
3317
|
+
},
|
|
3318
|
+
"MaximumPermissionsSendExternalEmailAvailable": {
|
|
3319
|
+
"field_label": "Send Email through External Email Service",
|
|
3320
|
+
"type": "boolean"
|
|
3321
|
+
},
|
|
3322
|
+
"MaximumPermissionsSendMeetingRequest": {
|
|
3323
|
+
"field_label": "Permission for Send Meeting Request.",
|
|
3324
|
+
"type": "boolean"
|
|
3325
|
+
},
|
|
3326
|
+
"MaximumPermissionsSendSitRequests": {
|
|
3327
|
+
"field_label": "Send Stay-in-Touch Requests",
|
|
3328
|
+
"type": "boolean"
|
|
3329
|
+
},
|
|
3330
|
+
"MaximumPermissionsSequenceNumberingSetUp": {
|
|
3331
|
+
"field_label": "Turn on Sequential Numbering",
|
|
3332
|
+
"type": "boolean"
|
|
3333
|
+
},
|
|
3334
|
+
"MaximumPermissionsServiceECIUser": {
|
|
3335
|
+
"field_label": "Use Conversation Insights for Service",
|
|
3336
|
+
"type": "boolean"
|
|
3337
|
+
},
|
|
3338
|
+
"MaximumPermissionsServiceExcellencePlatformUser": {
|
|
3339
|
+
"field_label": "Service Excellence Platform User",
|
|
3340
|
+
"type": "boolean"
|
|
3341
|
+
},
|
|
3342
|
+
"MaximumPermissionsServicePlanTranslation": {
|
|
3343
|
+
"field_label": "View Translated Service Plans",
|
|
3344
|
+
"type": "boolean"
|
|
3345
|
+
},
|
|
3346
|
+
"MaximumPermissionsServicePlannerUser": {
|
|
3347
|
+
"field_label": "Draft Service Plans with Generative AI",
|
|
3348
|
+
"type": "boolean"
|
|
3349
|
+
},
|
|
3350
|
+
"MaximumPermissionsSessionScopeContext": {
|
|
3351
|
+
"field_label": "Provides access to create session scope context.",
|
|
3352
|
+
"type": "boolean"
|
|
3353
|
+
},
|
|
3354
|
+
"MaximumPermissionsSetAdvancedOptimizationFilters": {
|
|
3355
|
+
"field_label": "Set Advanced Optimization Filters",
|
|
3356
|
+
"type": "boolean"
|
|
3357
|
+
},
|
|
3358
|
+
"MaximumPermissionsSetupAgentBuilder": {
|
|
3359
|
+
"field_label": "Legacy placeholder for Setup Agent Builder, do NOT use it or add any dependencies to it.",
|
|
3360
|
+
"type": "boolean"
|
|
3361
|
+
},
|
|
3362
|
+
"MaximumPermissionsSetupAgentUser": {
|
|
3363
|
+
"field_label": "Legacy placeholder for Setup Agent User, do NOT use it or add any dependencies to it.",
|
|
3364
|
+
"type": "boolean"
|
|
3365
|
+
},
|
|
3366
|
+
"MaximumPermissionsShareFilesWithNetworks": {
|
|
3367
|
+
"field_label": "Share Files with People in Experience Cloud sites",
|
|
3368
|
+
"type": "boolean"
|
|
3369
|
+
},
|
|
3370
|
+
"MaximumPermissionsShareInternalArticles": {
|
|
3371
|
+
"field_label": "Share internal Knowledge articles externally",
|
|
3372
|
+
"type": "boolean"
|
|
3373
|
+
},
|
|
3374
|
+
"MaximumPermissionsShareSmartDataDiscoveryStory": {
|
|
3375
|
+
"field_label": "Share Einstein Discovery Models",
|
|
3376
|
+
"type": "boolean"
|
|
3377
|
+
},
|
|
3378
|
+
"MaximumPermissionsShowCompanyNameAsUserBadge": {
|
|
3379
|
+
"field_label": "Show Company Name as Site Role",
|
|
3380
|
+
"type": "boolean"
|
|
3381
|
+
},
|
|
3382
|
+
"MaximumPermissionsShowExplanationsForCandidateResults": {
|
|
3383
|
+
"field_label": "Show Explanations for Candidate Results",
|
|
3384
|
+
"type": "boolean"
|
|
3385
|
+
},
|
|
3386
|
+
"MaximumPermissionsShowPlannedRoute": {
|
|
3387
|
+
"field_label": "Show Planned Route",
|
|
3388
|
+
"type": "boolean"
|
|
3389
|
+
},
|
|
3390
|
+
"MaximumPermissionsShowPreWorkBriefGA": {
|
|
3391
|
+
"field_label": "Show Pre-Work Brief",
|
|
3392
|
+
"type": "boolean"
|
|
3393
|
+
},
|
|
3394
|
+
"MaximumPermissionsSimpleCsvDataImportUser": {
|
|
3395
|
+
"field_label": "Basic Csv Data Import User Permission",
|
|
3396
|
+
"type": "boolean"
|
|
3397
|
+
},
|
|
3398
|
+
"MaximumPermissionsSkipIdentityConfirmation": {
|
|
3399
|
+
"field_label": "Skip Device Activation at Login",
|
|
3400
|
+
"type": "boolean"
|
|
3401
|
+
},
|
|
3402
|
+
"MaximumPermissionsSlackCibUser": {
|
|
3403
|
+
"field_label": "Financial Services Cloud for Slack User",
|
|
3404
|
+
"type": "boolean"
|
|
3405
|
+
},
|
|
3406
|
+
"MaximumPermissionsSlackFromTableau": {
|
|
3407
|
+
"field_label": "Slack from Tableau Next",
|
|
3408
|
+
"type": "boolean"
|
|
3409
|
+
},
|
|
3410
|
+
"MaximumPermissionsSlackRecordChannels": {
|
|
3411
|
+
"field_label": "Access Slack Record Channels",
|
|
3412
|
+
"type": "boolean"
|
|
3413
|
+
},
|
|
3414
|
+
"MaximumPermissionsSmartDataDiscoveryForCommunity": {
|
|
3415
|
+
"field_label": "Smart Data Discovery for experience users",
|
|
3416
|
+
"type": "boolean"
|
|
3417
|
+
},
|
|
3418
|
+
"MaximumPermissionsSolutionImport": {
|
|
3419
|
+
"field_label": "Import Solutions",
|
|
3420
|
+
"type": "boolean"
|
|
3421
|
+
},
|
|
3422
|
+
"MaximumPermissionsSonicConsumer": {
|
|
3423
|
+
"field_label": "Use Data Pipeline Base",
|
|
3424
|
+
"type": "boolean"
|
|
3425
|
+
},
|
|
3426
|
+
"MaximumPermissionsStageManagementDesignUser": {
|
|
3427
|
+
"field_label": "Stage Management Designer User",
|
|
3428
|
+
"type": "boolean"
|
|
3429
|
+
},
|
|
3430
|
+
"MaximumPermissionsStageManagementUser": {
|
|
3431
|
+
"field_label": "Stage Management User",
|
|
3432
|
+
"type": "boolean"
|
|
3433
|
+
},
|
|
3434
|
+
"MaximumPermissionsStandaloneTxToBSAPIApiUser": {
|
|
3435
|
+
"field_label": "Create Billing Schedules for Standalone Transactions",
|
|
3436
|
+
"type": "boolean"
|
|
3437
|
+
},
|
|
3438
|
+
"MaximumPermissionsStdAutomaticActivityCapture": {
|
|
3439
|
+
"field_label": "Use Einstein Activity Capture Standard",
|
|
3440
|
+
"type": "boolean"
|
|
3441
|
+
},
|
|
3442
|
+
"MaximumPermissionsStoryOnDSWithPredicate": {
|
|
3443
|
+
"field_label": "Ignore predicate when creating model from dataset",
|
|
3444
|
+
"type": "boolean"
|
|
3445
|
+
},
|
|
3446
|
+
"MaximumPermissionsStudentCommunityPages": {
|
|
3447
|
+
"field_label": "Student Community Pages",
|
|
3448
|
+
"type": "boolean"
|
|
3449
|
+
},
|
|
3450
|
+
"MaximumPermissionsSubmitForTranslation": {
|
|
3451
|
+
"field_label": "Article Translation - Submit for Translation",
|
|
3452
|
+
"type": "boolean"
|
|
3453
|
+
},
|
|
3454
|
+
"MaximumPermissionsSubmitMacrosAllowed": {
|
|
3455
|
+
"field_label": "Manage Macros Users Can't Undo",
|
|
3456
|
+
"type": "boolean"
|
|
3457
|
+
},
|
|
3458
|
+
"MaximumPermissionsSubscrMgmtPymtSchedAutomation": {
|
|
3459
|
+
"field_label": "Automate Payment Scheduling",
|
|
3460
|
+
"type": "boolean"
|
|
3461
|
+
},
|
|
3462
|
+
"MaximumPermissionsSubscrMgmtRefundAutomation": {
|
|
3463
|
+
"field_label": "Automate Refunds",
|
|
3464
|
+
"type": "boolean"
|
|
3465
|
+
},
|
|
3466
|
+
"MaximumPermissionsSubscribeDashboardRolesGrps": {
|
|
3467
|
+
"field_label": "Subscribe to Dashboards: Send to Groups and Roles",
|
|
3468
|
+
"type": "boolean"
|
|
3469
|
+
},
|
|
3470
|
+
"MaximumPermissionsSubscribeDashboardToOtherUsers": {
|
|
3471
|
+
"field_label": "Subscribe to Dashboards: Add Recipients",
|
|
3472
|
+
"type": "boolean"
|
|
3473
|
+
},
|
|
3474
|
+
"MaximumPermissionsSubscribeReportRolesGrps": {
|
|
3475
|
+
"field_label": "Subscribe to Reports: Send to Groups and Roles",
|
|
3476
|
+
"type": "boolean"
|
|
3477
|
+
},
|
|
3478
|
+
"MaximumPermissionsSubscribeReportToOtherUsers": {
|
|
3479
|
+
"field_label": "Subscribe to Reports: Add Recipients",
|
|
3480
|
+
"type": "boolean"
|
|
3481
|
+
},
|
|
3482
|
+
"MaximumPermissionsSubscribeReportsRunAsUser": {
|
|
3483
|
+
"field_label": "Subscribe to Reports: Set Running User",
|
|
3484
|
+
"type": "boolean"
|
|
3485
|
+
},
|
|
3486
|
+
"MaximumPermissionsSubscribeToLightningDashboards": {
|
|
3487
|
+
"field_label": "Subscribe to Dashboards",
|
|
3488
|
+
"type": "boolean"
|
|
3489
|
+
},
|
|
3490
|
+
"MaximumPermissionsSubscribeToLightningReports": {
|
|
3491
|
+
"field_label": "Subscribe to Reports",
|
|
3492
|
+
"type": "boolean"
|
|
3493
|
+
},
|
|
3494
|
+
"MaximumPermissionsSummarizationUser": {
|
|
3495
|
+
"field_label": "View, Edit, and Save Work Summaries",
|
|
3496
|
+
"type": "boolean"
|
|
3497
|
+
},
|
|
3498
|
+
"MaximumPermissionsSuspendResumeBilling": {
|
|
3499
|
+
"field_label": "Suspend and Resume Billing",
|
|
3500
|
+
"type": "boolean"
|
|
3501
|
+
},
|
|
3502
|
+
"MaximumPermissionsSvcInnovationsEinsteinFeatr": {
|
|
3503
|
+
"field_label": "Summarize record details using Einstein generative AI.",
|
|
3504
|
+
"type": "boolean"
|
|
3505
|
+
},
|
|
3506
|
+
"MaximumPermissionsTableauCreateDashboard": {
|
|
3507
|
+
"field_label": "Access to create Tableau Next dashboards",
|
|
3508
|
+
"type": "boolean"
|
|
3509
|
+
},
|
|
3510
|
+
"MaximumPermissionsTableauCreateVisualization": {
|
|
3511
|
+
"field_label": "Access to create Tableau Next visualizations",
|
|
3512
|
+
"type": "boolean"
|
|
3513
|
+
},
|
|
3514
|
+
"MaximumPermissionsTableauCreateWorkspace": {
|
|
3515
|
+
"field_label": "Access to create Tableau Next workspaces",
|
|
3516
|
+
"type": "boolean"
|
|
3517
|
+
},
|
|
3518
|
+
"MaximumPermissionsTableauMetricCards": {
|
|
3519
|
+
"field_label": "View Tableau Next Metrics",
|
|
3520
|
+
"type": "boolean"
|
|
3521
|
+
},
|
|
3522
|
+
"MaximumPermissionsTableauShareSnapshot": {
|
|
3523
|
+
"field_label": "Tableau Next Share Snapshot",
|
|
3524
|
+
"type": "boolean"
|
|
3525
|
+
},
|
|
3526
|
+
"MaximumPermissionsTableauViewDashboard": {
|
|
3527
|
+
"field_label": "Access to view Tableau Next dashboards",
|
|
3528
|
+
"type": "boolean"
|
|
3529
|
+
},
|
|
3530
|
+
"MaximumPermissionsTableauViewVisualization": {
|
|
3531
|
+
"field_label": "Access to view Tableau Next visualizations",
|
|
3532
|
+
"type": "boolean"
|
|
3533
|
+
},
|
|
3534
|
+
"MaximumPermissionsTableauViewWorkspace": {
|
|
3535
|
+
"field_label": "Access to view Tableau Next workspaces",
|
|
3536
|
+
"type": "boolean"
|
|
3537
|
+
},
|
|
3538
|
+
"MaximumPermissionsTakePartnerProgram": {
|
|
3539
|
+
"field_label": "Take Partner Enablement Programs",
|
|
3540
|
+
"type": "boolean"
|
|
3541
|
+
},
|
|
3542
|
+
"MaximumPermissionsTerritoryOperations": {
|
|
3543
|
+
"field_label": "Administer territory operations",
|
|
3544
|
+
"type": "boolean"
|
|
3545
|
+
},
|
|
3546
|
+
"MaximumPermissionsTraceXdsQueries": {
|
|
3547
|
+
"field_label": "Access Tracer for External Data Sources",
|
|
3548
|
+
"type": "boolean"
|
|
3549
|
+
},
|
|
3550
|
+
"MaximumPermissionsTransactionSecurityExempt": {
|
|
3551
|
+
"field_label": "Exempt from Transaction Security",
|
|
3552
|
+
"type": "boolean"
|
|
3553
|
+
},
|
|
3554
|
+
"MaximumPermissionsTransactionalEmailSend": {
|
|
3555
|
+
"field_label": "Send Non-Commercial Email",
|
|
3556
|
+
"type": "boolean"
|
|
3557
|
+
},
|
|
3558
|
+
"MaximumPermissionsTransferAnyCase": {
|
|
3559
|
+
"field_label": "Transfer Cases",
|
|
3560
|
+
"type": "boolean"
|
|
3561
|
+
},
|
|
3562
|
+
"MaximumPermissionsTransferAnyEntity": {
|
|
3563
|
+
"field_label": "Transfer Record",
|
|
3564
|
+
"type": "boolean"
|
|
3565
|
+
},
|
|
3566
|
+
"MaximumPermissionsTransferAnyLead": {
|
|
3567
|
+
"field_label": "Transfer Leads",
|
|
3568
|
+
"type": "boolean"
|
|
3569
|
+
},
|
|
3570
|
+
"MaximumPermissionsTriggerDataGovAutoTagging": {
|
|
3571
|
+
"field_label": "Enable Data Governance Suggest Tags",
|
|
3572
|
+
"type": "boolean"
|
|
3573
|
+
},
|
|
3574
|
+
"MaximumPermissionsTwoFactorApi": {
|
|
3575
|
+
"field_label": "Multi-Factor Authentication for API Logins",
|
|
3576
|
+
"type": "boolean"
|
|
3577
|
+
},
|
|
3578
|
+
"MaximumPermissionsUnifiedCatalogAdminPerm": {
|
|
3579
|
+
"field_label": "Unified Catalog Admin Perm",
|
|
3580
|
+
"type": "boolean"
|
|
3581
|
+
},
|
|
3582
|
+
"MaximumPermissionsUnifiedCatalogAgentPerm": {
|
|
3583
|
+
"field_label": "Unified Catalog Agent Perm",
|
|
3584
|
+
"type": "boolean"
|
|
3585
|
+
},
|
|
3586
|
+
"MaximumPermissionsUnifiedCatalogDesignGAPerm": {
|
|
3587
|
+
"field_label": "Unified Catalog Design Perm",
|
|
3588
|
+
"type": "boolean"
|
|
3589
|
+
},
|
|
3590
|
+
"MaximumPermissionsUnifiedCatalogRuntimePerm": {
|
|
3591
|
+
"field_label": "Unified Catalog Runtime Perm",
|
|
3592
|
+
"type": "boolean"
|
|
3593
|
+
},
|
|
3594
|
+
"MaximumPermissionsUnifiedEHDViewer": {
|
|
3595
|
+
"field_label": "Viewer access to Unified Engagement History Dashboards",
|
|
3596
|
+
"type": "boolean"
|
|
3597
|
+
},
|
|
3598
|
+
"MaximumPermissionsUnmeteredUserBasedAI": {
|
|
3599
|
+
"field_label": "Unmetered User Based AI",
|
|
3600
|
+
"type": "boolean"
|
|
3601
|
+
},
|
|
3602
|
+
"MaximumPermissionsUpdateReportTypeReferences": {
|
|
3603
|
+
"field_label": "Update Report Type References in Semantic Search",
|
|
3604
|
+
"type": "boolean"
|
|
3605
|
+
},
|
|
3606
|
+
"MaximumPermissionsUsageDesignUser": {
|
|
3607
|
+
"field_label": "Usage: Design User",
|
|
3608
|
+
"type": "boolean"
|
|
3609
|
+
},
|
|
3610
|
+
"MaximumPermissionsUsageManagementDesigner": {
|
|
3611
|
+
"field_label": "Usage Management: Designer",
|
|
3612
|
+
"type": "boolean"
|
|
3613
|
+
},
|
|
3614
|
+
"MaximumPermissionsUsageManagementRunTimeUser": {
|
|
3615
|
+
"field_label": "Usage Management: Run Time User",
|
|
3616
|
+
"type": "boolean"
|
|
3617
|
+
},
|
|
3618
|
+
"MaximumPermissionsUseAddOrderItemSummary": {
|
|
3619
|
+
"field_label": "Add additional items to an order summary.",
|
|
3620
|
+
"type": "boolean"
|
|
3621
|
+
},
|
|
3622
|
+
"MaximumPermissionsUseAddOrderItemSummaryAPIs": {
|
|
3623
|
+
"field_label": "Use Order Management Add Order Item Summary APIs",
|
|
3624
|
+
"type": "boolean"
|
|
3625
|
+
},
|
|
3626
|
+
"MaximumPermissionsUseAdvancedDeliveryEstimationAPI": {
|
|
3627
|
+
"field_label": "Use Advanced Delivery Estimation Service APIs",
|
|
3628
|
+
"type": "boolean"
|
|
3629
|
+
},
|
|
3630
|
+
"MaximumPermissionsUseAgentforceSalesManagement": {
|
|
3631
|
+
"field_label": "Use Agentforce Sales Management",
|
|
3632
|
+
"type": "boolean"
|
|
3633
|
+
},
|
|
3634
|
+
"MaximumPermissionsUseAnyApiAuth": {
|
|
3635
|
+
"field_label": "Use Any API Auth",
|
|
3636
|
+
"type": "boolean"
|
|
3637
|
+
},
|
|
3638
|
+
"MaximumPermissionsUseAssistantDialog": {
|
|
3639
|
+
"field_label": "Instant Actionable Results",
|
|
3640
|
+
"type": "boolean"
|
|
3641
|
+
},
|
|
3642
|
+
"MaximumPermissionsUseBulkUpdtSalesAgrExprcCloud": {
|
|
3643
|
+
"field_label": "Use Bulk Update for Sales Agreements in Experience Cloud",
|
|
3644
|
+
"type": "boolean"
|
|
3645
|
+
},
|
|
3646
|
+
"MaximumPermissionsUseCanCancelInProgressChange": {
|
|
3647
|
+
"field_label": "Can cancel Order Management in-progress async calls.",
|
|
3648
|
+
"type": "boolean"
|
|
3649
|
+
},
|
|
3650
|
+
"MaximumPermissionsUseChannelPartnerInvExprcCloud": {
|
|
3651
|
+
"field_label": "Use Channel Partner Inventory in Experience Cloud",
|
|
3652
|
+
"type": "boolean"
|
|
3653
|
+
},
|
|
3654
|
+
"MaximumPermissionsUseChannelPartnerInventory": {
|
|
3655
|
+
"field_label": "Channel Partner Inventory User",
|
|
3656
|
+
"type": "boolean"
|
|
3657
|
+
},
|
|
3658
|
+
"MaximumPermissionsUseCompliantDataSharing": {
|
|
3659
|
+
"field_label": "Use Compliant Data Sharing",
|
|
3660
|
+
"type": "boolean"
|
|
3661
|
+
},
|
|
3662
|
+
"MaximumPermissionsUseCreateCreditMemo": {
|
|
3663
|
+
"field_label": "Create credit memos.",
|
|
3664
|
+
"type": "boolean"
|
|
3665
|
+
},
|
|
3666
|
+
"MaximumPermissionsUseCreateOrderSummary": {
|
|
3667
|
+
"field_label": "Create order summaries by using APIs.",
|
|
3668
|
+
"type": "boolean"
|
|
3669
|
+
},
|
|
3670
|
+
"MaximumPermissionsUseCustomerExperienceAnalytics": {
|
|
3671
|
+
"field_label": "Use Customer Experience Analytics",
|
|
3672
|
+
"type": "boolean"
|
|
3673
|
+
},
|
|
3674
|
+
"MaximumPermissionsUseDeliveryEstimation": {
|
|
3675
|
+
"field_label": "Use Delivery Estimation Service",
|
|
3676
|
+
"type": "boolean"
|
|
3677
|
+
},
|
|
3678
|
+
"MaximumPermissionsUseDeliveryEstimationAPIs": {
|
|
3679
|
+
"field_label": "Use Delivery Estimation Service APIs",
|
|
3680
|
+
"type": "boolean"
|
|
3681
|
+
},
|
|
3682
|
+
"MaximumPermissionsUseDesignRegChannelManagerUser": {
|
|
3683
|
+
"field_label": "Approve Registered Designs",
|
|
3684
|
+
"type": "boolean"
|
|
3685
|
+
},
|
|
3686
|
+
"MaximumPermissionsUseDesignRegExpCloudUser": {
|
|
3687
|
+
"field_label": "Register Designs",
|
|
3688
|
+
"type": "boolean"
|
|
3689
|
+
},
|
|
3690
|
+
"MaximumPermissionsUseDesignRegReadOnlyUser": {
|
|
3691
|
+
"field_label": "View Registered Designs",
|
|
3692
|
+
"type": "boolean"
|
|
3693
|
+
},
|
|
3694
|
+
"MaximumPermissionsUseDocumentBuilder": {
|
|
3695
|
+
"field_label": "Generate documents using Document Builder templates.",
|
|
3696
|
+
"type": "boolean"
|
|
3697
|
+
},
|
|
3698
|
+
"MaximumPermissionsUseEinsteinSalesCoach": {
|
|
3699
|
+
"field_label": "Use Agentforce Sales Coach",
|
|
3700
|
+
"type": "boolean"
|
|
3701
|
+
},
|
|
3702
|
+
"MaximumPermissionsUseEnsureFunds": {
|
|
3703
|
+
"field_label": "Execute ensure funds.",
|
|
3704
|
+
"type": "boolean"
|
|
3705
|
+
},
|
|
3706
|
+
"MaximumPermissionsUseFulfillmentAPIs": {
|
|
3707
|
+
"field_label": "Use Order Management Fulfillment APIs",
|
|
3708
|
+
"type": "boolean"
|
|
3709
|
+
},
|
|
3710
|
+
"MaximumPermissionsUseInboxSchedulingOnBehalfOf": {
|
|
3711
|
+
"field_label": "Inbox Scheduling Proxy User",
|
|
3712
|
+
"type": "boolean"
|
|
3713
|
+
},
|
|
3714
|
+
"MaximumPermissionsUseLoyaltyAnalytics": {
|
|
3715
|
+
"field_label": "Use Loyalty Analytics",
|
|
3716
|
+
"type": "boolean"
|
|
3717
|
+
},
|
|
3718
|
+
"MaximumPermissionsUseMySearch": {
|
|
3719
|
+
"field_label": "Einstein Search",
|
|
3720
|
+
"type": "boolean"
|
|
3721
|
+
},
|
|
3722
|
+
"MaximumPermissionsUseOMAnalytics": {
|
|
3723
|
+
"field_label": "Use Order Management Analytics",
|
|
3724
|
+
"type": "boolean"
|
|
3725
|
+
},
|
|
3726
|
+
"MaximumPermissionsUseOmnichannelInventoryAPIs": {
|
|
3727
|
+
"field_label": "Use Omnichannel Inventory APIs",
|
|
3728
|
+
"type": "boolean"
|
|
3729
|
+
},
|
|
3730
|
+
"MaximumPermissionsUseOrderEntry": {
|
|
3731
|
+
"field_label": "Use Order Entry",
|
|
3732
|
+
"type": "boolean"
|
|
3733
|
+
},
|
|
3734
|
+
"MaximumPermissionsUseOrderItemSummaryCancel": {
|
|
3735
|
+
"field_label": "Cancel order item summaries.",
|
|
3736
|
+
"type": "boolean"
|
|
3737
|
+
},
|
|
3738
|
+
"MaximumPermissionsUseOrderItemSummaryReturn": {
|
|
3739
|
+
"field_label": "Execute blind returns.",
|
|
3740
|
+
"type": "boolean"
|
|
3741
|
+
},
|
|
3742
|
+
"MaximumPermissionsUseOrderManagementAPIs": {
|
|
3743
|
+
"field_label": "Use Order Management APIs",
|
|
3744
|
+
"type": "boolean"
|
|
3745
|
+
},
|
|
3746
|
+
"MaximumPermissionsUseOrderSummaryCreateAPI": {
|
|
3747
|
+
"field_label": "Create Order Summaries via API",
|
|
3748
|
+
"type": "boolean"
|
|
3749
|
+
},
|
|
3750
|
+
"MaximumPermissionsUsePartnerMessagingChannels": {
|
|
3751
|
+
"field_label": "Message Customers with Bring Your Own Channel",
|
|
3752
|
+
"type": "boolean"
|
|
3753
|
+
},
|
|
3754
|
+
"MaximumPermissionsUsePaymentCreditAPIs": {
|
|
3755
|
+
"field_label": "Use Order Management Payment Credit APIs",
|
|
3756
|
+
"type": "boolean"
|
|
3757
|
+
},
|
|
3758
|
+
"MaximumPermissionsUseQuerySuggestions": {
|
|
3759
|
+
"field_label": "Natural Language Search",
|
|
3760
|
+
"type": "boolean"
|
|
3761
|
+
},
|
|
3762
|
+
"MaximumPermissionsUseRegisterGuestBuyerAPI": {
|
|
3763
|
+
"field_label": "Use Register Guest Buyer API",
|
|
3764
|
+
"type": "boolean"
|
|
3765
|
+
},
|
|
3766
|
+
"MaximumPermissionsUseRepricing": {
|
|
3767
|
+
"field_label": "Use Repricing Objects and APIs",
|
|
3768
|
+
"type": "boolean"
|
|
3769
|
+
},
|
|
3770
|
+
"MaximumPermissionsUseRestrictedTheme": {
|
|
3771
|
+
"field_label": "Use restricted theme",
|
|
3772
|
+
"type": "boolean"
|
|
3773
|
+
},
|
|
3774
|
+
"MaximumPermissionsUseReturnOrder": {
|
|
3775
|
+
"field_label": "Use Order Management Return Order",
|
|
3776
|
+
"type": "boolean"
|
|
3777
|
+
},
|
|
3778
|
+
"MaximumPermissionsUseReturnOrderAPIs": {
|
|
3779
|
+
"field_label": "Use Order Management Return APIs",
|
|
3780
|
+
"type": "boolean"
|
|
3781
|
+
},
|
|
3782
|
+
"MaximumPermissionsUseRouting": {
|
|
3783
|
+
"field_label": "Access the Fulfillment Order routing APIs.",
|
|
3784
|
+
"type": "boolean"
|
|
3785
|
+
},
|
|
3786
|
+
"MaximumPermissionsUseServiceCatalogForGuest": {
|
|
3787
|
+
"field_label": "Use Service Catalog As A Guest User",
|
|
3788
|
+
"type": "boolean"
|
|
3789
|
+
},
|
|
3790
|
+
"MaximumPermissionsUseServicePartReturn": {
|
|
3791
|
+
"field_label": "Manufacturing Cloud Service Part Return Management User",
|
|
3792
|
+
"type": "boolean"
|
|
3793
|
+
},
|
|
3794
|
+
"MaximumPermissionsUseSetupWithAgentforce": {
|
|
3795
|
+
"field_label": "Use Setup with Agentforce",
|
|
3796
|
+
"type": "boolean"
|
|
3797
|
+
},
|
|
3798
|
+
"MaximumPermissionsUseShipment": {
|
|
3799
|
+
"field_label": "Use Shipment Objects",
|
|
3800
|
+
"type": "boolean"
|
|
3801
|
+
},
|
|
3802
|
+
"MaximumPermissionsUseSmartDataDiscovery": {
|
|
3803
|
+
"field_label": "Use Einstein Discovery",
|
|
3804
|
+
"type": "boolean"
|
|
3805
|
+
},
|
|
3806
|
+
"MaximumPermissionsUseSubscriptionEmails": {
|
|
3807
|
+
"field_label": "Subscribe to CRM Analytics Assets",
|
|
3808
|
+
"type": "boolean"
|
|
3809
|
+
},
|
|
3810
|
+
"MaximumPermissionsUseSvcCatalog": {
|
|
3811
|
+
"field_label": "Use Service Catalog",
|
|
3812
|
+
"type": "boolean"
|
|
3813
|
+
},
|
|
3814
|
+
"MaximumPermissionsUseTeamReassignWizards": {
|
|
3815
|
+
"field_label": "Use Team Reassignment Wizards",
|
|
3816
|
+
"type": "boolean"
|
|
3817
|
+
},
|
|
3818
|
+
"MaximumPermissionsUseTeamsForEmployee": {
|
|
3819
|
+
"field_label": "Gives employee users the ability to use Microsoft Teams to manage and resolve IT issues and service requests",
|
|
3820
|
+
"type": "boolean"
|
|
3821
|
+
},
|
|
3822
|
+
"MaximumPermissionsUseTeamsForItSrvcs": {
|
|
3823
|
+
"field_label": "Manage ITSM Teams",
|
|
3824
|
+
"type": "boolean"
|
|
3825
|
+
},
|
|
3826
|
+
"MaximumPermissionsUseTemplatedApp": {
|
|
3827
|
+
"field_label": "Use CRM Analytics Templated Apps",
|
|
3828
|
+
"type": "boolean"
|
|
3829
|
+
},
|
|
3830
|
+
"MaximumPermissionsUseWebLink": {
|
|
3831
|
+
"field_label": "Allow Access to Customized Actions",
|
|
3832
|
+
"type": "boolean"
|
|
3833
|
+
},
|
|
3834
|
+
"MaximumPermissionsUserCanAccessNLPResult": {
|
|
3835
|
+
"field_label": "View Natural Language Process Results",
|
|
3836
|
+
"type": "boolean"
|
|
3837
|
+
},
|
|
3838
|
+
"MaximumPermissionsUserCanDeployStore": {
|
|
3839
|
+
"field_label": "Users can perform the deployment operation on a store.",
|
|
3840
|
+
"type": "boolean"
|
|
3841
|
+
},
|
|
3842
|
+
"MaximumPermissionsUserCanPerformNLPOperation": {
|
|
3843
|
+
"field_label": "Manage Natural Language Process Results",
|
|
3844
|
+
"type": "boolean"
|
|
3845
|
+
},
|
|
3846
|
+
"MaximumPermissionsUserHasALMSimpleDeployAccess": {
|
|
3847
|
+
"field_label": "Enable ALM Simple Deploy User Permission",
|
|
3848
|
+
"type": "boolean"
|
|
3849
|
+
},
|
|
3850
|
+
"MaximumPermissionsUserHasBillingAccount": {
|
|
3851
|
+
"field_label": "Access EU User Billing Account",
|
|
3852
|
+
"type": "boolean"
|
|
3853
|
+
},
|
|
3854
|
+
"MaximumPermissionsUserHasEAndUProgramAccess": {
|
|
3855
|
+
"field_label": "EU User Program Access",
|
|
3856
|
+
"type": "boolean"
|
|
3857
|
+
},
|
|
3858
|
+
"MaximumPermissionsUserHasEUCore": {
|
|
3859
|
+
"field_label": "Access EU Objects",
|
|
3860
|
+
"type": "boolean"
|
|
3861
|
+
},
|
|
3862
|
+
"MaximumPermissionsUserHasMilestoneWorkAccess": {
|
|
3863
|
+
"field_label": "Allows users to access the tasks tied to a milestone.",
|
|
3864
|
+
"type": "boolean"
|
|
3865
|
+
},
|
|
3866
|
+
"MaximumPermissionsUserHasUsageImpactAccess": {
|
|
3867
|
+
"field_label": "EU User Impact Access",
|
|
3868
|
+
"type": "boolean"
|
|
3869
|
+
},
|
|
3870
|
+
"MaximumPermissionsUserHasWorkReportAccess": {
|
|
3871
|
+
"field_label": "Manage User Work Report",
|
|
3872
|
+
"type": "boolean"
|
|
3873
|
+
},
|
|
3874
|
+
"MaximumPermissionsUserInteractionInsights": {
|
|
3875
|
+
"field_label": "Collect User Engagement Data for Insight Calculation",
|
|
3876
|
+
"type": "boolean"
|
|
3877
|
+
},
|
|
3878
|
+
"MaximumPermissionsVideoConferenceMeetUser": {
|
|
3879
|
+
"field_label": "Use Video Conferencing with Google Meet",
|
|
3880
|
+
"type": "boolean"
|
|
3881
|
+
},
|
|
3882
|
+
"MaximumPermissionsVideoConferenceTeamsUser": {
|
|
3883
|
+
"field_label": "Use Video Conferencing with Teams",
|
|
3884
|
+
"type": "boolean"
|
|
3885
|
+
},
|
|
3886
|
+
"MaximumPermissionsVideoConferenceZoomUser": {
|
|
3887
|
+
"field_label": "Use Video Conferencing with Zoom",
|
|
3888
|
+
"type": "boolean"
|
|
3889
|
+
},
|
|
3890
|
+
"MaximumPermissionsViewAccessPolicies": {
|
|
3891
|
+
"field_label": "View Access Policies",
|
|
3892
|
+
"type": "boolean"
|
|
3893
|
+
},
|
|
3894
|
+
"MaximumPermissionsViewAgtfrceAnlytDshbrd": {
|
|
3895
|
+
"field_label": "View Agentforce Analytics Dashboard",
|
|
3896
|
+
"type": "boolean"
|
|
3897
|
+
},
|
|
3898
|
+
"MaximumPermissionsViewAllActivities": {
|
|
3899
|
+
"field_label": "View All Activities",
|
|
3900
|
+
"type": "boolean"
|
|
3901
|
+
},
|
|
3902
|
+
"MaximumPermissionsViewAllCalls": {
|
|
3903
|
+
"field_label": "View All Voice And Video Calls",
|
|
3904
|
+
"type": "boolean"
|
|
3905
|
+
},
|
|
3906
|
+
"MaximumPermissionsViewAllCustomSettings": {
|
|
3907
|
+
"field_label": "View All Custom Settings",
|
|
3908
|
+
"type": "boolean"
|
|
3909
|
+
},
|
|
3910
|
+
"MaximumPermissionsViewAllData": {
|
|
3911
|
+
"field_label": "View All Data",
|
|
3912
|
+
"type": "boolean"
|
|
3913
|
+
},
|
|
3914
|
+
"MaximumPermissionsViewAllDataGovPolicies": {
|
|
3915
|
+
"field_label": "View All Data Governance Policies",
|
|
3916
|
+
"type": "boolean"
|
|
3917
|
+
},
|
|
3918
|
+
"MaximumPermissionsViewAllDataGovTags": {
|
|
3919
|
+
"field_label": "View All Data Governance Tags, Classifications, and Taxonomies",
|
|
3920
|
+
"type": "boolean"
|
|
3921
|
+
},
|
|
3922
|
+
"MaximumPermissionsViewAllFieldsGlobal": {
|
|
3923
|
+
"field_label": "View All Fields (Global)",
|
|
3924
|
+
"type": "boolean"
|
|
3925
|
+
},
|
|
3926
|
+
"MaximumPermissionsViewAllForecasts": {
|
|
3927
|
+
"field_label": "View All Forecasts",
|
|
3928
|
+
"type": "boolean"
|
|
3929
|
+
},
|
|
3930
|
+
"MaximumPermissionsViewAllForeignKeyNames": {
|
|
3931
|
+
"field_label": "View All Lookup Record Names",
|
|
3932
|
+
"type": "boolean"
|
|
3933
|
+
},
|
|
3934
|
+
"MaximumPermissionsViewAllNonSetupFlows": {
|
|
3935
|
+
"field_label": "View All Non-Admin Flows",
|
|
3936
|
+
"type": "boolean"
|
|
3937
|
+
},
|
|
3938
|
+
"MaximumPermissionsViewAllPolicyCenterPolicies": {
|
|
3939
|
+
"field_label": "View All Policy Center Policies",
|
|
3940
|
+
"type": "boolean"
|
|
3941
|
+
},
|
|
3942
|
+
"MaximumPermissionsViewAllProfiles": {
|
|
3943
|
+
"field_label": "View All Profiles",
|
|
3944
|
+
"type": "boolean"
|
|
3945
|
+
},
|
|
3946
|
+
"MaximumPermissionsViewAllUsers": {
|
|
3947
|
+
"field_label": "View All Users",
|
|
3948
|
+
"type": "boolean"
|
|
3949
|
+
},
|
|
3950
|
+
"MaximumPermissionsViewAnomalyEvents": {
|
|
3951
|
+
"field_label": "View Threat Detection Events",
|
|
3952
|
+
"type": "boolean"
|
|
3953
|
+
},
|
|
3954
|
+
"MaximumPermissionsViewApiNamedQueries": {
|
|
3955
|
+
"field_label": "Allows users to view Named Query records",
|
|
3956
|
+
"type": "boolean"
|
|
3957
|
+
},
|
|
3958
|
+
"MaximumPermissionsViewArchivedArticles": {
|
|
3959
|
+
"field_label": "View Archived Articles",
|
|
3960
|
+
"type": "boolean"
|
|
3961
|
+
},
|
|
3962
|
+
"MaximumPermissionsViewCaseAnlytDshbrd": {
|
|
3963
|
+
"field_label": "View Case Analytics Dashboard",
|
|
3964
|
+
"type": "boolean"
|
|
3965
|
+
},
|
|
3966
|
+
"MaximumPermissionsViewChangeRequestAnlytDshbrd": {
|
|
3967
|
+
"field_label": "View Change Request Analytics Dashboard",
|
|
3968
|
+
"type": "boolean"
|
|
3969
|
+
},
|
|
3970
|
+
"MaximumPermissionsViewChangeRequestDshbrd": {
|
|
3971
|
+
"field_label": "View Change Request Dashboard",
|
|
3972
|
+
"type": "boolean"
|
|
3973
|
+
},
|
|
3974
|
+
"MaximumPermissionsViewClientSecret": {
|
|
3975
|
+
"field_label": "View External Client App Consumer Secrets in Metadata",
|
|
3976
|
+
"type": "boolean"
|
|
3977
|
+
},
|
|
3978
|
+
"MaximumPermissionsViewConsumption": {
|
|
3979
|
+
"field_label": "View Consumption",
|
|
3980
|
+
"type": "boolean"
|
|
3981
|
+
},
|
|
3982
|
+
"MaximumPermissionsViewConsumptionTags": {
|
|
3983
|
+
"field_label": "View Consumption Tags",
|
|
3984
|
+
"type": "boolean"
|
|
3985
|
+
},
|
|
3986
|
+
"MaximumPermissionsViewContent": {
|
|
3987
|
+
"field_label": "View Content in Portals",
|
|
3988
|
+
"type": "boolean"
|
|
3989
|
+
},
|
|
3990
|
+
"MaximumPermissionsViewContentTaxonomy": {
|
|
3991
|
+
"field_label": "View Content Taxonomy",
|
|
3992
|
+
"type": "boolean"
|
|
3993
|
+
},
|
|
3994
|
+
"MaximumPermissionsViewCustomerSentiment": {
|
|
3995
|
+
"field_label": "View Customer Insights",
|
|
3996
|
+
"type": "boolean"
|
|
3997
|
+
},
|
|
3998
|
+
"MaximumPermissionsViewDataAssessment": {
|
|
3999
|
+
"field_label": "Access to view Data Assessment",
|
|
4000
|
+
"type": "boolean"
|
|
4001
|
+
},
|
|
4002
|
+
"MaximumPermissionsViewDataCategories": {
|
|
4003
|
+
"field_label": "View Data Categories in Setup",
|
|
4004
|
+
"type": "boolean"
|
|
4005
|
+
},
|
|
4006
|
+
"MaximumPermissionsViewDataGovTab": {
|
|
4007
|
+
"field_label": "View the Data Governance Tab",
|
|
4008
|
+
"type": "boolean"
|
|
4009
|
+
},
|
|
4010
|
+
"MaximumPermissionsViewDataLeakageEvents": {
|
|
4011
|
+
"field_label": "View Real-Time Event Monitoring Data",
|
|
4012
|
+
"type": "boolean"
|
|
4013
|
+
},
|
|
4014
|
+
"MaximumPermissionsViewDeveloperName": {
|
|
4015
|
+
"field_label": "View Developer Name",
|
|
4016
|
+
"type": "boolean"
|
|
4017
|
+
},
|
|
4018
|
+
"MaximumPermissionsViewDraftArticles": {
|
|
4019
|
+
"field_label": "View Draft Articles",
|
|
4020
|
+
"type": "boolean"
|
|
4021
|
+
},
|
|
4022
|
+
"MaximumPermissionsViewEmailMessagingSetup": {
|
|
4023
|
+
"field_label": "View Email Messaging Setup",
|
|
4024
|
+
"type": "boolean"
|
|
4025
|
+
},
|
|
4026
|
+
"MaximumPermissionsViewEnablementAnalytics": {
|
|
4027
|
+
"field_label": "View Enablement Analytics",
|
|
4028
|
+
"type": "boolean"
|
|
4029
|
+
},
|
|
4030
|
+
"MaximumPermissionsViewEncryptedData": {
|
|
4031
|
+
"field_label": "View Encrypted Data",
|
|
4032
|
+
"type": "boolean"
|
|
4033
|
+
},
|
|
4034
|
+
"MaximumPermissionsViewEventLogFiles": {
|
|
4035
|
+
"field_label": "View Event Log Files",
|
|
4036
|
+
"type": "boolean"
|
|
4037
|
+
},
|
|
4038
|
+
"MaximumPermissionsViewForecastingPredictive": {
|
|
4039
|
+
"field_label": "Use Einstein Forecasting",
|
|
4040
|
+
"type": "boolean"
|
|
4041
|
+
},
|
|
4042
|
+
"MaximumPermissionsViewGlobalHeader": {
|
|
4043
|
+
"field_label": "View Global Header",
|
|
4044
|
+
"type": "boolean"
|
|
4045
|
+
},
|
|
4046
|
+
"MaximumPermissionsViewHealthCheck": {
|
|
4047
|
+
"field_label": "View Health Check",
|
|
4048
|
+
"type": "boolean"
|
|
4049
|
+
},
|
|
4050
|
+
"MaximumPermissionsViewHelpLink": {
|
|
4051
|
+
"field_label": "View Help Link",
|
|
4052
|
+
"type": "boolean"
|
|
4053
|
+
},
|
|
4054
|
+
"MaximumPermissionsViewInAppGuidanceForSites": {
|
|
4055
|
+
"field_label": "Take In-App Guidance for Partners",
|
|
4056
|
+
"type": "boolean"
|
|
4057
|
+
},
|
|
4058
|
+
"MaximumPermissionsViewIncidentAnlytDshbrd": {
|
|
4059
|
+
"field_label": "View Incident Analytics Dashboard",
|
|
4060
|
+
"type": "boolean"
|
|
4061
|
+
},
|
|
4062
|
+
"MaximumPermissionsViewIncidentFulfrDshbrd": {
|
|
4063
|
+
"field_label": "View Incident Fulfiller Dashboard",
|
|
4064
|
+
"type": "boolean"
|
|
4065
|
+
},
|
|
4066
|
+
"MaximumPermissionsViewIncidentMgrDshbrd": {
|
|
4067
|
+
"field_label": "View Incident Manager Dashboard",
|
|
4068
|
+
"type": "boolean"
|
|
4069
|
+
},
|
|
4070
|
+
"MaximumPermissionsViewIntelligenceApp": {
|
|
4071
|
+
"field_label": "View Commerce Intelligence App",
|
|
4072
|
+
"type": "boolean"
|
|
4073
|
+
},
|
|
4074
|
+
"MaximumPermissionsViewItLeaderAnlytDshbrd": {
|
|
4075
|
+
"field_label": "View IT Leader Analytics Dashboard",
|
|
4076
|
+
"type": "boolean"
|
|
4077
|
+
},
|
|
4078
|
+
"MaximumPermissionsViewItsmConsoleAsFulfr": {
|
|
4079
|
+
"field_label": "View Agentic IT Service Desk App as Fulfillers",
|
|
4080
|
+
"type": "boolean"
|
|
4081
|
+
},
|
|
4082
|
+
"MaximumPermissionsViewItsmConsoleHmpg": {
|
|
4083
|
+
"field_label": "View Agentic IT Service Desk App Home Page",
|
|
4084
|
+
"type": "boolean"
|
|
4085
|
+
},
|
|
4086
|
+
"MaximumPermissionsViewKnwlgAnlytDshbrd": {
|
|
4087
|
+
"field_label": "View Knowledge Analytics Dashboard",
|
|
4088
|
+
"type": "boolean"
|
|
4089
|
+
},
|
|
4090
|
+
"MaximumPermissionsViewLicenseUtilization": {
|
|
4091
|
+
"field_label": "View License Utilization",
|
|
4092
|
+
"type": "boolean"
|
|
4093
|
+
},
|
|
4094
|
+
"MaximumPermissionsViewMLModels": {
|
|
4095
|
+
"field_label": "Allow users to view MLModels and related Entities",
|
|
4096
|
+
"type": "boolean"
|
|
4097
|
+
},
|
|
4098
|
+
"MaximumPermissionsViewMyTeamsDashboards": {
|
|
4099
|
+
"field_label": "View My Team's Dashboards",
|
|
4100
|
+
"type": "boolean"
|
|
4101
|
+
},
|
|
4102
|
+
"MaximumPermissionsViewNonSetupFlow": {
|
|
4103
|
+
"field_label": "View Flows",
|
|
4104
|
+
"type": "boolean"
|
|
4105
|
+
},
|
|
4106
|
+
"MaximumPermissionsViewOmnichnlAnlytDshbrd": {
|
|
4107
|
+
"field_label": "View Omnichannel Analytics Dashboard",
|
|
4108
|
+
"type": "boolean"
|
|
4109
|
+
},
|
|
4110
|
+
"MaximumPermissionsViewOnlyEmbeddedAppUser": {
|
|
4111
|
+
"field_label": "Access to View-Only Licensed Templates and Apps",
|
|
4112
|
+
"type": "boolean"
|
|
4113
|
+
},
|
|
4114
|
+
"MaximumPermissionsViewOrchestrationsInAutomApp": {
|
|
4115
|
+
"field_label": "View Orchestrations in Automation App",
|
|
4116
|
+
"type": "boolean"
|
|
4117
|
+
},
|
|
4118
|
+
"MaximumPermissionsViewPayments": {
|
|
4119
|
+
"field_label": "Use Payments or Access Payments",
|
|
4120
|
+
"type": "boolean"
|
|
4121
|
+
},
|
|
4122
|
+
"MaximumPermissionsViewPlatformEvents": {
|
|
4123
|
+
"field_label": "View Login Forensics Events",
|
|
4124
|
+
"type": "boolean"
|
|
4125
|
+
},
|
|
4126
|
+
"MaximumPermissionsViewPrivateStaticResources": {
|
|
4127
|
+
"field_label": "View Private Static Resources",
|
|
4128
|
+
"type": "boolean"
|
|
4129
|
+
},
|
|
4130
|
+
"MaximumPermissionsViewProblemFulfrDshbrd": {
|
|
4131
|
+
"field_label": "View Problem Fulfiller Dashboard",
|
|
4132
|
+
"type": "boolean"
|
|
4133
|
+
},
|
|
4134
|
+
"MaximumPermissionsViewProblemMgrDshbrd": {
|
|
4135
|
+
"field_label": "View Problem Manager Dashboard",
|
|
4136
|
+
"type": "boolean"
|
|
4137
|
+
},
|
|
4138
|
+
"MaximumPermissionsViewProductCatalogObjects": {
|
|
4139
|
+
"field_label": "View Product Catalog",
|
|
4140
|
+
"type": "boolean"
|
|
4141
|
+
},
|
|
4142
|
+
"MaximumPermissionsViewPromotions": {
|
|
4143
|
+
"field_label": "Lets users view promotions and their configurations.",
|
|
4144
|
+
"type": "boolean"
|
|
4145
|
+
},
|
|
4146
|
+
"MaximumPermissionsViewPublicCapstoneFolders": {
|
|
4147
|
+
"field_label": "View Public Capstone Folder",
|
|
4148
|
+
"type": "boolean"
|
|
4149
|
+
},
|
|
4150
|
+
"MaximumPermissionsViewPublicDashboards": {
|
|
4151
|
+
"field_label": "View Dashboards in Public Folders",
|
|
4152
|
+
"type": "boolean"
|
|
4153
|
+
},
|
|
4154
|
+
"MaximumPermissionsViewPublicReports": {
|
|
4155
|
+
"field_label": "View Reports in Public Folders",
|
|
4156
|
+
"type": "boolean"
|
|
4157
|
+
},
|
|
4158
|
+
"MaximumPermissionsViewRecommendations": {
|
|
4159
|
+
"field_label": "View Recommendations",
|
|
4160
|
+
"type": "boolean"
|
|
4161
|
+
},
|
|
4162
|
+
"MaximumPermissionsViewRestrictionAndScopingRules": {
|
|
4163
|
+
"field_label": "View Restriction and Scoping Rules",
|
|
4164
|
+
"type": "boolean"
|
|
4165
|
+
},
|
|
4166
|
+
"MaximumPermissionsViewRoles": {
|
|
4167
|
+
"field_label": "View Roles and Role Hierarchy",
|
|
4168
|
+
"type": "boolean"
|
|
4169
|
+
},
|
|
4170
|
+
"MaximumPermissionsViewSALifecycle": {
|
|
4171
|
+
"field_label": "View Service Appointment Lifecycle",
|
|
4172
|
+
"type": "boolean"
|
|
4173
|
+
},
|
|
4174
|
+
"MaximumPermissionsViewSecurityCommandCenter": {
|
|
4175
|
+
"field_label": "View Security Center pages",
|
|
4176
|
+
"type": "boolean"
|
|
4177
|
+
},
|
|
4178
|
+
"MaximumPermissionsViewSetup": {
|
|
4179
|
+
"field_label": "View Setup and Configuration",
|
|
4180
|
+
"type": "boolean"
|
|
4181
|
+
},
|
|
4182
|
+
"MaximumPermissionsViewShieldApp": {
|
|
4183
|
+
"field_label": "View Shield App Pages",
|
|
4184
|
+
"type": "boolean"
|
|
4185
|
+
},
|
|
4186
|
+
"MaximumPermissionsViewTrustMeasures": {
|
|
4187
|
+
"field_label": "View Trust Measures",
|
|
4188
|
+
"type": "boolean"
|
|
4189
|
+
},
|
|
4190
|
+
"MaximumPermissionsViewUserPII": {
|
|
4191
|
+
"field_label": "View Concealed Field Data",
|
|
4192
|
+
"type": "boolean"
|
|
4193
|
+
},
|
|
4194
|
+
"MaximumPermissionsVoiceCoach": {
|
|
4195
|
+
"field_label": "Access Dialer Monitoring",
|
|
4196
|
+
"type": "boolean"
|
|
4197
|
+
},
|
|
4198
|
+
"MaximumPermissionsVoiceInbound": {
|
|
4199
|
+
"field_label": "Access Dialer Inbound Calls",
|
|
4200
|
+
"type": "boolean"
|
|
4201
|
+
},
|
|
4202
|
+
"MaximumPermissionsVoiceMinutes": {
|
|
4203
|
+
"field_label": "Access Dialer Minutes",
|
|
4204
|
+
"type": "boolean"
|
|
4205
|
+
},
|
|
4206
|
+
"MaximumPermissionsVoiceOutbound": {
|
|
4207
|
+
"field_label": "Access Dialer Outbound Calls",
|
|
4208
|
+
"type": "boolean"
|
|
4209
|
+
},
|
|
4210
|
+
"MaximumPermissionsVoidInvoiceAPIUser": {
|
|
4211
|
+
"field_label": "Void Invoice API",
|
|
4212
|
+
"type": "boolean"
|
|
4213
|
+
},
|
|
4214
|
+
"MaximumPermissionsVoidPostedCreditMemoAPIUser": {
|
|
4215
|
+
"field_label": "Void Posted Credit Memo API",
|
|
4216
|
+
"type": "boolean"
|
|
4217
|
+
},
|
|
4218
|
+
"MaximumPermissionsWalletManagementUser": {
|
|
4219
|
+
"field_label": "Usage Management: Wallet Management User",
|
|
4220
|
+
"type": "boolean"
|
|
4221
|
+
},
|
|
4222
|
+
"MaximumPermissionsWaveCommunityUser": {
|
|
4223
|
+
"field_label": "View CRM Analytics on Experience Cloud site pages.",
|
|
4224
|
+
"type": "boolean"
|
|
4225
|
+
},
|
|
4226
|
+
"MaximumPermissionsWaveManagePrivateAssetsUser": {
|
|
4227
|
+
"field_label": "Manage CRM Analytics Private Assets",
|
|
4228
|
+
"type": "boolean"
|
|
4229
|
+
},
|
|
4230
|
+
"MaximumPermissionsWaveTabularDownload": {
|
|
4231
|
+
"field_label": "Download CRM Analytics Data",
|
|
4232
|
+
"type": "boolean"
|
|
4233
|
+
},
|
|
4234
|
+
"MaximumPermissionsWaveTrendReports": {
|
|
4235
|
+
"field_label": "Trend Report Data in CRM Analytics",
|
|
4236
|
+
"type": "boolean"
|
|
4237
|
+
},
|
|
4238
|
+
"MaximumPermissionsWorkCalibrationUser": {
|
|
4239
|
+
"field_label": "Enable WDC Calibration",
|
|
4240
|
+
"type": "boolean"
|
|
4241
|
+
},
|
|
4242
|
+
"MaximumPermissionsWorkDotComUserPerm": {
|
|
4243
|
+
"field_label": "Enable WDC",
|
|
4244
|
+
"type": "boolean"
|
|
4245
|
+
},
|
|
4246
|
+
"MaximumPermissionsYourAccountCDAPublishEvents": {
|
|
4247
|
+
"field_label": "Your Account Cache Durable Architecture Publish Events",
|
|
4248
|
+
"type": "boolean"
|
|
4249
|
+
},
|
|
4250
|
+
"MigratableLicenses": {
|
|
4251
|
+
"field_label": "Licenses to Migrate",
|
|
4252
|
+
"type": "int",
|
|
4253
|
+
"digits": "9"
|
|
4254
|
+
},
|
|
4255
|
+
"PermissionSetLicenseKey": {
|
|
4256
|
+
"field_label": "Permission Set License Key",
|
|
4257
|
+
"type": "string",
|
|
4258
|
+
"length": "81"
|
|
4259
|
+
},
|
|
4260
|
+
"Status": {
|
|
4261
|
+
"field_label": "Status",
|
|
4262
|
+
"type": "picklist",
|
|
4263
|
+
"length": "40"
|
|
4264
|
+
},
|
|
4265
|
+
"SystemModstamp": {
|
|
4266
|
+
"field_label": "System Modstamp",
|
|
4267
|
+
"type": "datetime"
|
|
4268
|
+
},
|
|
4269
|
+
"TotalLicenses": {
|
|
4270
|
+
"field_label": "Total Licenses",
|
|
4271
|
+
"type": "int",
|
|
4272
|
+
"digits": "9"
|
|
4273
|
+
},
|
|
4274
|
+
"UsedLicenses": {
|
|
4275
|
+
"field_label": "Used Licenses",
|
|
4276
|
+
"type": "int",
|
|
4277
|
+
"digits": "9"
|
|
4278
|
+
}
|
|
4279
|
+
},
|
|
4280
|
+
"field_reference_columns": [
|
|
4281
|
+
"field_label",
|
|
4282
|
+
"type",
|
|
4283
|
+
"length",
|
|
4284
|
+
"digits"
|
|
4285
|
+
]
|
|
4286
|
+
}
|