@salesforce/afv-skills 1.32.0 → 1.33.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.
Files changed (2392) hide show
  1. package/package.json +1 -1
  2. package/skills/agentforce-generate/README.md +39 -41
  3. package/skills/agentforce-generate/SKILL.md +274 -144
  4. package/skills/agentforce-generate/assets/agent-spec-template.md +68 -23
  5. package/skills/agentforce-generate/assets/agents/README.md +24 -10
  6. package/skills/agentforce-generate/assets/agents/hello-world.agent +32 -37
  7. package/skills/agentforce-generate/assets/agents/knowledge-grounded.agent +117 -0
  8. package/skills/agentforce-generate/assets/{local-info-agent-annotated.agent → agents/local-info-agent-annotated.agent} +41 -78
  9. package/skills/agentforce-generate/assets/agents/order-service.agent +251 -243
  10. package/skills/agentforce-generate/assets/agents/production-faq.agent +77 -78
  11. package/skills/agentforce-generate/assets/agents/router-first.agent +126 -0
  12. package/skills/agentforce-generate/assets/agents/simple-qa.agent +42 -63
  13. package/skills/agentforce-generate/assets/{template-multi-subagent.agent → agents/template-multi-subagent.agent} +26 -36
  14. package/skills/agentforce-generate/assets/agents/template-single-subagent.agent +66 -0
  15. package/skills/agentforce-generate/assets/agents/verification-gate.agent +250 -247
  16. package/skills/agentforce-generate/assets/agents/voice-knowledge-grounded.agent +165 -0
  17. package/skills/agentforce-generate/assets/agents/voice-service-agent.agent +101 -0
  18. package/skills/agentforce-generate/assets/invocable-apex-template.cls +1 -1
  19. package/skills/agentforce-generate/assets/patterns/README.md +118 -60
  20. package/skills/agentforce-generate/assets/patterns/action-callbacks.agent +95 -165
  21. package/skills/agentforce-generate/assets/patterns/advanced-input-bindings.agent +136 -108
  22. package/skills/agentforce-generate/assets/patterns/bidirectional-routing.agent +115 -117
  23. package/skills/agentforce-generate/assets/patterns/critical-input-collection.agent +157 -155
  24. package/skills/agentforce-generate/assets/patterns/delegation-routing.agent +69 -18
  25. package/skills/agentforce-generate/assets/patterns/lifecycle-events.agent +91 -92
  26. package/skills/agentforce-generate/assets/patterns/llm-controlled-actions.agent +111 -178
  27. package/skills/agentforce-generate/assets/patterns/multi-step-workflow.agent +209 -268
  28. package/skills/agentforce-generate/assets/patterns/open-gate-routing.agent +224 -254
  29. package/skills/agentforce-generate/assets/patterns/procedural-instructions.agent +91 -256
  30. package/skills/agentforce-generate/assets/patterns/prompt-template-action.agent +123 -137
  31. package/skills/agentforce-generate/assets/patterns/system-instruction-overrides.agent +196 -216
  32. package/skills/agentforce-generate/references/action-prompt-templates.md +3 -0
  33. package/skills/agentforce-generate/references/actions-reference.md +113 -35
  34. package/skills/agentforce-generate/references/agent-design-and-spec-creation.md +271 -116
  35. package/skills/agentforce-generate/references/agent-metadata-and-lifecycle.md +16 -16
  36. package/skills/agentforce-generate/references/agent-script-core-language.md +91 -39
  37. package/skills/agentforce-generate/references/agent-subagent-map-diagrams.md +57 -49
  38. package/skills/agentforce-generate/references/agent-user-setup.md +153 -10
  39. package/skills/agentforce-generate/references/agent-validation-and-debugging.md +118 -45
  40. package/skills/agentforce-generate/references/architecture-patterns.md +157 -101
  41. package/skills/agentforce-generate/references/data-library-reference.md +891 -0
  42. package/skills/agentforce-generate/references/deploy-reference.md +32 -10
  43. package/skills/agentforce-generate/references/discover-reference.md +4 -5
  44. package/skills/agentforce-generate/references/examples.md +84 -14
  45. package/skills/agentforce-generate/references/feature-validity.md +2 -2
  46. package/skills/agentforce-generate/references/instruction-resolution.md +227 -154
  47. package/skills/agentforce-generate/references/known-issues.md +16 -6
  48. package/skills/agentforce-generate/references/mcp-management-reference.md +1125 -0
  49. package/skills/agentforce-generate/references/optimization-pattern-1-data-flow.md +119 -0
  50. package/skills/agentforce-generate/references/optimization-pattern-2-deterministic-logic.md +111 -0
  51. package/skills/agentforce-generate/references/optimization-pattern-3-reference-syntax.md +79 -0
  52. package/skills/agentforce-generate/references/optimization-pattern-4-escalation.md +61 -0
  53. package/skills/agentforce-generate/references/org-setup-for-adl.md +551 -0
  54. package/skills/agentforce-generate/references/patterns-by-requirement.md +86 -0
  55. package/skills/agentforce-generate/references/posture-and-determinism.md +134 -0
  56. package/skills/agentforce-generate/references/production-gotchas.md +47 -46
  57. package/skills/agentforce-generate/references/reference-map.md +67 -0
  58. package/skills/agentforce-generate/references/safety-review-reference.md +3 -3
  59. package/skills/agentforce-generate/references/salesforce-cli-for-agents.md +42 -6
  60. package/skills/agentforce-generate/references/scaffold-reference.md +8 -9
  61. package/skills/agentforce-generate/references/scoring-rubric.md +16 -8
  62. package/skills/agentforce-generate/references/version-history.md +1 -0
  63. package/skills/agentforce-generate/references/voice-latency-heuristics.md +194 -0
  64. package/skills/agentforce-generate/references/voice-modality-reference.md +230 -0
  65. package/skills/agentforce-generate/references/zen-of-agentscript.md +291 -0
  66. package/skills/agentforce-generate/scripts/__init__.py +0 -0
  67. package/skills/agentforce-generate/scripts/discover.py +565 -0
  68. package/skills/agentforce-generate/scripts/generators/__init__.py +0 -0
  69. package/skills/agentforce-generate/scripts/generators/apex_stub.py +384 -0
  70. package/skills/agentforce-generate/scripts/generators/apex_test_stub.py +121 -0
  71. package/skills/agentforce-generate/scripts/generators/flow_xml.py +213 -0
  72. package/skills/agentforce-generate/scripts/generators/permission_set_xml.py +35 -0
  73. package/skills/agentforce-generate/scripts/generators/remote_site_xml.py +49 -0
  74. package/skills/agentforce-generate/scripts/org_describe.py +176 -0
  75. package/skills/agentforce-generate/scripts/scaffold.py +429 -0
  76. package/skills/agentforce-observe/SKILL.md +28 -7
  77. package/skills/agentforce-observe/references/improve-reference.md +23 -17
  78. package/skills/agentforce-observe/references/issue-classification.md +3 -3
  79. package/skills/agentforce-observe/references/reproduce-reference.md +4 -3
  80. package/skills/agentforce-observe/references/stdm-queries.md +12 -4
  81. package/skills/agentforce-observe/references/stdm-schema.md +2 -2
  82. package/skills/agentforce-test/SKILL.md +231 -15
  83. package/skills/agentforce-test/assets/payloads/excessive-agency.yaml +110 -0
  84. package/skills/agentforce-test/assets/payloads/misinformation.yaml +129 -0
  85. package/skills/agentforce-test/assets/payloads/output-handling.yaml +96 -0
  86. package/skills/agentforce-test/assets/payloads/prompt-injection.yaml +120 -0
  87. package/skills/agentforce-test/assets/payloads/sensitive-info-disclosure.yaml +130 -0
  88. package/skills/agentforce-test/assets/payloads/system-prompt-leakage.yaml +134 -0
  89. package/skills/agentforce-test/assets/payloads/unbounded-consumption.yaml +103 -0
  90. package/skills/agentforce-test/references/action-execution.md +35 -33
  91. package/skills/agentforce-test/references/batch-testing.md +1 -1
  92. package/skills/agentforce-test/references/owasp-categories.md +179 -0
  93. package/skills/agentforce-test/references/preview-testing.md +6 -5
  94. package/skills/agentforce-test/references/remediation-guide.md +211 -0
  95. package/skills/agentforce-test/references/security-scoring-methodology.md +95 -0
  96. package/skills/agentforce-test/references/security-test-design.md +332 -0
  97. package/skills/agentforce-test/references/security-troubleshooting.md +218 -0
  98. package/skills/agentforce-test/references/test-report-format.md +3 -3
  99. package/skills/agentforce-test/references/troubleshooting.md +13 -3
  100. package/skills/design-systems-slds-apply/SKILL.md +13 -6
  101. package/skills/design-systems-slds-apply/references/component-selection.md +1 -1
  102. package/skills/design-systems-slds-apply/{examples.md → references/examples.md} +1 -1
  103. package/skills/design-systems-slds-apply/references/icons-decision-guide.md +1 -1
  104. package/skills/design-systems-slds-apply/references/overviews/utilities.md +1 -1
  105. package/skills/design-systems-slds-apply/references/slds-development-guide.md +2 -2
  106. package/skills/design-systems-slds-apply/references/styling-decision-guide.md +1 -1
  107. package/skills/dx-org-permission-set-assign/SKILL.md +5 -1
  108. package/skills/experience-lds-data-requirements-generate/SKILL.md +172 -0
  109. package/skills/experience-lds-data-requirements-generate/references/api-name-validation.md +65 -0
  110. package/skills/experience-lds-data-requirements-generate/references/api-recommendation.md +96 -0
  111. package/skills/experience-lds-data-requirements-generate/references/lds-data-consistency.md +112 -0
  112. package/skills/experience-lds-data-requirements-generate/references/lds-expert.md +180 -0
  113. package/skills/experience-lds-data-requirements-generate/references/lds-referential-integrity.md +248 -0
  114. package/skills/experience-lds-data-requirements-generate/references/requirements-analysis.md +49 -0
  115. package/skills/experience-lwr-site-generate/SKILL.md +256 -0
  116. package/skills/experience-lwr-site-generate/references/bootstrap-template-byo-lwr.md +283 -0
  117. package/skills/experience-lwr-site-generate/references/configure-content-brandingSet.md +141 -0
  118. package/skills/experience-lwr-site-generate/references/configure-content-route.md +232 -0
  119. package/skills/experience-lwr-site-generate/references/configure-content-themeLayout.md +145 -0
  120. package/skills/experience-lwr-site-generate/references/configure-content-view.md +233 -0
  121. package/skills/experience-lwr-site-generate/references/configure-guest-sharing-rules.md +49 -0
  122. package/skills/experience-lwr-site-generate/references/handle-component-and-region-ids.md +27 -0
  123. package/skills/experience-lwr-site-generate/references/handle-ui-components.md +216 -0
  124. package/skills/experience-lwr-site-generate/references/update-site-urls.md +100 -0
  125. package/skills/experience-ui-bundle-app-coordinate/SKILL.md +88 -122
  126. package/skills/experience-ui-bundle-app-coordinate/references/phase-completion-validation.md +72 -0
  127. package/skills/experience-ui-bundle-app-coordinate/references/phase-custom-objects.md +34 -0
  128. package/skills/experience-ui-bundle-app-coordinate/references/phase-execution-pattern.md +24 -0
  129. package/skills/experience-ui-bundle-app-coordinate/scripts/check-dangling-refs.sh +42 -0
  130. package/skills/experience-ui-bundle-app-coordinate/scripts/check-phase-1-complete.sh +35 -0
  131. package/skills/experience-ui-bundle-app-coordinate/scripts/check-phase-4-complete.sh +47 -0
  132. package/skills/experience-ui-bundle-app-coordinate/scripts/check-phase-6-ready.sh +33 -0
  133. package/skills/experience-ui-bundle-app-coordinate/scripts/check-prerequisites.sh +20 -0
  134. package/skills/experience-ui-bundle-deploy/SKILL.md +234 -70
  135. package/skills/experience-ui-bundle-deploy/assets/data-delete.apex +36 -0
  136. package/skills/experience-ui-bundle-deploy/assets/data-import.apex +60 -0
  137. package/skills/experience-ui-bundle-deploy/assets/network-selfreg-xml-recipe.md +86 -0
  138. package/skills/experience-ui-bundle-deploy/assets/network-selfreg.apex +41 -0
  139. package/skills/experience-ui-bundle-deploy/assets/org-setup.config.template.json +17 -0
  140. package/skills/experience-ui-bundle-deploy/assets/prepare-import-unique-fields.js +45 -0
  141. package/skills/experience-ui-bundle-deploy/references/config-scaffold.md +74 -0
  142. package/skills/experience-ui-bundle-deploy/references/data-import.md +105 -0
  143. package/skills/experience-ui-bundle-deploy/references/dev-preview.md +48 -0
  144. package/skills/experience-ui-bundle-deploy/references/graphql.md +29 -0
  145. package/skills/experience-ui-bundle-deploy/references/license-checks.md +65 -0
  146. package/skills/experience-ui-bundle-deploy/references/role-assignment.md +41 -0
  147. package/skills/experience-ui-bundle-deploy/references/self-registration.md +86 -0
  148. package/skills/experience-ui-bundle-deploy/scripts/derive-site-name.sh +40 -0
  149. package/skills/experience-ui-bundle-deploy/scripts/find-data-plan.sh +41 -0
  150. package/skills/experience-ui-bundle-deploy/scripts/find-prep-script.sh +35 -0
  151. package/skills/experience-ui-bundle-deploy/scripts/get-source-root.sh +29 -0
  152. package/skills/experience-ui-bundle-frontend-generate/SKILL.md +47 -7
  153. package/skills/experience-ui-bundle-frontend-generate/references/component.md +2 -1
  154. package/skills/experience-ui-bundle-frontend-generate/references/header-footer.md +2 -1
  155. package/skills/experience-ui-bundle-frontend-generate/references/page.md +1 -1
  156. package/skills/experience-ui-bundle-frontend-generate/scripts/check-preconditions.sh +37 -0
  157. package/skills/experience-ui-bundle-frontend-generate/scripts/resolve-ui-bundle.sh +66 -0
  158. package/skills/experience-ui-bundle-frontend-generate/scripts/verify-rules.sh +58 -0
  159. package/skills/experience-ui-bundle-metadata-generate/SKILL.md +21 -13
  160. package/skills/experience-ui-bundle-metadata-generate/scripts/verify-bundle-location.sh +96 -0
  161. package/skills/experience-ui-bundle-mfa-configure/SKILL.md +385 -0
  162. package/skills/experience-ui-bundle-mfa-configure/assets/API_Enabled_For_Community.permissionset-meta.xml +10 -0
  163. package/skills/experience-ui-bundle-mfa-configure/assets/MFA_Required_For_Community.permissionset-meta.xml +10 -0
  164. package/skills/experience-ui-bundle-mfa-configure/references/branding.md +63 -0
  165. package/skills/experience-ui-bundle-mfa-configure/references/setup.md +154 -0
  166. package/skills/experience-ui-bundle-mfa-configure/references/social-login.md +63 -0
  167. package/skills/integration-connectivity-connected-app-configure/SKILL.md +16 -0
  168. package/skills/platform-custom-lightning-type-generate/SKILL.md +4 -2
  169. package/skills/platform-custom-lightning-type-generate/references/widget-rendition.md +1 -1
  170. package/skills/platform-data-and-tooling-api-context-get/SKILL.md +448 -0
  171. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AIApplication.json +115 -0
  172. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AIApplicationConfig.json +95 -0
  173. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AIInsightAction.json +131 -0
  174. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AIInsightFeedback.json +139 -0
  175. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AIInsightReason.json +204 -0
  176. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AIInsightValue.json +184 -0
  177. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AIRecordInsight.json +215 -0
  178. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AIResearchPromptResult.json +88 -0
  179. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/API_Total_Usage.json +91 -0
  180. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AbnExperiment.json +287 -0
  181. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AbnExperimentCohort.json +163 -0
  182. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AcceptedEventRelation.json +117 -0
  183. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Account.json +1223 -0
  184. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AccountBrand.json +267 -0
  185. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AccountCleanInfo.json +1046 -0
  186. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AccountContactRelation.json +132 -0
  187. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AccountContactRole.json +118 -0
  188. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AccountInsight.json +100 -0
  189. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AccountOwnerSharingRule.json +65 -0
  190. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AccountPartner.json +130 -0
  191. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AccountPlan.json +156 -0
  192. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AccountPlanObjMeasCalcCond.json +46 -0
  193. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AccountPlanObjMeasCalcDef.json +70 -0
  194. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AccountPlanObjMeasCalcDefLocalization.json +38 -0
  195. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AccountPlanObjMeasRela.json +51 -0
  196. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AccountPlanObjective.json +109 -0
  197. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AccountPlanObjectiveMeasure.json +103 -0
  198. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AccountRelationship.json +127 -0
  199. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AccountRelationshipShareRule.json +154 -0
  200. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AccountShare.json +127 -0
  201. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AccountTag.json +38 -0
  202. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AccountTeamMember.json +77 -0
  203. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AccountTerritoryAssignmentRule.json +45 -0
  204. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AccountTerritoryAssignmentRuleItem.json +43 -0
  205. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AccountTerritorySharingRule.json +65 -0
  206. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AccountUserTerritory2View.json +77 -0
  207. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ActionCadence.json +234 -0
  208. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ActionCadenceRule.json +143 -0
  209. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ActionCadenceRuleCondition.json +107 -0
  210. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ActionCadenceStep.json +625 -0
  211. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ActionCadenceStepTracker.json +272 -0
  212. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ActionCadenceStepVariant.json +49 -0
  213. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ActionCadenceTracker.json +232 -0
  214. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ActionCdncStpMonthlyMetric.json +668 -0
  215. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ActionLinkGroupTemplate.json +141 -0
  216. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ActionLinkTemplate.json +196 -0
  217. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ActionPlan.json +206 -0
  218. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ActionPlanItem.json +151 -0
  219. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ActionPlanTemplate.json +224 -0
  220. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ActionPlanTemplateItem.json +159 -0
  221. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ActionPlanTemplateItemValue.json +165 -0
  222. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ActionPlanTemplateVersion.json +149 -0
  223. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ActiveFeatureLicenseMetric.json +85 -0
  224. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ActivePermSetLicenseMetric.json +111 -0
  225. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ActiveProfileMetric.json +94 -0
  226. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ActiveScratchOrg.json +250 -0
  227. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ActivityFieldHistory.json +191 -0
  228. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ActivityHistory.json +396 -0
  229. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ActivityMetric.json +218 -0
  230. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ActivityUsrConnectionStatus.json +161 -0
  231. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AdditionalNumber.json +101 -0
  232. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Address.json +278 -0
  233. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AgentWork.json +539 -0
  234. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AgentWorkConversationalData.json +129 -0
  235. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AgentWorkSkill.json +136 -0
  236. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AiGenActionItem.json +126 -0
  237. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AiGenActionItemInfo.json +105 -0
  238. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AiJobRun.json +162 -0
  239. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AiJobRunItem.json +156 -0
  240. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AiModelLanguage.json +54 -0
  241. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AllowedEmailDomain.json +23 -0
  242. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AlternativePaymentMethod.json +479 -0
  243. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AnalyticsAssetAction.json +106 -0
  244. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AnalyticsChangeEventLog.json +128 -0
  245. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AnalyticsContainerWidgetDef.json +85 -0
  246. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AnalyticsDashboard.json +204 -0
  247. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AnalyticsDashboardWidget.json +103 -0
  248. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AnalyticsDownloadEventLog.json +103 -0
  249. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AnalyticsInteractEventLog.json +115 -0
  250. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AnalyticsLicensedAsset.json +75 -0
  251. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AnalyticsPerfEventLog.json +103 -0
  252. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AnalyticsVisualization.json +184 -0
  253. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AnalyticsVizField.json +203 -0
  254. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AnalyticsVizViewDef.json +145 -0
  255. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AnalyticsWorkspace.json +107 -0
  256. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AnalyticsWorkspaceAsset.json +142 -0
  257. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Announcement.json +112 -0
  258. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ApexCalloutEventLog.json +118 -0
  259. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ApexClass.json +139 -0
  260. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ApexComponent.json +139 -0
  261. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ApexEmailNotification.json +85 -0
  262. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ApexExecutionEventLog.json +113 -0
  263. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ApexExtlCalloutEventLog.json +113 -0
  264. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ApexInlineEventLog.json +8 -0
  265. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ApexLog.json +147 -0
  266. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ApexPage.json +157 -0
  267. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ApexPageInfo.json +127 -0
  268. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ApexRestApiEventLog.json +132 -0
  269. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ApexSoapApiEventLog.json +103 -0
  270. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ApexTestQueueItem.json +107 -0
  271. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ApexTestResult.json +206 -0
  272. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ApexTestResultLimits.json +198 -0
  273. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ApexTestRunResult.json +216 -0
  274. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ApexTestSuite.json +71 -0
  275. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ApexTrigger.json +221 -0
  276. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ApexTriggerEventLog.json +114 -0
  277. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ApexTypeImplementor.json +121 -0
  278. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ApexUnexpectedExcpEventLog.json +48 -0
  279. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Apex_Callout_Event_Type.json +115 -0
  280. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Apex_Execution_Event_Type.json +111 -0
  281. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Apex_Inline_Event_Type.json +8 -0
  282. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Apex_REST_API_Event_Type.json +143 -0
  283. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Apex_SOAP_Event_Type.json +103 -0
  284. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Apex_Trigger_Event_Type.json +115 -0
  285. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Apex_Unexpected_Exception_Event_Type.json +64 -0
  286. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ApiTotalUsageEventLog.json +78 -0
  287. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AppAnalyticsQueryRequest.json +225 -0
  288. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AppDefinition.json +218 -0
  289. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AppExtension.json +131 -0
  290. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AppMenuItem.json +364 -0
  291. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AppTabMember.json +91 -0
  292. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AppUsageAssignment.json +91 -0
  293. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ApplicationFormTemplate.json +155 -0
  294. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AppointmentAssignmentPolicy.json +115 -0
  295. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AppointmentScheduleAggr.json +126 -0
  296. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AppointmentScheduleLog.json +150 -0
  297. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AppointmentSchedulingPolicy.json +218 -0
  298. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AppointmentTopicTimeSlot.json +139 -0
  299. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Approval.json +53 -0
  300. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ApprovalAlertContentDef.json +47 -0
  301. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ApprovalSubmission.json +208 -0
  302. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ApprovalSubmissionDetail.json +174 -0
  303. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ApprovalWorkItem.json +259 -0
  304. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ApprovalWorkItemCondition.json +163 -0
  305. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ApprovalWorkItemCriteria.json +118 -0
  306. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ApptBundleAggrDurDnscale.json +137 -0
  307. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ApptBundleAggrPolicy.json +194 -0
  308. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ApptBundleConfig.json +213 -0
  309. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ApptBundlePolicy.json +216 -0
  310. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ApptBundlePolicySvcTerr.json +119 -0
  311. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ApptBundlePropagatePolicy.json +151 -0
  312. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ApptBundleRestrictPolicy.json +131 -0
  313. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ApptBundleSortPolicy.json +142 -0
  314. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ArchiveActivity.json +98 -0
  315. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ArchivePolicyDefinition.json +78 -0
  316. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Article_Type__DataCategorySelection.json +35 -0
  317. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Asset.json +769 -0
  318. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AssetAction.json +394 -0
  319. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AssetActionSource.json +443 -0
  320. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AssetAttribute.json +125 -0
  321. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AssetContractRelationship.json +139 -0
  322. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AssetDowntimePeriod.json +147 -0
  323. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AssetOwnerSharingRule.json +50 -0
  324. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AssetRateAdjustment.json +133 -0
  325. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AssetRateCardEntry.json +189 -0
  326. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AssetRelationship.json +222 -0
  327. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AssetShare.json +102 -0
  328. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AssetStatePeriod.json +274 -0
  329. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AssetStatePeriodAttribute.json +120 -0
  330. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AssetTag.json +38 -0
  331. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AssetTokenEvent.json +91 -0
  332. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AssetWarranty.json +241 -0
  333. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AssignedResource.json +189 -0
  334. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AssignmentRule.json +84 -0
  335. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AssociatedLocation.json +151 -0
  336. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AsyncApexJob.json +183 -0
  337. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AsyncOpSyndicationFeedFile.json +77 -0
  338. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AsyncOperationLog.json +193 -0
  339. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AsyncOperationTracker.json +260 -0
  340. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AsyncReportRunEventLog.json +152 -0
  341. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Asynchronous_Report_Run_Event_Type.json +143 -0
  342. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AttachedContentDocument.json +177 -0
  343. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AttachedContentNote.json +136 -0
  344. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Attachment.json +170 -0
  345. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AttachmentEventLog.json +58 -0
  346. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AttribModel.json +141 -0
  347. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AttribModelStage.json +61 -0
  348. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AttribModelStageMetric.json +53 -0
  349. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AttributeDefinition.json +231 -0
  350. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AttributePicklist.json +159 -0
  351. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AttributePicklistValue.json +184 -0
  352. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Audience.json +125 -0
  353. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AuraDefinition.json +107 -0
  354. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AuraDefinitionBundle.json +122 -0
  355. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AuraDefinitionBundleInfo.json +51 -0
  356. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AuraDefinitionInfo.json +67 -0
  357. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AuraRequestEventLog.json +92 -0
  358. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Aura_Request_Event_Type.json +99 -0
  359. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AuthConfig.json +164 -0
  360. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AuthConfigProviders.json +88 -0
  361. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AuthProvParamFwdAllowlist.json +91 -0
  362. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AuthProvider.json +376 -0
  363. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AuthSession.json +209 -0
  364. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AuthorizationForm.json +168 -0
  365. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AuthorizationFormConsent.json +239 -0
  366. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AuthorizationFormDataUse.json +134 -0
  367. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AuthorizationFormText.json +181 -0
  368. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AutomatedAction.json +129 -0
  369. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AutomatedActionCondition.json +62 -0
  370. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AutomatedActionOverride.json +64 -0
  371. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AutomatedActionParameter.json +57 -0
  372. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/AutomatedActionReminder.json +72 -0
  373. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/BackgroundOperation.json +266 -0
  374. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/BackgroundOperationResult.json +53 -0
  375. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/BatchApexErrorEvent.json +76 -0
  376. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/BillingBatchScheduler.json +278 -0
  377. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/BillingPeriodItem.json +170 -0
  378. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/BillingPolicy.json +131 -0
  379. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/BillingSchedule.json +345 -0
  380. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/BillingScheduleGroup.json +595 -0
  381. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/BillingTreatment.json +150 -0
  382. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/BillingTreatmentItem.json +214 -0
  383. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/BlockedRedirectEventLog.json +58 -0
  384. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Blocked_Redirect_Event_Type.json +63 -0
  385. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Bookmark.json +38 -0
  386. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/BotDefinition.json +136 -0
  387. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/BotVersion.json +132 -0
  388. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/BrandTemplate.json +116 -0
  389. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/BrandingSet.json +111 -0
  390. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Brief.json +172 -0
  391. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/BriefcaseAssignment.json +86 -0
  392. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/BriefcaseDefinition.json +122 -0
  393. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/BriefcaseRule.json +180 -0
  394. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/BriefcaseRuleFilter.json +114 -0
  395. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/BroadcastCommAudience.json +92 -0
  396. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/BroadcastCommunication.json +77 -0
  397. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/BroadcastTopic.json +64 -0
  398. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/BroadcastTopicGroup.json +44 -0
  399. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/BroadcastTopicNetwork.json +44 -0
  400. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/BrowserPolicyViolation.json +134 -0
  401. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/BulkApi2EventLog.json +103 -0
  402. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/BulkApiEventLog.json +98 -0
  403. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/BulkApiRequestEventLog.json +118 -0
  404. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Bulk_API_2.0_Event_Type.json +99 -0
  405. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Bulk_API_Event_Type.json +103 -0
  406. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Bulk_API_Request_Event_Type.json +115 -0
  407. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/BusinessAlert.json +82 -0
  408. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/BusinessAlertStatus.json +47 -0
  409. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/BusinessBrand.json +127 -0
  410. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/BusinessHours.json +235 -0
  411. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/BusinessProcessDefinition.json +116 -0
  412. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/BusinessProcessFeedback.json +95 -0
  413. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/BusinessProcessGroup.json +110 -0
  414. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Business_Process.json +47 -0
  415. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/BuyerAccount.json +230 -0
  416. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/BuyerCriteria.json +161 -0
  417. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/BuyerGroup.json +131 -0
  418. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/BuyerGroupBuyerCriteria.json +108 -0
  419. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/BuyerGroupMember.json +109 -0
  420. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/BuyerGroupPricebook.json +127 -0
  421. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/BuyerGroupRelatedObject.json +127 -0
  422. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CORS_Violation_Record_Event_Type.json +43 -0
  423. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CSP_Violation_Event_Type.json +88 -0
  424. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CalcProcStepRelationship.json +147 -0
  425. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CalculatedInsightRangeBound.json +160 -0
  426. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CalculationMatrix.json +206 -0
  427. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CalculationMatrixColumn.json +163 -0
  428. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CalculationMatrixRow.json +140 -0
  429. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CalculationMatrixVersion.json +234 -0
  430. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CalculationProcedure.json +153 -0
  431. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CalculationProcedureStep.json +303 -0
  432. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CalculationProcedureVariable.json +182 -0
  433. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CalculationProcedureVersion.json +210 -0
  434. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Calendar.json +94 -0
  435. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CalendarView.json +196 -0
  436. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CallCenter.json +115 -0
  437. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CallCenterRoutingMap.json +136 -0
  438. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CallCoachingMediaProvider.json +91 -0
  439. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CallCtrAgentFavTrfrDest.json +117 -0
  440. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CallCtrAgentFavTrfrDestShare.json +91 -0
  441. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CallDisposition.json +77 -0
  442. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CallDispositionCategory.json +97 -0
  443. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CallTemplate.json +196 -0
  444. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Campaign.json +577 -0
  445. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CampaignInfluence.json +60 -0
  446. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CampaignInfluenceModel.json +156 -0
  447. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CampaignMember.json +389 -0
  448. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CampaignMemberStatus.json +117 -0
  449. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CampaignOwnerSharingRule.json +48 -0
  450. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CampaignShare.json +97 -0
  451. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CampaignTag.json +38 -0
  452. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CardPaymentMethod.json +583 -0
  453. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CartCheckoutSession.json +164 -0
  454. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CartDeliveryGroup.json +434 -0
  455. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CartDeliveryGroupMethod.json +264 -0
  456. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CartDeliveryGroupMethodAdj.json +163 -0
  457. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CartItem.json +751 -0
  458. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CartItemAttribute.json +75 -0
  459. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CartItemPriceAdjustment.json +265 -0
  460. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CartTax.json +174 -0
  461. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CartValidationOutput.json +158 -0
  462. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Case.json +524 -0
  463. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CaseArticle.json +105 -0
  464. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CaseComment.json +135 -0
  465. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CaseContactRole.json +104 -0
  466. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CaseHistory.json +109 -0
  467. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CaseHistory2.json +107 -0
  468. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CaseMilestone.json +297 -0
  469. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CaseOwnerSharingRule.json +50 -0
  470. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CaseParticipant.json +179 -0
  471. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CaseRelatedIssue.json +121 -0
  472. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CaseShare.json +102 -0
  473. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CaseSolution.json +86 -0
  474. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CaseStatus.json +104 -0
  475. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CaseSubjectParticle.json +120 -0
  476. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CaseTag.json +38 -0
  477. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CaseTeamMember.json +123 -0
  478. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CaseTeamRole.json +84 -0
  479. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CaseTeamTemplate.json +75 -0
  480. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CaseTeamTemplateMember.json +85 -0
  481. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CaseTeamTemplateRecord.json +75 -0
  482. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CategoryData.json +86 -0
  483. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CategoryNode.json +96 -0
  484. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CategoryNodeLocalization.json +98 -0
  485. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ChangeRequest.json +281 -0
  486. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ChangeRequestRelatedIssue.json +116 -0
  487. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ChangeRequestRelatedItem.json +126 -0
  488. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ChangeSetOperationEventLog.json +78 -0
  489. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Change_Set_Operation_Event_Type.json +83 -0
  490. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ChannelObjectLinkingRule.json +168 -0
  491. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ChannelProgram.json +129 -0
  492. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ChannelProgramLevel.json +147 -0
  493. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ChannelProgramMember.json +131 -0
  494. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ChatterActivity.json +108 -0
  495. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ChatterAnswersActivity.json +108 -0
  496. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ChatterAnswersReputationLevel.json +33 -0
  497. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ChatterConversation.json +23 -0
  498. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ChatterConversationMember.json +28 -0
  499. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ChatterExtension.json +192 -0
  500. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ChatterExtensionConfig.json +112 -0
  501. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ChatterMessage.json +43 -0
  502. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ClientBrowser.json +82 -0
  503. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CollabDocumentMetric.json +76 -0
  504. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CollabDocumentMetricRecord.json +41 -0
  505. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CollabTemplateMetric.json +58 -0
  506. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CollabTemplateMetricRecord.json +41 -0
  507. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CollabUserEngagementMetric.json +81 -0
  508. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CollabUserEngmtRecordLink.json +41 -0
  509. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CollaborationGroup.json +285 -0
  510. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CollaborationGroupMember.json +123 -0
  511. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CollaborationGroupMemberRequest.json +104 -0
  512. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CollaborationGroupRecord.json +100 -0
  513. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CollaborationInvitation.json +127 -0
  514. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CollaborationRoom.json +139 -0
  515. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ColorDefinition.json +87 -0
  516. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CombinedAttachment.json +172 -0
  517. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CommSubscription.json +119 -0
  518. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CommSubscriptionChannelType.json +158 -0
  519. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CommSubscriptionConsent.json +264 -0
  520. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CommSubscriptionTiming.json +120 -0
  521. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CommerceEntitlementBuyerGroup.json +99 -0
  522. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CommerceEntitlementPolicy.json +144 -0
  523. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CommerceEntitlementPolicyShare.json +84 -0
  524. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CommerceEntitlementProduct.json +99 -0
  525. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CommissionSchedule.json +109 -0
  526. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CommissionScheduleAssignment.json +95 -0
  527. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Community.json +60 -0
  528. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Composite_API_Event_Type.json +91 -0
  529. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Composite_API_Subrequest_Event_Type.json +107 -0
  530. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ConcurApexLimitEventLog.json +48 -0
  531. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Concurrent_Long-Running_Apex_Limit_Event_Type.json +56 -0
  532. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ConferenceNumber.json +136 -0
  533. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ConnectedApplication.json +191 -0
  534. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Console_Event_Type.json +111 -0
  535. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Consumption_Rate.json +68 -0
  536. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Consumption_Schedule.json +113 -0
  537. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ContCalloutSummaryEventLog.json +78 -0
  538. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Contact.json +869 -0
  539. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ContactCenterChannel.json +134 -0
  540. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ContactCleanInfo.json +497 -0
  541. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ContactDailyMetric.json +441 -0
  542. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ContactMonthlyMetric.json +412 -0
  543. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ContactOwnerSharingRule.json +48 -0
  544. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ContactPointAddress.json +352 -0
  545. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ContactPointConsent.json +238 -0
  546. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ContactPointEmail.json +238 -0
  547. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ContactPointPhone.json +290 -0
  548. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ContactPointTypeConsent.json +253 -0
  549. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ContactRequest.json +220 -0
  550. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ContactRequestShare.json +95 -0
  551. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ContactShare.json +102 -0
  552. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ContactSuggestionInsight.json +135 -0
  553. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ContactTag.json +38 -0
  554. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ContentAsset.json +124 -0
  555. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ContentBody.json +44 -0
  556. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ContentDistribution.json +271 -0
  557. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ContentDistributionEventLog.json +58 -0
  558. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ContentDistributionView.json +94 -0
  559. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ContentDocLinkEventLog.json +56 -0
  560. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ContentDocument.json +292 -0
  561. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ContentDocumentHistory.json +107 -0
  562. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ContentDocumentLink.json +93 -0
  563. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ContentDocumentListViewMapping.json +45 -0
  564. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ContentDocumentSubscription.json +80 -0
  565. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ContentFolder.json +95 -0
  566. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ContentFolderItem.json +133 -0
  567. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ContentFolderLink.json +71 -0
  568. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ContentFolderMember.json +86 -0
  569. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ContentHubItem.json +105 -0
  570. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ContentHubRepository.json +33 -0
  571. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ContentNote.json +196 -0
  572. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ContentNotification.json +103 -0
  573. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ContentTagSubscription.json +49 -0
  574. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ContentTaxonomy.json +89 -0
  575. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ContentTaxonomyRelatedTerm.json +90 -0
  576. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ContentTaxonomyTerm.json +101 -0
  577. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ContentTaxonomyTermRelatedTerm.json +116 -0
  578. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ContentTaxonomyTermRelationshipType.json +91 -0
  579. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ContentTransferEventLog.json +65 -0
  580. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ContentUserSubscription.json +62 -0
  581. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ContentVersion.json +498 -0
  582. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ContentVersionComment.json +76 -0
  583. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ContentVersionHistory.json +107 -0
  584. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ContentVersionRating.json +87 -0
  585. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ContentWorkspace.json +176 -0
  586. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ContentWorkspaceDoc.json +81 -0
  587. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ContentWorkspaceMember.json +96 -0
  588. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ContentWorkspacePermission.json +201 -0
  589. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ContentWorkspaceSubscription.json +62 -0
  590. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Content_Distribution_Event_Type.json +63 -0
  591. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Content_Document_Link_Event_Type.json +59 -0
  592. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Content_Transfer_Event_Type.json +75 -0
  593. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ContextParamMap.json +91 -0
  594. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Continuation_Callout_Summary_Event_Type.json +85 -0
  595. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Contract.json +624 -0
  596. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ContractContactRole.json +111 -0
  597. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ContractLineItem.json +271 -0
  598. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ContractLineOutcome.json +216 -0
  599. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ContractLineOutcomeData.json +151 -0
  600. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ContractStatus.json +105 -0
  601. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ContractTag.json +38 -0
  602. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ConvAnalysisSummary.json +61 -0
  603. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ConvAnalysisTopic.json +103 -0
  604. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ConvAnalysisTopicEntry.json +52 -0
  605. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ConvIntelligenceSignalRule.json +157 -0
  606. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ConvIntelligenceSignalSubRule.json +116 -0
  607. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ConvMessageSendRequest.json +340 -0
  608. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Conversation.json +112 -0
  609. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ConversationApiLog.json +172 -0
  610. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ConversationChannelDefinition.json +336 -0
  611. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ConversationContextEntry.json +99 -0
  612. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ConversationEntry.json +268 -0
  613. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ConversationParticipant.json +171 -0
  614. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ConversationVendorInfo.json +370 -0
  615. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CorsWhitelistEntry.json +109 -0
  616. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Coupon.json +195 -0
  617. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CouponCodeRedemption.json +116 -0
  618. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CreditMemo.json +473 -0
  619. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CreditMemoAddressGroup.json +206 -0
  620. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CreditMemoInvApplication.json +238 -0
  621. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CreditMemoLine.json +483 -0
  622. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Crisis.json +63 -0
  623. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CronJobDetail.json +53 -0
  624. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CronTrigger.json +150 -0
  625. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CryptoProdCatgWalletGroup.json +62 -0
  626. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CspTrustedSite.json +210 -0
  627. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CspViolationEventLog.json +93 -0
  628. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CurrencyType.json +108 -0
  629. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CustExpIntlTransfSetup.json +56 -0
  630. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CustomBrand.json +63 -0
  631. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CustomBrandAsset.json +104 -0
  632. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CustomFieldDisplayValue.json +115 -0
  633. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CustomHelpMenuItem.json +107 -0
  634. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CustomHelpMenuSection.json +99 -0
  635. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CustomHttpHeader.json +112 -0
  636. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CustomMsgChannel.json +120 -0
  637. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CustomNotificationType.json +144 -0
  638. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CustomPermission.json +134 -0
  639. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/CustomPermissionDependency.json +90 -0
  640. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Custom_Metadata_Type__mdt.json +41 -0
  641. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Custom_Object__Feed.json +78 -0
  642. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Custom_Object___c___c.json +62 -0
  643. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Customer.json +137 -0
  644. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DandBCompany.json +1172 -0
  645. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Dashboard.json +311 -0
  646. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DashboardComponent.json +71 -0
  647. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DashboardTag.json +38 -0
  648. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Dashboard_Event_Type.json +107 -0
  649. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DataAssessmentFieldMetric.json +139 -0
  650. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DataAssessmentMetric.json +133 -0
  651. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DataAssessmentValueMetric.json +109 -0
  652. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DataDetPlcyDataSrchExps.json +47 -0
  653. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DataDetPlcyMdatScanCrit.json +47 -0
  654. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DataDetPlcySstvDataCatg.json +37 -0
  655. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DataDetectJobObjectSession.json +8 -0
  656. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DataDetectJobSessSummary.json +8 -0
  657. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DataDetectJobSession.json +71 -0
  658. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DataDetectPolicy.json +55 -0
  659. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DataDetectPolicyObjField.json +32 -0
  660. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DataDetectPolicyObject.json +37 -0
  661. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DataDetectPolicySnapshot.json +8 -0
  662. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DataDetectScanResult.json +62 -0
  663. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DataEncryptionKey.json +173 -0
  664. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DataIntegrationRecordPurchasePermission.json +94 -0
  665. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DataKitDeployEvent.json +162 -0
  666. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DataKitDeploymentLog.json +285 -0
  667. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DataMaskCustomValueLibrary.json +157 -0
  668. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DataStatistics.json +10 -0
  669. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DataUseLegalBasis.json +125 -0
  670. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DataUsePurpose.json +160 -0
  671. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DataWeaveResource.json +152 -0
  672. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DatabaseSaveEventLog.json +68 -0
  673. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Database_Save_Event_Type.json +71 -0
  674. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DatacloudCompany.json +471 -0
  675. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DatacloudContact.json +238 -0
  676. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DatacloudDandBCompany.json +1201 -0
  677. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DatacloudOwnedEntity.json +124 -0
  678. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DatacloudPurchaseUsage.json +137 -0
  679. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DatasetExport.json +127 -0
  680. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DatasetExportPart.json +116 -0
  681. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DatedConversionRate.json +98 -0
  682. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DealIndirectPartner.json +91 -0
  683. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DeclinedEventRelation.json +117 -0
  684. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DelegatedAccount.json +158 -0
  685. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DeleteEvent.json +90 -0
  686. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DeliveryEstimationSetup.json +243 -0
  687. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DevopsActivityLog.json +125 -0
  688. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DevopsEnvDeployment.json +144 -0
  689. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DevopsEnvDeploymentMbr.json +81 -0
  690. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DevopsEnvironment.json +110 -0
  691. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DevopsPipeline.json +64 -0
  692. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DevopsPipelineEnvironment.json +56 -0
  693. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DevopsPipelineStage.json +80 -0
  694. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DevopsPipelineStageTrigger.json +72 -0
  695. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DevopsPipelineTestProvider.json +59 -0
  696. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DevopsPipelnStgProm.json +63 -0
  697. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DevopsPipelnStgPromWkItem.json +70 -0
  698. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DevopsProject.json +52 -0
  699. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DevopsProjectPipeline.json +51 -0
  700. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DevopsQualityGate.json +45 -0
  701. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DevopsQualityGateResult.json +54 -0
  702. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DevopsQualityGateRule.json +52 -0
  703. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DevopsQualityGateRuleResult.json +54 -0
  704. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DevopsRequestInfo.json +83 -0
  705. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DevopsTest.json +133 -0
  706. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DevopsTestExecution.json +104 -0
  707. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DevopsTestProvider.json +61 -0
  708. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DevopsTestProviderSyncLog.json +74 -0
  709. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DevopsTestSuite.json +98 -0
  710. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DevopsTestSuiteExecution.json +126 -0
  711. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DevopsTestSuiteGroupExec.json +79 -0
  712. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DevopsTestSuiteStage.json +66 -0
  713. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DevopsTestSuiteTest.json +66 -0
  714. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DevopsWkItmTstSteGrpExec.json +54 -0
  715. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DigitalSignature.json +188 -0
  716. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DigitalWallet.json +427 -0
  717. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DirectMessage.json +30 -0
  718. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Division.json +38 -0
  719. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DivisionLocalization.json +38 -0
  720. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DocAtchDownloadEventLog.json +43 -0
  721. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Document.json +243 -0
  722. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DocumentAttachmentMap.json +75 -0
  723. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DocumentRecipient.json +246 -0
  724. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DocumentTag.json +38 -0
  725. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Document_Attachment_Downloads_Event_Type.json +51 -0
  726. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Domain.json +104 -0
  727. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DomainSite.json +85 -0
  728. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DsarPolicy.json +45 -0
  729. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DsarPolicyLog.json +85 -0
  730. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DuplicateJob.json +73 -0
  731. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DuplicateJobDefinition.json +43 -0
  732. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DuplicateJobMatchingRule.json +43 -0
  733. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DuplicateJobMatchingRuleDefinition.json +28 -0
  734. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DuplicateRecordItem.json +103 -0
  735. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DuplicateRecordSet.json +126 -0
  736. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DuplicateRule.json +139 -0
  737. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/DynamicDataCapture.json +215 -0
  738. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ElectronicMediaGroup.json +135 -0
  739. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ElectronicMediaUse.json +82 -0
  740. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/EmailContent.json +320 -0
  741. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/EmailDomainFilter.json +117 -0
  742. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/EmailDomainKey.json +214 -0
  743. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/EmailInsight.json +79 -0
  744. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/EmailInsightAction.json +54 -0
  745. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/EmailMessage.json +506 -0
  746. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/EmailMessageMigration.json +8 -0
  747. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/EmailMessageRelation.json +121 -0
  748. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/EmailRelay.json +130 -0
  749. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/EmailRoutingAddress.json +83 -0
  750. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/EmailServicesAddress.json +137 -0
  751. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/EmailServicesFunction.json +208 -0
  752. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/EmailStatus.json +119 -0
  753. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/EmailTemplate.json +414 -0
  754. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/EmailTemplateMonthlyMetric.json +577 -0
  755. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/EmbeddedServiceDetail.json +339 -0
  756. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/EmbeddedServiceLabel.json +71 -0
  757. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/EmpUserProvisionProcessErr.json +148 -0
  758. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/EmpUserProvisioningProcess.json +151 -0
  759. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Employee.json +281 -0
  760. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Employee2.json +97 -0
  761. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/EmployeeCrisisAssessment.json +71 -0
  762. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/EnablementMeasureDefinition.json +91 -0
  763. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/EnablementProgram.json +110 -0
  764. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/EnablementProgramDefinition.json +49 -0
  765. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/EnblMeasureObjectDefinition.json +66 -0
  766. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/EnblPgmTaskMeasureProgress.json +45 -0
  767. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/EnblProgramSection.json +42 -0
  768. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/EnblProgramTaskDefinition.json +106 -0
  769. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/EnblProgramTaskMeasure.json +42 -0
  770. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/EnblProgramTaskProgress.json +80 -0
  771. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/EnblProgramTaskSubCategory.json +52 -0
  772. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/EngagementChannelType.json +130 -0
  773. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/EngagementSignal.json +65 -0
  774. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/EngagementSignalCmpndMetric.json +74 -0
  775. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/EngagementSignalMetric.json +56 -0
  776. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/EnhancedLetterhead.json +117 -0
  777. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Entitlement.json +280 -0
  778. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/EntitlementContact.json +102 -0
  779. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/EntitlementTemplate.json +138 -0
  780. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/EntityHistory.json +48 -0
  781. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/EntityMilestone.json +359 -0
  782. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/EntitySubscription.json +87 -0
  783. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/EnvironmentHubMember.json +108 -0
  784. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Event.json +528 -0
  785. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/EventBusSubscriber.json +160 -0
  786. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/EventLogFile.json +151 -0
  787. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/EventLogFile_Supported_Event_Types.json +8 -0
  788. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/EventRelation.json +148 -0
  789. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/EventRelayConfig.json +148 -0
  790. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/EventRelayFeedback.json +166 -0
  791. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/EventStagedInviteeEmail.json +123 -0
  792. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/EventTag.json +38 -0
  793. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/EventWhoRelation.json +92 -0
  794. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Expense.json +252 -0
  795. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ExpenseReport.json +140 -0
  796. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ExpenseReportEntry.json +159 -0
  797. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ExpressionFilter.json +105 -0
  798. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ExpressionFilterCriteria.json +129 -0
  799. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ExpressionSetConstraintObj.json +66 -0
  800. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ExtConvParticipantIntegDef.json +66 -0
  801. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ExtDataShare.json +164 -0
  802. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ExtKnowledgeConnector.json +145 -0
  803. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ExternalAccountHierarchy.json +158 -0
  804. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ExternalAccountHierarchyHistory.json +94 -0
  805. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ExternalClientApplication.json +10 -0
  806. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ExternalDataSource.json +209 -0
  807. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ExternalDataUserAuth.json +131 -0
  808. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ExternalEncryptionRootKey.json +122 -0
  809. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ExternalEvent.json +126 -0
  810. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ExternalEventMapping.json +143 -0
  811. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ExternalSocialAccount.json +259 -0
  812. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/External_Cross-Org_Callout_Event_Type.json +130 -0
  813. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/External_Custom_Apex_Callout_Event_Type.json +124 -0
  814. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/External_Data_Source_Callout_Event_Type.json +141 -0
  815. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/External_OData_Callout_Event_Type.json +160 -0
  816. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ExtlClntAppOauthPlcyCnfg.json +10 -0
  817. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ExtlClntAppOauthSettings.json +10 -0
  818. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ExtlClntAppPlcyCnfg.json +10 -0
  819. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ExtlIntrIdMapping.json +57 -0
  820. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ExtlRecShrCnct.json +54 -0
  821. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ExtlRecShrCnctAccnt.json +39 -0
  822. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ExtlRecShrField.json +67 -0
  823. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ExtlRecShrFieldMap.json +34 -0
  824. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ExtlRecShrLead.json +41 -0
  825. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ExtlRecShrObject.json +49 -0
  826. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ExtlRecShrOpportunity.json +41 -0
  827. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ExtlRecShrPcklstOptn.json +42 -0
  828. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ExtlRecShrPicklistMap.json +34 -0
  829. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ExtlRecShrRecordMap.json +71 -0
  830. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/FSL__Time_Dependency__c.json +34 -0
  831. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/FeedAttachment.json +87 -0
  832. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/FeedComment.json +232 -0
  833. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/FeedItem.json +322 -0
  834. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/FeedLike.json +84 -0
  835. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/FeedPollChoice.json +79 -0
  836. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/FeedPollVote.json +76 -0
  837. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/FeedPost.json +85 -0
  838. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/FeedRevision.json +125 -0
  839. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/FeedTrackedChange.json +93 -0
  840. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/FieldChangeSnapshot.json +86 -0
  841. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/FieldHistoryArchive.json +83 -0
  842. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/FieldPermissions.json +93 -0
  843. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/FieldSecurityClassification.json +107 -0
  844. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/FieldServiceMobileSettings.json +599 -0
  845. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/FieldServiceOrgSettings.json +210 -0
  846. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/FileSearchActivity.json +156 -0
  847. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/FiscalYearSettings.json +165 -0
  848. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/FldSvcObjChg.json +150 -0
  849. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/FldSvcObjChgDtl.json +89 -0
  850. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/FlexQueueItem.json +76 -0
  851. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/FlowDefinitionView.json +368 -0
  852. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/FlowInterview.json +209 -0
  853. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/FlowInterviewLog.json +184 -0
  854. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/FlowInterviewLogEntry.json +153 -0
  855. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/FlowInterviewLogOwnerSharingRule.json +56 -0
  856. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/FlowInterviewOwnerSharingRule.json +48 -0
  857. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/FlowInterviewShare.json +95 -0
  858. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/FlowNavMetricEventLog.json +78 -0
  859. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/FlowOrchestration.json +323 -0
  860. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/FlowOrchestrationInstance.json +238 -0
  861. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/FlowOrchestrationLog.json +212 -0
  862. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/FlowOrchestrationStageInstance.json +146 -0
  863. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/FlowOrchestrationStepInstance.json +176 -0
  864. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/FlowOrchestrationVersion.json +257 -0
  865. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/FlowOrchestrationWorkItem.json +248 -0
  866. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/FlowRecord.json +469 -0
  867. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/FlowRecordElement.json +128 -0
  868. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/FlowRecordElementOccurrence.json +202 -0
  869. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/FlowRecordRelation.json +101 -0
  870. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/FlowRecordVersion.json +415 -0
  871. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/FlowRecordVersionOccurrence.json +188 -0
  872. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/FlowStageRelation.json +126 -0
  873. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/FlowTestResult.json +186 -0
  874. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/FlowTestView.json +105 -0
  875. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/FlowVariableView.json +126 -0
  876. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/FlowVersionView.json +195 -0
  877. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Flow_Execution_Event_Type.json +75 -0
  878. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Folder.json +126 -0
  879. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/FolderedContentDocument.json +146 -0
  880. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ForecastingAdjustment.json +222 -0
  881. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ForecastingColumnDefinition.json +137 -0
  882. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ForecastingColumnDefinitionLocalization.json +99 -0
  883. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ForecastingColumnDefinition_Formula_Field_Details.json +8 -0
  884. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ForecastingCustomCategory.json +206 -0
  885. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ForecastingCustomData.json +148 -0
  886. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ForecastingDisplayedFamily.json +78 -0
  887. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ForecastingFact.json +146 -0
  888. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ForecastingFilter.json +126 -0
  889. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ForecastingFilterCondition.json +146 -0
  890. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ForecastingGroup.json +134 -0
  891. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ForecastingGroupItem.json +114 -0
  892. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ForecastingItem.json +306 -0
  893. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ForecastingOwnerAdjustment.json +226 -0
  894. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ForecastingQuota.json +182 -0
  895. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ForecastingShare.json +99 -0
  896. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ForecastingSourceDefinition.json +158 -0
  897. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ForecastingSrcRecJudgment.json +107 -0
  898. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ForecastingSubmission.json +183 -0
  899. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ForecastingSubmissionItem.json +120 -0
  900. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ForecastingType.json +238 -0
  901. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ForecastingTypeSource.json +152 -0
  902. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ForecastingUserPreference.json +169 -0
  903. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/FormulaFunction.json +114 -0
  904. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/FormulaFunctionAllowedType.json +67 -0
  905. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/FormulaFunctionCategory.json +63 -0
  906. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/FrcstCustmCatgRampRateSrc.json +111 -0
  907. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/FrcstCustmzAdjustment.json +169 -0
  908. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/FrcstCustmzOwnerAdjustment.json +179 -0
  909. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/FulfillmentOrder.json +684 -0
  910. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/FulfillmentOrderItemAdjustment.json +182 -0
  911. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/FulfillmentOrderItemTax.json +170 -0
  912. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/FulfillmentOrderLineItem.json +445 -0
  913. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/FulfmtRoutgCriteria.json +122 -0
  914. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/FulfmtRoutgCriteriaActnVar.json +59 -0
  915. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/FulfmtRoutgCriteriaCond.json +79 -0
  916. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/FulfmtRoutgCriteriaGrp.json +78 -0
  917. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/FulfmtRoutgCriteriaGrpVer.json +70 -0
  918. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/FunctionConnection.json +48 -0
  919. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/FunctionInvocationRequest.json +94 -0
  920. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/FunctionReference.json +53 -0
  921. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/GenAIConversationSummary.json +56 -0
  922. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/GenAiFunctionDefinition.json +96 -0
  923. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/GenAiPlannerDefinition.json +53 -0
  924. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/GenAiPlannerFunctionDef.json +34 -0
  925. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/GenAiPluginDefinition.json +89 -0
  926. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/GenOpPlanRequest.json +101 -0
  927. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/GeoCountry.json +123 -0
  928. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/GeoState.json +121 -0
  929. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/GeolocationBasedAction.json +190 -0
  930. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Goal.json +78 -0
  931. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/GoalLink.json +31 -0
  932. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/GoogleDoc.json +39 -0
  933. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/GraphQL_Query_Event_Type.json +103 -0
  934. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Group.json +171 -0
  935. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/GroupMember.json +68 -0
  936. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/GroupMembershipEventLog.json +83 -0
  937. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Group_Membership_Event_Type.json +104 -0
  938. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/GtwyProvPaymentMethodType.json +168 -0
  939. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/GuestBuyerProfile.json +103 -0
  940. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/HashtagDefinition.json +38 -0
  941. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/HealthCareDiagnosis.json +232 -0
  942. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/HealthCareProcedure.json +178 -0
  943. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Holiday.json +212 -0
  944. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Hostname_Redirects_Event_Type.json +127 -0
  945. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/IconDefinition.json +108 -0
  946. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Idea.json +310 -0
  947. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/IdeaComment.json +136 -0
  948. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/IdeaReputation.json +73 -0
  949. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/IdeaReputationLevel.json +33 -0
  950. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/IdeaTheme.json +63 -0
  951. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/IdpEventLog.json +129 -0
  952. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/IframeWhiteListUrl.json +79 -0
  953. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Image.json +198 -0
  954. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Incident.json +342 -0
  955. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/IncidentRelatedItem.json +139 -0
  956. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Individual.json +333 -0
  957. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/IndividualApplicationItem.json +126 -0
  958. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/IndividualHistory.json +102 -0
  959. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/IndividualShare.json +95 -0
  960. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Insecure_External_Assets_Event_Type.json +110 -0
  961. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/InsufficientAccessEventLog.json +64 -0
  962. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Insufficient_Access_Event_Type.json +85 -0
  963. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/InternalOrganizationUnit.json +142 -0
  964. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/InventoryItemReservation.json +193 -0
  965. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/InventoryReservation.json +184 -0
  966. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/InvocableActionEventLog.json +88 -0
  967. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Invocable_Action_Event_Type.json +99 -0
  968. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Invoice.json +628 -0
  969. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/InvoiceAddressGroup.json +178 -0
  970. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/InvoiceBatchRun.json +347 -0
  971. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/InvoiceBatchRunCriteria.json +146 -0
  972. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/InvoiceBatchRunRecovery.json +146 -0
  973. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/InvoiceDocument.json +141 -0
  974. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/InvoiceLine.json +619 -0
  975. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/JobProfile.json +109 -0
  976. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/JobProfileQueueGroup.json +72 -0
  977. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/KnowledgeArticle.json +169 -0
  978. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/KnowledgeArticleEventLog.json +88 -0
  979. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/KnowledgeArticleFeedback.json +127 -0
  980. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/KnowledgeArticleVersion.json +459 -0
  981. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/KnowledgeArticleVersionHistory.json +147 -0
  982. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/KnowledgeArticleViewStat.json +81 -0
  983. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/KnowledgeArticleVoteStat.json +70 -0
  984. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Knowledge_Article_View_Event_Type.json +87 -0
  985. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Knowledge__DataCategorySelection.json +89 -0
  986. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Knowledge__Feed.json +172 -0
  987. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Knowledge__ka.json +162 -0
  988. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Knowledge__kav.json +480 -0
  989. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/KnowledgeableUser.json +76 -0
  990. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/LandingPage.json +159 -0
  991. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Lead.json +791 -0
  992. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/LeadCleanInfo.json +720 -0
  993. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/LeadDailyMetric.json +441 -0
  994. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/LeadMonthlyMetric.json +412 -0
  995. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/LeadOwnerSharingRule.json +48 -0
  996. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/LeadShare.json +102 -0
  997. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/LeadStatus.json +104 -0
  998. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/LeadTag.json +38 -0
  999. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/LearningContent.json +71 -0
  1000. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/LearningItem.json +116 -0
  1001. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/LearningItemAssignment.json +79 -0
  1002. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/LearningItemProgress.json +67 -0
  1003. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/LearningItemSubmission.json +52 -0
  1004. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/LearningItemType.json +74 -0
  1005. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/LearningPractice.json +60 -0
  1006. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/LegalEntity.json +196 -0
  1007. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/LicenseDefinitionCustomPermission.json +41 -0
  1008. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/LightningErrorEventLog.json +214 -0
  1009. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/LightningExitByPageMetrics.json +83 -0
  1010. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/LightningExperienceTheme.json +143 -0
  1011. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/LightningLoggerEventLog.json +153 -0
  1012. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/LightningOnboardingConfig.json +152 -0
  1013. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/LightningPageViewEventLog.json +240 -0
  1014. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/LightningPrfmEventLog.json +183 -0
  1015. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/LightningToggleMetrics.json +83 -0
  1016. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/LightningUsageByAppTypeMetrics.json +72 -0
  1017. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/LightningUsageByBrowserMetrics.json +112 -0
  1018. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/LightningUsageByFlexiPageMetrics.json +177 -0
  1019. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/LightningUsageByPageMetrics.json +178 -0
  1020. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Lightning_Error_Event_Type.json +213 -0
  1021. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Lightning_Interaction_Event_Type.json +236 -0
  1022. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Lightning_Logger_Event_Type.json +147 -0
  1023. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Lightning_Page_View_Event_Type.json +260 -0
  1024. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Lightning_Performance_Event_Type.json +173 -0
  1025. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/LinkedArticle.json +121 -0
  1026. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/LinkedArticleFeed.json +172 -0
  1027. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/LinkedArticleHistory.json +94 -0
  1028. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ListEmail.json +462 -0
  1029. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ListEmailIndividualRecipient.json +119 -0
  1030. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ListEmailMonthlyMetric.json +159 -0
  1031. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ListEmailRecipientSource.json +113 -0
  1032. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ListEmailSentResult.json +265 -0
  1033. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ListView.json +109 -0
  1034. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ListViewChart.json +147 -0
  1035. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ListViewChartInstance.json +189 -0
  1036. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/LiveAgentSession.json +246 -0
  1037. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/LiveAgentSessionHistory.json +94 -0
  1038. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/LiveAgentSessionShare.json +84 -0
  1039. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/LiveChatBlockingRule.json +124 -0
  1040. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/LiveChatButton.json +472 -0
  1041. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/LiveChatButtonDeployment.json +77 -0
  1042. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/LiveChatButtonSkill.json +77 -0
  1043. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/LiveChatDeployment.json +176 -0
  1044. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/LiveChatObjectAccessConfig.json +93 -0
  1045. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/LiveChatObjectAccessDefinition.json +87 -0
  1046. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/LiveChatSensitiveDataRule.json +181 -0
  1047. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/LiveChatTranscript.json +444 -0
  1048. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/LiveChatTranscriptEvent.json +136 -0
  1049. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/LiveChatTranscriptShare.json +84 -0
  1050. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/LiveChatTranscriptSkill.json +87 -0
  1051. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/LiveChatUserConfig.json +322 -0
  1052. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/LiveChatUserConfigProfile.json +79 -0
  1053. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/LiveChatUserConfigUser.json +79 -0
  1054. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/LiveChatVisitor.json +97 -0
  1055. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/LocWaitlistMsgTemplate.json +51 -0
  1056. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Location.json +550 -0
  1057. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/LocationGroup.json +140 -0
  1058. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/LocationGroupAssignment.json +152 -0
  1059. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/LocationShippingCarrierMethod.json +137 -0
  1060. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/LocationTrustMeasure.json +168 -0
  1061. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/LocationWaitlist.json +111 -0
  1062. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/LocationWaitlistedParty.json +76 -0
  1063. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/LoginAsEventLog.json +73 -0
  1064. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/LoginEvent.json +241 -0
  1065. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/LoginEventLog.json +143 -0
  1066. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/LoginGeo.json +144 -0
  1067. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/LoginHistory.json +276 -0
  1068. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/LoginIp.json +91 -0
  1069. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Login_As_Event_Type.json +83 -0
  1070. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Login_Event_Type.json +157 -0
  1071. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/LogoutEventLog.json +108 -0
  1072. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/LogoutEventStream.json +10 -0
  1073. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Logout_Event_Type.json +99 -0
  1074. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/LookedUpFromActivity.json +348 -0
  1075. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/MLField.json +75 -0
  1076. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/MLModel.json +154 -0
  1077. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/MLModelFactor.json +138 -0
  1078. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/MLModelFactorComponent.json +177 -0
  1079. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/MLModelMetric.json +175 -0
  1080. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/MLPredictionDefinition.json +145 -0
  1081. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/MLRecommendationDefinition.json +77 -0
  1082. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Macro.json +162 -0
  1083. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/MacroInstruction.json +137 -0
  1084. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/MacroUsage.json +215 -0
  1085. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/MailmergeTemplate.json +177 -0
  1086. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/MaintenanceAsset.json +143 -0
  1087. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/MaintenancePlan.json +310 -0
  1088. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/MaintenanceWorkRule.json +197 -0
  1089. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ManagedContent.json +139 -0
  1090. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ManagedContentChannel.json +149 -0
  1091. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ManagedContentInfo.json +25 -0
  1092. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ManagedContentSpace.json +117 -0
  1093. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ManagedContentVariant.json +173 -0
  1094. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/MarketingForm.json +95 -0
  1095. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/MarketingLink.json +60 -0
  1096. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/MatchingRule.json +162 -0
  1097. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/MatchingRuleItem.json +118 -0
  1098. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/MerchAccPaymentMethodSet.json +113 -0
  1099. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/MerchAccPaymentMethodType.json +116 -0
  1100. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/MerchantAccount.json +178 -0
  1101. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/MerchantAccountEvent.json +71 -0
  1102. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/MessagingChannel.json +371 -0
  1103. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/MessagingChannelSkill.json +84 -0
  1104. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/MessagingChannelUsage.json +137 -0
  1105. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/MessagingConfiguration.json +102 -0
  1106. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/MessagingDeliveryError.json +196 -0
  1107. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/MessagingEndUser.json +247 -0
  1108. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/MessagingLink.json +112 -0
  1109. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/MessagingSession.json +382 -0
  1110. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/MessagingSessionMetrics.json +106 -0
  1111. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/MessagingTemplate.json +99 -0
  1112. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/MetadataApiOpEventLog.json +75 -0
  1113. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/MetadataPackage.json +33 -0
  1114. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/MetadataPackageVersion.json +58 -0
  1115. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Metadata_API_Operation_Event_Type.json +83 -0
  1116. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Metric.json +108 -0
  1117. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/MetricDataLink.json +43 -0
  1118. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/MigratedEmail.json +8 -0
  1119. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/MilestoneType.json +87 -0
  1120. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/MktJourneyDcsnSetup.json +40 -0
  1121. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/MlIntentUtteranceSuggestion.json +115 -0
  1122. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/MobSecurityCertPinConfig.json +179 -0
  1123. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/MobSecurityCertPinEvent.json +94 -0
  1124. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/MobileDeviceAppRegistration.json +266 -0
  1125. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/MobileSecurityAssignment.json +116 -0
  1126. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/MobileSecurityPolicy.json +179 -0
  1127. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/MobileSecurityUserMetric.json +59 -0
  1128. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/MobileSettingsAssignment.json +79 -0
  1129. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/MsgChannelLanguageKeyword.json +185 -0
  1130. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/MsgChannelUsageExternalOrg.json +95 -0
  1131. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Multiblock_Report_Event_Type.json +91 -0
  1132. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/MutingPermissionSet.json +4208 -0
  1133. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/MyDomainDiscoverableLogin.json +128 -0
  1134. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Name.json +209 -0
  1135. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/NamedCredential.json +230 -0
  1136. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/NamedCredentialEventLog.json +85 -0
  1137. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Named_Credential_Event_Type.json +95 -0
  1138. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/NamespaceRegistry.json +92 -0
  1139. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/NavigationLinkSet.json +102 -0
  1140. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/NavigationMenuItem.json +170 -0
  1141. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/NavigationMenuItemLocalization.json +93 -0
  1142. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Network.json +714 -0
  1143. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/NetworkActivityAudit.json +149 -0
  1144. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/NetworkAffinity.json +79 -0
  1145. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/NetworkAuthApiSettings.json +318 -0
  1146. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/NetworkDataCategory.json +131 -0
  1147. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/NetworkDiscoverableLogin.json +102 -0
  1148. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/NetworkEmailTmplAllowlist.json +84 -0
  1149. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/NetworkFeedResponseMetric.json +163 -0
  1150. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/NetworkMember.json +272 -0
  1151. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/NetworkMemberGroup.json +85 -0
  1152. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/NetworkModeration.json +87 -0
  1153. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/NetworkPageOverride.json +87 -0
  1154. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/NetworkSelfRegistration.json +201 -0
  1155. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/NetworkUserHistoryRecent.json +178 -0
  1156. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Note.json +123 -0
  1157. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/NoteAndAttachment.json +121 -0
  1158. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/NoteTag.json +38 -0
  1159. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OSAsyncChgCompletedEvent.json +300 -0
  1160. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OauthCustomScope.json +118 -0
  1161. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OauthCustomScopeApp.json +73 -0
  1162. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OauthToken.json +133 -0
  1163. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OauthTokenExchHandlerApp.json +113 -0
  1164. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OauthTokenExchangeHandler.json +195 -0
  1165. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ObjectDataImport.json +147 -0
  1166. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ObjectDataImportReference.json +88 -0
  1167. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ObjectMetadataTag.json +123 -0
  1168. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ObjectPermissions.json +144 -0
  1169. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ObjectRelatedUrl.json +134 -0
  1170. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ObjectTerritory2AssignmentRule.json +128 -0
  1171. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ObjectTerritory2AssignmentRuleItem.json +108 -0
  1172. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ObjectTerritory2Association.json +103 -0
  1173. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ObjectUserTerritory2View.json +84 -0
  1174. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OmniSupervisorConfig.json +106 -0
  1175. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OmniSupervisorConfigAction.json +94 -0
  1176. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OmniSupervisorConfigGroup.json +86 -0
  1177. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OmniSupervisorConfigProfile.json +86 -0
  1178. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OmniSupervisorConfigQueue.json +86 -0
  1179. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OmniSupervisorConfigSkill.json +86 -0
  1180. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OmniSupervisorConfigTab.json +94 -0
  1181. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OmniSupervisorConfigUser.json +86 -0
  1182. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/One_Commerce_Usage_Event_Type.json +163 -0
  1183. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OpenActivity.json +381 -0
  1184. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OperatingHours.json +135 -0
  1185. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OperatingHoursHistory.json +96 -0
  1186. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OperatingHoursHoliday.json +131 -0
  1187. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OppSalesMethodology.json +53 -0
  1188. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OppSalesMethodologyItem.json +63 -0
  1189. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Opportunity.json +611 -0
  1190. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OpportunityCompetitor.json +111 -0
  1191. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OpportunityContactRole.json +130 -0
  1192. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OpportunityContactRoleSuggestionInsight.json +75 -0
  1193. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OpportunityFieldHistory.json +107 -0
  1194. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OpportunityHistory.json +160 -0
  1195. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OpportunityInsight.json +110 -0
  1196. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OpportunityLineItem.json +306 -0
  1197. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OpportunityLineItemSchedule.json +128 -0
  1198. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OpportunityLineItemSplit.json +88 -0
  1199. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OpportunityOwnerSharingRule.json +48 -0
  1200. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OpportunityPartner.json +117 -0
  1201. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OpportunityRelatedDeleteLog.json +143 -0
  1202. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OpportunityShare.json +102 -0
  1203. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OpportunitySplit.json +85 -0
  1204. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OpportunitySplitType.json +72 -0
  1205. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OpportunityStage.json +156 -0
  1206. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OpportunityTag.json +38 -0
  1207. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OpportunityTeamMember.json +136 -0
  1208. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OpptyLineItemSplitType.json +79 -0
  1209. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Order.json +942 -0
  1210. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OrderAction.json +124 -0
  1211. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OrderAdjustmentGroup.json +231 -0
  1212. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OrderAdjustmentGroupSummary.json +183 -0
  1213. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OrderChangeLog.json +183 -0
  1214. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OrderChgReasonCategMap.json +153 -0
  1215. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OrderDeliveryGroup.json +427 -0
  1216. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OrderDeliveryGroupSummary.json +434 -0
  1217. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OrderDeliveryMethod.json +172 -0
  1218. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OrderHistory.json +102 -0
  1219. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OrderItem.json +1005 -0
  1220. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OrderItemAdjustmentLineItem.json +262 -0
  1221. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OrderItemAdjustmentLineSummary.json +202 -0
  1222. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OrderItemGroup.json +158 -0
  1223. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OrderItemRecipient.json +282 -0
  1224. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OrderItemRelationship.json +206 -0
  1225. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OrderItemSummary.json +739 -0
  1226. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OrderItemSummaryChange.json +148 -0
  1227. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OrderItemSummaryRelationship.json +201 -0
  1228. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OrderItemTaxLineItem.json +185 -0
  1229. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OrderItemTaxLineItemSummary.json +202 -0
  1230. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OrderItemType.json +101 -0
  1231. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OrderOwnerSharingRule.json +78 -0
  1232. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OrderPaymentSummary.json +312 -0
  1233. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OrderPaymentSummaryReference.json +185 -0
  1234. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OrderShare.json +95 -0
  1235. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OrderStatus.json +105 -0
  1236. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OrderSummary.json +872 -0
  1237. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OrderSummaryAdditionalInfo.json +171 -0
  1238. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OrderSummaryRelationship.json +152 -0
  1239. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OrderSummaryRoutingSchedule.json +146 -0
  1240. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OrgDeleteRequest.json +94 -0
  1241. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OrgEmailAddressSecurity.json +68 -0
  1242. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OrgMetric.json +108 -0
  1243. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OrgMetricScanResult.json +187 -0
  1244. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OrgMetricScanSummary.json +177 -0
  1245. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OrgSnapshot.json +91 -0
  1246. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OrgWideEmailAddress.json +107 -0
  1247. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Organization.json +744 -0
  1248. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OutOfOffice.json +104 -0
  1249. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OutgoingEmail.json +93 -0
  1250. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OutgoingEmailRelation.json +43 -0
  1251. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OwnedContentDocument.json +163 -0
  1252. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/OwnerChangeOptionInfo.json +56 -0
  1253. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PackageInstallEventLog.json +100 -0
  1254. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PackageLicense.json +115 -0
  1255. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PackagePushError.json +51 -0
  1256. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PackagePushJob.json +52 -0
  1257. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PackagePushRequest.json +51 -0
  1258. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PackageSubscriber.json +80 -0
  1259. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Package_Install_Event_Type.json +99 -0
  1260. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Participant.json +87 -0
  1261. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Partner.json +133 -0
  1262. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PartnerFundAllocation.json +176 -0
  1263. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PartnerFundClaim.json +173 -0
  1264. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PartnerFundRequest.json +221 -0
  1265. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PartnerMarketingBudget.json +212 -0
  1266. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PartnerNetworkConnection.json +75 -0
  1267. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PartnerNetworkRecordConnection.json +77 -0
  1268. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PartnerNetworkSyncLog.json +53 -0
  1269. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PartnerRole.json +98 -0
  1270. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PartyConsent.json +205 -0
  1271. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Payment.json +627 -0
  1272. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PaymentAuthAdjustment.json +309 -0
  1273. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PaymentAuthorization.json +389 -0
  1274. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PaymentCredit.json +275 -0
  1275. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PaymentCreditLinePayment.json +207 -0
  1276. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PaymentCreditTransaction.json +186 -0
  1277. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PaymentGateway.json +219 -0
  1278. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PaymentGatewayLog.json +285 -0
  1279. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PaymentGatewayProvider.json +144 -0
  1280. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PaymentGroup.json +90 -0
  1281. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PaymentInitiationSource.json +278 -0
  1282. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PaymentIntent.json +632 -0
  1283. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PaymentIntentEvent.json +135 -0
  1284. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PaymentLineInvoice.json +269 -0
  1285. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PaymentLink.json +291 -0
  1286. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PaymentLinkEvent.json +71 -0
  1287. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PaymentMethod.json +280 -0
  1288. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PaymentSchedule.json +292 -0
  1289. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PaymentScheduleItem.json +291 -0
  1290. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PaymentSchedulePolicy.json +158 -0
  1291. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PaymentScheduleTreatment.json +159 -0
  1292. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PaymentScheduleTreatmentDtl.json +193 -0
  1293. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PaymentTerm.json +116 -0
  1294. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PaymentTermItem.json +152 -0
  1295. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PendingOrderSummary.json +241 -0
  1296. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PendingServiceRouting.json +391 -0
  1297. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PendingServiceRoutingInteractionInfo.json +126 -0
  1298. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Period.json +133 -0
  1299. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PermissionSet.json +4304 -0
  1300. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PermissionSetAssignment.json +124 -0
  1301. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PermissionSetGroup.json +57 -0
  1302. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PermissionSetGroupComponent.json +41 -0
  1303. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PermissionSetLicense.json +4286 -0
  1304. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PermissionSetLicenseAssign.json +111 -0
  1305. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PermissionSetLicenseDefinition.json +58 -0
  1306. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PermissionSetTabSetting.json +75 -0
  1307. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PermissionUpdateEventLog.json +68 -0
  1308. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Permission_Update_Event_Type.json +78 -0
  1309. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PersnlBatchDecision.json +63 -0
  1310. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PersonAccountOwnerPowerUser.json +113 -0
  1311. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PersonTraining.json +62 -0
  1312. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PersonalOrgInfo.json +120 -0
  1313. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PersonalizationDecision.json +75 -0
  1314. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PersonalizationObjective.json +59 -0
  1315. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PersonalizationPoint.json +117 -0
  1316. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PersonalizationSchema.json +141 -0
  1317. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PersonalizationTargetInfo.json +115 -0
  1318. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PickTicket.json +154 -0
  1319. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PickTicketAssignment.json +101 -0
  1320. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PickTicketProduct.json +168 -0
  1321. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PicklistValueInfo.json +105 -0
  1322. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PipelineInspMetricConfig.json +104 -0
  1323. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PipelineInspMetricConfigLocalization.json +42 -0
  1324. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PipelineInspectionListView.json +174 -0
  1325. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PipelineInspectionSumField.json +82 -0
  1326. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PlatformAction.json +324 -0
  1327. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PlatformEventUsageMetric.json +116 -0
  1328. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PlatformStatusAlertEvent.json +106 -0
  1329. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Platform_Encryption_Event_Type.json +103 -0
  1330. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PortalDelegablePermissionSet.json +107 -0
  1331. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PplnInspListViewCalcClmn.json +46 -0
  1332. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PresenceConfigDeclineReason.json +77 -0
  1333. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PresenceDeclineReason.json +87 -0
  1334. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PresenceUserConfig.json +269 -0
  1335. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PresenceUserConfigProfile.json +77 -0
  1336. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PresenceUserConfigUser.json +77 -0
  1337. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PriceAdjustmentGroup.json +43 -0
  1338. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PriceAdjustmentGroupShape.json +72 -0
  1339. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PriceAdjustmentItem.json +49 -0
  1340. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PriceAdjustmentItemShape.json +85 -0
  1341. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PriceAdjustmentSchedule.json +160 -0
  1342. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PriceAdjustmentTier.json +181 -0
  1343. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PriceProtectExecLineItem.json +161 -0
  1344. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PriceProtectionExecution.json +67 -0
  1345. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PriceProtectionTerm.json +76 -0
  1346. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Pricebook2.json +160 -0
  1347. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Pricebook2History.json +109 -0
  1348. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PricebookEntry.json +191 -0
  1349. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PricebookEntryAdjustment.json +87 -0
  1350. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Pricing_Event_Type.json +95 -0
  1351. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PrivacyHold.json +80 -0
  1352. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PrivacyHoldReason.json +49 -0
  1353. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PrivacyJobSession.json +296 -0
  1354. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PrivacyObjectSession.json +274 -0
  1355. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PrivacyRTBFRequest.json +153 -0
  1356. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PrivacyRequest.json +103 -0
  1357. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PrivacyRtntStoreDelStatus.json +45 -0
  1358. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PrivacySessionRecordFailure.json +135 -0
  1359. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Problem.json +254 -0
  1360. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ProblemIncident.json +116 -0
  1361. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ProblemRelatedItem.json +126 -0
  1362. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ProcessDefinition.json +125 -0
  1363. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ProcessException.json +267 -0
  1364. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ProcessFlowMigration.json +117 -0
  1365. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ProcessInstance.json +170 -0
  1366. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ProcessInstanceHistory.json +193 -0
  1367. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ProcessInstanceNode.json +163 -0
  1368. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ProcessInstanceStep.json +155 -0
  1369. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ProcessInstanceWorkitem.json +127 -0
  1370. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ProcessNode.json +83 -0
  1371. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ProducerCommission.json +303 -0
  1372. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Product2.json +477 -0
  1373. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Product2DataTranslation.json +45 -0
  1374. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ProductAttribute.json +110 -0
  1375. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ProductAttributeSet.json +102 -0
  1376. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ProductAttributeSetItem.json +107 -0
  1377. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ProductAttributeSetProduct.json +97 -0
  1378. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ProductCatalog.json +175 -0
  1379. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ProductCategory.json +168 -0
  1380. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ProductCategoryDataTranslation.json +43 -0
  1381. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ProductCategoryProduct.json +143 -0
  1382. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ProductComponentGroup.json +170 -0
  1383. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ProductConsumed.json +257 -0
  1384. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ProductDetectedPriceChange.json +64 -0
  1385. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ProductEntitlementTemplate.json +70 -0
  1386. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ProductFeaturedProduct.json +132 -0
  1387. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ProductItem.json +185 -0
  1388. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ProductItemTransaction.json +154 -0
  1389. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ProductMedia.json +150 -0
  1390. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ProductQuantityRule.json +106 -0
  1391. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ProductRelatedComponent.json +164 -0
  1392. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ProductRelationshipType.json +105 -0
  1393. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ProductRequest.json +340 -0
  1394. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ProductRequestLineItem.json +367 -0
  1395. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ProductRequired.json +168 -0
  1396. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ProductSellingModel.json +120 -0
  1397. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ProductSellingModelOption.json +161 -0
  1398. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ProductServiceCampaign.json +192 -0
  1399. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ProductServiceCampaignItem.json +150 -0
  1400. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ProductServiceCampaignItemStatus.json +107 -0
  1401. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ProductServiceCampaignStatus.json +107 -0
  1402. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ProductTransfer.json +372 -0
  1403. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ProductWarrantyTerm.json +122 -0
  1404. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Profile.json +4247 -0
  1405. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ProfileSkill.json +131 -0
  1406. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ProfileSkillEndorsement.json +105 -0
  1407. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ProfileSkillShare.json +95 -0
  1408. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ProfileSkillUser.json +116 -0
  1409. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ProgramProduct.json +128 -0
  1410. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ProgramRebateType.json +294 -0
  1411. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Promotion.json +481 -0
  1412. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PromotionLineItemRule.json +147 -0
  1413. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PromotionMarketSegment.json +129 -0
  1414. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PromotionQualifier.json +239 -0
  1415. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PromotionSegment.json +113 -0
  1416. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PromotionSegmentBuyerGroup.json +126 -0
  1417. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PromotionSegmentSalesStore.json +126 -0
  1418. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PromotionTarget.json +257 -0
  1419. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PromotionTier.json +119 -0
  1420. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Prompt.json +99 -0
  1421. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PromptAction.json +216 -0
  1422. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PromptActionOwnerSharingRule.json +48 -0
  1423. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PromptActionShare.json +86 -0
  1424. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PromptError.json +126 -0
  1425. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PromptLocalization.json +93 -0
  1426. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PromptVersion.json +533 -0
  1427. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PromptVersionLocalization.json +93 -0
  1428. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ProrationPolicy.json +114 -0
  1429. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Prospect.json +187 -0
  1430. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ProspectingAgentDataSource.json +8 -0
  1431. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ProspectingAgentRcmdTarget.json +51 -0
  1432. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ProspectingAgentSpec.json +8 -0
  1433. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ProspectingAgentSpecParm.json +8 -0
  1434. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ProspectingAgentUserSpec.json +8 -0
  1435. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PublicComplaint.json +425 -0
  1436. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PurchaseQuantityRule.json +146 -0
  1437. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PushTopic.json +170 -0
  1438. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PushUpgradeCustomization.json +46 -0
  1439. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/PymtSchdDistributionMethod.json +137 -0
  1440. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Question.json +269 -0
  1441. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/QuestionDataCategorySelection.json +89 -0
  1442. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/QuestionReportAbuse.json +87 -0
  1443. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/QuestionSubscription.json +110 -0
  1444. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/QueueRoutingConfig.json +186 -0
  1445. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/QueueSobject.json +70 -0
  1446. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/QueuedExecutionEventLog.json +78 -0
  1447. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Queued_Execution_Event_Type.json +94 -0
  1448. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/QuickText.json +189 -0
  1449. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/QuickTextUsage.json +170 -0
  1450. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Quote.json +895 -0
  1451. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/QuoteAction.json +139 -0
  1452. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/QuoteAdjustmentGroup.json +66 -0
  1453. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/QuoteDocument.json +150 -0
  1454. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/QuoteItemTaxItem.json +158 -0
  1455. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/QuoteLineGroup.json +158 -0
  1456. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/QuoteLineItem.json +986 -0
  1457. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/QuoteLineItemRecipient.json +287 -0
  1458. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/QuoteLinePriceAdjustment.json +95 -0
  1459. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/QuoteLineRelationship.json +206 -0
  1460. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/QuoteLineWorkSource.json +55 -0
  1461. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/QuoteRecipientGroup.json +145 -0
  1462. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/QuoteRecipientGroupMember.json +126 -0
  1463. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/REST_API_Event_Type.json +143 -0
  1464. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/RecentFieldChange.json +123 -0
  1465. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/RecentlyViewed.json +199 -0
  1466. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Recommendation.json +202 -0
  1467. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/RecommendationResponse.json +207 -0
  1468. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/RecordAction.json +190 -0
  1469. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/RecordActionHistory.json +169 -0
  1470. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/RecordType.json +136 -0
  1471. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/RecordTypeLocalization.json +93 -0
  1472. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/RecordVisibility.json +30 -0
  1473. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/RecordsetFilterCriteria.json +170 -0
  1474. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/RecordsetFilterCriteriaRule.json +195 -0
  1475. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/RecordsetFltrCritMonitor.json +142 -0
  1476. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/RedirectWhitelistUrl.json +111 -0
  1477. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Refund.json +522 -0
  1478. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/RefundLinePayment.json +264 -0
  1479. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/RegisteredExternalService.json +176 -0
  1480. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/RelatedListColumnDefinition.json +142 -0
  1481. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/RelatedListDefinition.json +141 -0
  1482. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/RemoteKeyCalloutEvent.json +52 -0
  1483. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Reply.json +171 -0
  1484. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ReplyEmailSettings.json +158 -0
  1485. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ReplyReportAbuse.json +87 -0
  1486. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ReplyText.json +42 -0
  1487. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Report.json +177 -0
  1488. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ReportEventLog.json +142 -0
  1489. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ReportExportEventLog.json +73 -0
  1490. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ReportTag.json +38 -0
  1491. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Report_Event_Type.json +145 -0
  1492. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Report_Export_Event_Type.json +79 -0
  1493. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ReputationLevel.json +101 -0
  1494. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ReputationLevelLocalization.json +93 -0
  1495. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ReputationPointsRule.json +88 -0
  1496. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ResourceAbsence.json +243 -0
  1497. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ResourcePreference.json +133 -0
  1498. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/RestApiEventLog.json +132 -0
  1499. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/RetentionStoreUsage.json +148 -0
  1500. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ReturnOrder.json +653 -0
  1501. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ReturnOrderItemAdjustment.json +158 -0
  1502. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ReturnOrderItemTax.json +179 -0
  1503. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ReturnOrderLineItem.json +506 -0
  1504. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ReturnOrderOwnerSharingRule.json +48 -0
  1505. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/RevenueAsyncOperation.json +216 -0
  1506. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/RevenueTransactionErrorLog.json +245 -0
  1507. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/RpaFlowResultEvent.json +8 -0
  1508. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/RpaRobot.json +8 -0
  1509. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/RpaRobotAsgnMaintWindow.json +8 -0
  1510. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/RpaRobotAsgnSessionInf.json +8 -0
  1511. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/RpaRobotDefinition.json +8 -0
  1512. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/RpaRobotMaintWindow.json +8 -0
  1513. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/RpaRobotMaintWindowDef.json +8 -0
  1514. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/RpaRobotPool.json +8 -0
  1515. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/RpaRobotPoolAsgnRobot.json +8 -0
  1516. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/RpaRobotPoolDefinition.json +8 -0
  1517. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/RpaRobotPoolFlowAsgn.json +8 -0
  1518. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/RpaRobotSessionInfo.json +8 -0
  1519. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/RpaRobotSessionInfoDef.json +8 -0
  1520. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/RuleTerritory2Association.json +86 -0
  1521. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SOAP_API_Event_Type.json +131 -0
  1522. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SOSDeployment.json +53 -0
  1523. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SOSSession.json +105 -0
  1524. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SOSSessionActivity.json +38 -0
  1525. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SalesAIScoreCycle.json +28 -0
  1526. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SalesAIScoreModelFactor.json +85 -0
  1527. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SalesChannel.json +147 -0
  1528. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SalesMethodologyDef.json +60 -0
  1529. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SalesMethodologyDefItem.json +78 -0
  1530. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SalesStoreCatalog.json +71 -0
  1531. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SalesTransaction.json +34 -0
  1532. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SalesTransactionItemShape.json +199 -0
  1533. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SalesTransactionShape.json +59 -0
  1534. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SalesTransactionType.json +111 -0
  1535. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SalesTrxnItemRelationShape.json +78 -0
  1536. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SalesWorkQueueSettings.json +85 -0
  1537. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SalesforceContract.json +175 -0
  1538. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SalesforceInvoice.json +71 -0
  1539. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SalesforceLoginAsEventLog.json +48 -0
  1540. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SalesforcePayment.json +50 -0
  1541. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SalesforceQuote.json +46 -0
  1542. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Salesforce_Surveys_Object_Model.json +8 -0
  1543. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SamlSsoConfig.json +313 -0
  1544. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SandboxStatusEventLog.json +53 -0
  1545. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Sandbox_Event_Type.json +59 -0
  1546. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SavedPaymentMethod.json +475 -0
  1547. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SavedPaymentMethodEvent.json +71 -0
  1548. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SchedulingAdherenceDetail.json +57 -0
  1549. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SchedulingAdherenceSummary.json +119 -0
  1550. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SchedulingConstraint.json +252 -0
  1551. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SchedulingObjective.json +119 -0
  1552. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SchedulingRule.json +119 -0
  1553. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SchedulingRuleParameter.json +95 -0
  1554. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Scontrol.json +170 -0
  1555. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ScontrolLocalization.json +98 -0
  1556. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ScoreIntelligence.json +8 -0
  1557. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Scorecard.json +125 -0
  1558. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ScorecardAssociation.json +119 -0
  1559. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ScorecardMetric.json +121 -0
  1560. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ScratchOrgInfo.json +411 -0
  1561. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SearchActivity.json +187 -0
  1562. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SearchClickEventLog.json +50 -0
  1563. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SearchEventLog.json +55 -0
  1564. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SearchLayout.json +136 -0
  1565. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SearchPromotionRule.json +81 -0
  1566. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Search_Click_Event_Type.json +51 -0
  1567. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Search_Event_Type.json +55 -0
  1568. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SecurityCustomBaseline.json +118 -0
  1569. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SecurityHealthCheckAlertRecipient.json +38 -0
  1570. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SecurityHealthCheckResult.json +48 -0
  1571. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SelfServiceUser.json +92 -0
  1572. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Seller.json +167 -0
  1573. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SenderEmailAddress.json +149 -0
  1574. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ServiceAppointment.json +621 -0
  1575. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ServiceAppointmentStatus.json +107 -0
  1576. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ServiceChannel.json +236 -0
  1577. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ServiceChannelFieldPriority.json +33 -0
  1578. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ServiceChannelStatus.json +77 -0
  1579. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ServiceChannelStatusField.json +87 -0
  1580. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ServiceContract.json +522 -0
  1581. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ServiceContractOwnerSharingRule.json +48 -0
  1582. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ServiceCrew.json +115 -0
  1583. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ServiceCrewMember.json +142 -0
  1584. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ServiceCrewOwnerSharingRule.json +48 -0
  1585. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ServicePresenceStatus.json +87 -0
  1586. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ServiceReport.json +180 -0
  1587. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ServiceReportLayout.json +110 -0
  1588. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ServiceRequest.json +147 -0
  1589. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ServiceResource.json +260 -0
  1590. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ServiceResourceCapacity.json +158 -0
  1591. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ServiceResourceCapacityHistory.json +96 -0
  1592. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ServiceResourceDataTranslation.json +43 -0
  1593. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ServiceResourceOwnerSharingRule.json +46 -0
  1594. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ServiceResourcePreference.json +147 -0
  1595. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ServiceResourceSkill.json +156 -0
  1596. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ServiceSetupProvisioning.json +140 -0
  1597. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ServiceTerritory.json +320 -0
  1598. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ServiceTerritoryDataTranslation.json +43 -0
  1599. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ServiceTerritoryLocation.json +96 -0
  1600. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ServiceTerritoryMember.json +277 -0
  1601. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ServiceTerritoryWorkType.json +131 -0
  1602. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SessionPermSetActivation.json +126 -0
  1603. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SetupAssistantStep.json +10 -0
  1604. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SetupAuditTrail.json +109 -0
  1605. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SetupEntityAccess.json +75 -0
  1606. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SfdcCustomerForPartner.json +144 -0
  1607. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SfdcPartnerOffer.json +293 -0
  1608. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SfdcPartnerOfferItem.json +90 -0
  1609. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SfdcPartnerOrder.json +263 -0
  1610. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SfdcPartnerOrderBillingTrxn.json +49 -0
  1611. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SfdcPartnerOrderItem.json +113 -0
  1612. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SfdcPartnerPackage.json +36 -0
  1613. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SfdcPartnerPackageVersion.json +50 -0
  1614. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SfdcPartnerPayout.json +66 -0
  1615. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SfdcPartnerPermSetLicense.json +35 -0
  1616. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SfdcPartnerProductLicense.json +53 -0
  1617. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SfdcPartnerProvisionProduct.json +41 -0
  1618. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SfdcPartnerSbscrOffer.json +248 -0
  1619. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SfdcPartnerSbscrOfferItem.json +74 -0
  1620. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SfdcPartnerTenant.json +62 -0
  1621. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SfdcPartnerTenantPackage.json +69 -0
  1622. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SfdcPartnerTermSet.json +94 -0
  1623. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SfdcPartnerTermSetProduct.json +96 -0
  1624. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SfdcPartnerTntPermSetLic.json +82 -0
  1625. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SfdcPartnerTntPkgLicense.json +75 -0
  1626. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ShapeRepresentation.json +41 -0
  1627. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SharingRecordCollection.json +133 -0
  1628. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SharingRecordCollectionItem.json +95 -0
  1629. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SharingRecordCollectionMember.json +85 -0
  1630. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Shift.json +293 -0
  1631. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ShiftHistory.json +104 -0
  1632. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ShiftOwnerSharingRule.json +48 -0
  1633. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ShiftPattern.json +140 -0
  1634. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ShiftPatternEntry.json +134 -0
  1635. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ShiftSegment.json +57 -0
  1636. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ShiftSegmentType.json +69 -0
  1637. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ShiftShare.json +97 -0
  1638. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ShiftStatus.json +107 -0
  1639. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ShiftTemplate.json +211 -0
  1640. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Shipment.json +462 -0
  1641. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ShipmentItem.json +177 -0
  1642. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ShippingCarrier.json +124 -0
  1643. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ShippingCarrierMethod.json +167 -0
  1644. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ShippingConfigSetProduct.json +95 -0
  1645. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ShippingConfigurationSet.json +126 -0
  1646. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ShippingRateArea.json +103 -0
  1647. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ShippingRateGroup.json +83 -0
  1648. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SignupRequest.json +322 -0
  1649. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Site.json +464 -0
  1650. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SiteDetail.json +60 -0
  1651. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SiteDomain.json +33 -0
  1652. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SiteEventLog.json +132 -0
  1653. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SiteHistory.json +100 -0
  1654. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SiteIframeWhitelistUrl.json +34 -0
  1655. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SiteRedirectMapping.json +121 -0
  1656. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Sites_Event_Type.json +127 -0
  1657. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Skill.json +122 -0
  1658. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SkillLevelDefinition.json +59 -0
  1659. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SkillLevelProgress.json +72 -0
  1660. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SkillProfile.json +77 -0
  1661. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SkillRequirement.json +158 -0
  1662. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SkillUser.json +77 -0
  1663. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SlaProcess.json +160 -0
  1664. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SlackChannelRelatedRecord.json +99 -0
  1665. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Snippet.json +57 -0
  1666. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SnippetAssignment.json +28 -0
  1667. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SoapApiEventLog.json +127 -0
  1668. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SocialPersona.json +354 -0
  1669. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SocialPost.json +682 -0
  1670. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Solution.json +214 -0
  1671. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SolutionStatus.json +104 -0
  1672. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SolutionTag.json +38 -0
  1673. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SourceCodeRepoProvider.json +57 -0
  1674. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SourceCodeRepository.json +74 -0
  1675. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SourceCodeRepositoryBranch.json +71 -0
  1676. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/StagedEmail.json +8 -0
  1677. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/StagedInviteeEmail.json +81 -0
  1678. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/StagedUnmtchdEmailAddr.json +64 -0
  1679. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/StagedUnmtchdEmailAddrRela.json +41 -0
  1680. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Stamp.json +87 -0
  1681. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/StampAssignment.json +74 -0
  1682. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/StandardInvocableActionType.json +97 -0
  1683. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/StandardObjectNameChangeEvent.json +10 -0
  1684. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/StandardObjectNameFeed.json +78 -0
  1685. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/StandardObjectNameHistory.json +31 -0
  1686. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/StandardObjectNameOwnerSharingRule.json +34 -0
  1687. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/StandardObjectNameShare.json +28 -0
  1688. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/StandardObjectName_Feed.json +78 -0
  1689. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/StandardObjectName_Feed_Feed.json +78 -0
  1690. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/StandardObjectName_History.json +31 -0
  1691. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/StandardObjectName_History_History.json +31 -0
  1692. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/StandardObjectName_OwnerSharingRule.json +34 -0
  1693. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/StandardObjectName_OwnerSharingRule_OwnerSharingRule.json +34 -0
  1694. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/StandardObjectName_Share.json +28 -0
  1695. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/StandardObjectName_Share_Share.json +28 -0
  1696. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/StandardShippingRate.json +192 -0
  1697. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Standard_Objects.json +8 -0
  1698. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/StaticResource.json +127 -0
  1699. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/StoreIntegratedService.json +95 -0
  1700. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/StreamingChannel.json +126 -0
  1701. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Survey.json +175 -0
  1702. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SurveyEmailBranding.json +137 -0
  1703. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SurveyEngagementContext.json +117 -0
  1704. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SurveyInvitation.json +240 -0
  1705. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SurveyPage.json +93 -0
  1706. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SurveyQuestion.json +202 -0
  1707. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SurveyQuestionChoice.json +117 -0
  1708. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SurveyQuestionResponse.json +194 -0
  1709. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SurveyQuestionScore.json +210 -0
  1710. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SurveyResponse.json +238 -0
  1711. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SurveySubject.json +151 -0
  1712. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SurveyVersion.json +150 -0
  1713. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SurveyVersionAddlInfo.json +135 -0
  1714. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SvcCatalogCategory.json +136 -0
  1715. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SvcCatalogCategoryItem.json +106 -0
  1716. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SvcCatalogFilterCriteria.json +71 -0
  1717. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SvcCatalogItemDef.json +245 -0
  1718. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SvcCatalogReqRelatedItem.json +111 -0
  1719. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SvcCatalogRequest.json +238 -0
  1720. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Swarm.json +228 -0
  1721. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/SwarmMember.json +174 -0
  1722. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TabDefinition.json +136 -0
  1723. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TagDefinition.json +12 -0
  1724. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Task.json +434 -0
  1725. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TaskPriority.json +106 -0
  1726. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TaskRelation.json +98 -0
  1727. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TaskStatus.json +106 -0
  1728. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TaskTag.json +38 -0
  1729. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TaskWhoRelation.json +97 -0
  1730. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TaxEngine.json +268 -0
  1731. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TaxEngineInteractionLog.json +254 -0
  1732. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TaxEngineProvider.json +128 -0
  1733. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TaxGeoConfig.json +126 -0
  1734. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TaxPolicy.json +131 -0
  1735. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TaxRate.json +283 -0
  1736. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TaxTreatment.json +177 -0
  1737. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TenantConsumptionAlert.json +178 -0
  1738. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TenantScrAIPrmptInjection.json +93 -0
  1739. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TenantSecret.json +78 -0
  1740. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TenantSecurityAIGtwyUsage.json +103 -0
  1741. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TenantSecurityAlertRuleSelectedTenant.json +35 -0
  1742. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TenantSecurityAnomaly.json +88 -0
  1743. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TenantSecurityApiAnomaly.json +120 -0
  1744. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TenantSecurityCertificate.json +98 -0
  1745. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TenantSecurityConfigAgent.json +88 -0
  1746. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TenantSecurityConnectedApp.json +100 -0
  1747. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TenantSecurityCredentialStuffing.json +105 -0
  1748. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TenantSecurityCustomMetricDetail.json +58 -0
  1749. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TenantSecurityCustomMetricSetup.json +66 -0
  1750. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TenantSecurityCustomMetricStat.json +68 -0
  1751. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TenantSecurityEncryptedField.json +83 -0
  1752. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TenantSecurityEncryptionPolicy.json +73 -0
  1753. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TenantSecurityFeature.json +65 -0
  1754. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TenantSecurityGuestUserAnomaly.json +110 -0
  1755. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TenantSecurityHealthCheckBaselineTrend.json +90 -0
  1756. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TenantSecurityHealthCheckDetail.json +70 -0
  1757. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TenantSecurityHealthCheckTrend.json +75 -0
  1758. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TenantSecurityLicense.json +85 -0
  1759. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TenantSecurityLogin.json +70 -0
  1760. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TenantSecurityLoginIpRangeTrend.json +95 -0
  1761. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TenantSecurityMetricDetail.json +95 -0
  1762. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TenantSecurityMetricDetailLink.json +38 -0
  1763. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TenantSecurityMobilePolicyTrend.json +105 -0
  1764. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TenantSecurityMonitorMetric.json +70 -0
  1765. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TenantSecurityNotification.json +85 -0
  1766. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TenantSecurityNotificationRule.json +75 -0
  1767. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TenantSecurityPackage.json +105 -0
  1768. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TenantSecurityPolicy.json +65 -0
  1769. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TenantSecurityPolicyChangeLog.json +45 -0
  1770. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TenantSecurityPolicyDeployment.json +55 -0
  1771. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TenantSecurityPolicySelectedTenant.json +35 -0
  1772. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TenantSecurityReportAnomaly.json +95 -0
  1773. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TenantSecuritySessionHijacking.json +140 -0
  1774. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TenantSecurityTenantChangeLog.json +41 -0
  1775. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TenantSecurityTenantInfo.json +70 -0
  1776. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TenantSecurityTransactionPolicyTrend.json +85 -0
  1777. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TenantSecurityTrigTransactionSecurityPol.json +137 -0
  1778. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TenantSecurityTrustedIpRangeTrend.json +90 -0
  1779. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TenantSecurityUserActivity.json +75 -0
  1780. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TenantSecurityUserPerm.json +95 -0
  1781. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TenantUsageEntitlement.json +179 -0
  1782. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Territory.json +75 -0
  1783. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Territory2.json +155 -0
  1784. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Territory2AlignmentLog.json +139 -0
  1785. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Territory2Model.json +148 -0
  1786. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Territory2ModelHistory.json +94 -0
  1787. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Territory2ObjSharingConfig.json +96 -0
  1788. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Territory2ObjectExclusion.json +95 -0
  1789. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Territory2Type.json +111 -0
  1790. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TerritoryAdminAssignment.json +122 -0
  1791. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TerritoryMgmtObjectConfig.json +117 -0
  1792. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TestSuiteMembership.json +81 -0
  1793. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ThirdPartyAccountLink.json +128 -0
  1794. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/ThreatDetectionFeedback.json +129 -0
  1795. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Time-Based_Workflow_Event_Type.json +87 -0
  1796. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TimeSheet.json +181 -0
  1797. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TimeSheetEntry.json +208 -0
  1798. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TimeSlot.json +185 -0
  1799. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TimeSlotHistory.json +91 -0
  1800. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TodayGoal.json +125 -0
  1801. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TopInsight.json +8 -0
  1802. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Topic.json +99 -0
  1803. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TopicAssignment.json +109 -0
  1804. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TopicLocalization.json +93 -0
  1805. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TopicUserEvent.json +79 -0
  1806. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TransactionSecurityEventLog.json +130 -0
  1807. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TransactionSecurityPolicy.json +206 -0
  1808. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Transaction_Security_Event_Type.json +103 -0
  1809. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Translation.json +83 -0
  1810. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TravelMode.json +146 -0
  1811. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TwoFactorInfo.json +33 -0
  1812. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TwoFactorMethodsInfo.json +75 -0
  1813. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/TwoFactorTempCode.json +37 -0
  1814. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UI_Telemetry_Navigation_Timing_Event_Type.json +317 -0
  1815. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UI_Telemetry_Resource_Timing_Event.json +276 -0
  1816. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/URI_Event_Type.json +95 -0
  1817. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UiAgentInteractionEventLog.json +233 -0
  1818. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UiFormulaCriterion.json +116 -0
  1819. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UiFormulaRule.json +134 -0
  1820. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UiTelemetryNavTmEventLog.json +335 -0
  1821. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UiTelemetryRsrcTmEventLog.json +285 -0
  1822. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UndecidedEventRelation.json +117 -0
  1823. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UnifiedActivity.json +113 -0
  1824. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UnifiedActivityInsight.json +102 -0
  1825. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UnifiedActivityParticipant.json +78 -0
  1826. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UnifiedActivityRelation.json +58 -0
  1827. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UnifiedActvtyInsightKeyword.json +71 -0
  1828. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UnifiedEmail.json +74 -0
  1829. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UnifiedEmailParticipant.json +47 -0
  1830. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UnifiedMeeting.json +64 -0
  1831. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UnifiedMeetingParticipant.json +47 -0
  1832. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UnifiedTask.json +64 -0
  1833. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UnifiedTaskParticipant.json +47 -0
  1834. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UnifiedVideoCall.json +124 -0
  1835. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UnifiedVideoCallParticipant.json +102 -0
  1836. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UnifiedVoiceCall.json +124 -0
  1837. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UnifiedVoiceCallParticipant.json +102 -0
  1838. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UniqueQueryEventLog.json +68 -0
  1839. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Unique_Query_Event_Type.json +51 -0
  1840. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UnitOfMeasure.json +190 -0
  1841. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UriEventLog.json +93 -0
  1842. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UsageImpactFactor.json +111 -0
  1843. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UsageImpactGroup.json +121 -0
  1844. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UsageImpactGroupFactor.json +141 -0
  1845. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UsageImpactGroupPgmMeasure.json +129 -0
  1846. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UsageImpactGroupVersion.json +166 -0
  1847. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/User.json +1865 -0
  1848. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UserAccessChange.json +23 -0
  1849. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UserAccessPolicy.json +63 -0
  1850. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UserAccountTeamMember.json +61 -0
  1851. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UserAppInfo.json +103 -0
  1852. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UserAppMenuCustomization.json +106 -0
  1853. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UserAppMenuItem.json +182 -0
  1854. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UserAuthCertificate.json +63 -0
  1855. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UserConfigTransferButton.json +77 -0
  1856. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UserConfigTransferSkill.json +75 -0
  1857. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UserCustomBadge.json +85 -0
  1858. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UserCustomBadgeLocalization.json +93 -0
  1859. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UserDailyMetric.json +489 -0
  1860. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UserDailyMetricOwnerSharingRule.json +50 -0
  1861. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UserDefinedLabel.json +132 -0
  1862. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UserDefinedLabelAssignment.json +128 -0
  1863. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UserDevice.json +78 -0
  1864. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UserDeviceApplication.json +43 -0
  1865. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UserDeviceHistory.json +41 -0
  1866. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UserEmailCalendarSync.json +58 -0
  1867. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UserEmailPreferredPerson.json +117 -0
  1868. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UserEmailPreferredPersonShare.json +96 -0
  1869. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UserLicense.json +125 -0
  1870. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UserListView.json +87 -0
  1871. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UserListViewCriterion.json +96 -0
  1872. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UserLocationAssignment.json +122 -0
  1873. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UserLogin.json +70 -0
  1874. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UserMembershipSharingRule.json +50 -0
  1875. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UserMonthlyMetric.json +644 -0
  1876. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UserMonthlyMetricOwnerSharingRule.json +50 -0
  1877. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UserPackageLicense.json +102 -0
  1878. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UserPermissionAccess.json +4159 -0
  1879. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UserPreference.json +69 -0
  1880. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UserPrioritizedRecord.json +98 -0
  1881. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UserProfile.json +367 -0
  1882. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UserProvAccount.json +189 -0
  1883. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UserProvAccountStaging.json +173 -0
  1884. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UserProvMockTarget.json +122 -0
  1885. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UserProvisioningConfig.json +204 -0
  1886. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UserProvisioningLog.json +141 -0
  1887. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UserProvisioningRequest.json +235 -0
  1888. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UserRecordAccess.json +108 -0
  1889. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UserRelatedRecordContent.json +39 -0
  1890. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UserRole.json +184 -0
  1891. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UserServicePresence.json +199 -0
  1892. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UserSetupEntityAccess.json +92 -0
  1893. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UserShare.json +102 -0
  1894. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UserSharedFeature.json +10 -0
  1895. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UserTeamMember.json +96 -0
  1896. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UserTerritory.json +38 -0
  1897. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UserTerritory2AssocLog.json +66 -0
  1898. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UserTerritory2Association.json +83 -0
  1899. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UserUIPreference.json +131 -0
  1900. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UserWorkList.json +94 -0
  1901. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/UserWorkListItem.json +86 -0
  1902. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/VendorCallCenterStatusMap.json +96 -0
  1903. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/VerificationHistory.json +196 -0
  1904. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/VideoCall.json +316 -0
  1905. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/VideoCallInsight.json +98 -0
  1906. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/VideoCallInsightAction.json +63 -0
  1907. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/VideoCallInsightReason.json +53 -0
  1908. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/VideoCallParticipant.json +149 -0
  1909. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/VideoCallRecording.json +179 -0
  1910. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/VideoCallRecordingStructure.json +73 -0
  1911. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/VideoCallTranscript.json +85 -0
  1912. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/VisualforceAccessMetrics.json +97 -0
  1913. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/VisualforceRequestEventLog.json +145 -0
  1914. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Visualforce_Request_Event_Type.json +139 -0
  1915. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/VoiceCall.json +623 -0
  1916. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/VoiceCallInsight.json +96 -0
  1917. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/VoiceCallInsightAction.json +63 -0
  1918. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/VoiceCallInsightReason.json +46 -0
  1919. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/VoiceCallList.json +35 -0
  1920. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/VoiceCallListItem.json +38 -0
  1921. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/VoiceCallMetrics.json +324 -0
  1922. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/VoiceCallQualityFeedback.json +97 -0
  1923. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/VoiceCallRecording.json +151 -0
  1924. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/VoiceCallRecordingStructure.json +73 -0
  1925. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/VoiceCoaching.json +89 -0
  1926. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/VoiceLocalPresenceNumber.json +96 -0
  1927. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/VoiceMailContent.json +119 -0
  1928. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/VoiceMailGreeting.json +109 -0
  1929. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/VoiceMailGreeting2.json +54 -0
  1930. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/VoiceMailGreeting2Rep.json +61 -0
  1931. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/VoiceMailMessage.json +109 -0
  1932. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/VoiceOrgSetting.json +115 -0
  1933. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/VoiceUserLine.json +137 -0
  1934. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/VoiceUserPreferences.json +89 -0
  1935. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/VoiceVendorInfo.json +139 -0
  1936. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/VoiceVendorLine.json +150 -0
  1937. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Vote.json +102 -0
  1938. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/WarrantyTerm.json +306 -0
  1939. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/WaveAutoInstallRequest.json +172 -0
  1940. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Wave_Change_Event_Type.json +123 -0
  1941. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Wave_Download_Event_Type.json +116 -0
  1942. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Wave_Interaction_Event_Type.json +111 -0
  1943. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Wave_Performance_Event_Type.json +111 -0
  1944. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/WebCart.json +610 -0
  1945. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/WebCartAdjustmentBasis.json +118 -0
  1946. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/WebCartAdjustmentGroup.json +210 -0
  1947. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/WebCartHistory.json +94 -0
  1948. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/WebLink.json +278 -0
  1949. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/WebLinkLocalization.json +98 -0
  1950. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/WebStore.json +445 -0
  1951. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/WebStoreCatalog.json +117 -0
  1952. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/WebStoreInventorySource.json +203 -0
  1953. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/WebStoreMessageContent.json +56 -0
  1954. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/WebStoreNetwork.json +103 -0
  1955. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/WebStorePricebook.json +118 -0
  1956. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/WebStoreSearchProdSettings.json +117 -0
  1957. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/WebStoreShare.json +90 -0
  1958. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/WebstoreBuyerGroup.json +56 -0
  1959. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Wishlist.json +120 -0
  1960. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/WishlistItem.json +97 -0
  1961. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/WorkAccess.json +103 -0
  1962. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/WorkAccessShare.json +93 -0
  1963. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/WorkBadge.json +184 -0
  1964. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/WorkBadgeDefinition.json +212 -0
  1965. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/WorkCapacityAvailability.json +178 -0
  1966. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/WorkCapacityLimit.json +303 -0
  1967. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/WorkCapacityUsage.json +307 -0
  1968. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/WorkCoaching.json +53 -0
  1969. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/WorkDemographic.json +70 -0
  1970. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/WorkFeedback.json +43 -0
  1971. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/WorkFeedbackQuestion.json +68 -0
  1972. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/WorkFeedbackQuestionSet.json +43 -0
  1973. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/WorkFeedbackRequest.json +133 -0
  1974. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/WorkGoal.json +138 -0
  1975. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/WorkGoalCollaborator.json +38 -0
  1976. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/WorkGoalCollaboratorHistory.json +41 -0
  1977. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/WorkGoalHistory.json +36 -0
  1978. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/WorkGoalLink.json +41 -0
  1979. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/WorkGoalShare.json +36 -0
  1980. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/WorkItem.json +135 -0
  1981. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/WorkItemComponent.json +77 -0
  1982. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/WorkItemEvent.json +48 -0
  1983. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/WorkOrder.json +753 -0
  1984. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/WorkOrderHistory.json +102 -0
  1985. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/WorkOrderLineItem.json +636 -0
  1986. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/WorkOrderLineItemHistory.json +102 -0
  1987. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/WorkOrderLineItemStatus.json +107 -0
  1988. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/WorkOrderShare.json +95 -0
  1989. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/WorkOrderStatus.json +107 -0
  1990. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/WorkPerformanceCycle.json +63 -0
  1991. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/WorkPlan.json +194 -0
  1992. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/WorkPlanSelectionRule.json +194 -0
  1993. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/WorkPlanTemplate.json +134 -0
  1994. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/WorkPlanTemplateEntry.json +127 -0
  1995. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/WorkReward.json +65 -0
  1996. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/WorkRewardFund.json +71 -0
  1997. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/WorkRewardFundType.json +83 -0
  1998. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/WorkStep.json +244 -0
  1999. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/WorkStepStatus.json +108 -0
  2000. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/WorkStepTemplate.json +143 -0
  2001. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/WorkThanks.json +127 -0
  2002. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/WorkType.json +276 -0
  2003. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/WorkTypeGroup.json +149 -0
  2004. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/WorkTypeGroupMember.json +121 -0
  2005. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/WorkforceCapacity.json +74 -0
  2006. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/WorkforceCapacityUnit.json +135 -0
  2007. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/Workload.json +66 -0
  2008. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/WorkloadUnit.json +87 -0
  2009. package/skills/platform-data-and-tooling-api-context-get/assets/enterprise_api/feedSignal.json +49 -0
  2010. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/AIApplication.json +70 -0
  2011. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/AIApplicationConfig.json +75 -0
  2012. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/AccountPlanObjMeasCalcCond.json +48 -0
  2013. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/AccountPlanObjMeasCalcDef.json +74 -0
  2014. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/ActivationPlatform.json +105 -0
  2015. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/AdvAccountForecastSet.json +148 -0
  2016. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/AdvAcctForecastMeasureDef.json +66 -0
  2017. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/AdvAcctFrcstDisplayGroup.json +54 -0
  2018. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/AnimationRule.json +81 -0
  2019. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/ApexClass.json +82 -0
  2020. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/ApexClassMember.json +64 -0
  2021. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/ApexCodeCoverage.json +54 -0
  2022. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/ApexCodeCoverageAggregate.json +44 -0
  2023. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/ApexComponent.json +27 -0
  2024. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/ApexComponentMember.json +59 -0
  2025. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/ApexEmailNotification.json +38 -0
  2026. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/ApexExecutionOverlayAction.json +67 -0
  2027. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/ApexExecutionOverlayResult.json +72 -0
  2028. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/ApexLog.json +72 -0
  2029. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/ApexOrgWideCoverage.json +29 -0
  2030. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/ApexPage.json +88 -0
  2031. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/ApexPageInfo.json +69 -0
  2032. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/ApexPageMember.json +59 -0
  2033. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/ApexResult.json +25 -0
  2034. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/ApexTestQueueItem.json +52 -0
  2035. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/ApexTestResult.json +97 -0
  2036. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/ApexTestResultLimits.json +87 -0
  2037. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/ApexTestRunResult.json +97 -0
  2038. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/ApexTestSuite.json +31 -0
  2039. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/ApexTrigger.json +107 -0
  2040. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/ApexTriggerMember.json +64 -0
  2041. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/AssignmentRule.json +10 -0
  2042. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/AuraDefinition.json +47 -0
  2043. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/AuraDefinitionBundle.json +67 -0
  2044. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/AuthorizedEmailDomain.json +60 -0
  2045. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/AutoResponseRule.json +37 -0
  2046. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/BrandingSet.json +67 -0
  2047. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/BrandingSetProperty.json +37 -0
  2048. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/BriefcaseDefinition.json +74 -0
  2049. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/BusProcessFeedbackConfig.json +95 -0
  2050. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/BusinessProcess.json +47 -0
  2051. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/BusinessProcessDefinition.json +50 -0
  2052. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/BusinessProcessFeedback.json +40 -0
  2053. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/BusinessProcessGroup.json +55 -0
  2054. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/Certificate.json +74 -0
  2055. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/CleanDataService.json +57 -0
  2056. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/CleanRule.json +97 -0
  2057. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/ColorDefinition.json +47 -0
  2058. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/CommunityWorkspacesNode.json +70 -0
  2059. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/CompactLayout.json +57 -0
  2060. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/CompactLayoutInfo.json +74 -0
  2061. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/CompactLayoutItemInfo.json +54 -0
  2062. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/ConnectedApplication.json +10 -0
  2063. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/ContactCenterChannel.json +57 -0
  2064. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/ContainerAsyncRequest.json +59 -0
  2065. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/ConversationChannelDefinition.json +191 -0
  2066. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/ConversationVendorInfo.json +174 -0
  2067. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/CspTrustedSite.json +74 -0
  2068. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/CustomApplication.json +92 -0
  2069. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/CustomField.json +47 -0
  2070. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/CustomFieldDisplay.json +57 -0
  2071. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/CustomFieldMember.json +54 -0
  2072. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/CustomHelpMenuSection.json +58 -0
  2073. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/CustomHttpHeader.json +47 -0
  2074. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/CustomMsgChannel.json +56 -0
  2075. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/CustomNotifActionDef.json +58 -0
  2076. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/CustomNotificationActionGroup.json +36 -0
  2077. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/CustomNotificationType.json +70 -0
  2078. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/CustomObject.json +67 -0
  2079. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/CustomTab.json +86 -0
  2080. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/DataAssessmentConfigItem.json +37 -0
  2081. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/DataIntegrationRecordPurchasePermission.json +37 -0
  2082. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/DataSourceBundleDefinition.json +72 -0
  2083. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/DataStreamTemplate.json +128 -0
  2084. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/DataType.json +45 -0
  2085. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/DebugLevel.json +76 -0
  2086. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/DelegateGroup.json +37 -0
  2087. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/DelegateGroupGrant.json +43 -0
  2088. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/DelegateGroupMember.json +38 -0
  2089. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/DeployDetails.json +21 -0
  2090. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/DeployRequest.json +153 -0
  2091. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/Document.json +125 -0
  2092. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/DomainProvision.json +59 -0
  2093. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/DuplicateJobDefinition.json +45 -0
  2094. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/DuplicateJobMatchingRuleDefinition.json +30 -0
  2095. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/EmailTemplate.json +72 -0
  2096. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/EmbeddedServiceBranding.json +97 -0
  2097. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/EmbeddedServiceConfig.json +107 -0
  2098. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/EmbeddedServiceCustomComponent.json +44 -0
  2099. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/EmbeddedServiceCustomLabel.json +47 -0
  2100. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/EmbeddedServiceCustomization.json +43 -0
  2101. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/EmbeddedServiceFieldService.json +105 -0
  2102. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/EmbeddedServiceFlow.json +49 -0
  2103. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/EmbeddedServiceFlowConfig.json +44 -0
  2104. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/EmbeddedServiceLiveAgent.json +144 -0
  2105. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/EmbeddedServiceMenuItem.json +98 -0
  2106. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/EmbeddedServiceMenuSettings.json +69 -0
  2107. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/EmbeddedServiceQuickAction.json +42 -0
  2108. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/EmbeddedServiceResource.json +46 -0
  2109. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/EngagementInsightType.json +98 -0
  2110. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/EnrichedField.json +39 -0
  2111. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/EntityDefinition.json +486 -0
  2112. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/EntityLimit.json +57 -0
  2113. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/EntityParticle.json +303 -0
  2114. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/EventDelivery.json +72 -0
  2115. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/EventRelayConfig.json +85 -0
  2116. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/EventSubscription.json +70 -0
  2117. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/ExtConvParticipantIntegDef.json +75 -0
  2118. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/ExternalAuthIdentityProvider.json +109 -0
  2119. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/ExternalClientAppSettings.json +10 -0
  2120. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/ExternalCredential.json +117 -0
  2121. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/ExternalDataSource.json +138 -0
  2122. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/ExternalDataSrcDescriptor.json +96 -0
  2123. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/ExternalServiceRegistration.json +138 -0
  2124. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/ExternalString.json +60 -0
  2125. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/ExternalStringLocalization.json +47 -0
  2126. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/FieldDefinition.json +587 -0
  2127. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/FieldMapping.json +47 -0
  2128. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/FieldMappingField.json +42 -0
  2129. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/FieldMappingRow.json +42 -0
  2130. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/FieldRestrictionRule.json +103 -0
  2131. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/FieldSet.json +47 -0
  2132. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/FlexiPage.json +78 -0
  2133. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/Flow.json +97 -0
  2134. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/FlowDefinition.json +77 -0
  2135. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/FlowElementTestCoverage.json +37 -0
  2136. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/FlowTest.json +63 -0
  2137. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/FlowTestCoverage.json +47 -0
  2138. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/FlowTestResult.json +10 -0
  2139. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/ForecastingDisplayedFamily.json +30 -0
  2140. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/ForecastingFilter.json +71 -0
  2141. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/ForecastingFilterCondition.json +86 -0
  2142. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/ForecastingSourceDefinition.json +85 -0
  2143. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/ForecastingType.json +91 -0
  2144. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/ForecastingTypeSource.json +86 -0
  2145. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/FormulaFunction.json +104 -0
  2146. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/FormulaFunctionAllowedType.json +37 -0
  2147. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/FormulaOperator.json +42 -0
  2148. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/GenAiFunctionDefinition.json +80 -0
  2149. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/GenAiPlannerDefinition.json +60 -0
  2150. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/GlobalValueSet.json +46 -0
  2151. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/Group.json +59 -0
  2152. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/GtwyProvPaymentMethodType.json +99 -0
  2153. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/HeapDump.json +33 -0
  2154. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/HistoryRetentionJob.json +50 -0
  2155. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/HomePageComponent.json +58 -0
  2156. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/HomePageLayout.json +42 -0
  2157. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/IPAddressRange.json +71 -0
  2158. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/IconDefinition.json +57 -0
  2159. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/InboundNetworkConnProperty.json +38 -0
  2160. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/InboundNetworkConnection.json +81 -0
  2161. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/Index.json +57 -0
  2162. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/IndexField.json +52 -0
  2163. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/InstalledSubscriberPackage.json +37 -0
  2164. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/InstalledSubscriberPackageVersion.json +37 -0
  2165. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/InvocableActionExtension.json +54 -0
  2166. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/KeywordList.json +52 -0
  2167. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/Layout.json +67 -0
  2168. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/LightningComponentBundle.json +82 -0
  2169. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/LightningComponentResource.json +49 -0
  2170. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/LightningOutApp.json +47 -0
  2171. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/LookupFilter.json +83 -0
  2172. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/MLDataDefinition.json +100 -0
  2173. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/MLField.json +56 -0
  2174. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/MLFilter.json +96 -0
  2175. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/MLPredictionDefinition.json +110 -0
  2176. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/ManagedContentNodeType.json +57 -0
  2177. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/ManagedContentType.json +51 -0
  2178. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/ManagedEventSubscription.json +65 -0
  2179. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/MarketingAppExtAction.json +78 -0
  2180. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/MarketingAppExtActivity.json +73 -0
  2181. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/MarketingAppExtAssignment.json +39 -0
  2182. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/MarketingAppExtension.json +57 -0
  2183. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/MatchingRule.json +77 -0
  2184. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/MenuItem.json +62 -0
  2185. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/MetadataComponentDependency.json +64 -0
  2186. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/MetadataContainer.json +29 -0
  2187. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/MetadataPackage.json +37 -0
  2188. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/MetadataPackageVersion.json +62 -0
  2189. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/MetadataWarningsHeader.json +16 -0
  2190. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/ModerationRule.json +89 -0
  2191. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/NamedCredential.json +264 -0
  2192. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/ObjectHierarchyRelationship.json +86 -0
  2193. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/OmniSupervisorConfig.json +59 -0
  2194. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/OperationLog.json +109 -0
  2195. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/OpportunitySplitType.json +76 -0
  2196. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/OrgDomainLog.json +37 -0
  2197. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/OutboundNetworkConnProperty.json +38 -0
  2198. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/OutboundNetworkConnection.json +79 -0
  2199. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/OwnerChangeOptionInfo.json +64 -0
  2200. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/Package2.json +84 -0
  2201. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/Package2Member.json +57 -0
  2202. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/Package2Version.json +157 -0
  2203. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/Package2VersionCreateRequest.json +105 -0
  2204. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/Package2VersionCreateRequestError.json +30 -0
  2205. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/PackageInstallRequest.json +116 -0
  2206. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/PackageUploadRequest.json +83 -0
  2207. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/PackageVersionUninstallRequestError.json +32 -0
  2208. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/PardotTenant.json +66 -0
  2209. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/PathAssistant.json +87 -0
  2210. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/PathAssistantStepInfo.json +47 -0
  2211. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/PathAssistantStepItem.json +47 -0
  2212. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/PaymentGatewayProvider.json +84 -0
  2213. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/PermissionDependency.json +44 -0
  2214. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/PermissionSet.json +77 -0
  2215. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/PermissionSetAssignment.json +82 -0
  2216. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/PermissionSetGroup.json +64 -0
  2217. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/PermissionSetGroupComponent.json +44 -0
  2218. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/PermissionSetTabSetting.json +39 -0
  2219. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/PipelineInspMetricConfig.json +45 -0
  2220. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/PlatformEventChannel.json +68 -0
  2221. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/PlatformEventChannelMember.json +67 -0
  2222. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/PlatformEventMigration.json +37 -0
  2223. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/PlatformEventSubscriberConfig.json +72 -0
  2224. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/PostTemplate.json +40 -0
  2225. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/PresenceDeclineReason.json +37 -0
  2226. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/PresenceUserConfig.json +72 -0
  2227. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/ProcessFlowMigration.json +84 -0
  2228. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/ProductAttributeSet.json +63 -0
  2229. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/Profile.json +49 -0
  2230. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/ProfileLayout.json +44 -0
  2231. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/Publisher.json +54 -0
  2232. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/QueryResult.json +52 -0
  2233. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/QueueRoutingConfig.json +82 -0
  2234. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/QuickActionDefinition.json +144 -0
  2235. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/QuickActionList.json +27 -0
  2236. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/QuickActionListItem.json +37 -0
  2237. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/RecentlyViewed.json +102 -0
  2238. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/RecommendationStrategy.json +83 -0
  2239. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/RecordActionDeployment.json +102 -0
  2240. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/RecordType.json +72 -0
  2241. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/RegisteredExternalService.json +104 -0
  2242. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/RelatedListColumnDefinition.json +83 -0
  2243. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/RelatedListDefinition.json +83 -0
  2244. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/RelationshipDomain.json +92 -0
  2245. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/RelationshipInfo.json +72 -0
  2246. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/ReleaseUpdate.json +112 -0
  2247. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/ReleaseUpdateStep.json +48 -0
  2248. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/RemoteProxy.json +71 -0
  2249. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/RestrictionRule.json +91 -0
  2250. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/SOQLResult.json +29 -0
  2251. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/SandboxInfo.json +113 -0
  2252. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/SandboxProcess.json +151 -0
  2253. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/SandboxProcessStage.json +85 -0
  2254. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/SchedulingObjective.json +59 -0
  2255. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/SchedulingRule.json +60 -0
  2256. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/Scontrol.json +63 -0
  2257. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/SearchLayout.json +72 -0
  2258. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/SecurityHealthCheck.json +37 -0
  2259. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/SecurityHealthCheckRisks.json +72 -0
  2260. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/ServiceChannel.json +92 -0
  2261. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/ServicePresenceStatus.json +37 -0
  2262. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/ShiftSegmentType.json +72 -0
  2263. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/SiteDetail.json +37 -0
  2264. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/Skill.json +42 -0
  2265. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/StandardAction.json +67 -0
  2266. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/StaticResource.json +49 -0
  2267. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/SubscriberPackage.json +42 -0
  2268. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/SubscriberPackageVersion.json +245 -0
  2269. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/SubscriberPackageVersionUninstallRequest.json +32 -0
  2270. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/SvcCatalogCategory.json +73 -0
  2271. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/SvcCatalogCategoryItem.json +51 -0
  2272. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/SvcCatalogFulfillFlowItem.json +84 -0
  2273. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/SvcCatalogFulfillmentFlow.json +73 -0
  2274. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/SvcCatalogItemDef.json +94 -0
  2275. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/SymbolTable.json +61 -0
  2276. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/TabDefinition.json +77 -0
  2277. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/Territory2SupportedObject.json +44 -0
  2278. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/TestSuiteMembership.json +32 -0
  2279. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/TimeSheetTemplate.json +94 -0
  2280. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/TimeSheetTemplateAssignment.json +34 -0
  2281. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/TraceFlag.json +92 -0
  2282. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/TransactionSecurityPolicy.json +105 -0
  2283. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/User.json +47 -0
  2284. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/UserAccessPolicy.json +73 -0
  2285. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/UserAccessPolicyAction.json +40 -0
  2286. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/UserAccessPolicyFilter.json +49 -0
  2287. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/UserCriteria.json +52 -0
  2288. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/UserEntityAccess.json +92 -0
  2289. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/UserFieldAccess.json +58 -0
  2290. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/ValidationRule.json +95 -0
  2291. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/VirtualVisitConfig.json +113 -0
  2292. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/WebLink.json +153 -0
  2293. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/WebStoreTemplate.json +227 -0
  2294. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/WorkSkillRouting.json +53 -0
  2295. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/WorkSkillRoutingAttribute.json +53 -0
  2296. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/WorkflowAlert.json +78 -0
  2297. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/WorkflowFieldUpdate.json +84 -0
  2298. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/WorkflowOutboundMessage.json +68 -0
  2299. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/WorkflowRule.json +52 -0
  2300. package/skills/platform-data-and-tooling-api-context-get/assets/tooling_api/WorkflowTask.json +68 -0
  2301. package/skills/platform-data-and-tooling-api-context-get/examples/README.md +93 -0
  2302. package/skills/platform-data-and-tooling-api-context-get/examples/bash_section_loading.sh +126 -0
  2303. package/skills/platform-data-and-tooling-api-context-get/examples/javascript_section_loading.js +97 -0
  2304. package/skills/platform-data-and-tooling-api-context-get/examples/python_section_loading.py +109 -0
  2305. package/skills/platform-data-and-tooling-api-context-get/references/data_and_tooling_index_table.md +2194 -0
  2306. package/skills/platform-data-and-tooling-api-context-get/references/usage_guide.md +87 -0
  2307. package/skills/platform-docs-get/README.md +1 -1
  2308. package/skills/platform-docs-get/SKILL.md +4 -5
  2309. package/skills/platform-lightning-type-widget-coordinate/SKILL.md +11 -9
  2310. package/skills/platform-lightning-type-widget-coordinate/examples/existing-lightning-type-with-widget-prompt.md +2 -2
  2311. package/skills/platform-lightning-type-widget-coordinate/examples/new-lightning-type-with-widget-prompt.md +2 -2
  2312. package/skills/platform-lightning-type-widget-coordinate/references/build-plan-format.md +1 -1
  2313. package/skills/platform-lightning-type-widget-coordinate/references/validation-gates.md +4 -4
  2314. package/skills/platform-metadata-deploy/SKILL.md +21 -0
  2315. package/skills/platform-report-generate/SKILL.md +159 -0
  2316. package/skills/platform-report-generate/examples/AccountsCreatedThisYear.report-meta.xml +48 -0
  2317. package/skills/platform-report-generate/examples/OpportunitiesByStageAndQuarter.report-meta.xml +53 -0
  2318. package/skills/platform-report-generate/examples/OpportunitiesByStageReport.report-meta.xml +75 -0
  2319. package/skills/platform-report-generate/examples/TabularOpportunitiesReport.report-meta.xml +49 -0
  2320. package/skills/platform-report-generate/references/chart-types.md +31 -0
  2321. package/skills/platform-report-generate/references/column-names.md +80 -0
  2322. package/skills/platform-report-generate/references/date-intervals.md +56 -0
  2323. package/skills/platform-report-generate/references/errors-and-troubleshooting.md +71 -0
  2324. package/skills/platform-report-generate/references/filter-operations.md +92 -0
  2325. package/skills/platform-report-generate/references/verification-checklist.md +47 -0
  2326. package/skills/platform-sandbox-configure/SKILL.md +424 -0
  2327. package/skills/platform-sharing-owd-configure/SKILL.md +6 -16
  2328. package/skills/platform-sharing-rules-generate/SKILL.md +8 -8
  2329. package/skills/platform-sharing-rules-generate/examples/create-cases.md +152 -0
  2330. package/skills/platform-sharing-rules-generate/examples/delete-cases.md +113 -0
  2331. package/skills/platform-sharing-rules-generate/examples/edit-cases.md +114 -0
  2332. package/skills/service-digital-engagement-channel-configure/SKILL.md +263 -0
  2333. package/skills/service-digital-engagement-channel-configure/assets/messaging_channel_template.xml +102 -0
  2334. package/skills/service-digital-engagement-channel-configure/examples/asa_agent_channel.xml +53 -0
  2335. package/skills/service-digital-engagement-channel-configure/examples/omni_flow_channel.xml +67 -0
  2336. package/skills/service-digital-engagement-channel-configure/examples/omni_queue_channel.xml +52 -0
  2337. package/skills/service-digital-engagement-channel-configure/references/channel_settings.md +294 -0
  2338. package/skills/service-digital-engagement-channel-configure/scripts/normalize-channel-name.sh +24 -0
  2339. package/skills/service-digital-engagement-deployment-configure/SKILL.md +255 -0
  2340. package/skills/service-digital-engagement-deployment-configure/assets/esd_api_mobile_template.xml +25 -0
  2341. package/skills/service-digital-engagement-deployment-configure/assets/esd_web_update_template.xml +33 -0
  2342. package/skills/service-digital-engagement-deployment-configure/examples/esd_api.xml +25 -0
  2343. package/skills/service-digital-engagement-deployment-configure/examples/esd_mobile.xml +25 -0
  2344. package/skills/service-digital-engagement-deployment-configure/examples/esd_web_full.xml +27 -0
  2345. package/skills/service-digital-engagement-deployment-configure/references/branding_and_tooling.md +98 -0
  2346. package/skills/service-digital-engagement-deployment-configure/references/code_snippet.md +75 -0
  2347. package/skills/service-digital-engagement-deployment-configure/references/connect_api_creation.md +144 -0
  2348. package/skills/service-digital-engagement-deployment-configure/references/deployment_settings.md +193 -0
  2349. package/skills/service-digital-engagement-messaging-site-integrate/SKILL.md +289 -0
  2350. package/skills/service-digital-engagement-messaging-site-integrate/references/aura_patch.md +54 -0
  2351. package/skills/service-digital-engagement-messaging-site-integrate/references/bundle_detection.md +56 -0
  2352. package/skills/service-digital-engagement-messaging-site-integrate/references/deploy_and_publish.md +101 -0
  2353. package/skills/service-digital-engagement-messaging-site-integrate/references/lwr_patch.md +55 -0
  2354. package/skills/service-digital-engagement-messaging-site-integrate/references/lwr_route_scaffolding.md +31 -0
  2355. package/skills/service-digital-engagement-messaging-site-integrate/references/manual_fallback.md +65 -0
  2356. package/skills/service-digital-engagement-messaging-site-integrate/scripts/detect_bundle_type.sh +44 -0
  2357. package/skills/service-digital-engagement-messaging-site-integrate/scripts/patch_aura_bundle.sh +135 -0
  2358. package/skills/service-digital-engagement-messaging-site-integrate/scripts/patch_lwr_bundle.sh +132 -0
  2359. package/skills/service-helpagent-coordinate/README.md +123 -0
  2360. package/skills/service-helpagent-coordinate/SKILL.md +255 -0
  2361. package/skills/service-helpagent-coordinate/assets/help-agent-spec.md +275 -0
  2362. package/skills/service-helpagent-coordinate/references/agent-script.md +557 -0
  2363. package/skills/service-helpagent-coordinate/references/channel-help-portal.md +22 -0
  2364. package/skills/service-helpagent-coordinate/references/channel-voice.md +17 -0
  2365. package/skills/service-helpagent-coordinate/references/channel-web-chat.md +76 -0
  2366. package/skills/agentforce-generate/assets/README-legacy.md +0 -89
  2367. package/skills/agentforce-generate/assets/agents/multi-subagent.agent +0 -105
  2368. package/skills/agentforce-generate/assets/apex/models-api-queueable.cls +0 -225
  2369. package/skills/agentforce-generate/assets/components/apex-action.agent +0 -52
  2370. package/skills/agentforce-generate/assets/components/error-handling.agent +0 -58
  2371. package/skills/agentforce-generate/assets/components/escalation-setup.agent +0 -169
  2372. package/skills/agentforce-generate/assets/components/flow-action.agent +0 -66
  2373. package/skills/agentforce-generate/assets/components/n-ary-conditions.agent +0 -110
  2374. package/skills/agentforce-generate/assets/components/subagent-with-actions.agent +0 -40
  2375. package/skills/agentforce-generate/assets/deterministic-routing.agent +0 -166
  2376. package/skills/agentforce-generate/assets/escalation-pattern.agent +0 -209
  2377. package/skills/agentforce-generate/assets/flow-action-lookup.agent +0 -115
  2378. package/skills/agentforce-generate/assets/hub-and-spoke.agent +0 -104
  2379. package/skills/agentforce-generate/assets/metadata/basic-prompt-template.promptTemplate-meta.xml +0 -109
  2380. package/skills/agentforce-generate/assets/metadata/genai-function-apex.xml +0 -92
  2381. package/skills/agentforce-generate/assets/metadata/genai-function-flow.xml +0 -57
  2382. package/skills/agentforce-generate/assets/metadata/genai-plugin.xml +0 -72
  2383. package/skills/agentforce-generate/assets/metadata/http-callout-flow.flow-meta.xml +0 -348
  2384. package/skills/agentforce-generate/assets/metadata/record-grounded-prompt.promptTemplate-meta.xml +0 -136
  2385. package/skills/agentforce-generate/assets/minimal-starter.agent +0 -42
  2386. package/skills/agentforce-generate/assets/prompt-rag-search.agent +0 -131
  2387. package/skills/agentforce-generate/assets/template-single-subagent.agent +0 -81
  2388. package/skills/agentforce-generate/assets/verification-gate.agent +0 -208
  2389. package/skills/agentforce-generate/references/minimal-examples.md +0 -67
  2390. package/skills/platform-sharing-rules-generate/examples/test-cases.md +0 -381
  2391. /package/skills/design-systems-slds-apply/{checklists.md → references/checklists.md} +0 -0
  2392. /package/skills/platform-docs-get/{requirements.txt → scripts/requirements.txt} +0 -0
@@ -0,0 +1,2194 @@
1
+ <!-- Generated by generate_data_and_tooling_skill.py on 2026-07-23 -->
2
+
3
+ # Data + Tooling API Object Index
4
+
5
+ 1839 Enterprise/Data API sObjects (`assets/enterprise_api/`) and 291 Tooling API records (`assets/tooling_api/`).
6
+
7
+ ## Enterprise / Data API — Common Sections
8
+
9
+ These sections appear in most enterprise sObjects:
10
+
11
+ - title
12
+ - description
13
+ - fields
14
+
15
+ **Note**: the table below shows only *additional* sections beyond these.
16
+
17
+ ## Enterprise / Data API — Quick Reference
18
+
19
+ | Object | Additional Sections |
20
+ |--------|---------------------|
21
+ | AIApplication | field_reference |
22
+ | AIApplicationConfig | field_reference |
23
+ | AIInsightAction | special_access_rules, usage, field_reference |
24
+ | AIInsightFeedback | special_access_rules, usage, field_reference |
25
+ | AIInsightReason | special_access_rules, usage, field_reference |
26
+ | AIInsightValue | special_access_rules, usage, field_reference |
27
+ | AIRecordInsight | special_access_rules, usage, field_reference |
28
+ | AIResearchPromptResult | special_access_rules, associated_objects |
29
+ | API_Total_Usage | - |
30
+ | AbnExperiment | associated_objects, field_reference |
31
+ | AbnExperimentCohort | usage, associated_objects, field_reference |
32
+ | AcceptedEventRelation | usage, wsdl_segment, field_reference |
33
+ | Account | ispersonaccount_fields, special_access_rules, usage, associated_objects, wsdl_segment, field_reference |
34
+ | AccountBrand | special_access_rules, associated_objects, field_reference |
35
+ | AccountCleanInfo | usage, associated_objects, wsdl_segment, field_reference |
36
+ | AccountContactRelation | usage, associated_objects, field_reference |
37
+ | AccountContactRole | special_access_rules, usage, associated_objects, wsdl_segment, field_reference |
38
+ | AccountInsight | special_access_rules, usage |
39
+ | AccountOwnerSharingRule | special_access_rules, usage |
40
+ | AccountPartner | special_access_rules, wsdl_segment, field_reference |
41
+ | AccountPlan | special_access_rules, associated_objects |
42
+ | AccountPlanObjMeasCalcCond | special_access_rules, usage |
43
+ | AccountPlanObjMeasCalcDef | special_access_rules, usage |
44
+ | AccountPlanObjMeasCalcDefLocalization | usage |
45
+ | AccountPlanObjMeasRela | associated_objects |
46
+ | AccountPlanObjective | special_access_rules, associated_objects |
47
+ | AccountPlanObjectiveMeasure | special_access_rules, associated_objects |
48
+ | AccountRelationship | special_access_rules, associated_objects, field_reference |
49
+ | AccountRelationshipShareRule | field_reference |
50
+ | AccountShare | special_access_rules, usage, wsdl_segment, field_reference |
51
+ | AccountTag | usage |
52
+ | AccountTeamMember | usage, associated_objects |
53
+ | AccountTerritoryAssignmentRule | special_access_rules, usage |
54
+ | AccountTerritoryAssignmentRuleItem | special_access_rules |
55
+ | AccountTerritorySharingRule | special_access_rules, usage |
56
+ | AccountUserTerritory2View | special_access_rules, usage, field_reference |
57
+ | ActionCadence | usage, associated_objects, field_reference |
58
+ | ActionCadenceRule | usage, field_reference |
59
+ | ActionCadenceRuleCondition | usage, field_reference |
60
+ | ActionCadenceStep | usage, associated_objects, field_reference |
61
+ | ActionCadenceStepTracker | usage, associated_objects, field_reference |
62
+ | ActionCadenceStepVariant | special_access_rules, usage |
63
+ | ActionCadenceTracker | usage, associated_objects, field_reference |
64
+ | ActionCdncStpMonthlyMetric | special_access_rules, field_reference |
65
+ | ActionLinkGroupTemplate | special_access_rules, usage, wsdl_segment, field_reference |
66
+ | ActionLinkTemplate | special_access_rules, usage, wsdl_segment, field_reference |
67
+ | ActionPlan | special_access_rules, associated_objects, field_reference |
68
+ | ActionPlanItem | associated_objects, field_reference |
69
+ | ActionPlanTemplate | associated_objects, field_reference |
70
+ | ActionPlanTemplateItem | associated_objects, field_reference |
71
+ | ActionPlanTemplateItemValue | associated_objects, field_reference |
72
+ | ActionPlanTemplateVersion | associated_objects, field_reference |
73
+ | ActiveFeatureLicenseMetric | wsdl_segment, field_reference |
74
+ | ActivePermSetLicenseMetric | wsdl_segment, field_reference |
75
+ | ActiveProfileMetric | wsdl_segment, field_reference |
76
+ | ActiveScratchOrg | usage, associated_objects, field_reference |
77
+ | ActivityFieldHistory | special_access_rules, wsdl_segment, field_reference |
78
+ | ActivityHistory | usage, wsdl_segment, field_reference |
79
+ | ActivityMetric | special_access_rules, field_reference |
80
+ | ActivityUsrConnectionStatus | special_access_rules, field_reference |
81
+ | AdditionalNumber | special_access_rules, usage, wsdl_segment, field_reference |
82
+ | Address | special_access_rules, usage, wsdl_segment, field_reference |
83
+ | AgentWork | special_access_rules, usage, associated_objects, field_reference |
84
+ | AgentWorkConversationalData | special_access_rules |
85
+ | AgentWorkSkill | special_access_rules, associated_objects, field_reference |
86
+ | AiGenActionItem | special_access_rules |
87
+ | AiGenActionItemInfo | special_access_rules |
88
+ | AiJobRun | field_reference |
89
+ | AiJobRunItem | field_reference |
90
+ | AiModelLanguage | special_access_rules |
91
+ | AllowedEmailDomain | special_access_rules |
92
+ | AlternativePaymentMethod | special_access_rules, wsdl_segment, field_reference |
93
+ | AnalyticsAssetAction | special_access_rules, field_reference |
94
+ | AnalyticsChangeEventLog | special_access_rules |
95
+ | AnalyticsContainerWidgetDef | special_access_rules, field_reference |
96
+ | AnalyticsDashboard | special_access_rules, field_reference |
97
+ | AnalyticsDashboardWidget | special_access_rules, field_reference |
98
+ | AnalyticsDownloadEventLog | special_access_rules |
99
+ | AnalyticsInteractEventLog | special_access_rules, usage |
100
+ | AnalyticsLicensedAsset | field_reference |
101
+ | AnalyticsPerfEventLog | special_access_rules |
102
+ | AnalyticsVisualization | special_access_rules, field_reference |
103
+ | AnalyticsVizField | special_access_rules, field_reference |
104
+ | AnalyticsVizViewDef | special_access_rules, field_reference |
105
+ | AnalyticsWorkspace | special_access_rules, field_reference |
106
+ | AnalyticsWorkspaceAsset | special_access_rules, field_reference |
107
+ | Announcement | usage, wsdl_segment, field_reference |
108
+ | ApexCalloutEventLog | special_access_rules |
109
+ | ApexClass | usage, wsdl_segment, field_reference |
110
+ | ApexComponent | usage, wsdl_segment, field_reference |
111
+ | ApexEmailNotification | usage, wsdl_segment, field_reference |
112
+ | ApexExecutionEventLog | special_access_rules |
113
+ | ApexExtlCalloutEventLog | special_access_rules |
114
+ | ApexInlineEventLog | - |
115
+ | ApexLog | usage, wsdl_segment, field_reference |
116
+ | ApexPage | usage, wsdl_segment, field_reference |
117
+ | ApexPageInfo | special_access_rules, usage, wsdl_segment, field_reference |
118
+ | ApexRestApiEventLog | special_access_rules |
119
+ | ApexSoapApiEventLog | special_access_rules |
120
+ | ApexTestQueueItem | special_access_rules, usage, wsdl_segment, field_reference |
121
+ | ApexTestResult | special_access_rules, usage, wsdl_segment, field_reference |
122
+ | ApexTestResultLimits | special_access_rules, usage, wsdl_segment, field_reference |
123
+ | ApexTestRunResult | special_access_rules, wsdl_segment, field_reference |
124
+ | ApexTestSuite | special_access_rules, usage, wsdl_segment, field_reference |
125
+ | ApexTrigger | usage, wsdl_segment, field_reference |
126
+ | ApexTriggerEventLog | special_access_rules |
127
+ | ApexTypeImplementor | usage, wsdl_segment, field_reference |
128
+ | ApexUnexpectedExcpEventLog | special_access_rules |
129
+ | Apex_Callout_Event_Type | - |
130
+ | Apex_Execution_Event_Type | - |
131
+ | Apex_Inline_Event_Type | - |
132
+ | Apex_REST_API_Event_Type | - |
133
+ | Apex_SOAP_Event_Type | - |
134
+ | Apex_Trigger_Event_Type | - |
135
+ | Apex_Unexpected_Exception_Event_Type | - |
136
+ | ApiTotalUsageEventLog | special_access_rules |
137
+ | AppAnalyticsQueryRequest | special_access_rules, usage, wsdl_segment, field_reference |
138
+ | AppDefinition | wsdl_segment, field_reference |
139
+ | AppExtension | special_access_rules, associated_objects, wsdl_segment, field_reference |
140
+ | AppMenuItem | usage, wsdl_segment, field_reference |
141
+ | AppTabMember | wsdl_segment, field_reference |
142
+ | AppUsageAssignment | field_reference |
143
+ | ApplicationFormTemplate | special_access_rules, associated_objects, field_reference |
144
+ | AppointmentAssignmentPolicy | field_reference |
145
+ | AppointmentScheduleAggr | associated_objects, field_reference |
146
+ | AppointmentScheduleLog | associated_objects, field_reference |
147
+ | AppointmentSchedulingPolicy | field_reference |
148
+ | AppointmentTopicTimeSlot | associated_objects, wsdl_segment, field_reference |
149
+ | Approval | special_access_rules, usage |
150
+ | ApprovalAlertContentDef | associated_objects |
151
+ | ApprovalSubmission | special_access_rules, associated_objects, wsdl_segment, field_reference |
152
+ | ApprovalSubmissionDetail | special_access_rules, associated_objects, wsdl_segment, field_reference |
153
+ | ApprovalWorkItem | special_access_rules, associated_objects, wsdl_segment, field_reference |
154
+ | ApprovalWorkItemCondition | special_access_rules, field_reference |
155
+ | ApprovalWorkItemCriteria | special_access_rules, field_reference |
156
+ | ApptBundleAggrDurDnscale | wsdl_segment, field_reference |
157
+ | ApptBundleAggrPolicy | wsdl_segment, field_reference |
158
+ | ApptBundleConfig | wsdl_segment, field_reference |
159
+ | ApptBundlePolicy | wsdl_segment, field_reference |
160
+ | ApptBundlePolicySvcTerr | wsdl_segment, field_reference |
161
+ | ApptBundlePropagatePolicy | wsdl_segment, field_reference |
162
+ | ApptBundleRestrictPolicy | wsdl_segment, field_reference |
163
+ | ApptBundleSortPolicy | wsdl_segment, field_reference |
164
+ | ArchiveActivity | special_access_rules |
165
+ | ArchivePolicyDefinition | special_access_rules |
166
+ | Article_Type__DataCategorySelection | special_access_rules, usage |
167
+ | Asset | usage, associated_objects, wsdl_segment, field_reference |
168
+ | AssetAction | special_access_rules, wsdl_segment, field_reference |
169
+ | AssetActionSource | special_access_rules, wsdl_segment, field_reference |
170
+ | AssetAttribute | special_access_rules, usage, wsdl_segment, field_reference |
171
+ | AssetContractRelationship | special_access_rules, associated_objects, field_reference |
172
+ | AssetDowntimePeriod | wsdl_segment, field_reference |
173
+ | AssetOwnerSharingRule | special_access_rules, usage |
174
+ | AssetRateAdjustment | special_access_rules, field_reference |
175
+ | AssetRateCardEntry | special_access_rules, field_reference |
176
+ | AssetRelationship | special_access_rules, associated_objects, wsdl_segment, field_reference |
177
+ | AssetShare | special_access_rules, usage, wsdl_segment, field_reference |
178
+ | AssetStatePeriod | special_access_rules, wsdl_segment, field_reference |
179
+ | AssetStatePeriodAttribute | special_access_rules, usage, wsdl_segment, field_reference |
180
+ | AssetTag | usage |
181
+ | AssetTokenEvent | wsdl_segment, field_reference |
182
+ | AssetWarranty | associated_objects, wsdl_segment, field_reference |
183
+ | AssignedResource | usage, associated_objects, wsdl_segment, field_reference |
184
+ | AssignmentRule | usage, wsdl_segment, field_reference |
185
+ | AssociatedLocation | special_access_rules, associated_objects, wsdl_segment, field_reference |
186
+ | AsyncApexJob | special_access_rules, usage, wsdl_segment, field_reference |
187
+ | AsyncOpSyndicationFeedFile | special_access_rules |
188
+ | AsyncOperationLog | special_access_rules, field_reference |
189
+ | AsyncOperationTracker | associated_objects, field_reference |
190
+ | AsyncReportRunEventLog | special_access_rules |
191
+ | Asynchronous_Report_Run_Event_Type | - |
192
+ | AttachedContentDocument | special_access_rules, usage, wsdl_segment, field_reference |
193
+ | AttachedContentNote | special_access_rules, usage, field_reference |
194
+ | Attachment | usage, wsdl_segment, field_reference |
195
+ | AttachmentEventLog | special_access_rules |
196
+ | AttribModel | usage, associated_objects |
197
+ | AttribModelStage | usage, associated_objects |
198
+ | AttribModelStageMetric | usage, associated_objects |
199
+ | AttributeDefinition | special_access_rules, usage, associated_objects, wsdl_segment, field_reference |
200
+ | AttributePicklist | special_access_rules, usage, associated_objects, wsdl_segment, field_reference |
201
+ | AttributePicklistValue | special_access_rules, usage, associated_objects, wsdl_segment, field_reference |
202
+ | Audience | field_reference |
203
+ | AuraDefinition | special_access_rules, usage, wsdl_segment, field_reference |
204
+ | AuraDefinitionBundle | usage, wsdl_segment, field_reference |
205
+ | AuraDefinitionBundleInfo | wsdl_segment, field_reference |
206
+ | AuraDefinitionInfo | wsdl_segment, field_reference |
207
+ | AuraRequestEventLog | special_access_rules |
208
+ | Aura_Request_Event_Type | - |
209
+ | AuthConfig | special_access_rules, wsdl_segment, field_reference |
210
+ | AuthConfigProviders | special_access_rules, wsdl_segment, field_reference |
211
+ | AuthProvParamFwdAllowlist | wsdl_segment, field_reference |
212
+ | AuthProvider | special_access_rules, wsdl_segment, field_reference |
213
+ | AuthSession | special_access_rules, usage, wsdl_segment, field_reference |
214
+ | AuthorizationForm | special_access_rules, associated_objects, wsdl_segment, field_reference |
215
+ | AuthorizationFormConsent | special_access_rules, associated_objects, wsdl_segment, field_reference |
216
+ | AuthorizationFormDataUse | special_access_rules, associated_objects, wsdl_segment, field_reference |
217
+ | AuthorizationFormText | special_access_rules, associated_objects, wsdl_segment, field_reference |
218
+ | AutomatedAction | associated_objects |
219
+ | AutomatedActionCondition | - |
220
+ | AutomatedActionOverride | associated_objects |
221
+ | AutomatedActionParameter | - |
222
+ | AutomatedActionReminder | associated_objects |
223
+ | BackgroundOperation | usage, wsdl_segment, field_reference |
224
+ | BackgroundOperationResult | usage |
225
+ | BatchApexErrorEvent | wsdl_segment, field_reference |
226
+ | BillingBatchScheduler | special_access_rules, field_reference |
227
+ | BillingPeriodItem | special_access_rules, field_reference |
228
+ | BillingPolicy | special_access_rules, field_reference |
229
+ | BillingSchedule | special_access_rules, field_reference |
230
+ | BillingScheduleGroup | special_access_rules, field_reference |
231
+ | BillingTreatment | special_access_rules, associated_objects, field_reference |
232
+ | BillingTreatmentItem | special_access_rules, associated_objects, field_reference |
233
+ | BlockedRedirectEventLog | special_access_rules |
234
+ | Blocked_Redirect_Event_Type | usage |
235
+ | Bookmark | usage |
236
+ | BotDefinition | special_access_rules, field_reference |
237
+ | BotVersion | field_reference |
238
+ | BrandTemplate | special_access_rules, usage, wsdl_segment, field_reference |
239
+ | BrandingSet | special_access_rules, wsdl_segment, field_reference |
240
+ | Brief | field_reference |
241
+ | BriefcaseAssignment | associated_objects, wsdl_segment, field_reference |
242
+ | BriefcaseDefinition | special_access_rules, usage, associated_objects, wsdl_segment, field_reference |
243
+ | BriefcaseRule | special_access_rules, wsdl_segment, field_reference |
244
+ | BriefcaseRuleFilter | special_access_rules, wsdl_segment, field_reference |
245
+ | BroadcastCommAudience | special_access_rules, associated_objects |
246
+ | BroadcastCommunication | special_access_rules, associated_objects |
247
+ | BroadcastTopic | special_access_rules |
248
+ | BroadcastTopicGroup | special_access_rules, associated_objects |
249
+ | BroadcastTopicNetwork | special_access_rules, associated_objects |
250
+ | BrowserPolicyViolation | special_access_rules, wsdl_segment, field_reference |
251
+ | BulkApi2EventLog | special_access_rules |
252
+ | BulkApiEventLog | special_access_rules |
253
+ | BulkApiRequestEventLog | special_access_rules |
254
+ | Bulk_API_2.0_Event_Type | - |
255
+ | Bulk_API_Event_Type | - |
256
+ | Bulk_API_Request_Event_Type | - |
257
+ | BusinessAlert | special_access_rules |
258
+ | BusinessAlertStatus | special_access_rules |
259
+ | BusinessBrand | associated_objects, wsdl_segment, field_reference |
260
+ | BusinessHours | special_access_rules, usage, wsdl_segment, field_reference |
261
+ | BusinessProcessDefinition | field_reference |
262
+ | BusinessProcessFeedback | field_reference |
263
+ | BusinessProcessGroup | field_reference |
264
+ | Business_Process | special_access_rules, usage |
265
+ | BuyerAccount | special_access_rules, associated_objects, field_reference |
266
+ | BuyerCriteria | usage, associated_objects, field_reference |
267
+ | BuyerGroup | usage, associated_objects, field_reference |
268
+ | BuyerGroupBuyerCriteria | usage, field_reference |
269
+ | BuyerGroupMember | special_access_rules, field_reference |
270
+ | BuyerGroupPricebook | special_access_rules, usage, field_reference |
271
+ | BuyerGroupRelatedObject | special_access_rules, usage, associated_objects, field_reference |
272
+ | CORS_Violation_Record_Event_Type | - |
273
+ | CSP_Violation_Event_Type | usage |
274
+ | CalcProcStepRelationship | special_access_rules, associated_objects, field_reference |
275
+ | CalculatedInsightRangeBound | special_access_rules, associated_objects, field_reference |
276
+ | CalculationMatrix | special_access_rules, usage, field_reference |
277
+ | CalculationMatrixColumn | special_access_rules, field_reference |
278
+ | CalculationMatrixRow | special_access_rules, field_reference |
279
+ | CalculationMatrixVersion | special_access_rules, field_reference |
280
+ | CalculationProcedure | special_access_rules, usage, field_reference |
281
+ | CalculationProcedureStep | special_access_rules, field_reference |
282
+ | CalculationProcedureVariable | special_access_rules, field_reference |
283
+ | CalculationProcedureVersion | special_access_rules, field_reference |
284
+ | Calendar | special_access_rules, wsdl_segment, field_reference |
285
+ | CalendarView | special_access_rules, usage, associated_objects, wsdl_segment, field_reference |
286
+ | CallCenter | special_access_rules, usage, wsdl_segment, field_reference |
287
+ | CallCenterRoutingMap | special_access_rules, field_reference |
288
+ | CallCoachingMediaProvider | wsdl_segment, field_reference |
289
+ | CallCtrAgentFavTrfrDest | field_reference |
290
+ | CallCtrAgentFavTrfrDestShare | field_reference |
291
+ | CallDisposition | special_access_rules, field_reference |
292
+ | CallDispositionCategory | special_access_rules, field_reference |
293
+ | CallTemplate | associated_objects, field_reference |
294
+ | Campaign | special_access_rules, usage, associated_objects, wsdl_segment, field_reference |
295
+ | CampaignInfluence | special_access_rules, usage |
296
+ | CampaignInfluenceModel | special_access_rules, wsdl_segment, field_reference |
297
+ | CampaignMember | special_access_rules, usage, associated_objects, wsdl_segment, field_reference |
298
+ | CampaignMemberStatus | special_access_rules, usage, associated_objects, wsdl_segment, field_reference |
299
+ | CampaignOwnerSharingRule | usage |
300
+ | CampaignShare | special_access_rules, usage, wsdl_segment, field_reference |
301
+ | CampaignTag | usage |
302
+ | CardPaymentMethod | special_access_rules, usage, wsdl_segment, field_reference |
303
+ | CartCheckoutSession | special_access_rules, field_reference |
304
+ | CartDeliveryGroup | special_access_rules, associated_objects, field_reference |
305
+ | CartDeliveryGroupMethod | special_access_rules, usage, field_reference |
306
+ | CartDeliveryGroupMethodAdj | special_access_rules, field_reference |
307
+ | CartItem | special_access_rules, associated_objects, field_reference |
308
+ | CartItemAttribute | special_access_rules, associated_objects |
309
+ | CartItemPriceAdjustment | special_access_rules, associated_objects, field_reference |
310
+ | CartTax | special_access_rules, associated_objects, field_reference |
311
+ | CartValidationOutput | special_access_rules, associated_objects, field_reference |
312
+ | Case | usage, associated_objects, wsdl_segment, field_reference |
313
+ | CaseArticle | special_access_rules, usage, field_reference |
314
+ | CaseComment | usage, wsdl_segment, field_reference |
315
+ | CaseContactRole | usage, wsdl_segment, field_reference |
316
+ | CaseHistory | special_access_rules, usage, wsdl_segment, field_reference |
317
+ | CaseHistory2 | special_access_rules, usage, associated_objects, wsdl_segment, field_reference |
318
+ | CaseMilestone | usage, wsdl_segment, field_reference |
319
+ | CaseOwnerSharingRule | special_access_rules, usage |
320
+ | CaseParticipant | special_access_rules, associated_objects, field_reference |
321
+ | CaseRelatedIssue | associated_objects, field_reference |
322
+ | CaseShare | special_access_rules, usage, wsdl_segment, field_reference |
323
+ | CaseSolution | usage, wsdl_segment, field_reference |
324
+ | CaseStatus | usage, wsdl_segment, field_reference |
325
+ | CaseSubjectParticle | usage, field_reference |
326
+ | CaseTag | usage |
327
+ | CaseTeamMember | special_access_rules, wsdl_segment, field_reference |
328
+ | CaseTeamRole | special_access_rules, wsdl_segment, field_reference |
329
+ | CaseTeamTemplate | special_access_rules, wsdl_segment, field_reference |
330
+ | CaseTeamTemplateMember | special_access_rules, wsdl_segment, field_reference |
331
+ | CaseTeamTemplateRecord | special_access_rules, wsdl_segment, field_reference |
332
+ | CategoryData | special_access_rules, usage, wsdl_segment, field_reference |
333
+ | CategoryNode | usage, wsdl_segment, field_reference |
334
+ | CategoryNodeLocalization | usage, field_reference |
335
+ | ChangeRequest | associated_objects, field_reference |
336
+ | ChangeRequestRelatedIssue | associated_objects, field_reference |
337
+ | ChangeRequestRelatedItem | associated_objects, field_reference |
338
+ | ChangeSetOperationEventLog | special_access_rules |
339
+ | Change_Set_Operation_Event_Type | - |
340
+ | ChannelObjectLinkingRule | field_reference |
341
+ | ChannelProgram | associated_objects, field_reference |
342
+ | ChannelProgramLevel | associated_objects, field_reference |
343
+ | ChannelProgramMember | associated_objects, field_reference |
344
+ | ChatterActivity | usage, wsdl_segment, field_reference |
345
+ | ChatterAnswersActivity | usage |
346
+ | ChatterAnswersReputationLevel | usage |
347
+ | ChatterConversation | usage |
348
+ | ChatterConversationMember | usage |
349
+ | ChatterExtension | wsdl_segment, field_reference |
350
+ | ChatterExtensionConfig | wsdl_segment, field_reference |
351
+ | ChatterMessage | usage |
352
+ | ClientBrowser | usage, wsdl_segment, field_reference |
353
+ | CollabDocumentMetric | - |
354
+ | CollabDocumentMetricRecord | - |
355
+ | CollabTemplateMetric | associated_objects |
356
+ | CollabTemplateMetricRecord | - |
357
+ | CollabUserEngagementMetric | - |
358
+ | CollabUserEngmtRecordLink | - |
359
+ | CollaborationGroup | special_access_rules, usage, associated_objects, wsdl_segment, field_reference |
360
+ | CollaborationGroupMember | usage, wsdl_segment, field_reference |
361
+ | CollaborationGroupMemberRequest | usage, wsdl_segment, field_reference |
362
+ | CollaborationGroupRecord | associated_objects, wsdl_segment, field_reference |
363
+ | CollaborationInvitation | special_access_rules, usage, wsdl_segment, field_reference |
364
+ | CollaborationRoom | special_access_rules, wsdl_segment, field_reference |
365
+ | ColorDefinition | wsdl_segment, field_reference |
366
+ | CombinedAttachment | usage, wsdl_segment, field_reference |
367
+ | CommSubscription | associated_objects, wsdl_segment, field_reference |
368
+ | CommSubscriptionChannelType | associated_objects, wsdl_segment, field_reference |
369
+ | CommSubscriptionConsent | associated_objects, wsdl_segment, field_reference |
370
+ | CommSubscriptionTiming | associated_objects, wsdl_segment, field_reference |
371
+ | CommerceEntitlementBuyerGroup | special_access_rules, associated_objects, field_reference |
372
+ | CommerceEntitlementPolicy | special_access_rules, associated_objects, field_reference |
373
+ | CommerceEntitlementPolicyShare | special_access_rules, field_reference |
374
+ | CommerceEntitlementProduct | special_access_rules, associated_objects, field_reference |
375
+ | CommissionSchedule | associated_objects |
376
+ | CommissionScheduleAssignment | associated_objects |
377
+ | Community | usage, wsdl_segment |
378
+ | Composite_API_Event_Type | - |
379
+ | Composite_API_Subrequest_Event_Type | - |
380
+ | ConcurApexLimitEventLog | special_access_rules |
381
+ | Concurrent_Long-Running_Apex_Limit_Event_Type | usage |
382
+ | ConferenceNumber | special_access_rules, associated_objects, wsdl_segment, field_reference |
383
+ | ConnectedApplication | wsdl_segment, field_reference |
384
+ | Console_Event_Type | - |
385
+ | Consumption_Rate | - |
386
+ | Consumption_Schedule | - |
387
+ | ContCalloutSummaryEventLog | special_access_rules |
388
+ | Contact | special_access_rules, usage, associated_objects, wsdl_segment, field_reference |
389
+ | ContactCenterChannel | special_access_rules, field_reference |
390
+ | ContactCleanInfo | usage, associated_objects, wsdl_segment, field_reference |
391
+ | ContactDailyMetric | special_access_rules, field_reference |
392
+ | ContactMonthlyMetric | special_access_rules, field_reference |
393
+ | ContactOwnerSharingRule | usage |
394
+ | ContactPointAddress | associated_objects, wsdl_segment, field_reference |
395
+ | ContactPointConsent | associated_objects, wsdl_segment, field_reference |
396
+ | ContactPointEmail | associated_objects, wsdl_segment, field_reference |
397
+ | ContactPointPhone | associated_objects, wsdl_segment, field_reference |
398
+ | ContactPointTypeConsent | special_access_rules, associated_objects, wsdl_segment, field_reference |
399
+ | ContactRequest | usage, associated_objects, wsdl_segment, field_reference |
400
+ | ContactRequestShare | usage, wsdl_segment, field_reference |
401
+ | ContactShare | special_access_rules, usage, wsdl_segment, field_reference |
402
+ | ContactSuggestionInsight | special_access_rules, usage |
403
+ | ContactTag | usage |
404
+ | ContentAsset | special_access_rules, wsdl_segment, field_reference |
405
+ | ContentBody | special_access_rules, usage, wsdl_segment, field_reference |
406
+ | ContentDistribution | usage, wsdl_segment, field_reference |
407
+ | ContentDistributionEventLog | special_access_rules |
408
+ | ContentDistributionView | usage, wsdl_segment, field_reference |
409
+ | ContentDocLinkEventLog | special_access_rules |
410
+ | ContentDocument | special_access_rules, associated_objects, wsdl_segment, field_reference |
411
+ | ContentDocumentHistory | usage, wsdl_segment, field_reference |
412
+ | ContentDocumentLink | usage, associated_objects, wsdl_segment, field_reference |
413
+ | ContentDocumentListViewMapping | special_access_rules, usage |
414
+ | ContentDocumentSubscription | special_access_rules, wsdl_segment, field_reference |
415
+ | ContentFolder | associated_objects, wsdl_segment, field_reference |
416
+ | ContentFolderItem | wsdl_segment, field_reference |
417
+ | ContentFolderLink | wsdl_segment, field_reference |
418
+ | ContentFolderMember | wsdl_segment, field_reference |
419
+ | ContentHubItem | special_access_rules, usage |
420
+ | ContentHubRepository | special_access_rules |
421
+ | ContentNote | usage, field_reference |
422
+ | ContentNotification | special_access_rules, wsdl_segment, field_reference |
423
+ | ContentTagSubscription | special_access_rules, wsdl_segment, field_reference |
424
+ | ContentTaxonomy | special_access_rules, wsdl_segment, field_reference |
425
+ | ContentTaxonomyRelatedTerm | special_access_rules, usage, wsdl_segment, field_reference |
426
+ | ContentTaxonomyTerm | special_access_rules, usage, wsdl_segment, field_reference |
427
+ | ContentTaxonomyTermRelatedTerm | special_access_rules, usage, wsdl_segment, field_reference |
428
+ | ContentTaxonomyTermRelationshipType | special_access_rules, usage, wsdl_segment, field_reference |
429
+ | ContentTransferEventLog | special_access_rules |
430
+ | ContentUserSubscription | special_access_rules, wsdl_segment, field_reference |
431
+ | ContentVersion | special_access_rules, usage, associated_objects, wsdl_segment, field_reference |
432
+ | ContentVersionComment | special_access_rules, wsdl_segment, field_reference |
433
+ | ContentVersionHistory | usage, wsdl_segment, field_reference |
434
+ | ContentVersionRating | special_access_rules, wsdl_segment, field_reference |
435
+ | ContentWorkspace | usage, wsdl_segment, field_reference |
436
+ | ContentWorkspaceDoc | wsdl_segment, field_reference |
437
+ | ContentWorkspaceMember | special_access_rules, usage, wsdl_segment, field_reference |
438
+ | ContentWorkspacePermission | special_access_rules, wsdl_segment, field_reference |
439
+ | ContentWorkspaceSubscription | special_access_rules, wsdl_segment, field_reference |
440
+ | Content_Distribution_Event_Type | - |
441
+ | Content_Document_Link_Event_Type | - |
442
+ | Content_Transfer_Event_Type | - |
443
+ | ContextParamMap | wsdl_segment, field_reference |
444
+ | Continuation_Callout_Summary_Event_Type | - |
445
+ | Contract | usage, associated_objects, wsdl_segment, field_reference |
446
+ | ContractContactRole | wsdl_segment, field_reference |
447
+ | ContractLineItem | associated_objects, wsdl_segment, field_reference |
448
+ | ContractLineOutcome | usage, associated_objects, wsdl_segment, field_reference |
449
+ | ContractLineOutcomeData | associated_objects, wsdl_segment, field_reference |
450
+ | ContractStatus | usage, wsdl_segment, field_reference |
451
+ | ContractTag | usage |
452
+ | ConvAnalysisSummary | special_access_rules |
453
+ | ConvAnalysisTopic | special_access_rules |
454
+ | ConvAnalysisTopicEntry | special_access_rules |
455
+ | ConvIntelligenceSignalRule | special_access_rules, wsdl_segment, field_reference |
456
+ | ConvIntelligenceSignalSubRule | special_access_rules, wsdl_segment, field_reference |
457
+ | ConvMessageSendRequest | special_access_rules, usage, wsdl_segment, field_reference |
458
+ | Conversation | wsdl_segment, field_reference |
459
+ | ConversationApiLog | wsdl_segment, field_reference |
460
+ | ConversationChannelDefinition | special_access_rules, field_reference |
461
+ | ConversationContextEntry | special_access_rules, associated_objects, field_reference |
462
+ | ConversationEntry | special_access_rules, usage, wsdl_segment, field_reference |
463
+ | ConversationParticipant | wsdl_segment, field_reference |
464
+ | ConversationVendorInfo | special_access_rules, field_reference |
465
+ | CorsWhitelistEntry | usage, wsdl_segment, field_reference |
466
+ | Coupon | special_access_rules, associated_objects, field_reference |
467
+ | CouponCodeRedemption | special_access_rules, field_reference |
468
+ | CreditMemo | special_access_rules, associated_objects, field_reference |
469
+ | CreditMemoAddressGroup | special_access_rules, associated_objects, field_reference |
470
+ | CreditMemoInvApplication | special_access_rules, associated_objects, field_reference |
471
+ | CreditMemoLine | special_access_rules, associated_objects, field_reference |
472
+ | Crisis | special_access_rules, associated_objects |
473
+ | CronJobDetail | usage, wsdl_segment, field_reference |
474
+ | CronTrigger | usage, wsdl_segment, field_reference |
475
+ | CryptoProdCatgWalletGroup | special_access_rules |
476
+ | CspTrustedSite | usage, wsdl_segment, field_reference |
477
+ | CspViolationEventLog | special_access_rules, usage |
478
+ | CurrencyType | usage, field_reference |
479
+ | CustExpIntlTransfSetup | - |
480
+ | CustomBrand | special_access_rules, usage, wsdl_segment, field_reference |
481
+ | CustomBrandAsset | special_access_rules, usage, wsdl_segment, field_reference |
482
+ | CustomFieldDisplayValue | special_access_rules, usage, associated_objects, field_reference |
483
+ | CustomHelpMenuItem | wsdl_segment, field_reference |
484
+ | CustomHelpMenuSection | wsdl_segment, field_reference |
485
+ | CustomHttpHeader | special_access_rules, usage, wsdl_segment, field_reference |
486
+ | CustomMsgChannel | special_access_rules, field_reference |
487
+ | CustomNotificationType | wsdl_segment, field_reference |
488
+ | CustomPermission | special_access_rules, usage, wsdl_segment, field_reference |
489
+ | CustomPermissionDependency | special_access_rules, usage, wsdl_segment, field_reference |
490
+ | Custom_Metadata_Type__mdt | - |
491
+ | Custom_Object__Feed | special_access_rules, usage |
492
+ | Custom_Object___c___c | - |
493
+ | Customer | wsdl_segment, field_reference |
494
+ | DandBCompany | special_access_rules, usage, wsdl_segment, field_reference |
495
+ | Dashboard | usage, associated_objects, wsdl_segment, field_reference |
496
+ | DashboardComponent | usage, associated_objects, wsdl_segment, field_reference |
497
+ | DashboardTag | usage |
498
+ | Dashboard_Event_Type | - |
499
+ | DataAssessmentFieldMetric | wsdl_segment, field_reference |
500
+ | DataAssessmentMetric | wsdl_segment, field_reference |
501
+ | DataAssessmentValueMetric | wsdl_segment, field_reference |
502
+ | DataDetPlcyDataSrchExps | - |
503
+ | DataDetPlcyMdatScanCrit | - |
504
+ | DataDetPlcySstvDataCatg | - |
505
+ | DataDetectJobObjectSession | - |
506
+ | DataDetectJobSessSummary | - |
507
+ | DataDetectJobSession | associated_objects |
508
+ | DataDetectPolicy | - |
509
+ | DataDetectPolicyObjField | - |
510
+ | DataDetectPolicyObject | - |
511
+ | DataDetectPolicySnapshot | - |
512
+ | DataDetectScanResult | - |
513
+ | DataEncryptionKey | special_access_rules, usage, wsdl_segment, field_reference |
514
+ | DataIntegrationRecordPurchasePermission | special_access_rules, field_reference |
515
+ | DataKitDeployEvent | special_access_rules, field_reference |
516
+ | DataKitDeploymentLog | special_access_rules, usage, field_reference |
517
+ | DataMaskCustomValueLibrary | special_access_rules, associated_objects, wsdl_segment, field_reference |
518
+ | DataStatistics | wsdl_segment |
519
+ | DataUseLegalBasis | special_access_rules, associated_objects, wsdl_segment, field_reference |
520
+ | DataUsePurpose | special_access_rules, associated_objects, wsdl_segment, field_reference |
521
+ | DataWeaveResource | usage, wsdl_segment, field_reference |
522
+ | DatabaseSaveEventLog | special_access_rules |
523
+ | Database_Save_Event_Type | - |
524
+ | DatacloudCompany | usage, wsdl_segment, field_reference |
525
+ | DatacloudContact | usage, wsdl_segment, field_reference |
526
+ | DatacloudDandBCompany | usage, wsdl_segment, field_reference |
527
+ | DatacloudOwnedEntity | usage, wsdl_segment, field_reference |
528
+ | DatacloudPurchaseUsage | usage, wsdl_segment, field_reference |
529
+ | DatasetExport | usage, field_reference |
530
+ | DatasetExportPart | usage, field_reference |
531
+ | DatedConversionRate | special_access_rules, usage, field_reference |
532
+ | DealIndirectPartner | - |
533
+ | DeclinedEventRelation | usage, wsdl_segment, field_reference |
534
+ | DelegatedAccount | special_access_rules, field_reference |
535
+ | DeleteEvent | wsdl_segment, field_reference |
536
+ | DeliveryEstimationSetup | special_access_rules, field_reference |
537
+ | DevopsActivityLog | usage, associated_objects, wsdl_segment |
538
+ | DevopsEnvDeployment | usage, associated_objects |
539
+ | DevopsEnvDeploymentMbr | associated_objects |
540
+ | DevopsEnvironment | usage, associated_objects, wsdl_segment |
541
+ | DevopsPipeline | associated_objects |
542
+ | DevopsPipelineEnvironment | associated_objects |
543
+ | DevopsPipelineStage | associated_objects |
544
+ | DevopsPipelineStageTrigger | - |
545
+ | DevopsPipelineTestProvider | - |
546
+ | DevopsPipelnStgProm | usage, associated_objects |
547
+ | DevopsPipelnStgPromWkItem | usage, associated_objects |
548
+ | DevopsProject | associated_objects |
549
+ | DevopsProjectPipeline | associated_objects |
550
+ | DevopsQualityGate | - |
551
+ | DevopsQualityGateResult | - |
552
+ | DevopsQualityGateRule | - |
553
+ | DevopsQualityGateRuleResult | - |
554
+ | DevopsRequestInfo | usage, associated_objects, wsdl_segment |
555
+ | DevopsTest | - |
556
+ | DevopsTestExecution | - |
557
+ | DevopsTestProvider | - |
558
+ | DevopsTestProviderSyncLog | - |
559
+ | DevopsTestSuite | - |
560
+ | DevopsTestSuiteExecution | - |
561
+ | DevopsTestSuiteGroupExec | - |
562
+ | DevopsTestSuiteStage | - |
563
+ | DevopsTestSuiteTest | - |
564
+ | DevopsWkItmTstSteGrpExec | - |
565
+ | DigitalSignature | special_access_rules, usage, associated_objects, wsdl_segment, field_reference |
566
+ | DigitalWallet | special_access_rules, wsdl_segment, field_reference |
567
+ | DirectMessage | special_access_rules, usage |
568
+ | Division | usage |
569
+ | DivisionLocalization | usage |
570
+ | DocAtchDownloadEventLog | special_access_rules |
571
+ | Document | special_access_rules, usage, wsdl_segment, field_reference |
572
+ | DocumentAttachmentMap | special_access_rules, usage, wsdl_segment, field_reference |
573
+ | DocumentRecipient | associated_objects, field_reference |
574
+ | DocumentTag | usage |
575
+ | Document_Attachment_Downloads_Event_Type | - |
576
+ | Domain | usage, wsdl_segment, field_reference |
577
+ | DomainSite | usage, wsdl_segment, field_reference |
578
+ | DsarPolicy | special_access_rules, associated_objects |
579
+ | DsarPolicyLog | special_access_rules, associated_objects |
580
+ | DuplicateJob | special_access_rules |
581
+ | DuplicateJobDefinition | special_access_rules |
582
+ | DuplicateJobMatchingRule | special_access_rules |
583
+ | DuplicateJobMatchingRuleDefinition | special_access_rules |
584
+ | DuplicateRecordItem | special_access_rules, wsdl_segment, field_reference |
585
+ | DuplicateRecordSet | special_access_rules, wsdl_segment, field_reference |
586
+ | DuplicateRule | special_access_rules, usage, wsdl_segment, field_reference |
587
+ | DynamicDataCapture | associated_objects, wsdl_segment, field_reference |
588
+ | ElectronicMediaGroup | special_access_rules, field_reference |
589
+ | ElectronicMediaUse | special_access_rules, field_reference |
590
+ | EmailContent | special_access_rules, field_reference |
591
+ | EmailDomainFilter | special_access_rules, usage, wsdl_segment, field_reference |
592
+ | EmailDomainKey | special_access_rules, usage, wsdl_segment, field_reference |
593
+ | EmailInsight | special_access_rules |
594
+ | EmailInsightAction | special_access_rules |
595
+ | EmailMessage | special_access_rules, usage, associated_objects, wsdl_segment, field_reference |
596
+ | EmailMessageMigration | - |
597
+ | EmailMessageRelation | special_access_rules, usage, wsdl_segment, field_reference |
598
+ | EmailRelay | special_access_rules, usage, wsdl_segment, field_reference |
599
+ | EmailRoutingAddress | special_access_rules, field_reference |
600
+ | EmailServicesAddress | special_access_rules, usage, wsdl_segment, field_reference |
601
+ | EmailServicesFunction | special_access_rules, usage, wsdl_segment, field_reference |
602
+ | EmailStatus | special_access_rules, wsdl_segment, field_reference |
603
+ | EmailTemplate | special_access_rules, usage, associated_objects, wsdl_segment, field_reference |
604
+ | EmailTemplateMonthlyMetric | special_access_rules, field_reference |
605
+ | EmbeddedServiceDetail | wsdl_segment, field_reference |
606
+ | EmbeddedServiceLabel | wsdl_segment, field_reference |
607
+ | EmpUserProvisionProcessErr | special_access_rules, usage, field_reference |
608
+ | EmpUserProvisioningProcess | special_access_rules, usage, field_reference |
609
+ | Employee | special_access_rules, associated_objects |
610
+ | Employee2 | special_access_rules |
611
+ | EmployeeCrisisAssessment | special_access_rules, associated_objects |
612
+ | EnablementMeasureDefinition | special_access_rules, usage |
613
+ | EnablementProgram | associated_objects |
614
+ | EnablementProgramDefinition | special_access_rules |
615
+ | EnblMeasureObjectDefinition | special_access_rules, usage |
616
+ | EnblPgmTaskMeasureProgress | - |
617
+ | EnblProgramSection | - |
618
+ | EnblProgramTaskDefinition | - |
619
+ | EnblProgramTaskMeasure | special_access_rules |
620
+ | EnblProgramTaskProgress | - |
621
+ | EnblProgramTaskSubCategory | special_access_rules |
622
+ | EngagementChannelType | associated_objects, wsdl_segment, field_reference |
623
+ | EngagementSignal | usage |
624
+ | EngagementSignalCmpndMetric | usage, associated_objects |
625
+ | EngagementSignalMetric | usage |
626
+ | EnhancedLetterhead | associated_objects, wsdl_segment, field_reference |
627
+ | Entitlement | associated_objects, wsdl_segment, field_reference |
628
+ | EntitlementContact | usage, wsdl_segment, field_reference |
629
+ | EntitlementTemplate | special_access_rules, usage, wsdl_segment, field_reference |
630
+ | EntityHistory | usage |
631
+ | EntityMilestone | usage, associated_objects, wsdl_segment, field_reference |
632
+ | EntitySubscription | usage, wsdl_segment, field_reference |
633
+ | EnvironmentHubMember | usage |
634
+ | Event | usage, associated_objects, wsdl_segment, field_reference |
635
+ | EventBusSubscriber | special_access_rules, usage, wsdl_segment, field_reference |
636
+ | EventLogFile | special_access_rules, wsdl_segment, field_reference |
637
+ | EventLogFile_Supported_Event_Types | - |
638
+ | EventRelation | usage, associated_objects, wsdl_segment, field_reference |
639
+ | EventRelayConfig | wsdl_segment, field_reference |
640
+ | EventRelayFeedback | wsdl_segment, field_reference |
641
+ | EventStagedInviteeEmail | special_access_rules, field_reference |
642
+ | EventTag | usage |
643
+ | EventWhoRelation | usage, field_reference |
644
+ | Expense | associated_objects, wsdl_segment, field_reference |
645
+ | ExpenseReport | associated_objects, wsdl_segment, field_reference |
646
+ | ExpenseReportEntry | associated_objects, wsdl_segment, field_reference |
647
+ | ExpressionFilter | usage, wsdl_segment, field_reference |
648
+ | ExpressionFilterCriteria | usage, wsdl_segment, field_reference |
649
+ | ExpressionSetConstraintObj | special_access_rules |
650
+ | ExtConvParticipantIntegDef | - |
651
+ | ExtDataShare | associated_objects, field_reference |
652
+ | ExtKnowledgeConnector | special_access_rules, associated_objects, field_reference |
653
+ | ExternalAccountHierarchy | special_access_rules, field_reference |
654
+ | ExternalAccountHierarchyHistory | special_access_rules, field_reference |
655
+ | ExternalClientApplication | wsdl_segment |
656
+ | ExternalDataSource | special_access_rules, usage, wsdl_segment, field_reference |
657
+ | ExternalDataUserAuth | usage, wsdl_segment, field_reference |
658
+ | ExternalEncryptionRootKey | special_access_rules, usage, wsdl_segment, field_reference |
659
+ | ExternalEvent | special_access_rules, associated_objects, wsdl_segment, field_reference |
660
+ | ExternalEventMapping | special_access_rules, wsdl_segment, field_reference |
661
+ | ExternalSocialAccount | usage, field_reference |
662
+ | External_Cross-Org_Callout_Event_Type | - |
663
+ | External_Custom_Apex_Callout_Event_Type | - |
664
+ | External_Data_Source_Callout_Event_Type | - |
665
+ | External_OData_Callout_Event_Type | - |
666
+ | ExtlClntAppOauthPlcyCnfg | wsdl_segment |
667
+ | ExtlClntAppOauthSettings | wsdl_segment |
668
+ | ExtlClntAppPlcyCnfg | wsdl_segment |
669
+ | ExtlIntrIdMapping | associated_objects |
670
+ | ExtlRecShrCnct | special_access_rules |
671
+ | ExtlRecShrCnctAccnt | special_access_rules |
672
+ | ExtlRecShrField | special_access_rules |
673
+ | ExtlRecShrFieldMap | special_access_rules |
674
+ | ExtlRecShrLead | special_access_rules |
675
+ | ExtlRecShrObject | special_access_rules |
676
+ | ExtlRecShrOpportunity | special_access_rules |
677
+ | ExtlRecShrPcklstOptn | special_access_rules |
678
+ | ExtlRecShrPicklistMap | special_access_rules |
679
+ | ExtlRecShrRecordMap | special_access_rules |
680
+ | FSL__Time_Dependency__c | special_access_rules |
681
+ | FeedAttachment | usage, wsdl_segment, field_reference |
682
+ | FeedComment | special_access_rules, usage, wsdl_segment, field_reference |
683
+ | FeedItem | special_access_rules, usage, wsdl_segment, field_reference |
684
+ | FeedLike | special_access_rules, usage, wsdl_segment, field_reference |
685
+ | FeedPollChoice | special_access_rules, usage, wsdl_segment, field_reference |
686
+ | FeedPollVote | usage, wsdl_segment, field_reference |
687
+ | FeedPost | special_access_rules, usage |
688
+ | FeedRevision | usage, wsdl_segment, field_reference |
689
+ | FeedTrackedChange | usage, wsdl_segment, field_reference |
690
+ | FieldChangeSnapshot | special_access_rules, usage, field_reference |
691
+ | FieldHistoryArchive | usage |
692
+ | FieldPermissions | special_access_rules, usage, wsdl_segment, field_reference |
693
+ | FieldSecurityClassification | special_access_rules, usage, wsdl_segment, field_reference |
694
+ | FieldServiceMobileSettings | special_access_rules, usage, associated_objects, wsdl_segment, field_reference |
695
+ | FieldServiceOrgSettings | special_access_rules, wsdl_segment, field_reference |
696
+ | FileSearchActivity | wsdl_segment, field_reference |
697
+ | FiscalYearSettings | special_access_rules, wsdl_segment, field_reference |
698
+ | FldSvcObjChg | wsdl_segment, field_reference |
699
+ | FldSvcObjChgDtl | wsdl_segment, field_reference |
700
+ | FlexQueueItem | special_access_rules, usage, wsdl_segment, field_reference |
701
+ | FlowDefinitionView | usage, wsdl_segment, field_reference |
702
+ | FlowInterview | special_access_rules, associated_objects, wsdl_segment, field_reference |
703
+ | FlowInterviewLog | special_access_rules, associated_objects, wsdl_segment, field_reference |
704
+ | FlowInterviewLogEntry | special_access_rules, wsdl_segment, field_reference |
705
+ | FlowInterviewLogOwnerSharingRule | usage |
706
+ | FlowInterviewOwnerSharingRule | usage |
707
+ | FlowInterviewShare | usage, wsdl_segment, field_reference |
708
+ | FlowNavMetricEventLog | special_access_rules |
709
+ | FlowOrchestration | associated_objects, wsdl_segment, field_reference |
710
+ | FlowOrchestrationInstance | special_access_rules, associated_objects, wsdl_segment, field_reference |
711
+ | FlowOrchestrationLog | special_access_rules, associated_objects, wsdl_segment, field_reference |
712
+ | FlowOrchestrationStageInstance | special_access_rules, associated_objects, wsdl_segment, field_reference |
713
+ | FlowOrchestrationStepInstance | associated_objects, wsdl_segment, field_reference |
714
+ | FlowOrchestrationVersion | associated_objects, wsdl_segment, field_reference |
715
+ | FlowOrchestrationWorkItem | special_access_rules, associated_objects, wsdl_segment, field_reference |
716
+ | FlowRecord | associated_objects, wsdl_segment, field_reference |
717
+ | FlowRecordElement | wsdl_segment, field_reference |
718
+ | FlowRecordElementOccurrence | associated_objects, wsdl_segment, field_reference |
719
+ | FlowRecordRelation | wsdl_segment, field_reference |
720
+ | FlowRecordVersion | wsdl_segment, field_reference |
721
+ | FlowRecordVersionOccurrence | wsdl_segment, field_reference |
722
+ | FlowStageRelation | usage, wsdl_segment, field_reference |
723
+ | FlowTestResult | special_access_rules, associated_objects, wsdl_segment, field_reference |
724
+ | FlowTestView | wsdl_segment, field_reference |
725
+ | FlowVariableView | usage, wsdl_segment, field_reference |
726
+ | FlowVersionView | usage, wsdl_segment, field_reference |
727
+ | Flow_Execution_Event_Type | - |
728
+ | Folder | usage, wsdl_segment, field_reference |
729
+ | FolderedContentDocument | wsdl_segment, field_reference |
730
+ | ForecastingAdjustment | special_access_rules, usage, field_reference |
731
+ | ForecastingColumnDefinition | usage, field_reference |
732
+ | ForecastingColumnDefinitionLocalization | special_access_rules, field_reference |
733
+ | ForecastingColumnDefinition_Formula_Field_Details | - |
734
+ | ForecastingCustomCategory | field_reference |
735
+ | ForecastingCustomData | special_access_rules, usage, field_reference |
736
+ | ForecastingDisplayedFamily | special_access_rules, field_reference |
737
+ | ForecastingFact | special_access_rules, usage, field_reference |
738
+ | ForecastingFilter | special_access_rules, field_reference |
739
+ | ForecastingFilterCondition | special_access_rules, usage, field_reference |
740
+ | ForecastingGroup | special_access_rules, usage, field_reference |
741
+ | ForecastingGroupItem | usage, field_reference |
742
+ | ForecastingItem | special_access_rules, usage, field_reference |
743
+ | ForecastingOwnerAdjustment | special_access_rules, usage, field_reference |
744
+ | ForecastingQuota | special_access_rules, usage, field_reference |
745
+ | ForecastingShare | special_access_rules, usage, field_reference |
746
+ | ForecastingSourceDefinition | usage, field_reference |
747
+ | ForecastingSrcRecJudgment | field_reference |
748
+ | ForecastingSubmission | special_access_rules, usage, field_reference |
749
+ | ForecastingSubmissionItem | field_reference |
750
+ | ForecastingType | special_access_rules, field_reference |
751
+ | ForecastingTypeSource | usage, field_reference |
752
+ | ForecastingUserPreference | special_access_rules, field_reference |
753
+ | FormulaFunction | usage, wsdl_segment, field_reference |
754
+ | FormulaFunctionAllowedType | wsdl_segment, field_reference |
755
+ | FormulaFunctionCategory | usage, wsdl_segment, field_reference |
756
+ | FrcstCustmCatgRampRateSrc | field_reference |
757
+ | FrcstCustmzAdjustment | associated_objects, field_reference |
758
+ | FrcstCustmzOwnerAdjustment | associated_objects, field_reference |
759
+ | FulfillmentOrder | special_access_rules, associated_objects, field_reference |
760
+ | FulfillmentOrderItemAdjustment | special_access_rules, field_reference |
761
+ | FulfillmentOrderItemTax | special_access_rules, field_reference |
762
+ | FulfillmentOrderLineItem | special_access_rules, field_reference |
763
+ | FulfmtRoutgCriteria | special_access_rules |
764
+ | FulfmtRoutgCriteriaActnVar | special_access_rules |
765
+ | FulfmtRoutgCriteriaCond | special_access_rules |
766
+ | FulfmtRoutgCriteriaGrp | special_access_rules, associated_objects |
767
+ | FulfmtRoutgCriteriaGrpVer | special_access_rules, associated_objects |
768
+ | FunctionConnection | usage |
769
+ | FunctionInvocationRequest | usage |
770
+ | FunctionReference | usage |
771
+ | GenAIConversationSummary | special_access_rules, associated_objects |
772
+ | GenAiFunctionDefinition | special_access_rules |
773
+ | GenAiPlannerDefinition | special_access_rules |
774
+ | GenAiPlannerFunctionDef | special_access_rules |
775
+ | GenAiPluginDefinition | special_access_rules |
776
+ | GenOpPlanRequest | special_access_rules |
777
+ | GeoCountry | special_access_rules, associated_objects, field_reference |
778
+ | GeoState | special_access_rules, field_reference |
779
+ | GeolocationBasedAction | special_access_rules, wsdl_segment, field_reference |
780
+ | Goal | associated_objects |
781
+ | GoalLink | - |
782
+ | GoogleDoc | special_access_rules |
783
+ | GraphQL_Query_Event_Type | - |
784
+ | Group | special_access_rules, usage, wsdl_segment, field_reference |
785
+ | GroupMember | usage, wsdl_segment, field_reference |
786
+ | GroupMembershipEventLog | special_access_rules |
787
+ | Group_Membership_Event_Type | - |
788
+ | GtwyProvPaymentMethodType | usage, wsdl_segment, field_reference |
789
+ | GuestBuyerProfile | field_reference |
790
+ | HashtagDefinition | usage |
791
+ | HealthCareDiagnosis | associated_objects, field_reference |
792
+ | HealthCareProcedure | associated_objects, field_reference |
793
+ | Holiday | special_access_rules, usage, wsdl_segment, field_reference |
794
+ | Hostname_Redirects_Event_Type | usage |
795
+ | IconDefinition | wsdl_segment, field_reference |
796
+ | Idea | usage, wsdl_segment, field_reference |
797
+ | IdeaComment | usage, wsdl_segment, field_reference |
798
+ | IdeaReputation | usage |
799
+ | IdeaReputationLevel | usage |
800
+ | IdeaTheme | usage |
801
+ | IdpEventLog | wsdl_segment, field_reference |
802
+ | IframeWhiteListUrl | usage, wsdl_segment, field_reference |
803
+ | Image | wsdl_segment, field_reference |
804
+ | Incident | associated_objects, field_reference |
805
+ | IncidentRelatedItem | associated_objects, field_reference |
806
+ | Individual | associated_objects, wsdl_segment, field_reference |
807
+ | IndividualApplicationItem | special_access_rules, associated_objects, field_reference |
808
+ | IndividualHistory | usage, wsdl_segment, field_reference |
809
+ | IndividualShare | usage, wsdl_segment, field_reference |
810
+ | Insecure_External_Assets_Event_Type | usage |
811
+ | InsufficientAccessEventLog | special_access_rules |
812
+ | Insufficient_Access_Event_Type | - |
813
+ | InternalOrganizationUnit | special_access_rules, associated_objects, field_reference |
814
+ | InventoryItemReservation | special_access_rules, field_reference |
815
+ | InventoryReservation | special_access_rules, associated_objects, field_reference |
816
+ | InvocableActionEventLog | special_access_rules |
817
+ | Invocable_Action_Event_Type | - |
818
+ | Invoice | special_access_rules, associated_objects, field_reference |
819
+ | InvoiceAddressGroup | special_access_rules, associated_objects, field_reference |
820
+ | InvoiceBatchRun | special_access_rules, associated_objects, field_reference |
821
+ | InvoiceBatchRunCriteria | special_access_rules, field_reference |
822
+ | InvoiceBatchRunRecovery | special_access_rules, associated_objects, field_reference |
823
+ | InvoiceDocument | special_access_rules, field_reference |
824
+ | InvoiceLine | special_access_rules, associated_objects, field_reference |
825
+ | JobProfile | special_access_rules, associated_objects, wsdl_segment, field_reference |
826
+ | JobProfileQueueGroup | special_access_rules |
827
+ | KnowledgeArticle | special_access_rules, usage, field_reference |
828
+ | KnowledgeArticleEventLog | special_access_rules |
829
+ | KnowledgeArticleFeedback | special_access_rules, usage |
830
+ | KnowledgeArticleVersion | special_access_rules, usage, associated_objects, field_reference |
831
+ | KnowledgeArticleVersionHistory | special_access_rules, usage, field_reference |
832
+ | KnowledgeArticleViewStat | special_access_rules, usage, field_reference |
833
+ | KnowledgeArticleVoteStat | special_access_rules, usage, field_reference |
834
+ | Knowledge_Article_View_Event_Type | - |
835
+ | Knowledge__DataCategorySelection | special_access_rules, usage, field_reference |
836
+ | Knowledge__Feed | special_access_rules, field_reference |
837
+ | Knowledge__ka | special_access_rules, field_reference |
838
+ | Knowledge__kav | special_access_rules, field_reference |
839
+ | KnowledgeableUser | wsdl_segment, field_reference |
840
+ | LandingPage | special_access_rules, associated_objects |
841
+ | Lead | usage, associated_objects, wsdl_segment, field_reference |
842
+ | LeadCleanInfo | usage, wsdl_segment, field_reference |
843
+ | LeadDailyMetric | special_access_rules, field_reference |
844
+ | LeadMonthlyMetric | special_access_rules, field_reference |
845
+ | LeadOwnerSharingRule | usage |
846
+ | LeadShare | special_access_rules, usage, wsdl_segment, field_reference |
847
+ | LeadStatus | usage, wsdl_segment, field_reference |
848
+ | LeadTag | usage |
849
+ | LearningContent | - |
850
+ | LearningItem | associated_objects, field_reference |
851
+ | LearningItemAssignment | usage, associated_objects |
852
+ | LearningItemProgress | associated_objects |
853
+ | LearningItemSubmission | special_access_rules, associated_objects |
854
+ | LearningItemType | special_access_rules |
855
+ | LearningPractice | - |
856
+ | LegalEntity | special_access_rules, associated_objects, wsdl_segment, field_reference |
857
+ | LicenseDefinitionCustomPermission | special_access_rules, usage, wsdl_segment |
858
+ | LightningErrorEventLog | special_access_rules |
859
+ | LightningExitByPageMetrics | special_access_rules, wsdl_segment, field_reference |
860
+ | LightningExperienceTheme | wsdl_segment, field_reference |
861
+ | LightningLoggerEventLog | special_access_rules |
862
+ | LightningOnboardingConfig | wsdl_segment, field_reference |
863
+ | LightningPageViewEventLog | special_access_rules |
864
+ | LightningPrfmEventLog | special_access_rules |
865
+ | LightningToggleMetrics | special_access_rules, wsdl_segment, field_reference |
866
+ | LightningUsageByAppTypeMetrics | special_access_rules, wsdl_segment, field_reference |
867
+ | LightningUsageByBrowserMetrics | special_access_rules, wsdl_segment, field_reference |
868
+ | LightningUsageByFlexiPageMetrics | special_access_rules, wsdl_segment, field_reference |
869
+ | LightningUsageByPageMetrics | special_access_rules, wsdl_segment, field_reference |
870
+ | Lightning_Error_Event_Type | - |
871
+ | Lightning_Interaction_Event_Type | - |
872
+ | Lightning_Logger_Event_Type | - |
873
+ | Lightning_Page_View_Event_Type | - |
874
+ | Lightning_Performance_Event_Type | - |
875
+ | LinkedArticle | special_access_rules, usage, associated_objects, field_reference |
876
+ | LinkedArticleFeed | special_access_rules, field_reference |
877
+ | LinkedArticleHistory | special_access_rules, field_reference |
878
+ | ListEmail | associated_objects, wsdl_segment, field_reference |
879
+ | ListEmailIndividualRecipient | wsdl_segment, field_reference |
880
+ | ListEmailMonthlyMetric | special_access_rules |
881
+ | ListEmailRecipientSource | wsdl_segment, field_reference |
882
+ | ListEmailSentResult | wsdl_segment, field_reference |
883
+ | ListView | usage, wsdl_segment, field_reference |
884
+ | ListViewChart | wsdl_segment, field_reference |
885
+ | ListViewChartInstance | usage, wsdl_segment, field_reference |
886
+ | LiveAgentSession | usage, associated_objects, field_reference |
887
+ | LiveAgentSessionHistory | usage, field_reference |
888
+ | LiveAgentSessionShare | usage, field_reference |
889
+ | LiveChatBlockingRule | special_access_rules, usage, field_reference |
890
+ | LiveChatButton | usage, field_reference |
891
+ | LiveChatButtonDeployment | usage, field_reference |
892
+ | LiveChatButtonSkill | usage, field_reference |
893
+ | LiveChatDeployment | usage, field_reference |
894
+ | LiveChatObjectAccessConfig | special_access_rules, field_reference |
895
+ | LiveChatObjectAccessDefinition | special_access_rules, field_reference |
896
+ | LiveChatSensitiveDataRule | special_access_rules, usage, wsdl_segment, field_reference |
897
+ | LiveChatTranscript | usage, associated_objects, field_reference |
898
+ | LiveChatTranscriptEvent | usage, associated_objects, field_reference |
899
+ | LiveChatTranscriptShare | usage, field_reference |
900
+ | LiveChatTranscriptSkill | usage, field_reference |
901
+ | LiveChatUserConfig | special_access_rules, usage, field_reference |
902
+ | LiveChatUserConfigProfile | special_access_rules, usage, field_reference |
903
+ | LiveChatUserConfigUser | special_access_rules, usage, field_reference |
904
+ | LiveChatVisitor | usage, associated_objects, field_reference |
905
+ | LocWaitlistMsgTemplate | - |
906
+ | Location | special_access_rules, usage, associated_objects, wsdl_segment, field_reference |
907
+ | LocationGroup | special_access_rules, associated_objects, field_reference |
908
+ | LocationGroupAssignment | special_access_rules, associated_objects, field_reference |
909
+ | LocationShippingCarrierMethod | special_access_rules, field_reference |
910
+ | LocationTrustMeasure | field_reference |
911
+ | LocationWaitlist | - |
912
+ | LocationWaitlistedParty | - |
913
+ | LoginAsEventLog | special_access_rules |
914
+ | LoginEvent | wsdl_segment, field_reference |
915
+ | LoginEventLog | special_access_rules |
916
+ | LoginGeo | special_access_rules, usage, wsdl_segment, field_reference |
917
+ | LoginHistory | special_access_rules, usage, wsdl_segment, field_reference |
918
+ | LoginIp | usage, wsdl_segment, field_reference |
919
+ | Login_As_Event_Type | - |
920
+ | Login_Event_Type | - |
921
+ | LogoutEventLog | special_access_rules |
922
+ | LogoutEventStream | wsdl_segment |
923
+ | Logout_Event_Type | - |
924
+ | LookedUpFromActivity | usage, wsdl_segment, field_reference |
925
+ | MLField | field_reference |
926
+ | MLModel | special_access_rules, field_reference |
927
+ | MLModelFactor | special_access_rules, field_reference |
928
+ | MLModelFactorComponent | special_access_rules, field_reference |
929
+ | MLModelMetric | special_access_rules, field_reference |
930
+ | MLPredictionDefinition | field_reference |
931
+ | MLRecommendationDefinition | field_reference |
932
+ | Macro | usage, associated_objects, wsdl_segment, field_reference |
933
+ | MacroInstruction | usage, associated_objects, wsdl_segment, field_reference |
934
+ | MacroUsage | special_access_rules, associated_objects, wsdl_segment, field_reference |
935
+ | MailmergeTemplate | usage, wsdl_segment, field_reference |
936
+ | MaintenanceAsset | special_access_rules, associated_objects, wsdl_segment, field_reference |
937
+ | MaintenancePlan | special_access_rules, associated_objects, wsdl_segment, field_reference |
938
+ | MaintenanceWorkRule | associated_objects, wsdl_segment, field_reference |
939
+ | ManagedContent | special_access_rules, usage, associated_objects, wsdl_segment, field_reference |
940
+ | ManagedContentChannel | special_access_rules, usage, wsdl_segment, field_reference |
941
+ | ManagedContentInfo | special_access_rules, usage, field_reference |
942
+ | ManagedContentSpace | special_access_rules, wsdl_segment, field_reference |
943
+ | ManagedContentVariant | special_access_rules, usage, wsdl_segment, field_reference |
944
+ | MarketingForm | special_access_rules, associated_objects |
945
+ | MarketingLink | special_access_rules, associated_objects |
946
+ | MatchingRule | special_access_rules, usage, wsdl_segment, field_reference |
947
+ | MatchingRuleItem | special_access_rules, usage, wsdl_segment, field_reference |
948
+ | MerchAccPaymentMethodSet | special_access_rules, field_reference |
949
+ | MerchAccPaymentMethodType | special_access_rules, associated_objects, field_reference |
950
+ | MerchantAccount | special_access_rules, associated_objects, field_reference |
951
+ | MerchantAccountEvent | special_access_rules, field_reference |
952
+ | MessagingChannel | usage, wsdl_segment, field_reference |
953
+ | MessagingChannelSkill | field_reference |
954
+ | MessagingChannelUsage | wsdl_segment, field_reference |
955
+ | MessagingConfiguration | field_reference |
956
+ | MessagingDeliveryError | field_reference |
957
+ | MessagingEndUser | associated_objects, wsdl_segment, field_reference |
958
+ | MessagingLink | field_reference |
959
+ | MessagingSession | usage, associated_objects, wsdl_segment, field_reference |
960
+ | MessagingSessionMetrics | special_access_rules, wsdl_segment, field_reference |
961
+ | MessagingTemplate | field_reference |
962
+ | MetadataApiOpEventLog | special_access_rules |
963
+ | MetadataPackage | usage |
964
+ | MetadataPackageVersion | usage |
965
+ | Metadata_API_Operation_Event_Type | - |
966
+ | Metric | associated_objects |
967
+ | MetricDataLink | associated_objects |
968
+ | MigratedEmail | - |
969
+ | MilestoneType | special_access_rules, usage, wsdl_segment, field_reference |
970
+ | MktJourneyDcsnSetup | - |
971
+ | MlIntentUtteranceSuggestion | field_reference |
972
+ | MobSecurityCertPinConfig | special_access_rules, field_reference |
973
+ | MobSecurityCertPinEvent | special_access_rules |
974
+ | MobileDeviceAppRegistration | field_reference |
975
+ | MobileSecurityAssignment | special_access_rules, field_reference |
976
+ | MobileSecurityPolicy | special_access_rules, field_reference |
977
+ | MobileSecurityUserMetric | special_access_rules, usage, field_reference |
978
+ | MobileSettingsAssignment | special_access_rules, wsdl_segment, field_reference |
979
+ | MsgChannelLanguageKeyword | wsdl_segment, field_reference |
980
+ | MsgChannelUsageExternalOrg | usage, wsdl_segment, field_reference |
981
+ | Multiblock_Report_Event_Type | - |
982
+ | MutingPermissionSet | special_access_rules, usage, wsdl_segment, field_reference |
983
+ | MyDomainDiscoverableLogin | usage, wsdl_segment, field_reference |
984
+ | Name | usage, wsdl_segment, field_reference |
985
+ | NamedCredential | special_access_rules, usage, wsdl_segment, field_reference |
986
+ | NamedCredentialEventLog | special_access_rules |
987
+ | Named_Credential_Event_Type | - |
988
+ | NamespaceRegistry | associated_objects, field_reference |
989
+ | NavigationLinkSet | special_access_rules, field_reference |
990
+ | NavigationMenuItem | special_access_rules, usage, field_reference |
991
+ | NavigationMenuItemLocalization | special_access_rules, field_reference |
992
+ | Network | special_access_rules, usage, field_reference |
993
+ | NetworkActivityAudit | special_access_rules, usage, field_reference |
994
+ | NetworkAffinity | special_access_rules, usage, field_reference |
995
+ | NetworkAuthApiSettings | special_access_rules, field_reference |
996
+ | NetworkDataCategory | special_access_rules, field_reference |
997
+ | NetworkDiscoverableLogin | usage, field_reference |
998
+ | NetworkEmailTmplAllowlist | field_reference |
999
+ | NetworkFeedResponseMetric | special_access_rules, field_reference |
1000
+ | NetworkMember | special_access_rules, usage, field_reference |
1001
+ | NetworkMemberGroup | special_access_rules, usage, field_reference |
1002
+ | NetworkModeration | special_access_rules, usage, field_reference |
1003
+ | NetworkPageOverride | special_access_rules, field_reference |
1004
+ | NetworkSelfRegistration | field_reference |
1005
+ | NetworkUserHistoryRecent | special_access_rules, usage, field_reference |
1006
+ | Note | usage, wsdl_segment, field_reference |
1007
+ | NoteAndAttachment | usage, wsdl_segment, field_reference |
1008
+ | NoteTag | usage |
1009
+ | OSAsyncChgCompletedEvent | special_access_rules, field_reference |
1010
+ | OauthCustomScope | special_access_rules, wsdl_segment, field_reference |
1011
+ | OauthCustomScopeApp | wsdl_segment, field_reference |
1012
+ | OauthToken | special_access_rules, usage, wsdl_segment, field_reference |
1013
+ | OauthTokenExchHandlerApp | wsdl_segment, field_reference |
1014
+ | OauthTokenExchangeHandler | wsdl_segment, field_reference |
1015
+ | ObjectDataImport | associated_objects, field_reference |
1016
+ | ObjectDataImportReference | special_access_rules, field_reference |
1017
+ | ObjectMetadataTag | special_access_rules, field_reference |
1018
+ | ObjectPermissions | special_access_rules, wsdl_segment, field_reference |
1019
+ | ObjectRelatedUrl | special_access_rules, associated_objects, field_reference |
1020
+ | ObjectTerritory2AssignmentRule | special_access_rules, field_reference |
1021
+ | ObjectTerritory2AssignmentRuleItem | special_access_rules, field_reference |
1022
+ | ObjectTerritory2Association | special_access_rules, field_reference |
1023
+ | ObjectUserTerritory2View | special_access_rules, field_reference |
1024
+ | OmniSupervisorConfig | special_access_rules, field_reference |
1025
+ | OmniSupervisorConfigAction | special_access_rules, field_reference |
1026
+ | OmniSupervisorConfigGroup | special_access_rules, field_reference |
1027
+ | OmniSupervisorConfigProfile | special_access_rules, field_reference |
1028
+ | OmniSupervisorConfigQueue | special_access_rules, field_reference |
1029
+ | OmniSupervisorConfigSkill | special_access_rules, field_reference |
1030
+ | OmniSupervisorConfigTab | special_access_rules, field_reference |
1031
+ | OmniSupervisorConfigUser | special_access_rules, field_reference |
1032
+ | One_Commerce_Usage_Event_Type | - |
1033
+ | OpenActivity | usage, wsdl_segment, field_reference |
1034
+ | OperatingHours | usage, associated_objects, wsdl_segment, field_reference |
1035
+ | OperatingHoursHistory | special_access_rules, wsdl_segment, field_reference |
1036
+ | OperatingHoursHoliday | special_access_rules, wsdl_segment, field_reference |
1037
+ | OppSalesMethodology | special_access_rules |
1038
+ | OppSalesMethodologyItem | special_access_rules |
1039
+ | Opportunity | usage, associated_objects, wsdl_segment, field_reference |
1040
+ | OpportunityCompetitor | usage, wsdl_segment, field_reference |
1041
+ | OpportunityContactRole | usage, associated_objects, wsdl_segment, field_reference |
1042
+ | OpportunityContactRoleSuggestionInsight | special_access_rules, usage |
1043
+ | OpportunityFieldHistory | usage, wsdl_segment, field_reference |
1044
+ | OpportunityHistory | usage, wsdl_segment, field_reference |
1045
+ | OpportunityInsight | special_access_rules, usage |
1046
+ | OpportunityLineItem | special_access_rules, usage, associated_objects, wsdl_segment, field_reference |
1047
+ | OpportunityLineItemSchedule | usage, field_reference |
1048
+ | OpportunityLineItemSplit | special_access_rules, usage, associated_objects |
1049
+ | OpportunityOwnerSharingRule | usage |
1050
+ | OpportunityPartner | special_access_rules, wsdl_segment, field_reference |
1051
+ | OpportunityRelatedDeleteLog | wsdl_segment, field_reference |
1052
+ | OpportunityShare | special_access_rules, usage, wsdl_segment, field_reference |
1053
+ | OpportunitySplit | usage, associated_objects |
1054
+ | OpportunitySplitType | - |
1055
+ | OpportunityStage | usage, wsdl_segment, field_reference |
1056
+ | OpportunityTag | usage |
1057
+ | OpportunityTeamMember | usage, associated_objects, field_reference |
1058
+ | OpptyLineItemSplitType | usage |
1059
+ | Order | usage, associated_objects, wsdl_segment, field_reference |
1060
+ | OrderAction | special_access_rules, field_reference |
1061
+ | OrderAdjustmentGroup | special_access_rules, associated_objects, field_reference |
1062
+ | OrderAdjustmentGroupSummary | special_access_rules, associated_objects, field_reference |
1063
+ | OrderChangeLog | usage, associated_objects, field_reference |
1064
+ | OrderChgReasonCategMap | field_reference |
1065
+ | OrderDeliveryGroup | special_access_rules, field_reference |
1066
+ | OrderDeliveryGroupSummary | special_access_rules, associated_objects, field_reference |
1067
+ | OrderDeliveryMethod | special_access_rules, associated_objects, field_reference |
1068
+ | OrderHistory | usage, wsdl_segment, field_reference |
1069
+ | OrderItem | special_access_rules, usage, associated_objects, wsdl_segment, field_reference |
1070
+ | OrderItemAdjustmentLineItem | special_access_rules, field_reference |
1071
+ | OrderItemAdjustmentLineSummary | special_access_rules, field_reference |
1072
+ | OrderItemGroup | field_reference |
1073
+ | OrderItemRecipient | associated_objects, field_reference |
1074
+ | OrderItemRelationship | special_access_rules, associated_objects, field_reference |
1075
+ | OrderItemSummary | special_access_rules, associated_objects, field_reference |
1076
+ | OrderItemSummaryChange | special_access_rules, associated_objects, field_reference |
1077
+ | OrderItemSummaryRelationship | field_reference |
1078
+ | OrderItemTaxLineItem | special_access_rules, field_reference |
1079
+ | OrderItemTaxLineItemSummary | special_access_rules, associated_objects, field_reference |
1080
+ | OrderItemType | field_reference |
1081
+ | OrderOwnerSharingRule | special_access_rules |
1082
+ | OrderPaymentSummary | special_access_rules, associated_objects, field_reference |
1083
+ | OrderPaymentSummaryReference | special_access_rules, field_reference |
1084
+ | OrderShare | usage, wsdl_segment, field_reference |
1085
+ | OrderStatus | usage, wsdl_segment, field_reference |
1086
+ | OrderSummary | special_access_rules, associated_objects, field_reference |
1087
+ | OrderSummaryAdditionalInfo | special_access_rules, associated_objects, field_reference |
1088
+ | OrderSummaryRelationship | special_access_rules, field_reference |
1089
+ | OrderSummaryRoutingSchedule | special_access_rules, associated_objects, field_reference |
1090
+ | OrgDeleteRequest | associated_objects, wsdl_segment, field_reference |
1091
+ | OrgEmailAddressSecurity | special_access_rules, usage, wsdl_segment, field_reference |
1092
+ | OrgMetric | special_access_rules, wsdl_segment, field_reference |
1093
+ | OrgMetricScanResult | special_access_rules, field_reference |
1094
+ | OrgMetricScanSummary | special_access_rules, wsdl_segment, field_reference |
1095
+ | OrgSnapshot | special_access_rules, associated_objects |
1096
+ | OrgWideEmailAddress | special_access_rules, usage, wsdl_segment, field_reference |
1097
+ | Organization | special_access_rules, usage, wsdl_segment, field_reference |
1098
+ | OutOfOffice | special_access_rules, field_reference |
1099
+ | OutgoingEmail | wsdl_segment, field_reference |
1100
+ | OutgoingEmailRelation | wsdl_segment, field_reference |
1101
+ | OwnedContentDocument | wsdl_segment, field_reference |
1102
+ | OwnerChangeOptionInfo | wsdl_segment, field_reference |
1103
+ | PackageInstallEventLog | special_access_rules |
1104
+ | PackageLicense | special_access_rules, usage, wsdl_segment, field_reference |
1105
+ | PackagePushError | special_access_rules, usage |
1106
+ | PackagePushJob | special_access_rules, usage |
1107
+ | PackagePushRequest | special_access_rules, usage |
1108
+ | PackageSubscriber | special_access_rules, usage |
1109
+ | Package_Install_Event_Type | - |
1110
+ | Participant | wsdl_segment, field_reference |
1111
+ | Partner | special_access_rules, wsdl_segment, field_reference |
1112
+ | PartnerFundAllocation | associated_objects, field_reference |
1113
+ | PartnerFundClaim | associated_objects, field_reference |
1114
+ | PartnerFundRequest | associated_objects, field_reference |
1115
+ | PartnerMarketingBudget | associated_objects, field_reference |
1116
+ | PartnerNetworkConnection | special_access_rules, usage |
1117
+ | PartnerNetworkRecordConnection | special_access_rules, usage |
1118
+ | PartnerNetworkSyncLog | special_access_rules |
1119
+ | PartnerRole | special_access_rules, usage, wsdl_segment, field_reference |
1120
+ | PartyConsent | associated_objects, wsdl_segment, field_reference |
1121
+ | Payment | special_access_rules, wsdl_segment, field_reference |
1122
+ | PaymentAuthAdjustment | special_access_rules, wsdl_segment, field_reference |
1123
+ | PaymentAuthorization | special_access_rules, wsdl_segment, field_reference |
1124
+ | PaymentCredit | special_access_rules, field_reference |
1125
+ | PaymentCreditLinePayment | special_access_rules, field_reference |
1126
+ | PaymentCreditTransaction | special_access_rules, field_reference |
1127
+ | PaymentGateway | special_access_rules, wsdl_segment, field_reference |
1128
+ | PaymentGatewayLog | special_access_rules, wsdl_segment, field_reference |
1129
+ | PaymentGatewayProvider | special_access_rules, wsdl_segment, field_reference |
1130
+ | PaymentGroup | special_access_rules, wsdl_segment, field_reference |
1131
+ | PaymentInitiationSource | special_access_rules, field_reference |
1132
+ | PaymentIntent | special_access_rules, field_reference |
1133
+ | PaymentIntentEvent | special_access_rules, field_reference |
1134
+ | PaymentLineInvoice | special_access_rules, usage, field_reference |
1135
+ | PaymentLink | special_access_rules, associated_objects, field_reference |
1136
+ | PaymentLinkEvent | special_access_rules, field_reference |
1137
+ | PaymentMethod | special_access_rules, wsdl_segment, field_reference |
1138
+ | PaymentSchedule | special_access_rules, field_reference |
1139
+ | PaymentScheduleItem | special_access_rules, field_reference |
1140
+ | PaymentSchedulePolicy | special_access_rules, field_reference |
1141
+ | PaymentScheduleTreatment | special_access_rules, field_reference |
1142
+ | PaymentScheduleTreatmentDtl | special_access_rules, field_reference |
1143
+ | PaymentTerm | special_access_rules, usage, field_reference |
1144
+ | PaymentTermItem | special_access_rules, field_reference |
1145
+ | PendingOrderSummary | special_access_rules, usage, field_reference |
1146
+ | PendingServiceRouting | special_access_rules, usage, associated_objects, field_reference |
1147
+ | PendingServiceRoutingInteractionInfo | special_access_rules, field_reference |
1148
+ | Period | special_access_rules, usage, wsdl_segment, field_reference |
1149
+ | PermissionSet | special_access_rules, usage, wsdl_segment, field_reference |
1150
+ | PermissionSetAssignment | special_access_rules, usage, wsdl_segment, field_reference |
1151
+ | PermissionSetGroup | special_access_rules, usage, wsdl_segment |
1152
+ | PermissionSetGroupComponent | special_access_rules, usage, wsdl_segment |
1153
+ | PermissionSetLicense | special_access_rules, usage, wsdl_segment, field_reference |
1154
+ | PermissionSetLicenseAssign | special_access_rules, usage, wsdl_segment, field_reference |
1155
+ | PermissionSetLicenseDefinition | special_access_rules, usage, wsdl_segment |
1156
+ | PermissionSetTabSetting | special_access_rules, usage, wsdl_segment, field_reference |
1157
+ | PermissionUpdateEventLog | special_access_rules |
1158
+ | Permission_Update_Event_Type | - |
1159
+ | PersnlBatchDecision | usage |
1160
+ | PersonAccountOwnerPowerUser | special_access_rules, field_reference |
1161
+ | PersonTraining | special_access_rules, usage |
1162
+ | PersonalOrgInfo | special_access_rules, associated_objects |
1163
+ | PersonalizationDecision | usage, associated_objects |
1164
+ | PersonalizationObjective | usage, associated_objects |
1165
+ | PersonalizationPoint | usage, associated_objects |
1166
+ | PersonalizationSchema | usage, associated_objects, field_reference |
1167
+ | PersonalizationTargetInfo | field_reference |
1168
+ | PickTicket | special_access_rules, associated_objects, field_reference |
1169
+ | PickTicketAssignment | special_access_rules, field_reference |
1170
+ | PickTicketProduct | special_access_rules, associated_objects, field_reference |
1171
+ | PicklistValueInfo | wsdl_segment, field_reference |
1172
+ | PipelineInspMetricConfig | field_reference |
1173
+ | PipelineInspMetricConfigLocalization | - |
1174
+ | PipelineInspectionListView | special_access_rules, usage, field_reference |
1175
+ | PipelineInspectionSumField | special_access_rules, field_reference |
1176
+ | PlatformAction | usage, wsdl_segment, field_reference |
1177
+ | PlatformEventUsageMetric | usage, wsdl_segment, field_reference |
1178
+ | PlatformStatusAlertEvent | wsdl_segment, field_reference |
1179
+ | Platform_Encryption_Event_Type | - |
1180
+ | PortalDelegablePermissionSet | field_reference |
1181
+ | PplnInspListViewCalcClmn | special_access_rules, usage |
1182
+ | PresenceConfigDeclineReason | special_access_rules, field_reference |
1183
+ | PresenceDeclineReason | special_access_rules, field_reference |
1184
+ | PresenceUserConfig | special_access_rules, field_reference |
1185
+ | PresenceUserConfigProfile | special_access_rules, field_reference |
1186
+ | PresenceUserConfigUser | special_access_rules, field_reference |
1187
+ | PriceAdjustmentGroup | special_access_rules |
1188
+ | PriceAdjustmentGroupShape | special_access_rules |
1189
+ | PriceAdjustmentItem | special_access_rules |
1190
+ | PriceAdjustmentItemShape | special_access_rules |
1191
+ | PriceAdjustmentSchedule | special_access_rules, usage, field_reference |
1192
+ | PriceAdjustmentTier | special_access_rules, usage, field_reference |
1193
+ | PriceProtectExecLineItem | - |
1194
+ | PriceProtectionExecution | - |
1195
+ | PriceProtectionTerm | - |
1196
+ | Pricebook2 | usage, associated_objects, wsdl_segment, field_reference |
1197
+ | Pricebook2History | special_access_rules, usage, wsdl_segment, field_reference |
1198
+ | PricebookEntry | usage, associated_objects, wsdl_segment, field_reference |
1199
+ | PricebookEntryAdjustment | special_access_rules, field_reference |
1200
+ | Pricing_Event_Type | - |
1201
+ | PrivacyHold | special_access_rules |
1202
+ | PrivacyHoldReason | special_access_rules |
1203
+ | PrivacyJobSession | special_access_rules, associated_objects, wsdl_segment, field_reference |
1204
+ | PrivacyObjectSession | special_access_rules, associated_objects, wsdl_segment, field_reference |
1205
+ | PrivacyRTBFRequest | special_access_rules, associated_objects, wsdl_segment, field_reference |
1206
+ | PrivacyRequest | special_access_rules, associated_objects, usage |
1207
+ | PrivacyRtntStoreDelStatus | - |
1208
+ | PrivacySessionRecordFailure | special_access_rules, associated_objects, wsdl_segment, field_reference |
1209
+ | Problem | field_reference |
1210
+ | ProblemIncident | associated_objects, field_reference |
1211
+ | ProblemRelatedItem | associated_objects, field_reference |
1212
+ | ProcessDefinition | usage, wsdl_segment, field_reference |
1213
+ | ProcessException | associated_objects, wsdl_segment, field_reference |
1214
+ | ProcessFlowMigration | wsdl_segment, field_reference |
1215
+ | ProcessInstance | usage, associated_objects, wsdl_segment, field_reference |
1216
+ | ProcessInstanceHistory | usage, wsdl_segment, field_reference |
1217
+ | ProcessInstanceNode | wsdl_segment, field_reference |
1218
+ | ProcessInstanceStep | usage, associated_objects, wsdl_segment, field_reference |
1219
+ | ProcessInstanceWorkitem | usage, wsdl_segment, field_reference |
1220
+ | ProcessNode | usage, wsdl_segment, field_reference |
1221
+ | ProducerCommission | field_reference |
1222
+ | Product2 | special_access_rules, usage, associated_objects, wsdl_segment, field_reference |
1223
+ | Product2DataTranslation | special_access_rules, usage |
1224
+ | ProductAttribute | special_access_rules, associated_objects, field_reference |
1225
+ | ProductAttributeSet | special_access_rules, field_reference |
1226
+ | ProductAttributeSetItem | special_access_rules, field_reference |
1227
+ | ProductAttributeSetProduct | special_access_rules, field_reference |
1228
+ | ProductCatalog | special_access_rules, field_reference |
1229
+ | ProductCategory | special_access_rules, associated_objects, field_reference |
1230
+ | ProductCategoryDataTranslation | usage |
1231
+ | ProductCategoryProduct | special_access_rules, associated_objects, field_reference |
1232
+ | ProductComponentGroup | special_access_rules, field_reference |
1233
+ | ProductConsumed | special_access_rules, usage, associated_objects, wsdl_segment, field_reference |
1234
+ | ProductDetectedPriceChange | - |
1235
+ | ProductEntitlementTemplate | special_access_rules, usage, wsdl_segment, field_reference |
1236
+ | ProductFeaturedProduct | associated_objects, field_reference |
1237
+ | ProductItem | special_access_rules, usage, associated_objects, wsdl_segment, field_reference |
1238
+ | ProductItemTransaction | associated_objects, wsdl_segment, field_reference |
1239
+ | ProductMedia | special_access_rules, associated_objects, field_reference |
1240
+ | ProductQuantityRule | special_access_rules, field_reference |
1241
+ | ProductRelatedComponent | special_access_rules, field_reference |
1242
+ | ProductRelationshipType | special_access_rules, field_reference |
1243
+ | ProductRequest | special_access_rules, associated_objects, wsdl_segment, field_reference |
1244
+ | ProductRequestLineItem | special_access_rules, associated_objects, wsdl_segment, field_reference |
1245
+ | ProductRequired | special_access_rules, usage, associated_objects, wsdl_segment, field_reference |
1246
+ | ProductSellingModel | special_access_rules, field_reference |
1247
+ | ProductSellingModelOption | special_access_rules, field_reference |
1248
+ | ProductServiceCampaign | special_access_rules, associated_objects, wsdl_segment, field_reference |
1249
+ | ProductServiceCampaignItem | special_access_rules, associated_objects, wsdl_segment, field_reference |
1250
+ | ProductServiceCampaignItemStatus | special_access_rules, usage, wsdl_segment, field_reference |
1251
+ | ProductServiceCampaignStatus | special_access_rules, usage, wsdl_segment, field_reference |
1252
+ | ProductTransfer | special_access_rules, associated_objects, wsdl_segment, field_reference |
1253
+ | ProductWarrantyTerm | associated_objects, wsdl_segment, field_reference |
1254
+ | Profile | special_access_rules, usage, wsdl_segment, field_reference |
1255
+ | ProfileSkill | usage, associated_objects, wsdl_segment, field_reference |
1256
+ | ProfileSkillEndorsement | usage, associated_objects, wsdl_segment, field_reference |
1257
+ | ProfileSkillShare | usage, wsdl_segment, field_reference |
1258
+ | ProfileSkillUser | usage, associated_objects, wsdl_segment, field_reference |
1259
+ | ProgramProduct | special_access_rules, associated_objects, field_reference |
1260
+ | ProgramRebateType | field_reference |
1261
+ | Promotion | special_access_rules, associated_objects, field_reference |
1262
+ | PromotionLineItemRule | field_reference |
1263
+ | PromotionMarketSegment | special_access_rules, field_reference |
1264
+ | PromotionQualifier | special_access_rules, associated_objects, field_reference |
1265
+ | PromotionSegment | special_access_rules, associated_objects, field_reference |
1266
+ | PromotionSegmentBuyerGroup | special_access_rules, associated_objects, field_reference |
1267
+ | PromotionSegmentSalesStore | special_access_rules, associated_objects, field_reference |
1268
+ | PromotionTarget | special_access_rules, field_reference |
1269
+ | PromotionTier | usage, associated_objects, field_reference |
1270
+ | Prompt | special_access_rules, wsdl_segment, field_reference |
1271
+ | PromptAction | special_access_rules, associated_objects, wsdl_segment, field_reference |
1272
+ | PromptActionOwnerSharingRule | special_access_rules |
1273
+ | PromptActionShare | special_access_rules, wsdl_segment, field_reference |
1274
+ | PromptError | special_access_rules, associated_objects, wsdl_segment, field_reference |
1275
+ | PromptLocalization | special_access_rules, field_reference |
1276
+ | PromptVersion | special_access_rules, wsdl_segment, field_reference |
1277
+ | PromptVersionLocalization | special_access_rules, field_reference |
1278
+ | ProrationPolicy | special_access_rules, field_reference |
1279
+ | Prospect | - |
1280
+ | ProspectingAgentDataSource | - |
1281
+ | ProspectingAgentRcmdTarget | special_access_rules |
1282
+ | ProspectingAgentSpec | - |
1283
+ | ProspectingAgentSpecParm | - |
1284
+ | ProspectingAgentUserSpec | - |
1285
+ | PublicComplaint | special_access_rules, associated_objects, field_reference |
1286
+ | PurchaseQuantityRule | special_access_rules, field_reference |
1287
+ | PushTopic | usage, wsdl_segment, field_reference |
1288
+ | PushUpgradeCustomization | - |
1289
+ | PymtSchdDistributionMethod | special_access_rules, field_reference |
1290
+ | Question | special_access_rules, usage, field_reference |
1291
+ | QuestionDataCategorySelection | special_access_rules, usage, field_reference |
1292
+ | QuestionReportAbuse | usage, field_reference |
1293
+ | QuestionSubscription | usage, field_reference |
1294
+ | QueueRoutingConfig | special_access_rules, field_reference |
1295
+ | QueueSobject | special_access_rules, usage, wsdl_segment, field_reference |
1296
+ | QueuedExecutionEventLog | special_access_rules |
1297
+ | Queued_Execution_Event_Type | - |
1298
+ | QuickText | usage, associated_objects, wsdl_segment, field_reference |
1299
+ | QuickTextUsage | special_access_rules, associated_objects, wsdl_segment, field_reference |
1300
+ | Quote | usage, associated_objects, field_reference |
1301
+ | QuoteAction | special_access_rules, field_reference |
1302
+ | QuoteAdjustmentGroup | special_access_rules, associated_objects |
1303
+ | QuoteDocument | usage, field_reference |
1304
+ | QuoteItemTaxItem | special_access_rules, field_reference |
1305
+ | QuoteLineGroup | field_reference |
1306
+ | QuoteLineItem | special_access_rules, usage, associated_objects, field_reference |
1307
+ | QuoteLineItemRecipient | associated_objects, field_reference |
1308
+ | QuoteLinePriceAdjustment | special_access_rules |
1309
+ | QuoteLineRelationship | special_access_rules, associated_objects, field_reference |
1310
+ | QuoteLineWorkSource | - |
1311
+ | QuoteRecipientGroup | field_reference |
1312
+ | QuoteRecipientGroupMember | field_reference |
1313
+ | REST_API_Event_Type | - |
1314
+ | RecentFieldChange | special_access_rules, usage, field_reference |
1315
+ | RecentlyViewed | usage, wsdl_segment, field_reference |
1316
+ | Recommendation | special_access_rules, associated_objects, wsdl_segment, field_reference |
1317
+ | RecommendationResponse | special_access_rules, usage, wsdl_segment, field_reference |
1318
+ | RecordAction | special_access_rules, usage, associated_objects, wsdl_segment, field_reference |
1319
+ | RecordActionHistory | special_access_rules, usage, wsdl_segment, field_reference |
1320
+ | RecordType | usage, wsdl_segment, field_reference |
1321
+ | RecordTypeLocalization | usage, field_reference |
1322
+ | RecordVisibility | special_access_rules, usage |
1323
+ | RecordsetFilterCriteria | special_access_rules, usage, associated_objects, wsdl_segment, field_reference |
1324
+ | RecordsetFilterCriteriaRule | special_access_rules, usage, wsdl_segment, field_reference |
1325
+ | RecordsetFltrCritMonitor | special_access_rules, associated_objects, wsdl_segment, field_reference |
1326
+ | RedirectWhitelistUrl | special_access_rules, usage, wsdl_segment, field_reference |
1327
+ | Refund | special_access_rules, wsdl_segment, field_reference |
1328
+ | RefundLinePayment | special_access_rules, usage, wsdl_segment, field_reference |
1329
+ | RegisteredExternalService | special_access_rules, field_reference |
1330
+ | RelatedListColumnDefinition | special_access_rules, usage, wsdl_segment, field_reference |
1331
+ | RelatedListDefinition | special_access_rules, usage, wsdl_segment, field_reference |
1332
+ | RemoteKeyCalloutEvent | wsdl_segment, field_reference |
1333
+ | Reply | usage, field_reference |
1334
+ | ReplyEmailSettings | wsdl_segment, field_reference |
1335
+ | ReplyReportAbuse | usage, field_reference |
1336
+ | ReplyText | usage |
1337
+ | Report | usage, associated_objects, wsdl_segment, field_reference |
1338
+ | ReportEventLog | special_access_rules |
1339
+ | ReportExportEventLog | special_access_rules |
1340
+ | ReportTag | usage |
1341
+ | Report_Event_Type | usage |
1342
+ | Report_Export_Event_Type | - |
1343
+ | ReputationLevel | special_access_rules, field_reference |
1344
+ | ReputationLevelLocalization | special_access_rules, field_reference |
1345
+ | ReputationPointsRule | special_access_rules, field_reference |
1346
+ | ResourceAbsence | special_access_rules, usage, associated_objects, wsdl_segment, field_reference |
1347
+ | ResourcePreference | special_access_rules, associated_objects, wsdl_segment, field_reference |
1348
+ | RestApiEventLog | special_access_rules |
1349
+ | RetentionStoreUsage | associated_objects, wsdl_segment, field_reference |
1350
+ | ReturnOrder | special_access_rules, usage, associated_objects, wsdl_segment, field_reference |
1351
+ | ReturnOrderItemAdjustment | special_access_rules, associated_objects, field_reference |
1352
+ | ReturnOrderItemTax | special_access_rules, associated_objects, field_reference |
1353
+ | ReturnOrderLineItem | special_access_rules, associated_objects, wsdl_segment, field_reference |
1354
+ | ReturnOrderOwnerSharingRule | special_access_rules |
1355
+ | RevenueAsyncOperation | special_access_rules, field_reference |
1356
+ | RevenueTransactionErrorLog | special_access_rules, field_reference |
1357
+ | RpaFlowResultEvent | - |
1358
+ | RpaRobot | - |
1359
+ | RpaRobotAsgnMaintWindow | - |
1360
+ | RpaRobotAsgnSessionInf | - |
1361
+ | RpaRobotDefinition | - |
1362
+ | RpaRobotMaintWindow | - |
1363
+ | RpaRobotMaintWindowDef | - |
1364
+ | RpaRobotPool | - |
1365
+ | RpaRobotPoolAsgnRobot | - |
1366
+ | RpaRobotPoolDefinition | - |
1367
+ | RpaRobotPoolFlowAsgn | - |
1368
+ | RpaRobotSessionInfo | - |
1369
+ | RpaRobotSessionInfoDef | - |
1370
+ | RuleTerritory2Association | special_access_rules, field_reference |
1371
+ | SOAP_API_Event_Type | - |
1372
+ | SOSDeployment | usage |
1373
+ | SOSSession | usage, associated_objects |
1374
+ | SOSSessionActivity | usage |
1375
+ | SalesAIScoreCycle | special_access_rules |
1376
+ | SalesAIScoreModelFactor | special_access_rules, usage |
1377
+ | SalesChannel | special_access_rules, associated_objects, field_reference |
1378
+ | SalesMethodologyDef | special_access_rules |
1379
+ | SalesMethodologyDefItem | special_access_rules |
1380
+ | SalesStoreCatalog | special_access_rules, field_reference |
1381
+ | SalesTransaction | special_access_rules |
1382
+ | SalesTransactionItemShape | special_access_rules |
1383
+ | SalesTransactionShape | special_access_rules |
1384
+ | SalesTransactionType | special_access_rules, associated_objects, field_reference |
1385
+ | SalesTrxnItemRelationShape | special_access_rules |
1386
+ | SalesWorkQueueSettings | field_reference |
1387
+ | SalesforceContract | usage, associated_objects |
1388
+ | SalesforceInvoice | usage, associated_objects |
1389
+ | SalesforceLoginAsEventLog | special_access_rules |
1390
+ | SalesforcePayment | usage, associated_objects |
1391
+ | SalesforceQuote | usage, associated_objects |
1392
+ | Salesforce_Surveys_Object_Model | - |
1393
+ | SamlSsoConfig | special_access_rules, wsdl_segment, field_reference |
1394
+ | SandboxStatusEventLog | special_access_rules |
1395
+ | Sandbox_Event_Type | - |
1396
+ | SavedPaymentMethod | special_access_rules, associated_objects, field_reference |
1397
+ | SavedPaymentMethodEvent | special_access_rules, field_reference |
1398
+ | SchedulingAdherenceDetail | special_access_rules |
1399
+ | SchedulingAdherenceSummary | special_access_rules, associated_objects |
1400
+ | SchedulingConstraint | special_access_rules, associated_objects, wsdl_segment, field_reference |
1401
+ | SchedulingObjective | special_access_rules, wsdl_segment, field_reference |
1402
+ | SchedulingRule | special_access_rules, wsdl_segment, field_reference |
1403
+ | SchedulingRuleParameter | special_access_rules, wsdl_segment, field_reference |
1404
+ | Scontrol | usage, wsdl_segment, field_reference |
1405
+ | ScontrolLocalization | usage, field_reference |
1406
+ | ScoreIntelligence | - |
1407
+ | Scorecard | usage, associated_objects, wsdl_segment, field_reference |
1408
+ | ScorecardAssociation | wsdl_segment, field_reference |
1409
+ | ScorecardMetric | wsdl_segment, field_reference |
1410
+ | ScratchOrgInfo | associated_objects, field_reference |
1411
+ | SearchActivity | special_access_rules, field_reference |
1412
+ | SearchClickEventLog | special_access_rules, usage |
1413
+ | SearchEventLog | special_access_rules, usage |
1414
+ | SearchLayout | special_access_rules, usage, wsdl_segment, field_reference |
1415
+ | SearchPromotionRule | special_access_rules, usage, wsdl_segment, field_reference |
1416
+ | Search_Click_Event_Type | - |
1417
+ | Search_Event_Type | - |
1418
+ | SecurityCustomBaseline | special_access_rules, wsdl_segment, field_reference |
1419
+ | SecurityHealthCheckAlertRecipient | wsdl_segment |
1420
+ | SecurityHealthCheckResult | wsdl_segment |
1421
+ | SelfServiceUser | special_access_rules, usage |
1422
+ | Seller | associated_objects, wsdl_segment, field_reference |
1423
+ | SenderEmailAddress | field_reference |
1424
+ | ServiceAppointment | special_access_rules, usage, associated_objects, wsdl_segment, field_reference |
1425
+ | ServiceAppointmentStatus | special_access_rules, usage, wsdl_segment, field_reference |
1426
+ | ServiceChannel | special_access_rules, field_reference |
1427
+ | ServiceChannelFieldPriority | special_access_rules |
1428
+ | ServiceChannelStatus | special_access_rules, field_reference |
1429
+ | ServiceChannelStatusField | special_access_rules, field_reference |
1430
+ | ServiceContract | associated_objects, wsdl_segment, field_reference |
1431
+ | ServiceContractOwnerSharingRule | usage |
1432
+ | ServiceCrew | special_access_rules, associated_objects, wsdl_segment, field_reference |
1433
+ | ServiceCrewMember | special_access_rules, associated_objects, wsdl_segment, field_reference |
1434
+ | ServiceCrewOwnerSharingRule | special_access_rules |
1435
+ | ServicePresenceStatus | special_access_rules, field_reference |
1436
+ | ServiceReport | special_access_rules, associated_objects, wsdl_segment, field_reference |
1437
+ | ServiceReportLayout | special_access_rules, associated_objects, wsdl_segment, field_reference |
1438
+ | ServiceRequest | associated_objects |
1439
+ | ServiceResource | special_access_rules, associated_objects, wsdl_segment, field_reference |
1440
+ | ServiceResourceCapacity | special_access_rules, usage, associated_objects, wsdl_segment, field_reference |
1441
+ | ServiceResourceCapacityHistory | special_access_rules, wsdl_segment, field_reference |
1442
+ | ServiceResourceDataTranslation | usage |
1443
+ | ServiceResourceOwnerSharingRule | - |
1444
+ | ServiceResourcePreference | special_access_rules, wsdl_segment, field_reference |
1445
+ | ServiceResourceSkill | special_access_rules, usage, associated_objects, wsdl_segment, field_reference |
1446
+ | ServiceSetupProvisioning | special_access_rules, wsdl_segment, field_reference |
1447
+ | ServiceTerritory | special_access_rules, usage, associated_objects, wsdl_segment, field_reference |
1448
+ | ServiceTerritoryDataTranslation | usage |
1449
+ | ServiceTerritoryLocation | special_access_rules, associated_objects, wsdl_segment, field_reference |
1450
+ | ServiceTerritoryMember | special_access_rules, usage, associated_objects, wsdl_segment, field_reference |
1451
+ | ServiceTerritoryWorkType | associated_objects, field_reference |
1452
+ | SessionPermSetActivation | special_access_rules, usage, wsdl_segment, field_reference |
1453
+ | SetupAssistantStep | wsdl_segment |
1454
+ | SetupAuditTrail | wsdl_segment, field_reference |
1455
+ | SetupEntityAccess | special_access_rules, usage, wsdl_segment, field_reference |
1456
+ | SfdcCustomerForPartner | associated_objects |
1457
+ | SfdcPartnerOffer | - |
1458
+ | SfdcPartnerOfferItem | - |
1459
+ | SfdcPartnerOrder | - |
1460
+ | SfdcPartnerOrderBillingTrxn | - |
1461
+ | SfdcPartnerOrderItem | - |
1462
+ | SfdcPartnerPackage | - |
1463
+ | SfdcPartnerPackageVersion | - |
1464
+ | SfdcPartnerPayout | - |
1465
+ | SfdcPartnerPermSetLicense | - |
1466
+ | SfdcPartnerProductLicense | - |
1467
+ | SfdcPartnerProvisionProduct | - |
1468
+ | SfdcPartnerSbscrOffer | wsdl_segment |
1469
+ | SfdcPartnerSbscrOfferItem | wsdl_segment |
1470
+ | SfdcPartnerTenant | - |
1471
+ | SfdcPartnerTenantPackage | - |
1472
+ | SfdcPartnerTermSet | associated_objects |
1473
+ | SfdcPartnerTermSetProduct | associated_objects |
1474
+ | SfdcPartnerTntPermSetLic | - |
1475
+ | SfdcPartnerTntPkgLicense | - |
1476
+ | ShapeRepresentation | - |
1477
+ | SharingRecordCollection | field_reference |
1478
+ | SharingRecordCollectionItem | field_reference |
1479
+ | SharingRecordCollectionMember | field_reference |
1480
+ | Shift | special_access_rules, usage, associated_objects, wsdl_segment, field_reference |
1481
+ | ShiftHistory | special_access_rules, usage, wsdl_segment, field_reference |
1482
+ | ShiftOwnerSharingRule | usage |
1483
+ | ShiftPattern | special_access_rules, associated_objects, wsdl_segment, field_reference |
1484
+ | ShiftPatternEntry | special_access_rules, associated_objects, wsdl_segment, field_reference |
1485
+ | ShiftSegment | special_access_rules |
1486
+ | ShiftSegmentType | special_access_rules |
1487
+ | ShiftShare | special_access_rules, usage, wsdl_segment, field_reference |
1488
+ | ShiftStatus | special_access_rules, usage, wsdl_segment, field_reference |
1489
+ | ShiftTemplate | special_access_rules, associated_objects, wsdl_segment, field_reference |
1490
+ | Shipment | special_access_rules, associated_objects, wsdl_segment, field_reference |
1491
+ | ShipmentItem | special_access_rules, associated_objects, wsdl_segment, field_reference |
1492
+ | ShippingCarrier | special_access_rules, field_reference |
1493
+ | ShippingCarrierMethod | special_access_rules, field_reference |
1494
+ | ShippingConfigSetProduct | special_access_rules, field_reference |
1495
+ | ShippingConfigurationSet | special_access_rules, field_reference |
1496
+ | ShippingRateArea | special_access_rules, field_reference |
1497
+ | ShippingRateGroup | special_access_rules, field_reference |
1498
+ | SignupRequest | usage, associated_objects, field_reference |
1499
+ | Site | usage, associated_objects, wsdl_segment, field_reference |
1500
+ | SiteDetail | wsdl_segment, field_reference |
1501
+ | SiteDomain | usage |
1502
+ | SiteEventLog | special_access_rules |
1503
+ | SiteHistory | wsdl_segment, field_reference |
1504
+ | SiteIframeWhitelistUrl | wsdl_segment |
1505
+ | SiteRedirectMapping | special_access_rules, usage, wsdl_segment, field_reference |
1506
+ | Sites_Event_Type | - |
1507
+ | Skill | usage, wsdl_segment, field_reference |
1508
+ | SkillLevelDefinition | special_access_rules, associated_objects |
1509
+ | SkillLevelProgress | special_access_rules, associated_objects |
1510
+ | SkillProfile | usage, field_reference |
1511
+ | SkillRequirement | special_access_rules, usage, associated_objects, wsdl_segment, field_reference |
1512
+ | SkillUser | usage, field_reference |
1513
+ | SlaProcess | special_access_rules, usage, wsdl_segment, field_reference |
1514
+ | SlackChannelRelatedRecord | usage, wsdl_segment, field_reference |
1515
+ | Snippet | special_access_rules, associated_objects |
1516
+ | SnippetAssignment | special_access_rules |
1517
+ | SoapApiEventLog | special_access_rules |
1518
+ | SocialPersona | usage, associated_objects, field_reference |
1519
+ | SocialPost | usage, associated_objects, field_reference |
1520
+ | Solution | usage, associated_objects, wsdl_segment, field_reference |
1521
+ | SolutionStatus | usage, wsdl_segment, field_reference |
1522
+ | SolutionTag | usage |
1523
+ | SourceCodeRepoProvider | associated_objects |
1524
+ | SourceCodeRepository | associated_objects |
1525
+ | SourceCodeRepositoryBranch | usage, associated_objects |
1526
+ | StagedEmail | - |
1527
+ | StagedInviteeEmail | special_access_rules, field_reference |
1528
+ | StagedUnmtchdEmailAddr | special_access_rules |
1529
+ | StagedUnmtchdEmailAddrRela | special_access_rules |
1530
+ | Stamp | wsdl_segment, field_reference |
1531
+ | StampAssignment | wsdl_segment, field_reference |
1532
+ | StandardInvocableActionType | special_access_rules, field_reference |
1533
+ | StandardObjectNameChangeEvent | usage |
1534
+ | StandardObjectNameFeed | special_access_rules, usage |
1535
+ | StandardObjectNameHistory | special_access_rules |
1536
+ | StandardObjectNameOwnerSharingRule | special_access_rules |
1537
+ | StandardObjectNameShare | special_access_rules |
1538
+ | StandardObjectName_Feed | special_access_rules, usage |
1539
+ | StandardObjectName_Feed_Feed | special_access_rules, usage |
1540
+ | StandardObjectName_History | special_access_rules |
1541
+ | StandardObjectName_History_History | special_access_rules |
1542
+ | StandardObjectName_OwnerSharingRule | special_access_rules |
1543
+ | StandardObjectName_OwnerSharingRule_OwnerSharingRule | special_access_rules |
1544
+ | StandardObjectName_Share | special_access_rules |
1545
+ | StandardObjectName_Share_Share | special_access_rules |
1546
+ | StandardShippingRate | special_access_rules, field_reference |
1547
+ | Standard_Objects | - |
1548
+ | StaticResource | usage, wsdl_segment, field_reference |
1549
+ | StoreIntegratedService | special_access_rules, field_reference |
1550
+ | StreamingChannel | wsdl_segment, field_reference |
1551
+ | Survey | associated_objects, field_reference |
1552
+ | SurveyEmailBranding | special_access_rules, field_reference |
1553
+ | SurveyEngagementContext | associated_objects, field_reference |
1554
+ | SurveyInvitation | associated_objects, field_reference |
1555
+ | SurveyPage | associated_objects, field_reference |
1556
+ | SurveyQuestion | associated_objects, field_reference |
1557
+ | SurveyQuestionChoice | associated_objects, field_reference |
1558
+ | SurveyQuestionResponse | associated_objects, field_reference |
1559
+ | SurveyQuestionScore | field_reference |
1560
+ | SurveyResponse | associated_objects, field_reference |
1561
+ | SurveySubject | associated_objects, field_reference |
1562
+ | SurveyVersion | associated_objects, field_reference |
1563
+ | SurveyVersionAddlInfo | field_reference |
1564
+ | SvcCatalogCategory | special_access_rules, field_reference |
1565
+ | SvcCatalogCategoryItem | special_access_rules, field_reference |
1566
+ | SvcCatalogFilterCriteria | special_access_rules |
1567
+ | SvcCatalogItemDef | special_access_rules, field_reference |
1568
+ | SvcCatalogReqRelatedItem | special_access_rules, field_reference |
1569
+ | SvcCatalogRequest | special_access_rules, field_reference |
1570
+ | Swarm | special_access_rules, associated_objects, wsdl_segment, field_reference |
1571
+ | SwarmMember | special_access_rules, associated_objects, wsdl_segment, field_reference |
1572
+ | TabDefinition | wsdl_segment, field_reference |
1573
+ | TagDefinition | special_access_rules, usage |
1574
+ | Task | usage, associated_objects, wsdl_segment, field_reference |
1575
+ | TaskPriority | special_access_rules, usage, wsdl_segment, field_reference |
1576
+ | TaskRelation | usage, associated_objects, field_reference |
1577
+ | TaskStatus | special_access_rules, usage, wsdl_segment, field_reference |
1578
+ | TaskTag | usage |
1579
+ | TaskWhoRelation | usage, field_reference |
1580
+ | TaxEngine | special_access_rules, special_access_rules, field_reference |
1581
+ | TaxEngineInteractionLog | special_access_rules, field_reference |
1582
+ | TaxEngineProvider | special_access_rules, field_reference |
1583
+ | TaxGeoConfig | special_access_rules, associated_objects, field_reference |
1584
+ | TaxPolicy | special_access_rules, field_reference |
1585
+ | TaxRate | special_access_rules, associated_objects, field_reference |
1586
+ | TaxTreatment | special_access_rules, field_reference |
1587
+ | TenantConsumptionAlert | usage, associated_objects, field_reference |
1588
+ | TenantScrAIPrmptInjection | special_access_rules |
1589
+ | TenantSecret | usage |
1590
+ | TenantSecurityAIGtwyUsage | special_access_rules |
1591
+ | TenantSecurityAlertRuleSelectedTenant | special_access_rules, associated_objects |
1592
+ | TenantSecurityAnomaly | associated_objects |
1593
+ | TenantSecurityApiAnomaly | special_access_rules, associated_objects |
1594
+ | TenantSecurityCertificate | special_access_rules |
1595
+ | TenantSecurityConfigAgent | special_access_rules |
1596
+ | TenantSecurityConnectedApp | special_access_rules, associated_objects |
1597
+ | TenantSecurityCredentialStuffing | special_access_rules, associated_objects |
1598
+ | TenantSecurityCustomMetricDetail | special_access_rules |
1599
+ | TenantSecurityCustomMetricSetup | - |
1600
+ | TenantSecurityCustomMetricStat | special_access_rules |
1601
+ | TenantSecurityEncryptedField | special_access_rules |
1602
+ | TenantSecurityEncryptionPolicy | special_access_rules |
1603
+ | TenantSecurityFeature | special_access_rules, associated_objects |
1604
+ | TenantSecurityGuestUserAnomaly | special_access_rules, associated_objects |
1605
+ | TenantSecurityHealthCheckBaselineTrend | special_access_rules, associated_objects |
1606
+ | TenantSecurityHealthCheckDetail | special_access_rules, associated_objects |
1607
+ | TenantSecurityHealthCheckTrend | special_access_rules, associated_objects |
1608
+ | TenantSecurityLicense | special_access_rules, associated_objects |
1609
+ | TenantSecurityLogin | special_access_rules, associated_objects |
1610
+ | TenantSecurityLoginIpRangeTrend | special_access_rules, associated_objects |
1611
+ | TenantSecurityMetricDetail | special_access_rules, associated_objects |
1612
+ | TenantSecurityMetricDetailLink | special_access_rules |
1613
+ | TenantSecurityMobilePolicyTrend | special_access_rules, associated_objects |
1614
+ | TenantSecurityMonitorMetric | special_access_rules, associated_objects |
1615
+ | TenantSecurityNotification | special_access_rules, associated_objects |
1616
+ | TenantSecurityNotificationRule | special_access_rules, associated_objects |
1617
+ | TenantSecurityPackage | special_access_rules, associated_objects |
1618
+ | TenantSecurityPolicy | special_access_rules, associated_objects |
1619
+ | TenantSecurityPolicyChangeLog | special_access_rules, associated_objects |
1620
+ | TenantSecurityPolicyDeployment | special_access_rules, associated_objects |
1621
+ | TenantSecurityPolicySelectedTenant | special_access_rules, associated_objects |
1622
+ | TenantSecurityReportAnomaly | special_access_rules, associated_objects |
1623
+ | TenantSecuritySessionHijacking | special_access_rules, associated_objects |
1624
+ | TenantSecurityTenantChangeLog | - |
1625
+ | TenantSecurityTenantInfo | special_access_rules, associated_objects |
1626
+ | TenantSecurityTransactionPolicyTrend | special_access_rules, associated_objects |
1627
+ | TenantSecurityTrigTransactionSecurityPol | special_access_rules |
1628
+ | TenantSecurityTrustedIpRangeTrend | special_access_rules, associated_objects |
1629
+ | TenantSecurityUserActivity | special_access_rules, associated_objects |
1630
+ | TenantSecurityUserPerm | special_access_rules, associated_objects |
1631
+ | TenantUsageEntitlement | associated_objects, wsdl_segment, field_reference |
1632
+ | Territory | special_access_rules, usage |
1633
+ | Territory2 | special_access_rules, field_reference |
1634
+ | Territory2AlignmentLog | special_access_rules, associated_objects, field_reference |
1635
+ | Territory2Model | special_access_rules, associated_objects, field_reference |
1636
+ | Territory2ModelHistory | usage, field_reference |
1637
+ | Territory2ObjSharingConfig | special_access_rules, field_reference |
1638
+ | Territory2ObjectExclusion | special_access_rules, field_reference |
1639
+ | Territory2Type | special_access_rules, field_reference |
1640
+ | TerritoryAdminAssignment | special_access_rules, field_reference |
1641
+ | TerritoryMgmtObjectConfig | special_access_rules, field_reference |
1642
+ | TestSuiteMembership | special_access_rules, usage, wsdl_segment, field_reference |
1643
+ | ThirdPartyAccountLink | special_access_rules, usage, wsdl_segment, field_reference |
1644
+ | ThreatDetectionFeedback | wsdl_segment, field_reference |
1645
+ | Time-Based_Workflow_Event_Type | - |
1646
+ | TimeSheet | special_access_rules, associated_objects, wsdl_segment, field_reference |
1647
+ | TimeSheetEntry | special_access_rules, associated_objects, wsdl_segment, field_reference |
1648
+ | TimeSlot | usage, associated_objects, wsdl_segment, field_reference |
1649
+ | TimeSlotHistory | special_access_rules, wsdl_segment, field_reference |
1650
+ | TodayGoal | usage, associated_objects, wsdl_segment, field_reference |
1651
+ | TopInsight | - |
1652
+ | Topic | usage, associated_objects, wsdl_segment, field_reference |
1653
+ | TopicAssignment | usage, wsdl_segment, field_reference |
1654
+ | TopicLocalization | special_access_rules, field_reference |
1655
+ | TopicUserEvent | special_access_rules, usage, wsdl_segment, field_reference |
1656
+ | TransactionSecurityEventLog | special_access_rules |
1657
+ | TransactionSecurityPolicy | wsdl_segment, field_reference |
1658
+ | Transaction_Security_Event_Type | - |
1659
+ | Translation | special_access_rules, wsdl_segment, field_reference |
1660
+ | TravelMode | associated_objects, wsdl_segment, field_reference |
1661
+ | TwoFactorInfo | special_access_rules |
1662
+ | TwoFactorMethodsInfo | special_access_rules, usage |
1663
+ | TwoFactorTempCode | special_access_rules |
1664
+ | UI_Telemetry_Navigation_Timing_Event_Type | - |
1665
+ | UI_Telemetry_Resource_Timing_Event | - |
1666
+ | URI_Event_Type | - |
1667
+ | UiAgentInteractionEventLog | special_access_rules |
1668
+ | UiFormulaCriterion | wsdl_segment, field_reference |
1669
+ | UiFormulaRule | wsdl_segment, field_reference |
1670
+ | UiTelemetryNavTmEventLog | special_access_rules |
1671
+ | UiTelemetryRsrcTmEventLog | special_access_rules |
1672
+ | UndecidedEventRelation | usage, wsdl_segment, field_reference |
1673
+ | UnifiedActivity | field_reference |
1674
+ | UnifiedActivityInsight | field_reference |
1675
+ | UnifiedActivityParticipant | field_reference |
1676
+ | UnifiedActivityRelation | field_reference |
1677
+ | UnifiedActvtyInsightKeyword | field_reference |
1678
+ | UnifiedEmail | special_access_rules |
1679
+ | UnifiedEmailParticipant | special_access_rules |
1680
+ | UnifiedMeeting | special_access_rules |
1681
+ | UnifiedMeetingParticipant | special_access_rules |
1682
+ | UnifiedTask | special_access_rules |
1683
+ | UnifiedTaskParticipant | special_access_rules |
1684
+ | UnifiedVideoCall | field_reference |
1685
+ | UnifiedVideoCallParticipant | field_reference |
1686
+ | UnifiedVoiceCall | field_reference |
1687
+ | UnifiedVoiceCallParticipant | field_reference |
1688
+ | UniqueQueryEventLog | special_access_rules |
1689
+ | Unique_Query_Event_Type | - |
1690
+ | UnitOfMeasure | wsdl_segment, field_reference |
1691
+ | UriEventLog | special_access_rules |
1692
+ | UsageImpactFactor | special_access_rules, associated_objects, field_reference |
1693
+ | UsageImpactGroup | special_access_rules, associated_objects, field_reference |
1694
+ | UsageImpactGroupFactor | special_access_rules, associated_objects, field_reference |
1695
+ | UsageImpactGroupPgmMeasure | special_access_rules, associated_objects, field_reference |
1696
+ | UsageImpactGroupVersion | special_access_rules, associated_objects, field_reference |
1697
+ | User | special_access_rules, usage, associated_objects, wsdl_segment, field_reference |
1698
+ | UserAccessChange | special_access_rules |
1699
+ | UserAccessPolicy | special_access_rules |
1700
+ | UserAccountTeamMember | special_access_rules, usage |
1701
+ | UserAppInfo | associated_objects, wsdl_segment, field_reference |
1702
+ | UserAppMenuCustomization | usage, associated_objects, wsdl_segment, field_reference |
1703
+ | UserAppMenuItem | usage, wsdl_segment, field_reference |
1704
+ | UserAuthCertificate | special_access_rules |
1705
+ | UserConfigTransferButton | special_access_rules, field_reference |
1706
+ | UserConfigTransferSkill | field_reference |
1707
+ | UserCustomBadge | field_reference |
1708
+ | UserCustomBadgeLocalization | special_access_rules, field_reference |
1709
+ | UserDailyMetric | special_access_rules, associated_objects, field_reference |
1710
+ | UserDailyMetricOwnerSharingRule | special_access_rules, usage |
1711
+ | UserDefinedLabel | associated_objects, wsdl_segment, field_reference |
1712
+ | UserDefinedLabelAssignment | associated_objects, wsdl_segment, field_reference |
1713
+ | UserDevice | special_access_rules |
1714
+ | UserDeviceApplication | special_access_rules |
1715
+ | UserDeviceHistory | - |
1716
+ | UserEmailCalendarSync | special_access_rules, usage, field_reference |
1717
+ | UserEmailPreferredPerson | special_access_rules, associated_objects, wsdl_segment, field_reference |
1718
+ | UserEmailPreferredPersonShare | wsdl_segment, field_reference |
1719
+ | UserLicense | usage, wsdl_segment, field_reference |
1720
+ | UserListView | wsdl_segment, field_reference |
1721
+ | UserListViewCriterion | wsdl_segment, field_reference |
1722
+ | UserLocationAssignment | field_reference |
1723
+ | UserLogin | usage, wsdl_segment, field_reference |
1724
+ | UserMembershipSharingRule | special_access_rules, usage |
1725
+ | UserMonthlyMetric | special_access_rules, associated_objects, field_reference |
1726
+ | UserMonthlyMetricOwnerSharingRule | special_access_rules, usage |
1727
+ | UserPackageLicense | usage, wsdl_segment, field_reference |
1728
+ | UserPermissionAccess | usage, wsdl_segment, field_reference |
1729
+ | UserPreference | special_access_rules, usage, wsdl_segment, field_reference |
1730
+ | UserPrioritizedRecord | special_access_rules, associated_objects, field_reference |
1731
+ | UserProfile | special_access_rules, usage, associated_objects |
1732
+ | UserProvAccount | wsdl_segment, field_reference |
1733
+ | UserProvAccountStaging | usage, wsdl_segment, field_reference |
1734
+ | UserProvMockTarget | wsdl_segment, field_reference |
1735
+ | UserProvisioningConfig | wsdl_segment, field_reference |
1736
+ | UserProvisioningLog | wsdl_segment, field_reference |
1737
+ | UserProvisioningRequest | usage, associated_objects, wsdl_segment, field_reference |
1738
+ | UserRecordAccess | usage, wsdl_segment, field_reference |
1739
+ | UserRelatedRecordContent | - |
1740
+ | UserRole | special_access_rules, usage, wsdl_segment, field_reference |
1741
+ | UserServicePresence | special_access_rules, usage, associated_objects, field_reference |
1742
+ | UserSetupEntityAccess | usage, wsdl_segment, field_reference |
1743
+ | UserShare | special_access_rules, usage, wsdl_segment, field_reference |
1744
+ | UserSharedFeature | wsdl_segment |
1745
+ | UserTeamMember | usage, field_reference |
1746
+ | UserTerritory | usage |
1747
+ | UserTerritory2AssocLog | special_access_rules |
1748
+ | UserTerritory2Association | special_access_rules, field_reference |
1749
+ | UserUIPreference | field_reference |
1750
+ | UserWorkList | field_reference |
1751
+ | UserWorkListItem | field_reference |
1752
+ | VendorCallCenterStatusMap | special_access_rules, field_reference |
1753
+ | VerificationHistory | special_access_rules, usage, wsdl_segment, field_reference |
1754
+ | VideoCall | associated_objects, field_reference |
1755
+ | VideoCallInsight | special_access_rules |
1756
+ | VideoCallInsightAction | special_access_rules |
1757
+ | VideoCallInsightReason | special_access_rules |
1758
+ | VideoCallParticipant | associated_objects, field_reference |
1759
+ | VideoCallRecording | associated_objects, field_reference |
1760
+ | VideoCallRecordingStructure | special_access_rules |
1761
+ | VideoCallTranscript | - |
1762
+ | VisualforceAccessMetrics | special_access_rules, usage, wsdl_segment, field_reference |
1763
+ | VisualforceRequestEventLog | special_access_rules |
1764
+ | Visualforce_Request_Event_Type | - |
1765
+ | VoiceCall | special_access_rules, associated_objects, field_reference |
1766
+ | VoiceCallInsight | special_access_rules |
1767
+ | VoiceCallInsightAction | special_access_rules |
1768
+ | VoiceCallInsightReason | special_access_rules |
1769
+ | VoiceCallList | special_access_rules, associated_objects |
1770
+ | VoiceCallListItem | special_access_rules |
1771
+ | VoiceCallMetrics | field_reference |
1772
+ | VoiceCallQualityFeedback | associated_objects, field_reference |
1773
+ | VoiceCallRecording | special_access_rules, associated_objects, field_reference |
1774
+ | VoiceCallRecordingStructure | special_access_rules |
1775
+ | VoiceCoaching | special_access_rules, associated_objects, field_reference |
1776
+ | VoiceLocalPresenceNumber | special_access_rules, field_reference |
1777
+ | VoiceMailContent | special_access_rules, associated_objects, field_reference |
1778
+ | VoiceMailGreeting | special_access_rules, associated_objects, field_reference |
1779
+ | VoiceMailGreeting2 | associated_objects |
1780
+ | VoiceMailGreeting2Rep | associated_objects |
1781
+ | VoiceMailMessage | special_access_rules, associated_objects, field_reference |
1782
+ | VoiceOrgSetting | field_reference |
1783
+ | VoiceUserLine | special_access_rules, associated_objects, field_reference |
1784
+ | VoiceUserPreferences | special_access_rules, associated_objects, field_reference |
1785
+ | VoiceVendorInfo | special_access_rules, field_reference |
1786
+ | VoiceVendorLine | special_access_rules, associated_objects, field_reference |
1787
+ | Vote | special_access_rules, usage, wsdl_segment, field_reference |
1788
+ | WarrantyTerm | associated_objects, wsdl_segment, field_reference |
1789
+ | WaveAutoInstallRequest | special_access_rules, usage, associated_objects, field_reference |
1790
+ | Wave_Change_Event_Type | - |
1791
+ | Wave_Download_Event_Type | - |
1792
+ | Wave_Interaction_Event_Type | - |
1793
+ | Wave_Performance_Event_Type | - |
1794
+ | WebCart | special_access_rules, associated_objects, field_reference |
1795
+ | WebCartAdjustmentBasis | special_access_rules, associated_objects, field_reference |
1796
+ | WebCartAdjustmentGroup | special_access_rules, associated_objects, field_reference |
1797
+ | WebCartHistory | special_access_rules, field_reference |
1798
+ | WebLink | usage, wsdl_segment, field_reference |
1799
+ | WebLinkLocalization | usage, field_reference |
1800
+ | WebStore | special_access_rules, associated_objects, field_reference |
1801
+ | WebStoreCatalog | special_access_rules, associated_objects, field_reference |
1802
+ | WebStoreInventorySource | field_reference |
1803
+ | WebStoreMessageContent | special_access_rules |
1804
+ | WebStoreNetwork | special_access_rules, usage, field_reference |
1805
+ | WebStorePricebook | special_access_rules, usage, associated_objects, field_reference |
1806
+ | WebStoreSearchProdSettings | special_access_rules, associated_objects, field_reference |
1807
+ | WebStoreShare | special_access_rules, field_reference |
1808
+ | WebstoreBuyerGroup | usage, associated_objects |
1809
+ | Wishlist | special_access_rules, associated_objects, field_reference |
1810
+ | WishlistItem | special_access_rules, field_reference |
1811
+ | WorkAccess | associated_objects, wsdl_segment, field_reference |
1812
+ | WorkAccessShare | wsdl_segment, field_reference |
1813
+ | WorkBadge | associated_objects, wsdl_segment, field_reference |
1814
+ | WorkBadgeDefinition | associated_objects, wsdl_segment, field_reference |
1815
+ | WorkCapacityAvailability | associated_objects, wsdl_segment, field_reference |
1816
+ | WorkCapacityLimit | associated_objects, wsdl_segment, field_reference |
1817
+ | WorkCapacityUsage | associated_objects, wsdl_segment, field_reference |
1818
+ | WorkCoaching | associated_objects |
1819
+ | WorkDemographic | special_access_rules |
1820
+ | WorkFeedback | associated_objects |
1821
+ | WorkFeedbackQuestion | associated_objects |
1822
+ | WorkFeedbackQuestionSet | associated_objects |
1823
+ | WorkFeedbackRequest | associated_objects |
1824
+ | WorkGoal | associated_objects |
1825
+ | WorkGoalCollaborator | associated_objects |
1826
+ | WorkGoalCollaboratorHistory | - |
1827
+ | WorkGoalHistory | - |
1828
+ | WorkGoalLink | - |
1829
+ | WorkGoalShare | - |
1830
+ | WorkItem | usage |
1831
+ | WorkItemComponent | - |
1832
+ | WorkItemEvent | wsdl_segment |
1833
+ | WorkOrder | associated_objects, wsdl_segment, field_reference |
1834
+ | WorkOrderHistory | special_access_rules, wsdl_segment, field_reference |
1835
+ | WorkOrderLineItem | special_access_rules, usage, associated_objects, wsdl_segment, field_reference |
1836
+ | WorkOrderLineItemHistory | special_access_rules, wsdl_segment, field_reference |
1837
+ | WorkOrderLineItemStatus | special_access_rules, usage, wsdl_segment, field_reference |
1838
+ | WorkOrderShare | special_access_rules, wsdl_segment, field_reference |
1839
+ | WorkOrderStatus | special_access_rules, usage, wsdl_segment, field_reference |
1840
+ | WorkPerformanceCycle | associated_objects |
1841
+ | WorkPlan | special_access_rules, associated_objects, wsdl_segment, field_reference |
1842
+ | WorkPlanSelectionRule | special_access_rules, associated_objects, wsdl_segment, field_reference |
1843
+ | WorkPlanTemplate | special_access_rules, associated_objects, wsdl_segment, field_reference |
1844
+ | WorkPlanTemplateEntry | special_access_rules, associated_objects, wsdl_segment, field_reference |
1845
+ | WorkReward | special_access_rules, associated_objects |
1846
+ | WorkRewardFund | special_access_rules, associated_objects |
1847
+ | WorkRewardFundType | associated_objects |
1848
+ | WorkStep | special_access_rules, associated_objects, wsdl_segment, field_reference |
1849
+ | WorkStepStatus | special_access_rules, wsdl_segment, field_reference |
1850
+ | WorkStepTemplate | special_access_rules, associated_objects, wsdl_segment, field_reference |
1851
+ | WorkThanks | associated_objects, wsdl_segment, field_reference |
1852
+ | WorkType | special_access_rules, usage, associated_objects, wsdl_segment, field_reference |
1853
+ | WorkTypeGroup | associated_objects, wsdl_segment, field_reference |
1854
+ | WorkTypeGroupMember | associated_objects, wsdl_segment, field_reference |
1855
+ | WorkforceCapacity | special_access_rules, associated_objects |
1856
+ | WorkforceCapacityUnit | special_access_rules |
1857
+ | Workload | special_access_rules, associated_objects |
1858
+ | WorkloadUnit | special_access_rules |
1859
+ | feedSignal | wsdl_segment |
1860
+
1861
+ ## Tooling API — Common Sections
1862
+
1863
+ These sections appear in most Tooling records:
1864
+
1865
+ - title
1866
+ - description
1867
+ - fields
1868
+ - supported_soap_calls
1869
+ - supported_rest_api_http_methods
1870
+ - wsdl_segment
1871
+
1872
+ **Note**: the table below shows only *additional* sections beyond these.
1873
+
1874
+ ## Tooling API — Quick Reference
1875
+
1876
+ | Object | Additional Sections |
1877
+ |--------|---------------------|
1878
+ | AIApplication | - |
1879
+ | AIApplicationConfig | - |
1880
+ | AccountPlanObjMeasCalcCond | - |
1881
+ | AccountPlanObjMeasCalcDef | special_access_rules |
1882
+ | ActivationPlatform | - |
1883
+ | AdvAccountForecastSet | - |
1884
+ | AdvAcctForecastMeasureDef | - |
1885
+ | AdvAcctFrcstDisplayGroup | - |
1886
+ | AnimationRule | - |
1887
+ | ApexClass | - |
1888
+ | ApexClassMember | special_access_rules |
1889
+ | ApexCodeCoverage | special_access_rules |
1890
+ | ApexCodeCoverageAggregate | special_access_rules |
1891
+ | ApexComponent | - |
1892
+ | ApexComponentMember | special_access_rules |
1893
+ | ApexEmailNotification | - |
1894
+ | ApexExecutionOverlayAction | - |
1895
+ | ApexExecutionOverlayResult | - |
1896
+ | ApexLog | - |
1897
+ | ApexOrgWideCoverage | special_access_rules |
1898
+ | ApexPage | - |
1899
+ | ApexPageInfo | special_access_rules |
1900
+ | ApexPageMember | special_access_rules |
1901
+ | ApexResult | - |
1902
+ | ApexTestQueueItem | - |
1903
+ | ApexTestResult | - |
1904
+ | ApexTestResultLimits | - |
1905
+ | ApexTestRunResult | - |
1906
+ | ApexTestSuite | - |
1907
+ | ApexTrigger | - |
1908
+ | ApexTriggerMember | special_access_rules |
1909
+ | AssignmentRule | - |
1910
+ | AuraDefinition | - |
1911
+ | AuraDefinitionBundle | - |
1912
+ | AuthorizedEmailDomain | - |
1913
+ | AutoResponseRule | - |
1914
+ | BrandingSet | - |
1915
+ | BrandingSetProperty | - |
1916
+ | BriefcaseDefinition | special_access_rules |
1917
+ | BusProcessFeedbackConfig | - |
1918
+ | BusinessProcess | - |
1919
+ | BusinessProcessDefinition | - |
1920
+ | BusinessProcessFeedback | - |
1921
+ | BusinessProcessGroup | - |
1922
+ | Certificate | - |
1923
+ | CleanDataService | - |
1924
+ | CleanRule | - |
1925
+ | ColorDefinition | - |
1926
+ | CommunityWorkspacesNode | - |
1927
+ | CompactLayout | - |
1928
+ | CompactLayoutInfo | - |
1929
+ | CompactLayoutItemInfo | - |
1930
+ | ConnectedApplication | - |
1931
+ | ContactCenterChannel | special_access_rules |
1932
+ | ContainerAsyncRequest | special_access_rules |
1933
+ | ConversationChannelDefinition | - |
1934
+ | ConversationVendorInfo | special_access_rules |
1935
+ | CspTrustedSite | - |
1936
+ | CustomApplication | - |
1937
+ | CustomField | - |
1938
+ | CustomFieldDisplay | special_access_rules |
1939
+ | CustomFieldMember | special_access_rules |
1940
+ | CustomHelpMenuSection | - |
1941
+ | CustomHttpHeader | - |
1942
+ | CustomMsgChannel | - |
1943
+ | CustomNotifActionDef | - |
1944
+ | CustomNotificationActionGroup | - |
1945
+ | CustomNotificationType | - |
1946
+ | CustomObject | - |
1947
+ | CustomTab | - |
1948
+ | DataAssessmentConfigItem | - |
1949
+ | DataIntegrationRecordPurchasePermission | special_access_rules |
1950
+ | DataSourceBundleDefinition | special_access_rules |
1951
+ | DataStreamTemplate | special_access_rules |
1952
+ | DataType | special_access_rules |
1953
+ | DebugLevel | - |
1954
+ | DelegateGroup | - |
1955
+ | DelegateGroupGrant | - |
1956
+ | DelegateGroupMember | - |
1957
+ | DeployDetails | - |
1958
+ | DeployRequest | special_access_rules |
1959
+ | Document | - |
1960
+ | DomainProvision | special_access_rules |
1961
+ | DuplicateJobDefinition | - |
1962
+ | DuplicateJobMatchingRuleDefinition | - |
1963
+ | EmailTemplate | - |
1964
+ | EmbeddedServiceBranding | - |
1965
+ | EmbeddedServiceConfig | - |
1966
+ | EmbeddedServiceCustomComponent | special_access_rules |
1967
+ | EmbeddedServiceCustomLabel | - |
1968
+ | EmbeddedServiceCustomization | - |
1969
+ | EmbeddedServiceFieldService | - |
1970
+ | EmbeddedServiceFlow | special_access_rules |
1971
+ | EmbeddedServiceFlowConfig | special_access_rules |
1972
+ | EmbeddedServiceLiveAgent | special_access_rules |
1973
+ | EmbeddedServiceMenuItem | special_access_rules |
1974
+ | EmbeddedServiceMenuSettings | special_access_rules |
1975
+ | EmbeddedServiceQuickAction | - |
1976
+ | EmbeddedServiceResource | - |
1977
+ | EngagementInsightType | - |
1978
+ | EnrichedField | special_access_rules |
1979
+ | EntityDefinition | recordtypessupported_metadata, recordtypeinfo_metadata |
1980
+ | EntityLimit | - |
1981
+ | EntityParticle | relationshipreferenceto_type |
1982
+ | EventDelivery | - |
1983
+ | EventRelayConfig | special_access_rules |
1984
+ | EventSubscription | - |
1985
+ | ExtConvParticipantIntegDef | - |
1986
+ | ExternalAuthIdentityProvider | sub_types, special_access_rules |
1987
+ | ExternalClientAppSettings | - |
1988
+ | ExternalCredential | sub_types |
1989
+ | ExternalDataSource | - |
1990
+ | ExternalDataSrcDescriptor | - |
1991
+ | ExternalServiceRegistration | - |
1992
+ | ExternalString | - |
1993
+ | ExternalStringLocalization | special_access_rules |
1994
+ | FieldDefinition | customfield_metadata, picklist_metadata, picklistvalue_metadata, relationshipreferenceto_type |
1995
+ | FieldMapping | - |
1996
+ | FieldMappingField | - |
1997
+ | FieldMappingRow | - |
1998
+ | FieldRestrictionRule | special_access_rules |
1999
+ | FieldSet | - |
2000
+ | FlexiPage | - |
2001
+ | Flow | - |
2002
+ | FlowDefinition | - |
2003
+ | FlowElementTestCoverage | - |
2004
+ | FlowTest | - |
2005
+ | FlowTestCoverage | - |
2006
+ | FlowTestResult | - |
2007
+ | ForecastingDisplayedFamily | - |
2008
+ | ForecastingFilter | - |
2009
+ | ForecastingFilterCondition | - |
2010
+ | ForecastingSourceDefinition | - |
2011
+ | ForecastingType | - |
2012
+ | ForecastingTypeSource | - |
2013
+ | FormulaFunction | sub_types, special_access_rules |
2014
+ | FormulaFunctionAllowedType | special_access_rules |
2015
+ | FormulaOperator | - |
2016
+ | GenAiFunctionDefinition | - |
2017
+ | GenAiPlannerDefinition | - |
2018
+ | GlobalValueSet | - |
2019
+ | Group | special_access_rules |
2020
+ | GtwyProvPaymentMethodType | special_access_rules |
2021
+ | HeapDump | - |
2022
+ | HistoryRetentionJob | - |
2023
+ | HomePageComponent | - |
2024
+ | HomePageLayout | - |
2025
+ | IPAddressRange | - |
2026
+ | IconDefinition | - |
2027
+ | InboundNetworkConnProperty | - |
2028
+ | InboundNetworkConnection | - |
2029
+ | Index | - |
2030
+ | IndexField | - |
2031
+ | InstalledSubscriberPackage | - |
2032
+ | InstalledSubscriberPackageVersion | - |
2033
+ | InvocableActionExtension | - |
2034
+ | KeywordList | - |
2035
+ | Layout | - |
2036
+ | LightningComponentBundle | - |
2037
+ | LightningComponentResource | special_access_rules |
2038
+ | LightningOutApp | - |
2039
+ | LookupFilter | - |
2040
+ | MLDataDefinition | - |
2041
+ | MLField | - |
2042
+ | MLFilter | - |
2043
+ | MLPredictionDefinition | - |
2044
+ | ManagedContentNodeType | - |
2045
+ | ManagedContentType | - |
2046
+ | ManagedEventSubscription | special_access_rules |
2047
+ | MarketingAppExtAction | special_access_rules |
2048
+ | MarketingAppExtActivity | special_access_rules |
2049
+ | MarketingAppExtAssignment | special_access_rules |
2050
+ | MarketingAppExtension | special_access_rules |
2051
+ | MatchingRule | - |
2052
+ | MenuItem | - |
2053
+ | MetadataComponentDependency | limitations |
2054
+ | MetadataContainer | special_access_rules |
2055
+ | MetadataPackage | - |
2056
+ | MetadataPackageVersion | - |
2057
+ | MetadataWarningsHeader | field |
2058
+ | ModerationRule | - |
2059
+ | NamedCredential | sub_types |
2060
+ | ObjectHierarchyRelationship | - |
2061
+ | OmniSupervisorConfig | special_access_rules |
2062
+ | OperationLog | changeownpassword, sub_types, special_access_rules |
2063
+ | OpportunitySplitType | - |
2064
+ | OrgDomainLog | - |
2065
+ | OutboundNetworkConnProperty | - |
2066
+ | OutboundNetworkConnection | - |
2067
+ | OwnerChangeOptionInfo | special_access_rules |
2068
+ | Package2 | - |
2069
+ | Package2Member | - |
2070
+ | Package2Version | - |
2071
+ | Package2VersionCreateRequest | - |
2072
+ | Package2VersionCreateRequestError | - |
2073
+ | PackageInstallRequest | sub_types |
2074
+ | PackageUploadRequest | - |
2075
+ | PackageVersionUninstallRequestError | - |
2076
+ | PardotTenant | - |
2077
+ | PathAssistant | - |
2078
+ | PathAssistantStepInfo | - |
2079
+ | PathAssistantStepItem | - |
2080
+ | PaymentGatewayProvider | - |
2081
+ | PermissionDependency | special_access_rules |
2082
+ | PermissionSet | special_access_rules |
2083
+ | PermissionSetAssignment | special_access_rules |
2084
+ | PermissionSetGroup | special_access_rules |
2085
+ | PermissionSetGroupComponent | special_access_rules |
2086
+ | PermissionSetTabSetting | special_access_rules |
2087
+ | PipelineInspMetricConfig | - |
2088
+ | PlatformEventChannel | special_access_rules |
2089
+ | PlatformEventChannelMember | special_access_rules |
2090
+ | PlatformEventMigration | - |
2091
+ | PlatformEventSubscriberConfig | - |
2092
+ | PostTemplate | - |
2093
+ | PresenceDeclineReason | special_access_rules |
2094
+ | PresenceUserConfig | special_access_rules |
2095
+ | ProcessFlowMigration | - |
2096
+ | ProductAttributeSet | - |
2097
+ | Profile | special_access_rules |
2098
+ | ProfileLayout | special_access_rules |
2099
+ | Publisher | special_access_rules |
2100
+ | QueryResult | querylocator_metadata |
2101
+ | QueueRoutingConfig | special_access_rules |
2102
+ | QuickActionDefinition | - |
2103
+ | QuickActionList | - |
2104
+ | QuickActionListItem | - |
2105
+ | RecentlyViewed | - |
2106
+ | RecommendationStrategy | - |
2107
+ | RecordActionDeployment | - |
2108
+ | RecordType | - |
2109
+ | RegisteredExternalService | special_access_rules |
2110
+ | RelatedListColumnDefinition | special_access_rules |
2111
+ | RelatedListDefinition | special_access_rules |
2112
+ | RelationshipDomain | - |
2113
+ | RelationshipInfo | - |
2114
+ | ReleaseUpdate | - |
2115
+ | ReleaseUpdateStep | special_access_rules |
2116
+ | RemoteProxy | - |
2117
+ | RestrictionRule | special_access_rules |
2118
+ | SOQLResult | - |
2119
+ | SandboxInfo | - |
2120
+ | SandboxProcess | - |
2121
+ | SandboxProcessStage | - |
2122
+ | SchedulingObjective | special_access_rules |
2123
+ | SchedulingRule | special_access_rules |
2124
+ | Scontrol | special_access_rules |
2125
+ | SearchLayout | - |
2126
+ | SecurityHealthCheck | - |
2127
+ | SecurityHealthCheckRisks | - |
2128
+ | ServiceChannel | special_access_rules |
2129
+ | ServicePresenceStatus | special_access_rules |
2130
+ | ShiftSegmentType | special_access_rules |
2131
+ | SiteDetail | - |
2132
+ | Skill | - |
2133
+ | StandardAction | - |
2134
+ | StaticResource | - |
2135
+ | SubscriberPackage | - |
2136
+ | SubscriberPackageVersion | sub_types |
2137
+ | SubscriberPackageVersionUninstallRequest | - |
2138
+ | SvcCatalogCategory | - |
2139
+ | SvcCatalogCategoryItem | - |
2140
+ | SvcCatalogFulfillFlowItem | - |
2141
+ | SvcCatalogFulfillmentFlow | - |
2142
+ | SvcCatalogItemDef | - |
2143
+ | SymbolTable | - |
2144
+ | TabDefinition | - |
2145
+ | Territory2SupportedObject | special_access_rules |
2146
+ | TestSuiteMembership | - |
2147
+ | TimeSheetTemplate | special_access_rules |
2148
+ | TimeSheetTemplateAssignment | special_access_rules |
2149
+ | TraceFlag | - |
2150
+ | TransactionSecurityPolicy | - |
2151
+ | User | - |
2152
+ | UserAccessPolicy | special_access_rules |
2153
+ | UserAccessPolicyAction | special_access_rules |
2154
+ | UserAccessPolicyFilter | special_access_rules |
2155
+ | UserCriteria | - |
2156
+ | UserEntityAccess | - |
2157
+ | UserFieldAccess | - |
2158
+ | ValidationRule | validationrule_metadata |
2159
+ | VirtualVisitConfig | - |
2160
+ | WebLink | - |
2161
+ | WebStoreTemplate | special_access_rules |
2162
+ | WorkSkillRouting | - |
2163
+ | WorkSkillRoutingAttribute | - |
2164
+ | WorkflowAlert | - |
2165
+ | WorkflowFieldUpdate | - |
2166
+ | WorkflowOutboundMessage | - |
2167
+ | WorkflowRule | - |
2168
+ | WorkflowTask | - |
2169
+
2170
+ ## Common Objects
2171
+
2172
+ ### Enterprise / Data API
2173
+
2174
+ - **Account**: Represents an individual account, which is an organization or person involved with your business (such as customers, competitors, and partners).
2175
+ - **Contact**: Represents a contact, which is a person associated with an account.
2176
+ - **Opportunity**: Represents an opportunity, which is a sale or pending deal.
2177
+ - **Lead**: Represents a prospect or lead.
2178
+ - **Case**: Represents a case, which is a customer issue or problem.
2179
+ - **User**: Represents a user in your organization.
2180
+ - **Task**: Represents a business activity such as making a phone call or other to-do items.
2181
+ - **Event**: Represents an event in the calendar.
2182
+
2183
+ ### Tooling API
2184
+
2185
+ - **ApexClass**: Represents the saved copy of an Apex class.
2186
+ - **ApexTrigger**: Represents the saved copy of an Apex trigger.
2187
+ - **ApexCodeCoverageAggregate**: Represents aggregate code coverage test results for an Apex class or trigger.
2188
+ - **TraceFlag**: Represents a trace flag that triggers an Apex debug log at the specified logging level.
2189
+ - **EntityDefinition**: Provides row-based access to metadata about standard and custom objects.
2190
+
2191
+ ---
2192
+
2193
+ *Index generated: 2026-07-23*
2194
+ *Enterprise sObjects: 1839 · Tooling records: 291 · Total: 2130*