{
 "slug": "ccpa-admt-regulations-californias-automated-decision-making-rules",
 "topic_id": "TOPIC-053",
 "cluster": "Regulatory & Sovereign AI",
 "tier": "Tier B",
 "title": "What California's automated decision rules ask of human review",
 "summary": "California's ADMT framework gives consumers rights around automated decision-making. Answering a consumer's request about human review requires records most businesses do not keep.",
 "lede": "The operative phrase is not that a human was involved. It is that the review was meaningful, performed by someone with authority to change the outcome — and that is a claim a business has to be able to support.",
 "date": "2025-11-05",
 "category": "Compliance",
 "author_id": "nadia-ferreira-strand",
 "tags": [
  "CCPA",
  "ADMT",
  "California privacy",
  "automated decisions",
  "human review",
  "consumer rights"
 ],
 "image_title": "California Automated Decision Review",
 "schema": "Article",
 "key_takeaways": [
  "Consumer rights around automated decisions create per-decision questions, which need per-decision records.",
  "'Meaningful human review' generally implies a reviewer who understood the output and had authority to change it — both of which need evidencing.",
  "A record capturing the rendered output, the reviewer's identity and their rationale answers the question directly."
 ],
 "body": [
  {
   "type": "h2",
   "text": "Why this is harder than a policy"
  },
  {
   "type": "diagram",
   "kind": "flow",
   "alt": "A consumer request is a retrieval if the records exist and an investigation if they do not",
   "caption": "Programme-level documents answer none of these. The question attaches to one decision about one person.",
   "nodes": [
    {
     "label": "Which decision, and when",
     "note": "retrieval"
    },
    {
     "label": "Automated, or reviewed?",
     "note": "status field — usually present"
    },
    {
     "label": "Who reviewed, in what role?",
     "note": "usually an account id",
     "bad": true
    },
    {
     "label": "What were they shown?",
     "note": "usually nothing",
     "bad": true
    },
    {
     "label": "Was the outcome changed?",
     "note": "override rate is itself evidence"
    }
   ]
  },
  {
   "type": "p",
   "html": "Most privacy obligations are satisfied at the programme level: a notice, a process, a documented retention schedule. Automated decision rights are different because they attach to a specific decision about a specific person."
  },
  {
   "type": "p",
   "html": "A consumer asking about the decision made about them in March is asking a question about one record. A well-written policy does not answer it."
  },
  {
   "type": "h2",
   "text": "What 'meaningful' tends to require"
  },
  {
   "type": "table",
   "head": [
    "Element",
    "Implication for records"
   ],
   "rows": [
    [
     "A human reviewed the output",
     "Identify the natural person, not an account"
    ],
    [
     "They had authority to change it",
     "Show the reviewer's role permitted a different outcome"
    ],
    [
     "They considered the individual's circumstances",
     "Capture what was presented and any rationale"
    ],
    [
     "The review was not a formality",
     "Overrides actually occur; the rate is itself evidence"
    ]
   ]
  },
  {
   "type": "p",
   "html": "The last row is worth dwelling on. A review process with a zero per cent override rate across thousands of decisions invites the conclusion that the review was nominal. Businesses should know their override rate before a regulator calculates it for them."
  },
  {
   "type": "h2",
   "text": "The gap in typical systems"
  },
  {
   "type": "p",
   "html": "Review interfaces in decisioning systems usually write a status field and an actor identifier. Three things are typically absent."
  },
  {
   "type": "ol",
   "items": [
    "<strong style=\"font-weight:600\">What was shown.</strong> The reviewer saw a screen. The screen's contents are not recorded, so what they considered cannot be reconstructed.",
    "<strong style=\"font-weight:600\">Who the person was.</strong> An account identifier resolves to an account. Establishing a natural person behind it at that moment is a separate step.",
    "<strong style=\"font-weight:600\">Why.</strong> Free-text rationale is often optional and therefore usually empty."
   ]
  },
  {
   "type": "h2",
   "text": "A record that answers the consumer's question"
  },
  {
   "type": "code",
   "text": "{\n  \"decision_id\": \"D-2026-88213\",\n  \"subject_ref\": \"[pseudonymous reference]\",\n  \"automated_output\": {\n    \"outcome\": \"decline\",\n    \"principal_factors\": [\"payment_history\", \"utilisation\", \"tenure\"]\n  },\n  \"review\": {\n    \"rendered_digest\": \"sha256:9c1f...a83e\",\n    \"reviewer\": \"[named individual]\",\n    \"reviewer_role\": \"Senior Underwriter — authorised to override\",\n    \"decision\": \"upheld\",\n    \"rationale\": \"[free text]\",\n    \"reviewed_at\": \"2026-05-19T10:14:02Z\",\n    \"dwell_seconds\": 94\n  },\n  \"signature\": \"...\",\n  \"credential\": { \"user_verified\": true }\n}"
  },
  {
   "type": "p",
   "html": "A note on <code>dwell_seconds</code>: it is useful and easily over-read. A short dwell on a clear-cut case is appropriate, and a long dwell may mean the reviewer stepped away. It is context for a conversation, not a metric to enforce."
  },
  {
   "type": "h2",
   "text": "Responding to a request"
  },
  {
   "type": "p",
   "html": "With records of this shape, a consumer request becomes a retrieval rather than an investigation."
  },
  {
   "type": "ul",
   "items": [
    "Which decision, and when",
    "Whether it was fully automated or reviewed",
    "Who reviewed it and in what role",
    "What the reviewer was shown and what they concluded",
    "Whether the outcome was changed"
   ]
  },
  {
   "type": "p",
   "html": "Without them, responding means reconstructing from logs and asking people what they remember about a case from four months ago, which is both expensive and unconvincing."
  },
  {
   "type": "h2",
   "text": "Interaction with other frameworks"
  },
  {
   "type": "p",
   "html": "Businesses subject to several regimes should not build separate records for each."
  },
  {
   "type": "table",
   "head": [
    "Framework",
    "Overlapping demand"
   ],
   "rows": [
    [
     "California ADMT rules",
     "Meaningful human review, per decision"
    ],
    [
     "GDPR Article 22",
     "Human intervention in solely automated decisions"
    ],
    [
     "EU AI Act Article 14",
     "Oversight by natural persons, with records"
    ],
    [
     "Sector lending and insurance rules",
     "Adverse action reasoning and reviewer accountability"
    ],
    [
     "State AI acts",
     "Reviewer evaluation before adverse decisions"
    ]
   ]
  },
  {
   "type": "p",
   "html": "The union of these is roughly one record: who reviewed, what they saw, what authority they had, what they decided and why. Build that once."
  },
  {
   "type": "h2",
   "text": "A practical starting point"
  },
  {
   "type": "p",
   "html": "Two changes, in order. First, capture the rendered output's digest at every review point — no authentication change required, and it is the element that makes every other record interpretable. Second, make rationale mandatory on overrides, where the question is most likely to be asked."
  },
  {
   "type": "p",
   "html": "Signatures come third, on the decisions with legal or significant effect. Sequencing this way means each step is independently useful, which matters because regulatory timelines move."
  },
  {
   "type": "p",
   "html": "This describes regulatory structure at a general level and is not legal advice. Applicability, definitions and timing are specific to your business; take them to counsel."
  },
  {
   "type": "h2",
   "text": "The override rate is evidence about you"
  },
  {
   "type": "p",
   "html": "A review process with a zero per cent override rate across thousands of decisions invites the conclusion that the review was nominal. Businesses should know their override rate before a regulator computes it for them, and should be able to explain the shape of it."
  },
  {
   "type": "table",
   "caption": "What “meaningful” tends to require",
   "head": [
    "Element",
    "Record implication"
   ],
   "rows": [
    [
     "A human reviewed the output",
     "Identify the natural person, not an account"
    ],
    [
     "They had authority to change it",
     "Show the role permitted a different outcome"
    ],
    [
     "They considered the circumstances",
     "Capture what was presented, and any rationale"
    ],
    [
     "The review was not a formality",
     "Overrides actually occur, at a defensible rate"
    ]
   ]
  },
  {
   "type": "h2",
   "text": "Objections and honest limits"
  },
  {
   "type": "p",
   "html": "<strong style=\"font-weight:600\">“Dwell time proves engagement.”</strong> It does not. A short dwell on a clear-cut case is appropriate and a long one may mean the reviewer stepped away. Capture it as context for a conversation, never enforce it as a threshold."
  },
  {
   "type": "p",
   "html": "<strong style=\"font-weight:600\">“We need separate records for each regime.”</strong> No. California's ADMT rules, GDPR Article 22, the EU AI Act and sector lending rules converge on roughly one record: who reviewed, what they saw, their authority, the decision and why."
  }
 ],
 "faq": [
  {
   "q": "What makes human review 'meaningful'?",
   "a": "Generally that a person understood the output, had authority to change it, considered the individual's circumstances, and that the review is not a formality."
  },
  {
   "q": "Is a zero override rate a problem?",
   "a": "It invites the conclusion that review was nominal. Businesses should know their override rate before a regulator computes it."
  },
  {
   "q": "Should dwell time be enforced as a metric?",
   "a": "No. A short dwell on a clear case is appropriate and a long one may mean the reviewer stepped away. It is context, not a threshold."
  },
  {
   "q": "Do we need separate records for each framework?",
   "a": "No. The union of these regimes is roughly one record: who reviewed, what they saw, their authority, their decision and why."
  },
  {
   "q": "What makes human review meaningful?",
   "a": "Generally that a person understood the output, had authority to change it, considered the individual's circumstances, and that the review is not a formality."
  },
  {
   "q": "Do we need separate records per framework?",
   "a": "No. The union of the regimes is roughly one record, and building it once is materially cheaper."
  }
 ],
 "sources": [
  {
   "t": "CPPA — CCPA regulations including ADMT",
   "u": "https://cppa.ca.gov/regulations/"
  },
  {
   "t": "GDPR Article 22 — automated individual decision-making",
   "u": "https://eur-lex.europa.eu/eli/reg/2016/679/oj#d1e2838-1-1"
  },
  {
   "t": "Regulation (EU) 2024/1689 (AI Act) — consolidated text",
   "u": "https://eur-lex.europa.eu/eli/reg/2024/1689/oj"
  },
  {
   "t": "Sector guidance on adverse action notices and reviewer accountability."
  }
 ],
 "related": [
  {
   "slug": "eu-ai-act-article-14-human-oversight-playbook",
   "title": "Article 14 asks who the natural person was",
   "category": "Compliance"
  },
  {
   "slug": "colorado-sb-26-189-implementing-algorithmic-discrimination-protections",
   "title": "Algorithmic discrimination and adverse action proof",
   "category": "Compliance"
  },
  {
   "slug": "determination-receipt",
   "title": "Prior authorization by model",
   "category": "Definitional"
  }
 ],
 "image": "https://cdn.twc.sh/images/igcache/California%20Automated%20Decision%20Review/1200_630/blog.jpg",
 "wordcount": 989,
 "url": "/blog/ccpa-admt-regulations-californias-automated-decision-making-rules.html",
 "reading_time": "4 min read",
 "meta_description": "California's ADMT rules give consumers rights around automated decisions. Answering a request about human review needs records most firms lack.",
 "hub": {
  "slug": "topics/ai-oversight-regulation",
  "title": "AI oversight and regulation"
 },
 "answer": "Per-decision ones. A consumer asking about the decision made about them in March is asking about a single record. “Meaningful human review” generally implies a reviewer who understood the output, had authority to change it, and considered the individual's circumstances — each of which needs evidencing.",
 "answer_q": "What records does California's ADMT framework require for human review?",
 "entities": [
  {
   "name": "California Privacy Protection Agency",
   "type": "GovernmentOrganization",
   "url": "https://cppa.ca.gov/regulations/",
   "primary": true
  }
 ],
 "glossary": [
  {
   "term": "ADMT",
   "def": "Automated decision-making technology: the category California's rules attach opt-out and review rights to."
  },
  {
   "term": "Meaningful human review",
   "def": "Review by a person who understood the output and could have decided otherwise — as distinct from a confirmation step."
  },
  {
   "term": "Significant effect",
   "def": "A decision materially affecting a person's rights, finances or opportunities. The trigger for the strongest obligations across most regimes."
  }
 ],
 "checklist": {
  "title": "A practical starting point",
  "id": "start",
  "desc": "Three changes in dependency order.",
  "steps": [
   {
    "name": "Capture a digest of the rendered output.",
    "text": "No authentication change required, and it is the element that makes every other record interpretable."
   },
   {
    "name": "Make rationale mandatory on overrides.",
    "text": "Where the question is most likely to be asked."
   },
   {
    "name": "Add signatures on significant-effect decisions.",
    "text": "Legal or similarly significant effects, which is a minority of volume."
   }
  ]
 },
 "cta": {
  "title": "Where this fits in Manav",
  "html": "Manav's review receipt carries the named reviewer, their authority, a digest of exactly what was rendered, the decision and the rationale — which is the union of what California, GDPR Article 22 and the EU AI Act each ask for.",
  "href": "../docs.html",
  "label": "See review records"
 }
}