Authoring Policy Rule Definitions
Gating: requires the EnforceOMatic and PolicyRuleMDAPI org permissions.
Min API version: 64.0 (66.0 for conditions using PolicyJsonExpression).
This skill covers the on-disk metadata XML format for authoring policies. Use it whenever a task asks to write a *.policyRuleDefinition or *.policyRuleDefinitionSet file, or ship a metadata package containing them. The runtime side (RuleProvider, hooks) is out of scope.
Eval coverage: This skill is exercised by the team's ADK eval framework, not by tests/evals/ under the skill directory. Five datasets covering the ACCESS / GOVERNANCE / RECORD / TRANSFORM variants live in packages/adk-eval/eval/domains/platform-policy-rule-generate/datasets/.
1. Package Layout
A deployable package always contains:
<fixture>/
package.xml
policyRuleDefinitionSets/<setName>.policyRuleDefinitionSet
policyRuleDefinitions/<ruleName>.policyRuleDefinition
package.xml template (use <version>[ftest]</version> for ftests, 64.0 or higher for real orgs):
<?xml version="1.0" encoding="UTF-8"?>
<Package xmlns="http://soap.sforce.com/2006/04/metadata">
<types>
<members>Rule0</members>
<name>PolicyRuleDefinition</name>
</types>
<types>
<members>Set1</members>
<name>PolicyRuleDefinitionSet</name>
</types>
<version>64.0</version>
</Package>
2. PolicyRuleDefinitionSet Schema
<PolicyRuleDefinitionSet xmlns="http://soap.sforce.com/2006/04/metadata">
<label>Set1</label>
<description>Optional free text</description>
<replicated>false</replicated> <!-- MinAppVersion 260 -->
<builderCompatible>true</builderCompatible> <!-- MinAppVersion 262, author-settable -->
<!-- builderValidated: server-managed — do not set in authored XML -->
</PolicyRuleDefinitionSet>
| Element |
Req |
Notes |
<label> |
yes |
Master label. File basename (devName) is the MDAPI identifier, not the label. |
<description> |
no |
Free text. |
<replicated> |
no |
true triggers placeholder transformation across companion orgs. Omit for null/false. |
<builderCompatible> |
no |
true = rules audited per §7 checklist. false = API-only. Omit = unaudited. Informational only — no deploy/runtime effect. |
<builderValidated> |
no |
Server-managed. Never set in authored XML. Server overwrites on validation. |
3. PolicyRuleDefinition — Core Fields
| Element |
Req |
Notes |
<label> |
yes |
MasterLabel. |
<category> |
yes |
See §4. Drives resourceScopeType and whether policyRuleResourceDomains/resourceTransform are required. Does NOT constrain effect outside of TRANSFORM. |
<effect> |
yes |
Permit, Forbid, or Transform. The only category-coupling enforced by core: effect=Transform ↔ category=TRANSFORM_POLICY_RULE_DEFINITION (bidirectional). All other categories accept Permit and Forbid freely. |
<action> |
yes (≥1) |
Read, TupleRead, Create, etc. Multiple elements OR-combine. |
<policyRuleDefinitionSetName> |
yes |
Developer name of parent set. |
<principalScopeType> |
yes |
Always ANY. |
<resourceScopeType> |
yes |
ANY, FIELD, RECORD, DATASPACE, or SPAN. Must match category (§4). |
<principalAuthenticationLevel> |
no |
INTERNAL, AUTHENTICATED, UNIDENTIFIED, IDENTIFIED. |
<ruleConsumer> |
no |
ALL, DATACLOUD, MULESOFT, TABLEAU, CORE. |
<policyRuleResourceDomains> |
no |
Required for RECORD (RLS) and FIELD-scope TRANSFORM rules only. Forbidden on ACCESS/GOVERNANCE. |
<resourceTransform> |
no |
Required (and only valid) when category=TRANSFORM. |
<whenPolicyRuleDefinitionClauseConjunction> |
no |
WHEN conditions. |
<unlessPolicyRuleDefinitionClauseConjunction> |
no |
UNLESS conditions. Not UI-editable — prefer WHEN + negated operator. |
4. Category Decision Tree
Category names a domain (where in the platform's enforcement layers the rule applies). Effect names the action (allow / deny / transform). They are independent except for TRANSFORM.
The only Category × Effect rule the platform validates:
effect=Transform ⇔ category=TRANSFORM_POLICY_RULE_DEFINITION (bidirectional; mismatched throws INVALIDFORCATEGORY).
- All other categories (
ACCESS, GOVERNANCE, RECORD, IDENTIFIED_RECORD) accept either Permit or Forbid.
Note on the platform's auto-fill default: When <category> is omitted from authored XML, the server fills it in from effect: Permit→ACCESS, Forbid→GOVERNANCE, Transform→TRANSFORM. This is a default-fill, not a validation. If you author an explicit category that contradicts this default, it is accepted and persisted as-is.
Picking the category
What kind of policy?
│
├── OLS/FLS allow/deny on tagged or classified resources
│ category = ACCESS_POLICY_RULE_DEFINITION (allow/deny attestation in the access plane)
│ | GOVERNANCE_POLICY_RULE_DEFINITION (governance-audited)
│ effect = Permit | Forbid (chosen independently from category)
│ resourceScopeType = ANY | FIELD | DATASPACE
│ NO <policyRuleResourceDomains>
│ condition: resourcePath=TAG|CLASSIFICATION CONTAINS_ANY <ref>
│ For "objects AND all their fields" → action=TupleRead + OR-of-ENTITYTYPE clause (§7)
│ Note: "Block access to Foo object" → tag Foo with <yourTag>, write rule on tag
│ Do NOT use <resourceDomain>Foo</resourceDomain> — forbidden for ACCESS/GOVERNANCE
│
├── Row-level filter on a DMO/DLO
│ category = RECORD_POLICY_RULE_DEFINITION
│ effect = Permit | Forbid
│ resourceScopeType = RECORD
│ <policyRuleResourceDomains> = the DMO/DLO API name ← entity targeting allowed here
│
├── Identified-Guest record access
│ NOT authorable via MDAPI — SESSION_CONSUMER_ID is not in RuleContextPathType
│ Must be implemented as a runtime RuleProvider.
│
└── Field masking
category = TRANSFORM_POLICY_RULE_DEFINITION ← required by RuleBuilder validator
effect = Transform ← required by RuleBuilder validator
resourceScopeType = FIELD (structured) or SPAN (unstructured)
<policyRuleResourceDomains> = the DMO whose field is masked
<resourceTransform> required (e.g. NULL_RESOURCE_TRANSFORM, LAST_N_CHARS_RESOURCE_TRANSFORM)
ACCESS vs GOVERNANCE — how to choose
Both legally accept Permit and Forbid. Pick by which enforcement layer should record/audit the rule and what the prompt literally asks for:
| Use case |
Pick |
Reason |
| The prompt names "ACCESS policy rule" / "access rule" / "OLS/FLS" explicitly |
ACCESS_POLICY_RULE_DEFINITION |
Matches the prompt's vocabulary; sits in the data-access enforcement layer. |
| The prompt names "governance" / "audit" / "policy framework" / data-residency or compliance language |
GOVERNANCE_POLICY_RULE_DEFINITION |
Matches the prompt's vocabulary; rules surface in governance reporting. |
| Prompt is ambiguous and only describes allow/deny semantics |
Default to ACCESS for Permit, GOVERNANCE for Forbid (mirrors the platform's auto-fill default; safe and deployable, but not required) |
|
Important — honor the explicit category in the prompt. If the prompt says "ACCESS policy rule that denies …" or "GOVERNANCE policy rule that permits …", emit exactly that category. Do not silently swap to the auto-fill default just because effect is Forbid (or Permit). The platform accepts both. The agent must not override the user's stated intent.
Scope × category compatibility — any combination outside this matrix throws INVALIDFORCATEGORY:
|
ACCESS |
GOVERNANCE |
TRANSFORM |
RECORD |
ANY |
Yes |
Yes |
No |
No |
DATASPACE |
Yes |
Yes |
No |
No |
FIELD |
Yes |
Yes |
Yes |
No |
RECORD |
No |
No |
No |
Yes |
SPAN |
No |
No |
Yes |
No |
5. Condition Patterns (Quick Reference)
Every <conditions> block needs all four: <clause>, <operator>, one path element, and the value.
| Goal |
path element |
operator |
value |
| Resource has tag |
<resourcePath>TAG</resourcePath> |
CONTAINS_ANY |
<valueReferenceType>CUSTOM_TAG | STANDARD_TAG</valueReferenceType> |
| Resource has classification |
<resourcePath>CLASSIFICATION</resourcePath> |
CONTAINS_ANY |
CUSTOM_CLASSIFICATION | STANDARD_CLASSIFICATION |
| Principal has permission |
<principalPath>ASSIGNED_PERMISSIONS_PATH</principalPath> |
CONTAINS_ANY | CONTAINS_NONE |
<valueReferenceType>CUSTOM_PERMISSION</valueReferenceType> |
| Session in dataspace |
<contextPath>SESSION_DATASPACE</contextPath> |
CONTAINS_ANY |
<valueReferenceType>DATASPACE</valueReferenceType> |
| Record field = user attribute |
<resourcePath>RECORDFIELD</resourcePath> + <valueDomain>Schema:field</valueDomain> |
EQUALS |
<valuePrincipalPath>USER_ID | ORGANIZATION_ID | USER_ROLE_ID</valuePrincipalPath> |
| Entity type check |
<resourcePath>ENTITYTYPE</resourcePath> |
IS |
<valueString>{"t":"Text","v":"FIELD"}</valueString> |
<conjunctionExpression> is 1-indexed prefix notation: 1, (AND 1 2), (OR 1 2), (AND (OR 1 2) (AND 3)). A bare top-level index like 1 is valid for deploy but crashes the Data Governance Policy Builder UI — see §7 if UI editability matters.
For full path enums (RulePrincipalPathType, RuleResourcePathType, RuleContextPathType), operators, and JSON expressions (PROJECTION / ARGLIST / SOQLTARGETLISTEXPR), see references/policy-schema-full.md.
For copy-paste templates for all policy variants, see references/templates.md.
6. Validation Guardrails
- Every
<conditions> needs an <operator>. Missing operator → reject.
- Every
<conditions> needs at least one path element (<resourcePath>, <principalPath>, <contextPath>, or <valueDomain>).
<contextPath> is exclusively SESSION_DATASPACE. Never put a resource path value there.
- Scope × category must be in the §4 matrix. Common offenders: ACCESS/GOVERNANCE + RECORD scope; RECORD + ANY/FIELD scope; TRANSFORM + ANY/RECORD scope. (Effect is independent of category except for TRANSFORM — see §4.)
<resourceTransform> and effect=Transform are coupled. Transform effect needs a resourceTransform. Permit/Forbid must not have one.
<policyRuleResourceDomains> is required for RECORD (RLS) and FIELD-scope TRANSFORM; forbidden on ACCESS/GOVERNANCE.
<conjunctionExpression> indices must match actual <conditions> count. Off-by-one → reject.
<clause> inside <conditions> must match the wrapper (WHEN inside <when…>, UNLESS inside <unless…>).
- JSON literals in
<valueString> must escape " to ". Wrong escaping silently corrupts the literal.
- Reference targets (
<valueReference>, <resourceDomain>) must exist in the target org at deploy time.
SCALAR_ATTRIBUTE / PLURAL_ATTRIBUTE are not in RulePrincipalPathType — not in MDAPI contract. Use a runtime RuleProvider for those shapes.
IDENTIFIED_RECORD is not authorable via MDAPI — SESSION_CONSUMER_ID not in RuleContextPathType.
- Standard tag/classification dev names are fully-qualified dotted paths (e.g.
DataGovernanceTags.ExternalData.Visibility.Public). Retrieve an existing rule to get the exact string before authoring.
- Min API versions:
PolicyRuleDefinition = 64.0; PolicyJsonExpression conditions = 66.0; <replicated> = 260+; <builderCompatible> / <builderValidated> = 262+.
Note on <conjunctionExpression> shape: A bare top-level index (e.g. <conjunctionExpression>1</conjunctionExpression>) deploys cleanly — the server-side parser accepts bare tokens at the top level. It is not a deploy-time validation error. It does, however, crash the Data Governance Policy Builder UI on load — see §7.
7. UI Compatibility — Core Rules
The Data Governance Policy Builder edits a strict subset of the MDAPI. Default goal: produce UI-compatible policies. Always confirm with the operator before producing API-only XML.
Hard blockers — any of these make the policy uneditable (and several crash the builder on load):
- Missing OR-of-ENTITYTYPE clause on ACCESS/GOVERNANCE rules → hard crash:
Cannot use 'in' operator to search for 'Permit' in undefined. Required even when paired with TupleRead (where it's functionally redundant at runtime). Must include IS conditions for {"t":"Text","v":"OBJECT"} and {"t":"Text","v":"FIELD"}.
- Bare top-level condition index in
<conjunctionExpression> (e.g. 1, or (AND (OR 1 2) 3)) → crash on builder load in buildCriteria. Deploy is unaffected, but the policy is uneditable in the UI. Always wrap: (AND 1) for a single condition; (AND (OR 1 2) (AND 3)) instead of (AND (OR 1 2) 3).
category = ACCESS_POLICY_RULE_DEFINITION + effect = Forbid → the Data Governance Policy Builder UI (not MDAPI) collapses it to GOVERNANCE on save; round-trip via the builder will rewrite the category. MDAPI deploy is unaffected — the original ACCESS+Forbid combination is valid and deploys without modification. If your goal is UI round-trippability, prefer GOVERNANCE for Forbid; if the source of truth is MDAPI, ACCESS+Forbid is fine.
- Any
<unlessPolicyRuleDefinitionClauseConjunction> block → silently dropped on first UI save.
- More than one
<action> → only the first is kept.
ruleConsumer ≠ DATACLOUD → UI hardcodes DATACLOUD on save.
- Top-level
(OR 1 2) conjunction → triggers // ERROR: Unsupported rule! path, rule silently dropped.
UI-compatible "unless" rewrite:
| Author intent |
UI-compatible shape |
unless principal has permission X |
WHEN ASSIGNED_PERMISSIONS_PATH CONTAINS_NONE X |
unless resource has tag X |
WHEN TAG CONTAINS_NONE X |
unless record field = value |
WHEN RECORDFIELD NOT_EQUALS value |
For the full UI-compatibility checklist, round-trip rules, and operator support matrix, see references/ui-compatibility.md.
8. Authoring Workflow
- Start from the closest template in
references/templates.md — modify from there, don't start blank.
- Pick category first (§4). Category fixes effect, resourceScopeType, and whether policyRuleResourceDomains/resourceTransform are required.
- Lay out the bare rule: top-level fields only, no conditions. Match the category template in
references/templates.md.
- Add conditions one at a time, each with all four anchors:
<clause>, <operator>, one path element, and the value.
- Update
<conjunctionExpression> — 1-indexed prefix notation. Bare top-level index (e.g. 1) deploys but breaks the UI; wrap as (AND 1) if UI editability matters (§7).
- Run the UI-compatibility check (§7 /
references/ui-compatibility.md). If any item trips, attempt the "unless" rewrite first; if not possible, get explicit operator confirmation before continuing.
- Update
package.xml — list each <members> for both types.
- Set
<builderCompatible> on the set to true if §7 checklist passes; false if intentionally API-only.
- Sanity-check against §6 (guardrails) before considering done.
- Validate with dry-run before any non-dry deploy to a persistent org. Surface errors using the error reference in
references/deploy-errors.md.
Three-layer correctness check before done:
- Runtime enforcement — does the rule enforce what's intended? (action choice, condition shape)
- MDAPI deploy validity — does it deploy? (§6 guardrails, scope×category, tag dev names, org perms)
- UI editability — can the builder render and re-save it? (§7 checklist, OR-of-ENTITYTYPE requirement)
9. Output Hygiene — What the Agent Must NOT Say to the User
The agent's user-facing chat response accompanies every generated file. Customers should never see internal engine or implementation details.
- Do NOT name the internal evaluation engine in user-facing text — including but not limited to
Cedar, policy engine, AuthZ engine, evaluation engine, Rego, OPA, or similar. The customer-facing surface is Data Governance, Policy Builder, Data Cloud Governance — use those terms only.
- Do NOT emit trailing "How it works at runtime" narratives that describe evaluation flow, principal-resource matching semantics, or engine-internal condition ordering. The generated file is the artifact; a one-line summary of what deployed is enough. If the user explicitly asks how enforcement works, describe it in product terms (e.g. "Data Governance denies the read when …"), never in engine terms.
- Do NOT name internal packages, source directories, Java class names, method names, or line-number references in user-facing text. Internal implementation identifiers are not customer-facing; refer to platform behavior in product terms only ("the server validates …", "Data Governance rejects …").
- Do NOT explain auto-fill / default-fill / fallback semantics unless the user asks. Ship the rule; surface constraints only when they affect what the user has to do next (e.g. "the DMO tag must exist before deploy").
If the user needs more context, they'll ask — respond then, in product language.
Reference Docs
| Detail |
File |
| Full path enums, operators, value sets, JSON expressions (PROJECTION / ARGLIST / SOQLTARGETLISTEXPR) |
references/policy-schema-full.md |
Copy-paste templates — index at references/templates.md; per-variant: templates-access.md, templates-record.md, templates-transform.md, templates-advanced.md |
|
| Full UI-compatibility checklist, round-trip rules, operator/path support matrix |
references/ui-compatibility.md |
1---2name: platform-policy-rule-generate3description: Use this skill when authoring PolicyRuleDefinition and PolicyRuleDefinitionSet metadata XML for Salesforce Data Cloud governance policies, or when editing *.policyRuleDefinition / *.policyRuleDefinitionSet files. Covers the category decision tree, full schema for all policy variants (ACCESS, GOVERNANCE, RECORD, TRANSFORM), UI-compatibility rules for the Data Governance Policy Builder, output hygiene for user-facing agent responses, and validation guardrails. Do NOT use this skill for UserAccessPolicy, AccessPolicy, SharingRules, PermissionSet, or any other access-control metadata type — those have their own types and live outside the PolicyRuleDefinition schema.4---5
6# Authoring Policy Rule Definitions
7
8**Gating:** requires the `EnforceOMatic` and `PolicyRuleMDAPI` org permissions.
9**Min API version:** 64.0 (66.0 for conditions using `PolicyJsonExpression`).
10
11This skill covers the **on-disk metadata XML format** for authoring policies. Use it whenever a task asks to write a `*.policyRuleDefinition` or `*.policyRuleDefinitionSet` file, or ship a metadata package containing them. The runtime side (RuleProvider, hooks) is out of scope.
12
13---
14
15> **Eval coverage:** This skill is exercised by the team's ADK eval framework, not by `tests/evals/` under the skill directory. Five datasets covering the ACCESS / GOVERNANCE / RECORD / TRANSFORM variants live in `packages/adk-eval/eval/domains/platform-policy-rule-generate/datasets/`.
16
17## 1. Package Layout
18
19A deployable package always contains:
20
21```text
22<fixture>/
23 package.xml
24 policyRuleDefinitionSets/<setName>.policyRuleDefinitionSet
25 policyRuleDefinitions/<ruleName>.policyRuleDefinition
26```
27
28`package.xml` template (use `<version>[ftest]</version>` for ftests, `64.0` or higher for real orgs):
29
30```xml
31<?xml version="1.0" encoding="UTF-8"?>
32<Package xmlns="http://soap.sforce.com/2006/04/metadata">
33 <types>
34 <members>Rule0</members>
35 <name>PolicyRuleDefinition</name>
36 </types>
37 <types>
38 <members>Set1</members>
39 <name>PolicyRuleDefinitionSet</name>
40 </types>
41 <version>64.0</version>
42</Package>
43```
44
45---
46
47## 2. PolicyRuleDefinitionSet Schema
48
49```xml
50<PolicyRuleDefinitionSet xmlns="http://soap.sforce.com/2006/04/metadata">
51 <label>Set1</label>
52 <description>Optional free text</description>
53 <replicated>false</replicated> <!-- MinAppVersion 260 -->
54 <builderCompatible>true</builderCompatible> <!-- MinAppVersion 262, author-settable -->
55 <!-- builderValidated: server-managed — do not set in authored XML -->
56</PolicyRuleDefinitionSet>
57```
58
59| Element | Req | Notes |
60|---------|-----|-------|
61| `<label>` | yes | Master label. File basename (devName) is the MDAPI identifier, not the label. |
62| `<description>` | no | Free text. |
63| `<replicated>` | no | `true` triggers placeholder transformation across companion orgs. Omit for null/false. |
64| `<builderCompatible>` | no | `true` = rules audited per §7 checklist. `false` = API-only. Omit = unaudited. Informational only — no deploy/runtime effect. |
65| `<builderValidated>` | no | **Server-managed. Never set in authored XML.** Server overwrites on validation. |
66
67---
68
69## 3. PolicyRuleDefinition — Core Fields
70
71| Element | Req | Notes |
72|---------|-----|-------|
73| `<label>` | yes | MasterLabel. |
74| `<category>` | yes | See §4. Drives `resourceScopeType` and whether `policyRuleResourceDomains`/`resourceTransform` are required. **Does NOT constrain `effect` outside of TRANSFORM.** |
75| `<effect>` | yes | `Permit`, `Forbid`, or `Transform`. The only category-coupling enforced by core: `effect=Transform ↔ category=TRANSFORM_POLICY_RULE_DEFINITION` (bidirectional). All other categories accept Permit and Forbid freely. |
76| `<action>` | yes (≥1) | `Read`, `TupleRead`, `Create`, etc. Multiple elements OR-combine. |
77| `<policyRuleDefinitionSetName>` | yes | Developer name of parent set. |
78| `<principalScopeType>` | yes | Always `ANY`. |
79| `<resourceScopeType>` | yes | `ANY`, `FIELD`, `RECORD`, `DATASPACE`, or `SPAN`. Must match category (§4). |
80| `<principalAuthenticationLevel>` | no | `INTERNAL`, `AUTHENTICATED`, `UNIDENTIFIED`, `IDENTIFIED`. |
81| `<ruleConsumer>` | no | `ALL`, `DATACLOUD`, `MULESOFT`, `TABLEAU`, `CORE`. |
82| `<policyRuleResourceDomains>` | no | Required for RECORD (RLS) and FIELD-scope TRANSFORM rules only. Forbidden on ACCESS/GOVERNANCE. |
83| `<resourceTransform>` | no | Required (and only valid) when `category=TRANSFORM`. |
84| `<whenPolicyRuleDefinitionClauseConjunction>` | no | WHEN conditions. |
85| `<unlessPolicyRuleDefinitionClauseConjunction>` | no | UNLESS conditions. Not UI-editable — prefer WHEN + negated operator. |
86
87---
88
89## 4. Category Decision Tree
90
91**Category names a domain (where in the platform's enforcement layers the rule applies). Effect names the action (allow / deny / transform). They are independent except for TRANSFORM.**
92
93The **only** Category × Effect rule the platform validates:
94
95- `effect=Transform` ⇔ `category=TRANSFORM_POLICY_RULE_DEFINITION` (bidirectional; mismatched throws `INVALIDFORCATEGORY`).
96- All other categories (`ACCESS`, `GOVERNANCE`, `RECORD`, `IDENTIFIED_RECORD`) accept either `Permit` or `Forbid`.
97
98> **Note on the platform's auto-fill default:** When `<category>` is omitted from authored XML, the server fills it in from `effect`: `Permit→ACCESS`, `Forbid→GOVERNANCE`, `Transform→TRANSFORM`. **This is a default-fill, not a validation.** If you author an explicit category that contradicts this default, it is accepted and persisted as-is.
99
100### Picking the category
101
102```text
103What kind of policy?
104│
105├── OLS/FLS allow/deny on tagged or classified resources
106│ category = ACCESS_POLICY_RULE_DEFINITION (allow/deny attestation in the access plane)
107│ | GOVERNANCE_POLICY_RULE_DEFINITION (governance-audited)
108│ effect = Permit | Forbid (chosen independently from category)
109│ resourceScopeType = ANY | FIELD | DATASPACE
110│ NO <policyRuleResourceDomains>
111│ condition: resourcePath=TAG|CLASSIFICATION CONTAINS_ANY <ref>
112│ For "objects AND all their fields" → action=TupleRead + OR-of-ENTITYTYPE clause (§7)
113│ Note: "Block access to Foo object" → tag Foo with <yourTag>, write rule on tag
114│ Do NOT use <resourceDomain>Foo</resourceDomain> — forbidden for ACCESS/GOVERNANCE
115│
116├── Row-level filter on a DMO/DLO
117│ category = RECORD_POLICY_RULE_DEFINITION
118│ effect = Permit | Forbid
119│ resourceScopeType = RECORD
120│ <policyRuleResourceDomains> = the DMO/DLO API name ← entity targeting allowed here
121│
122├── Identified-Guest record access
123│ NOT authorable via MDAPI — SESSION_CONSUMER_ID is not in RuleContextPathType
124│ Must be implemented as a runtime RuleProvider.
125│
126└── Field masking
127 category = TRANSFORM_POLICY_RULE_DEFINITION ← required by RuleBuilder validator
128 effect = Transform ← required by RuleBuilder validator
129 resourceScopeType = FIELD (structured) or SPAN (unstructured)
130 <policyRuleResourceDomains> = the DMO whose field is masked
131 <resourceTransform> required (e.g. NULL_RESOURCE_TRANSFORM, LAST_N_CHARS_RESOURCE_TRANSFORM)
132```
133
134### ACCESS vs GOVERNANCE — how to choose
135
136Both legally accept Permit and Forbid. Pick by *which enforcement layer should record/audit the rule* and **what the prompt literally asks for**:
137
138| Use case | Pick | Reason |
139|---|---|---|
140| The prompt names "ACCESS policy rule" / "access rule" / "OLS/FLS" explicitly | `ACCESS_POLICY_RULE_DEFINITION` | Matches the prompt's vocabulary; sits in the data-access enforcement layer. |
141| The prompt names "governance" / "audit" / "policy framework" / data-residency or compliance language | `GOVERNANCE_POLICY_RULE_DEFINITION` | Matches the prompt's vocabulary; rules surface in governance reporting. |
142| Prompt is ambiguous and only describes allow/deny semantics | Default to `ACCESS` for Permit, `GOVERNANCE` for Forbid (mirrors the platform's auto-fill default; safe and deployable, but **not required**) |
143
144> **Important — honor the explicit category in the prompt.** If the prompt says "ACCESS policy rule that denies …" or "GOVERNANCE policy rule that permits …", emit exactly that category. Do not silently swap to the auto-fill default just because effect is Forbid (or Permit). The platform accepts both. The agent must not override the user's stated intent.
145
146**Scope × category compatibility** — any combination outside this matrix throws `INVALIDFORCATEGORY`:
147
148| | `ACCESS` | `GOVERNANCE` | `TRANSFORM` | `RECORD` |
149|------------|:--------:|:------------:|:-----------:|:--------:|
150| `ANY` | Yes | Yes | No | No |
151| `DATASPACE`| Yes | Yes | No | No |
152| `FIELD` | Yes | Yes | Yes | No |
153| `RECORD` | No | No | No | Yes |
154| `SPAN` | No | No | Yes | No |
155
156---
157
158## 5. Condition Patterns (Quick Reference)
159
160Every `<conditions>` block needs **all four**: `<clause>`, `<operator>`, one path element, and the value.
161
162| Goal | path element | operator | value |
163|------|-------------|----------|-------|
164| Resource has tag | `<resourcePath>TAG</resourcePath>` | `CONTAINS_ANY` | `<valueReferenceType>CUSTOM_TAG` \| `STANDARD_TAG</valueReferenceType>` |
165| Resource has classification | `<resourcePath>CLASSIFICATION</resourcePath>` | `CONTAINS_ANY` | `CUSTOM_CLASSIFICATION` \| `STANDARD_CLASSIFICATION` |
166| Principal has permission | `<principalPath>ASSIGNED_PERMISSIONS_PATH</principalPath>` | `CONTAINS_ANY` \| `CONTAINS_NONE` | `<valueReferenceType>CUSTOM_PERMISSION</valueReferenceType>` |
167| Session in dataspace | `<contextPath>SESSION_DATASPACE</contextPath>` | `CONTAINS_ANY` | `<valueReferenceType>DATASPACE</valueReferenceType>` |
168| Record field = user attribute | `<resourcePath>RECORDFIELD</resourcePath>` + `<valueDomain>Schema:field</valueDomain>` | `EQUALS` | `<valuePrincipalPath>USER_ID` \| `ORGANIZATION_ID` \| `USER_ROLE_ID</valuePrincipalPath>` |
169| Entity type check | `<resourcePath>ENTITYTYPE</resourcePath>` | `IS` | `<valueString>{"t":"Text","v":"FIELD"}</valueString>` |
170
171`<conjunctionExpression>` is 1-indexed prefix notation: `1`, `(AND 1 2)`, `(OR 1 2)`, `(AND (OR 1 2) (AND 3))`. A bare top-level index like `1` is valid for **deploy** but **crashes the Data Governance Policy Builder UI** — see §7 if UI editability matters.
172
173For full path enums (`RulePrincipalPathType`, `RuleResourcePathType`, `RuleContextPathType`), operators, and JSON expressions (PROJECTION / ARGLIST / SOQLTARGETLISTEXPR), see [`references/policy-schema-full.md`](references/policy-schema-full.md).
174For copy-paste templates for all policy variants, see [`references/templates.md`](references/templates.md).
175
176---
177
178## 6. Validation Guardrails
179
1801. Every `<conditions>` needs an `<operator>`. Missing operator → reject.
1812. Every `<conditions>` needs at least one path element (`<resourcePath>`, `<principalPath>`, `<contextPath>`, or `<valueDomain>`).
1823. `<contextPath>` is exclusively `SESSION_DATASPACE`. Never put a resource path value there.
1834. Scope × category must be in the §4 matrix. Common offenders: ACCESS/GOVERNANCE + RECORD scope; RECORD + ANY/FIELD scope; TRANSFORM + ANY/RECORD scope. (Effect is independent of category except for TRANSFORM — see §4.)
1845. `<resourceTransform>` and `effect=Transform` are coupled. Transform effect needs a resourceTransform. Permit/Forbid must not have one.
1856. `<policyRuleResourceDomains>` is **required** for RECORD (RLS) and FIELD-scope TRANSFORM; **forbidden** on ACCESS/GOVERNANCE.
1867. `<conjunctionExpression>` indices must match actual `<conditions>` count. Off-by-one → reject.
1878. `<clause>` inside `<conditions>` must match the wrapper (`WHEN` inside `<when…>`, `UNLESS` inside `<unless…>`).
1889. JSON literals in `<valueString>` must escape `"` to `"`. Wrong escaping silently corrupts the literal.
18910. Reference targets (`<valueReference>`, `<resourceDomain>`) must exist in the target org at deploy time.
19011. `SCALAR_ATTRIBUTE` / `PLURAL_ATTRIBUTE` are not in `RulePrincipalPathType` — not in MDAPI contract. Use a runtime RuleProvider for those shapes.
19112. `IDENTIFIED_RECORD` is not authorable via MDAPI — `SESSION_CONSUMER_ID` not in `RuleContextPathType`.
19213. Standard tag/classification dev names are fully-qualified dotted paths (e.g. `DataGovernanceTags.ExternalData.Visibility.Public`). Retrieve an existing rule to get the exact string before authoring.
19314. Min API versions: `PolicyRuleDefinition` = 64.0; `PolicyJsonExpression` conditions = 66.0; `<replicated>` = 260+; `<builderCompatible>` / `<builderValidated>` = 262+.
194
195> **Note on `<conjunctionExpression>` shape:** A bare top-level index (e.g. `<conjunctionExpression>1</conjunctionExpression>`) deploys cleanly — the server-side parser accepts bare tokens at the top level. It is **not** a deploy-time validation error. It does, however, crash the Data Governance Policy Builder UI on load — see §7.
196
197---
198
199## 7. UI Compatibility — Core Rules
200
201The Data Governance Policy Builder edits a **strict subset** of the MDAPI. Default goal: produce UI-compatible policies. Always confirm with the operator before producing API-only XML.
202
203**Hard blockers** — any of these make the policy uneditable (and several crash the builder on load):
204
205- **Missing OR-of-ENTITYTYPE clause on ACCESS/GOVERNANCE rules** → hard crash: `Cannot use 'in' operator to search for 'Permit' in undefined`. Required even when paired with `TupleRead` (where it's functionally redundant at runtime). Must include `IS` conditions for `{"t":"Text","v":"OBJECT"}` and `{"t":"Text","v":"FIELD"}`.
206- **Bare top-level condition index** in `<conjunctionExpression>` (e.g. `1`, or `(AND (OR 1 2) 3)`) → crash on builder load in `buildCriteria`. Deploy is unaffected, but the policy is uneditable in the UI. Always wrap: `(AND 1)` for a single condition; `(AND (OR 1 2) (AND 3))` instead of `(AND (OR 1 2) 3)`.
207- `category = ACCESS_POLICY_RULE_DEFINITION` + `effect = Forbid` → the **Data Governance Policy Builder UI** (not MDAPI) collapses it to GOVERNANCE on save; round-trip via the builder will rewrite the category. MDAPI deploy is unaffected — the original ACCESS+Forbid combination is valid and deploys without modification. If your goal is UI round-trippability, prefer GOVERNANCE for Forbid; if the source of truth is MDAPI, ACCESS+Forbid is fine.
208- Any `<unlessPolicyRuleDefinitionClauseConjunction>` block → silently dropped on first UI save.
209- More than one `<action>` → only the first is kept.
210- `ruleConsumer` ≠ `DATACLOUD` → UI hardcodes DATACLOUD on save.
211- Top-level `(OR 1 2)` conjunction → triggers `// ERROR: Unsupported rule!` path, rule silently dropped.
212
213**UI-compatible "unless" rewrite:**
214
215| Author intent | UI-compatible shape |
216|---|---|
217| `unless principal has permission X` | `WHEN ASSIGNED_PERMISSIONS_PATH CONTAINS_NONE X` |
218| `unless resource has tag X` | `WHEN TAG CONTAINS_NONE X` |
219| `unless record field = value` | `WHEN RECORDFIELD NOT_EQUALS value` |
220
221For the full UI-compatibility checklist, round-trip rules, and operator support matrix, see [`references/ui-compatibility.md`](references/ui-compatibility.md).
222
223---
224
225## 8. Authoring Workflow
226
2271. **Start from the closest template** in [`references/templates.md`](references/templates.md) — modify from there, don't start blank.
2282. **Pick category first** (§4). Category fixes effect, resourceScopeType, and whether policyRuleResourceDomains/resourceTransform are required.
2293. **Lay out the bare rule**: top-level fields only, no conditions. Match the category template in [`references/templates.md`](references/templates.md).
2304. **Add conditions one at a time**, each with all four anchors: `<clause>`, `<operator>`, one path element, and the value.
2315. **Update `<conjunctionExpression>`** — 1-indexed prefix notation. Bare top-level index (e.g. `1`) deploys but breaks the UI; wrap as `(AND 1)` if UI editability matters (§7).
2326. **Run the UI-compatibility check** (§7 / [`references/ui-compatibility.md`](references/ui-compatibility.md)). If any item trips, attempt the "unless" rewrite first; if not possible, get explicit operator confirmation before continuing.
2337. **Update `package.xml`** — list each `<members>` for both types.
2348. **Set `<builderCompatible>`** on the set to `true` if §7 checklist passes; `false` if intentionally API-only.
2359. **Sanity-check against §6 (guardrails)** before considering done.
23610. **Validate with dry-run** before any non-dry deploy to a persistent org. Surface errors using the error reference in [`references/deploy-errors.md`](references/deploy-errors.md).
237
238**Three-layer correctness check** before done:
239- **Runtime enforcement** — does the rule enforce what's intended? (action choice, condition shape)
240- **MDAPI deploy validity** — does it deploy? (§6 guardrails, scope×category, tag dev names, org perms)
241- **UI editability** — can the builder render and re-save it? (§7 checklist, OR-of-ENTITYTYPE requirement)
242
243---
244
245## 9. Output Hygiene — What the Agent Must NOT Say to the User
246
247The agent's user-facing chat response accompanies every generated file. Customers should never see internal engine or implementation details.
248
249- **Do NOT name the internal evaluation engine** in user-facing text — including but not limited to `Cedar`, `policy engine`, `AuthZ engine`, `evaluation engine`, `Rego`, `OPA`, or similar. The customer-facing surface is *Data Governance*, *Policy Builder*, *Data Cloud Governance* — use those terms only.
250- **Do NOT emit trailing "How it works at runtime" narratives** that describe evaluation flow, principal-resource matching semantics, or engine-internal condition ordering. The generated file is the artifact; a one-line summary of what deployed is enough. If the user explicitly asks how enforcement works, describe it in product terms (e.g. "Data Governance denies the read when …"), never in engine terms.
251- **Do NOT name internal packages, source directories, Java class names, method names, or line-number references** in user-facing text. Internal implementation identifiers are not customer-facing; refer to platform behavior in product terms only ("the server validates …", "Data Governance rejects …").
252- **Do NOT explain auto-fill / default-fill / fallback semantics** unless the user asks. Ship the rule; surface constraints only when they affect what the user has to do next (e.g. "the DMO tag must exist before deploy").
253
254If the user needs more context, they'll ask — respond then, in product language.
255
256---
257
258## Reference Docs
259
260| Detail | File |
261|--------|------|
262| Full path enums, operators, value sets, JSON expressions (PROJECTION / ARGLIST / SOQLTARGETLISTEXPR) | [`references/policy-schema-full.md`](references/policy-schema-full.md) |
263| Copy-paste templates — index at [`references/templates.md`](references/templates.md); per-variant: [`templates-access.md`](references/templates-access.md), [`templates-record.md`](references/templates-record.md), [`templates-transform.md`](references/templates-transform.md), [`templates-advanced.md`](references/templates-advanced.md) |
264| Full UI-compatibility checklist, round-trip rules, operator/path support matrix | [`references/ui-compatibility.md`](references/ui-compatibility.md) |