{
  "format": "t2k.cash-homebuyer-showcase.v1",
  "core": {
    "package": "@t2kai/core",
    "version": "0.7.0",
    "buildHash": "164179e382b1c3198a5531f0ea357daaac21f1ce5dc206bd2a3c82fad5afe631",
    "sourceCommit": "d2031106f4f444cc0eebc7666555d7c9dc57af61",
    "runtimeVersion": "t2k.graph-runtime.v1"
  },
  "scope": {
    "data": "synthetic",
    "mta": "computed_policy_credit",
    "core": "precomputed_core_receipts",
    "activation": "none",
    "authority": "not_authorized",
    "coverage": "complete_only_for_the_authored_source_ledger",
    "modelCallsInBrowser": 0
  },
  "sourceHashes": {
    "fixtures.mjs": "647b7d39b193843cf3f26ed5a9fafcfc109e7be470ac1f5c9e7cd42affffbd0e",
    "engine.mjs": "7a1641752ff90c670734ceb85f2e76f9901ef0fcb5dfdac7f9abdfe77f56943a",
    "run.mjs": "84da2bbeacf29b7f5082308fac0dca549de915c24110d3bfefe3c33506756eab"
  },
  "ontology": {
    "mode": "deployment",
    "roots": [
      {
        "ontologyId": "demo.cash-homebuyer",
        "version": "1.0.0"
      }
    ],
    "manifests": [
      {
        "manifestType": "t2k.ontology-pack",
        "manifestVersion": "1.0",
        "ontologyId": "demo.cash-homebuyer",
        "ontologyVersion": "1.0.0",
        "label": "Cash home buyer measurement example",
        "description": "Synthetic seller acquisition evidence; policy credit is not causal lift.",
        "packKind": "workflow",
        "status": "accepted",
        "scope": {
          "domain": "synthetic_seller_acquisition",
          "description": "Query source-normalized touch records; no purchasing or advertising authority."
        },
        "objectTypes": [
          {
            "id": "touchpoint",
            "label": "Source touch record",
            "family": "Work",
            "nodeKind": "artifact",
            "purpose": "An observed interaction or a record of a seller's report, preserving its evidence class.",
            "identity": [
              "event_id"
            ],
            "properties": [
              {
                "id": "property_id",
                "valueType": "string",
                "required": true,
                "description": "Normalized source field property_id.",
                "authorityDomain": "measurement",
                "temporal": true
              },
              {
                "id": "opportunity_id",
                "valueType": "string",
                "required": true,
                "description": "Normalized source field opportunity_id.",
                "authorityDomain": "measurement",
                "temporal": true
              },
              {
                "id": "seller_group_id",
                "valueType": "string",
                "required": true,
                "description": "Normalized source field seller_group_id.",
                "authorityDomain": "measurement",
                "temporal": true
              },
              {
                "id": "channel_id",
                "valueType": "string",
                "required": true,
                "description": "Normalized source field channel_id.",
                "authorityDomain": "measurement",
                "temporal": true
              },
              {
                "id": "event_at_ms",
                "valueType": "number",
                "required": true,
                "description": "Normalized source field event_at_ms.",
                "authorityDomain": "measurement",
                "temporal": true
              },
              {
                "id": "evidence_rank",
                "valueType": "number",
                "required": true,
                "description": "Normalized source field evidence_rank.",
                "authorityDomain": "measurement",
                "temporal": true
              },
              {
                "id": "marketing_touch",
                "valueType": "boolean",
                "required": true,
                "description": "Normalized source field marketing_touch.",
                "authorityDomain": "measurement",
                "temporal": true
              }
            ]
          }
        ],
        "reasoningFunctions": [
          {
            "id": "eligible_touches",
            "input": "Opportunity, seller group, time boundaries and admitted evidence rank.",
            "output": "Eligible source records with channel and time.",
            "humanCheckpoint": "Eligibility and allocated credit do not establish incrementality or spending authority."
          }
        ]
      }
    ]
  },
  "definition": {
    "artifactVersion": "t2k.graph-function.v1",
    "functionRef": "demo.cash-homebuyer:reasoning_function:eligible_touches",
    "ontologyResolutionHash": "c1f42aba94b41cc81e2ba87abe71a6263a91a15226cc24ee279c2183f576533f",
    "inputs": {
      "property": "string",
      "opportunity": "string",
      "sellerGroup": "string",
      "windowStart": "number",
      "qualificationAt": "number",
      "admittedRank": "number"
    },
    "output": {
      "kind": "rows",
      "fields": {
        "touchId": "string",
        "channelId": "string",
        "eventAtMs": "number",
        "evidenceRank": "number"
      }
    },
    "maxAgeSeconds": 31622400,
    "limits": {
      "maxRows": 100,
      "maxWork": 10000
    },
    "steps": [
      {
        "id": "touches",
        "op": "lookup",
        "typeRef": "demo.cash-homebuyer:touchpoint",
        "as": "touch"
      },
      {
        "id": "eligible",
        "op": "filter",
        "from": "touches",
        "all": [
          {
            "left": {
              "binding": "touch",
              "property": "demo.cash-homebuyer:touchpoint.property_id"
            },
            "operator": "eq",
            "right": {
              "argument": "property"
            }
          },
          {
            "left": {
              "binding": "touch",
              "property": "demo.cash-homebuyer:touchpoint.opportunity_id"
            },
            "operator": "eq",
            "right": {
              "argument": "opportunity"
            }
          },
          {
            "left": {
              "binding": "touch",
              "property": "demo.cash-homebuyer:touchpoint.seller_group_id"
            },
            "operator": "eq",
            "right": {
              "argument": "sellerGroup"
            }
          },
          {
            "left": {
              "binding": "touch",
              "property": "demo.cash-homebuyer:touchpoint.marketing_touch"
            },
            "operator": "eq",
            "right": {
              "literal": true
            }
          },
          {
            "left": {
              "binding": "touch",
              "property": "demo.cash-homebuyer:touchpoint.evidence_rank"
            },
            "operator": "lte",
            "right": {
              "argument": "admittedRank"
            }
          },
          {
            "left": {
              "binding": "touch",
              "property": "demo.cash-homebuyer:touchpoint.event_at_ms"
            },
            "operator": "gte",
            "right": {
              "argument": "windowStart"
            }
          },
          {
            "left": {
              "binding": "touch",
              "property": "demo.cash-homebuyer:touchpoint.event_at_ms"
            },
            "operator": "lte",
            "right": {
              "argument": "qualificationAt"
            }
          }
        ]
      },
      {
        "id": "rows",
        "op": "project",
        "from": "eligible",
        "fields": {
          "touchId": {
            "entity": "touch"
          },
          "channelId": {
            "binding": "touch",
            "property": "demo.cash-homebuyer:touchpoint.channel_id"
          },
          "eventAtMs": {
            "binding": "touch",
            "property": "demo.cash-homebuyer:touchpoint.event_at_ms"
          },
          "evidenceRank": {
            "binding": "touch",
            "property": "demo.cash-homebuyer:touchpoint.evidence_rank"
          }
        }
      }
    ],
    "return": "rows"
  },
  "policies": [
    {
      "id": "first",
      "label": "First touch",
      "description": "Assign one opportunity's credit to its earliest eligible touch."
    },
    {
      "id": "last",
      "label": "Last touch",
      "description": "Assign credit to the last eligible touch before first qualification."
    },
    {
      "id": "linear",
      "label": "Linear",
      "description": "Share credit equally across distinct eligible channels. Repeated touches do not increase a channel's share."
    }
  ],
  "evidencePolicies": [
    {
      "id": "observed",
      "label": "Observed interactions",
      "description": "Admit recorded interactions with an evidenced opportunity association. Mailing activity and seller reports remain visible but receive no credit."
    },
    {
      "id": "reported",
      "label": "Include seller reports",
      "description": "Also admit reviewed seller-reported influence as reported evidence. This changes policy credit, not proof of causality."
    }
  ],
  "cutoffs": [
    {
      "id": "contract",
      "label": "Contract signed · May 15",
      "asOf": "2026-05-15T23:59:59Z"
    },
    {
      "id": "acquired",
      "label": "Purchase closed · June 15",
      "asOf": "2026-06-15T23:59:59Z"
    },
    {
      "id": "resale",
      "label": "Resale period · September 15",
      "asOf": "2026-09-15T23:59:59Z"
    }
  ],
  "scenarios": [
    {
      "id": "supported",
      "label": "Supported journey",
      "title": "Two search touches. One seller opportunity.",
      "description": "A homeowner clicks nonbrand search, returns through a brand ad, and calls. Each interaction is linked to this seller-property opportunity."
    },
    {
      "id": "mail",
      "label": "Mail & reported influence",
      "title": "A mailing record and a seller's account answer different questions.",
      "description": "The campaign log proves dispatch. The seller later reports seeing the postcard. Switch evidence policies to see how that report changes credit."
    },
    {
      "id": "duplicate",
      "label": "Several calls, one seller",
      "title": "Three call records do not mean three acquisitions.",
      "description": "A repeated webhook, forwarded call leg, and coowner callback remain traceable. They add no new marketing touches or seller-property opportunities."
    },
    {
      "id": "mapping",
      "label": "Missing source mapping",
      "title": "The call is real. Its channel is unresolved.",
      "description": "The historical tracking-number assignment is missing. Known search clicks remain evidenced, but this policy withholds final allocation until the source gap is reviewed."
    },
    {
      "id": "repeat",
      "label": "Another acquisition attempt",
      "title": "The property is the same. The opportunity is different.",
      "description": "An earlier owner's referral belongs to a prior acquisition attempt. It cannot silently become this seller's first touch."
    },
    {
      "id": "followup",
      "label": "Sales follow-up",
      "title": "Follow-up supports the sale without becoming a new source.",
      "description": "Negotiation calls and appointment reminders after qualification stay on the timeline. They do not overwrite the source of the qualified opportunity."
    },
    {
      "id": "canceled",
      "label": "Contract canceled",
      "title": "A signature does not establish a completed purchase.",
      "description": "A contract signed in May is canceled later that month. Advance the reporting cutoff to see the cancellation without inventing an acquisition or resale."
    },
    {
      "id": "missing-costs",
      "label": "Resale, incomplete costs",
      "title": "The resale closed. Contribution is still incomplete.",
      "description": "The final holding and transaction costs are not available by September 15. An absent cost is unknown, so a realized contribution amount is withheld."
    }
  ],
  "cases": [
    {
      "key": "supported|observed|contract|first",
      "scenarioId": "supported",
      "evidencePolicyId": "observed",
      "cutoffId": "contract",
      "policyId": "first",
      "proofKey": "supported|observed|contract",
      "asOf": "2026-05-15T23:59:59Z",
      "status": "complete",
      "summary": "Contract signed · purchase pending. Credit describes this qualified opportunity under the selected policy; it does not establish causal lift.",
      "timeline": [
        {
          "id": "click-nonbrand",
          "at": "2026-04-03T10:00:00Z",
          "recordedAt": "2026-04-03T10:00:00Z",
          "label": "Nonbrand search ad clicked",
          "channelId": "search-nonbrand",
          "channelLabel": "Nonbrand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-nonbrand"
        },
        {
          "id": "click-brand",
          "at": "2026-04-08T11:00:00Z",
          "recordedAt": "2026-04-08T11:00:00Z",
          "label": "Brand search ad clicked",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-brand"
        },
        {
          "id": "call-1",
          "at": "2026-04-09T12:00:00Z",
          "recordedAt": "2026-04-09T12:00:00Z",
          "label": "Seller called the website number",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/call",
          "locator": "call-1"
        },
        {
          "id": "qualified-1",
          "at": "2026-04-09T15:00:00Z",
          "recordedAt": "2026-04-09T15:00:00Z",
          "label": "Seller-property opportunity qualified",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/qualified",
          "locator": "qualified-1"
        },
        {
          "id": "assessment-1",
          "at": "2026-04-18T14:00:00Z",
          "recordedAt": "2026-04-18T14:00:00Z",
          "label": "Property assessment completed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/assessment",
          "locator": "assessment-1"
        },
        {
          "id": "offer-1",
          "at": "2026-04-24T10:00:00Z",
          "recordedAt": "2026-04-24T10:00:00Z",
          "label": "Written purchase offer delivered",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/offer",
          "locator": "offer-1"
        },
        {
          "id": "contract-1",
          "at": "2026-05-02T12:00:00Z",
          "recordedAt": "2026-05-02T12:00:00Z",
          "label": "Acquisition contract signed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/contract",
          "locator": "contract-1"
        },
        {
          "id": "marketing-cost",
          "at": "2026-05-03T12:00:00Z",
          "recordedAt": "2026-05-03T12:00:00Z",
          "label": "Acquisition marketing cost allocated",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/cost",
          "locator": "marketing-cost"
        }
      ],
      "credit": [
        {
          "channelId": "search-nonbrand",
          "label": "Nonbrand paid search",
          "weight": 1,
          "percentage": 100,
          "touchIds": [
            "click-nonbrand"
          ]
        }
      ],
      "outcome": {
        "qualifiedOpportunities": 1,
        "contracts": 1,
        "acquisitions": 0,
        "resales": 0,
        "canceled": false,
        "stage": "contract",
        "label": "Contract signed · purchase pending",
        "capitalDeployed": null,
        "resaleProceeds": null,
        "contributionBeforeMarketing": null,
        "marketingAllocation": 3000,
        "contributionAfterMarketing": null,
        "missingCosts": [
          "renovation",
          "holdingAndTransaction"
        ],
        "contributionStatus": "pending",
        "currency": "USD",
        "sourceIds": [
          "qualified-1",
          "contract-1",
          "marketing-cost"
        ]
      },
      "issues": [],
      "creditOutcome": "qualified_seller_property_opportunity",
      "eligibleTouchIds": [
        "click-brand",
        "click-nonbrand"
      ],
      "allocationStatus": "computed",
      "policyVersion": "cash-homebuyer.first.observed.v1",
      "propertyId": "property-104",
      "opportunityId": "acquisition-204",
      "sellerGroupId": "seller-group-14",
      "receiptHash": "b2e8b1ffc041d949ba9b158c47c47298ca277b562f9fe25108d7dbb207cf8003"
    },
    {
      "key": "supported|observed|contract|last",
      "scenarioId": "supported",
      "evidencePolicyId": "observed",
      "cutoffId": "contract",
      "policyId": "last",
      "proofKey": "supported|observed|contract",
      "asOf": "2026-05-15T23:59:59Z",
      "status": "complete",
      "summary": "Contract signed · purchase pending. Credit describes this qualified opportunity under the selected policy; it does not establish causal lift.",
      "timeline": [
        {
          "id": "click-nonbrand",
          "at": "2026-04-03T10:00:00Z",
          "recordedAt": "2026-04-03T10:00:00Z",
          "label": "Nonbrand search ad clicked",
          "channelId": "search-nonbrand",
          "channelLabel": "Nonbrand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-nonbrand"
        },
        {
          "id": "click-brand",
          "at": "2026-04-08T11:00:00Z",
          "recordedAt": "2026-04-08T11:00:00Z",
          "label": "Brand search ad clicked",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-brand"
        },
        {
          "id": "call-1",
          "at": "2026-04-09T12:00:00Z",
          "recordedAt": "2026-04-09T12:00:00Z",
          "label": "Seller called the website number",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/call",
          "locator": "call-1"
        },
        {
          "id": "qualified-1",
          "at": "2026-04-09T15:00:00Z",
          "recordedAt": "2026-04-09T15:00:00Z",
          "label": "Seller-property opportunity qualified",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/qualified",
          "locator": "qualified-1"
        },
        {
          "id": "assessment-1",
          "at": "2026-04-18T14:00:00Z",
          "recordedAt": "2026-04-18T14:00:00Z",
          "label": "Property assessment completed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/assessment",
          "locator": "assessment-1"
        },
        {
          "id": "offer-1",
          "at": "2026-04-24T10:00:00Z",
          "recordedAt": "2026-04-24T10:00:00Z",
          "label": "Written purchase offer delivered",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/offer",
          "locator": "offer-1"
        },
        {
          "id": "contract-1",
          "at": "2026-05-02T12:00:00Z",
          "recordedAt": "2026-05-02T12:00:00Z",
          "label": "Acquisition contract signed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/contract",
          "locator": "contract-1"
        },
        {
          "id": "marketing-cost",
          "at": "2026-05-03T12:00:00Z",
          "recordedAt": "2026-05-03T12:00:00Z",
          "label": "Acquisition marketing cost allocated",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/cost",
          "locator": "marketing-cost"
        }
      ],
      "credit": [
        {
          "channelId": "search-brand",
          "label": "Brand paid search",
          "weight": 1,
          "percentage": 100,
          "touchIds": [
            "click-brand"
          ]
        }
      ],
      "outcome": {
        "qualifiedOpportunities": 1,
        "contracts": 1,
        "acquisitions": 0,
        "resales": 0,
        "canceled": false,
        "stage": "contract",
        "label": "Contract signed · purchase pending",
        "capitalDeployed": null,
        "resaleProceeds": null,
        "contributionBeforeMarketing": null,
        "marketingAllocation": 3000,
        "contributionAfterMarketing": null,
        "missingCosts": [
          "renovation",
          "holdingAndTransaction"
        ],
        "contributionStatus": "pending",
        "currency": "USD",
        "sourceIds": [
          "qualified-1",
          "contract-1",
          "marketing-cost"
        ]
      },
      "issues": [],
      "creditOutcome": "qualified_seller_property_opportunity",
      "eligibleTouchIds": [
        "click-brand",
        "click-nonbrand"
      ],
      "allocationStatus": "computed",
      "policyVersion": "cash-homebuyer.last.observed.v1",
      "propertyId": "property-104",
      "opportunityId": "acquisition-204",
      "sellerGroupId": "seller-group-14",
      "receiptHash": "34c71a4bcc3ba88d263394a818ae2821d676bb78edd1fa263bbca457d58db19d"
    },
    {
      "key": "supported|observed|contract|linear",
      "scenarioId": "supported",
      "evidencePolicyId": "observed",
      "cutoffId": "contract",
      "policyId": "linear",
      "proofKey": "supported|observed|contract",
      "asOf": "2026-05-15T23:59:59Z",
      "status": "complete",
      "summary": "Contract signed · purchase pending. Credit describes this qualified opportunity under the selected policy; it does not establish causal lift.",
      "timeline": [
        {
          "id": "click-nonbrand",
          "at": "2026-04-03T10:00:00Z",
          "recordedAt": "2026-04-03T10:00:00Z",
          "label": "Nonbrand search ad clicked",
          "channelId": "search-nonbrand",
          "channelLabel": "Nonbrand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-nonbrand"
        },
        {
          "id": "click-brand",
          "at": "2026-04-08T11:00:00Z",
          "recordedAt": "2026-04-08T11:00:00Z",
          "label": "Brand search ad clicked",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-brand"
        },
        {
          "id": "call-1",
          "at": "2026-04-09T12:00:00Z",
          "recordedAt": "2026-04-09T12:00:00Z",
          "label": "Seller called the website number",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/call",
          "locator": "call-1"
        },
        {
          "id": "qualified-1",
          "at": "2026-04-09T15:00:00Z",
          "recordedAt": "2026-04-09T15:00:00Z",
          "label": "Seller-property opportunity qualified",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/qualified",
          "locator": "qualified-1"
        },
        {
          "id": "assessment-1",
          "at": "2026-04-18T14:00:00Z",
          "recordedAt": "2026-04-18T14:00:00Z",
          "label": "Property assessment completed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/assessment",
          "locator": "assessment-1"
        },
        {
          "id": "offer-1",
          "at": "2026-04-24T10:00:00Z",
          "recordedAt": "2026-04-24T10:00:00Z",
          "label": "Written purchase offer delivered",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/offer",
          "locator": "offer-1"
        },
        {
          "id": "contract-1",
          "at": "2026-05-02T12:00:00Z",
          "recordedAt": "2026-05-02T12:00:00Z",
          "label": "Acquisition contract signed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/contract",
          "locator": "contract-1"
        },
        {
          "id": "marketing-cost",
          "at": "2026-05-03T12:00:00Z",
          "recordedAt": "2026-05-03T12:00:00Z",
          "label": "Acquisition marketing cost allocated",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/cost",
          "locator": "marketing-cost"
        }
      ],
      "credit": [
        {
          "channelId": "search-nonbrand",
          "label": "Nonbrand paid search",
          "weight": 0.5,
          "percentage": 50,
          "touchIds": [
            "click-nonbrand"
          ]
        },
        {
          "channelId": "search-brand",
          "label": "Brand paid search",
          "weight": 0.5,
          "percentage": 50,
          "touchIds": [
            "click-brand"
          ]
        }
      ],
      "outcome": {
        "qualifiedOpportunities": 1,
        "contracts": 1,
        "acquisitions": 0,
        "resales": 0,
        "canceled": false,
        "stage": "contract",
        "label": "Contract signed · purchase pending",
        "capitalDeployed": null,
        "resaleProceeds": null,
        "contributionBeforeMarketing": null,
        "marketingAllocation": 3000,
        "contributionAfterMarketing": null,
        "missingCosts": [
          "renovation",
          "holdingAndTransaction"
        ],
        "contributionStatus": "pending",
        "currency": "USD",
        "sourceIds": [
          "qualified-1",
          "contract-1",
          "marketing-cost"
        ]
      },
      "issues": [],
      "creditOutcome": "qualified_seller_property_opportunity",
      "eligibleTouchIds": [
        "click-brand",
        "click-nonbrand"
      ],
      "allocationStatus": "computed",
      "policyVersion": "cash-homebuyer.linear.observed.v1",
      "propertyId": "property-104",
      "opportunityId": "acquisition-204",
      "sellerGroupId": "seller-group-14",
      "receiptHash": "cebcfe142731da0160094f75df3acf8e01e5e67015f62cb151c71aaaa288ec06"
    },
    {
      "key": "supported|observed|acquired|first",
      "scenarioId": "supported",
      "evidencePolicyId": "observed",
      "cutoffId": "acquired",
      "policyId": "first",
      "proofKey": "supported|observed|acquired",
      "asOf": "2026-06-15T23:59:59Z",
      "status": "complete",
      "summary": "Purchase closed · resale pending. Credit describes this qualified opportunity under the selected policy; it does not establish causal lift.",
      "timeline": [
        {
          "id": "click-nonbrand",
          "at": "2026-04-03T10:00:00Z",
          "recordedAt": "2026-04-03T10:00:00Z",
          "label": "Nonbrand search ad clicked",
          "channelId": "search-nonbrand",
          "channelLabel": "Nonbrand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-nonbrand"
        },
        {
          "id": "click-brand",
          "at": "2026-04-08T11:00:00Z",
          "recordedAt": "2026-04-08T11:00:00Z",
          "label": "Brand search ad clicked",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-brand"
        },
        {
          "id": "call-1",
          "at": "2026-04-09T12:00:00Z",
          "recordedAt": "2026-04-09T12:00:00Z",
          "label": "Seller called the website number",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/call",
          "locator": "call-1"
        },
        {
          "id": "qualified-1",
          "at": "2026-04-09T15:00:00Z",
          "recordedAt": "2026-04-09T15:00:00Z",
          "label": "Seller-property opportunity qualified",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/qualified",
          "locator": "qualified-1"
        },
        {
          "id": "assessment-1",
          "at": "2026-04-18T14:00:00Z",
          "recordedAt": "2026-04-18T14:00:00Z",
          "label": "Property assessment completed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/assessment",
          "locator": "assessment-1"
        },
        {
          "id": "offer-1",
          "at": "2026-04-24T10:00:00Z",
          "recordedAt": "2026-04-24T10:00:00Z",
          "label": "Written purchase offer delivered",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/offer",
          "locator": "offer-1"
        },
        {
          "id": "contract-1",
          "at": "2026-05-02T12:00:00Z",
          "recordedAt": "2026-05-02T12:00:00Z",
          "label": "Acquisition contract signed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/contract",
          "locator": "contract-1"
        },
        {
          "id": "marketing-cost",
          "at": "2026-05-03T12:00:00Z",
          "recordedAt": "2026-05-03T12:00:00Z",
          "label": "Acquisition marketing cost allocated",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/cost",
          "locator": "marketing-cost"
        },
        {
          "id": "closing-1",
          "at": "2026-06-02T12:00:00Z",
          "recordedAt": "2026-06-02T12:00:00Z",
          "label": "Property purchase closed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/acquisition",
          "locator": "closing-1"
        }
      ],
      "credit": [
        {
          "channelId": "search-nonbrand",
          "label": "Nonbrand paid search",
          "weight": 1,
          "percentage": 100,
          "touchIds": [
            "click-nonbrand"
          ]
        }
      ],
      "outcome": {
        "qualifiedOpportunities": 1,
        "contracts": 1,
        "acquisitions": 1,
        "resales": 0,
        "canceled": false,
        "stage": "acquired",
        "label": "Purchase closed · resale pending",
        "capitalDeployed": 210000,
        "resaleProceeds": null,
        "contributionBeforeMarketing": null,
        "marketingAllocation": 3000,
        "contributionAfterMarketing": null,
        "missingCosts": [
          "renovation",
          "holdingAndTransaction"
        ],
        "contributionStatus": "pending",
        "currency": "USD",
        "sourceIds": [
          "qualified-1",
          "contract-1",
          "marketing-cost",
          "closing-1"
        ]
      },
      "issues": [],
      "creditOutcome": "qualified_seller_property_opportunity",
      "eligibleTouchIds": [
        "click-brand",
        "click-nonbrand"
      ],
      "allocationStatus": "computed",
      "policyVersion": "cash-homebuyer.first.observed.v1",
      "propertyId": "property-104",
      "opportunityId": "acquisition-204",
      "sellerGroupId": "seller-group-14",
      "receiptHash": "680d0e08fc3408bd57946b5a58d5d1671a49da52fa44b8b6541041d698831096"
    },
    {
      "key": "supported|observed|acquired|last",
      "scenarioId": "supported",
      "evidencePolicyId": "observed",
      "cutoffId": "acquired",
      "policyId": "last",
      "proofKey": "supported|observed|acquired",
      "asOf": "2026-06-15T23:59:59Z",
      "status": "complete",
      "summary": "Purchase closed · resale pending. Credit describes this qualified opportunity under the selected policy; it does not establish causal lift.",
      "timeline": [
        {
          "id": "click-nonbrand",
          "at": "2026-04-03T10:00:00Z",
          "recordedAt": "2026-04-03T10:00:00Z",
          "label": "Nonbrand search ad clicked",
          "channelId": "search-nonbrand",
          "channelLabel": "Nonbrand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-nonbrand"
        },
        {
          "id": "click-brand",
          "at": "2026-04-08T11:00:00Z",
          "recordedAt": "2026-04-08T11:00:00Z",
          "label": "Brand search ad clicked",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-brand"
        },
        {
          "id": "call-1",
          "at": "2026-04-09T12:00:00Z",
          "recordedAt": "2026-04-09T12:00:00Z",
          "label": "Seller called the website number",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/call",
          "locator": "call-1"
        },
        {
          "id": "qualified-1",
          "at": "2026-04-09T15:00:00Z",
          "recordedAt": "2026-04-09T15:00:00Z",
          "label": "Seller-property opportunity qualified",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/qualified",
          "locator": "qualified-1"
        },
        {
          "id": "assessment-1",
          "at": "2026-04-18T14:00:00Z",
          "recordedAt": "2026-04-18T14:00:00Z",
          "label": "Property assessment completed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/assessment",
          "locator": "assessment-1"
        },
        {
          "id": "offer-1",
          "at": "2026-04-24T10:00:00Z",
          "recordedAt": "2026-04-24T10:00:00Z",
          "label": "Written purchase offer delivered",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/offer",
          "locator": "offer-1"
        },
        {
          "id": "contract-1",
          "at": "2026-05-02T12:00:00Z",
          "recordedAt": "2026-05-02T12:00:00Z",
          "label": "Acquisition contract signed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/contract",
          "locator": "contract-1"
        },
        {
          "id": "marketing-cost",
          "at": "2026-05-03T12:00:00Z",
          "recordedAt": "2026-05-03T12:00:00Z",
          "label": "Acquisition marketing cost allocated",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/cost",
          "locator": "marketing-cost"
        },
        {
          "id": "closing-1",
          "at": "2026-06-02T12:00:00Z",
          "recordedAt": "2026-06-02T12:00:00Z",
          "label": "Property purchase closed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/acquisition",
          "locator": "closing-1"
        }
      ],
      "credit": [
        {
          "channelId": "search-brand",
          "label": "Brand paid search",
          "weight": 1,
          "percentage": 100,
          "touchIds": [
            "click-brand"
          ]
        }
      ],
      "outcome": {
        "qualifiedOpportunities": 1,
        "contracts": 1,
        "acquisitions": 1,
        "resales": 0,
        "canceled": false,
        "stage": "acquired",
        "label": "Purchase closed · resale pending",
        "capitalDeployed": 210000,
        "resaleProceeds": null,
        "contributionBeforeMarketing": null,
        "marketingAllocation": 3000,
        "contributionAfterMarketing": null,
        "missingCosts": [
          "renovation",
          "holdingAndTransaction"
        ],
        "contributionStatus": "pending",
        "currency": "USD",
        "sourceIds": [
          "qualified-1",
          "contract-1",
          "marketing-cost",
          "closing-1"
        ]
      },
      "issues": [],
      "creditOutcome": "qualified_seller_property_opportunity",
      "eligibleTouchIds": [
        "click-brand",
        "click-nonbrand"
      ],
      "allocationStatus": "computed",
      "policyVersion": "cash-homebuyer.last.observed.v1",
      "propertyId": "property-104",
      "opportunityId": "acquisition-204",
      "sellerGroupId": "seller-group-14",
      "receiptHash": "cac44db654b3d26050c88547725ef25deded161d6291cbeedccbd4ff40b2a00e"
    },
    {
      "key": "supported|observed|acquired|linear",
      "scenarioId": "supported",
      "evidencePolicyId": "observed",
      "cutoffId": "acquired",
      "policyId": "linear",
      "proofKey": "supported|observed|acquired",
      "asOf": "2026-06-15T23:59:59Z",
      "status": "complete",
      "summary": "Purchase closed · resale pending. Credit describes this qualified opportunity under the selected policy; it does not establish causal lift.",
      "timeline": [
        {
          "id": "click-nonbrand",
          "at": "2026-04-03T10:00:00Z",
          "recordedAt": "2026-04-03T10:00:00Z",
          "label": "Nonbrand search ad clicked",
          "channelId": "search-nonbrand",
          "channelLabel": "Nonbrand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-nonbrand"
        },
        {
          "id": "click-brand",
          "at": "2026-04-08T11:00:00Z",
          "recordedAt": "2026-04-08T11:00:00Z",
          "label": "Brand search ad clicked",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-brand"
        },
        {
          "id": "call-1",
          "at": "2026-04-09T12:00:00Z",
          "recordedAt": "2026-04-09T12:00:00Z",
          "label": "Seller called the website number",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/call",
          "locator": "call-1"
        },
        {
          "id": "qualified-1",
          "at": "2026-04-09T15:00:00Z",
          "recordedAt": "2026-04-09T15:00:00Z",
          "label": "Seller-property opportunity qualified",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/qualified",
          "locator": "qualified-1"
        },
        {
          "id": "assessment-1",
          "at": "2026-04-18T14:00:00Z",
          "recordedAt": "2026-04-18T14:00:00Z",
          "label": "Property assessment completed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/assessment",
          "locator": "assessment-1"
        },
        {
          "id": "offer-1",
          "at": "2026-04-24T10:00:00Z",
          "recordedAt": "2026-04-24T10:00:00Z",
          "label": "Written purchase offer delivered",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/offer",
          "locator": "offer-1"
        },
        {
          "id": "contract-1",
          "at": "2026-05-02T12:00:00Z",
          "recordedAt": "2026-05-02T12:00:00Z",
          "label": "Acquisition contract signed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/contract",
          "locator": "contract-1"
        },
        {
          "id": "marketing-cost",
          "at": "2026-05-03T12:00:00Z",
          "recordedAt": "2026-05-03T12:00:00Z",
          "label": "Acquisition marketing cost allocated",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/cost",
          "locator": "marketing-cost"
        },
        {
          "id": "closing-1",
          "at": "2026-06-02T12:00:00Z",
          "recordedAt": "2026-06-02T12:00:00Z",
          "label": "Property purchase closed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/acquisition",
          "locator": "closing-1"
        }
      ],
      "credit": [
        {
          "channelId": "search-nonbrand",
          "label": "Nonbrand paid search",
          "weight": 0.5,
          "percentage": 50,
          "touchIds": [
            "click-nonbrand"
          ]
        },
        {
          "channelId": "search-brand",
          "label": "Brand paid search",
          "weight": 0.5,
          "percentage": 50,
          "touchIds": [
            "click-brand"
          ]
        }
      ],
      "outcome": {
        "qualifiedOpportunities": 1,
        "contracts": 1,
        "acquisitions": 1,
        "resales": 0,
        "canceled": false,
        "stage": "acquired",
        "label": "Purchase closed · resale pending",
        "capitalDeployed": 210000,
        "resaleProceeds": null,
        "contributionBeforeMarketing": null,
        "marketingAllocation": 3000,
        "contributionAfterMarketing": null,
        "missingCosts": [
          "renovation",
          "holdingAndTransaction"
        ],
        "contributionStatus": "pending",
        "currency": "USD",
        "sourceIds": [
          "qualified-1",
          "contract-1",
          "marketing-cost",
          "closing-1"
        ]
      },
      "issues": [],
      "creditOutcome": "qualified_seller_property_opportunity",
      "eligibleTouchIds": [
        "click-brand",
        "click-nonbrand"
      ],
      "allocationStatus": "computed",
      "policyVersion": "cash-homebuyer.linear.observed.v1",
      "propertyId": "property-104",
      "opportunityId": "acquisition-204",
      "sellerGroupId": "seller-group-14",
      "receiptHash": "340076ea1e69216c3dad7ebd678d06264e11b28fd71b0e99af105b0fed0b9538"
    },
    {
      "key": "supported|observed|resale|first",
      "scenarioId": "supported",
      "evidencePolicyId": "observed",
      "cutoffId": "resale",
      "policyId": "first",
      "proofKey": "supported|observed|resale",
      "asOf": "2026-09-15T23:59:59Z",
      "status": "complete",
      "summary": "Resale and costs reconciled. Credit describes this qualified opportunity under the selected policy; it does not establish causal lift.",
      "timeline": [
        {
          "id": "click-nonbrand",
          "at": "2026-04-03T10:00:00Z",
          "recordedAt": "2026-04-03T10:00:00Z",
          "label": "Nonbrand search ad clicked",
          "channelId": "search-nonbrand",
          "channelLabel": "Nonbrand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-nonbrand"
        },
        {
          "id": "click-brand",
          "at": "2026-04-08T11:00:00Z",
          "recordedAt": "2026-04-08T11:00:00Z",
          "label": "Brand search ad clicked",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-brand"
        },
        {
          "id": "call-1",
          "at": "2026-04-09T12:00:00Z",
          "recordedAt": "2026-04-09T12:00:00Z",
          "label": "Seller called the website number",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/call",
          "locator": "call-1"
        },
        {
          "id": "qualified-1",
          "at": "2026-04-09T15:00:00Z",
          "recordedAt": "2026-04-09T15:00:00Z",
          "label": "Seller-property opportunity qualified",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/qualified",
          "locator": "qualified-1"
        },
        {
          "id": "assessment-1",
          "at": "2026-04-18T14:00:00Z",
          "recordedAt": "2026-04-18T14:00:00Z",
          "label": "Property assessment completed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/assessment",
          "locator": "assessment-1"
        },
        {
          "id": "offer-1",
          "at": "2026-04-24T10:00:00Z",
          "recordedAt": "2026-04-24T10:00:00Z",
          "label": "Written purchase offer delivered",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/offer",
          "locator": "offer-1"
        },
        {
          "id": "contract-1",
          "at": "2026-05-02T12:00:00Z",
          "recordedAt": "2026-05-02T12:00:00Z",
          "label": "Acquisition contract signed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/contract",
          "locator": "contract-1"
        },
        {
          "id": "marketing-cost",
          "at": "2026-05-03T12:00:00Z",
          "recordedAt": "2026-05-03T12:00:00Z",
          "label": "Acquisition marketing cost allocated",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/cost",
          "locator": "marketing-cost"
        },
        {
          "id": "closing-1",
          "at": "2026-06-02T12:00:00Z",
          "recordedAt": "2026-06-02T12:00:00Z",
          "label": "Property purchase closed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/acquisition",
          "locator": "closing-1"
        },
        {
          "id": "renovation-cost",
          "at": "2026-07-10T12:00:00Z",
          "recordedAt": "2026-07-10T12:00:00Z",
          "label": "Renovation costs reconciled",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/cost",
          "locator": "renovation-cost"
        },
        {
          "id": "resale-1",
          "at": "2026-09-03T12:00:00Z",
          "recordedAt": "2026-09-03T12:00:00Z",
          "label": "Resale proceeds recorded",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/resale",
          "locator": "resale-1"
        },
        {
          "id": "holding-cost",
          "at": "2026-09-05T12:00:00Z",
          "recordedAt": "2026-09-05T12:00:00Z",
          "label": "Holding, financing and transaction costs reconciled",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/cost",
          "locator": "holding-cost"
        }
      ],
      "credit": [
        {
          "channelId": "search-nonbrand",
          "label": "Nonbrand paid search",
          "weight": 1,
          "percentage": 100,
          "touchIds": [
            "click-nonbrand"
          ]
        }
      ],
      "outcome": {
        "qualifiedOpportunities": 1,
        "contracts": 1,
        "acquisitions": 1,
        "resales": 1,
        "canceled": false,
        "stage": "resold",
        "label": "Resale and costs reconciled",
        "capitalDeployed": 210000,
        "resaleProceeds": 295000,
        "contributionBeforeMarketing": 27000,
        "marketingAllocation": 3000,
        "contributionAfterMarketing": 24000,
        "missingCosts": [],
        "contributionStatus": "realized",
        "currency": "USD",
        "sourceIds": [
          "qualified-1",
          "contract-1",
          "marketing-cost",
          "closing-1",
          "renovation-cost",
          "resale-1",
          "holding-cost"
        ]
      },
      "issues": [],
      "creditOutcome": "qualified_seller_property_opportunity",
      "eligibleTouchIds": [
        "click-brand",
        "click-nonbrand"
      ],
      "allocationStatus": "computed",
      "policyVersion": "cash-homebuyer.first.observed.v1",
      "propertyId": "property-104",
      "opportunityId": "acquisition-204",
      "sellerGroupId": "seller-group-14",
      "receiptHash": "22b7826c7e18f3c0d746c4d459ba044ee3fc103afdcd6d4e6fbfb7731cfcd613"
    },
    {
      "key": "supported|observed|resale|last",
      "scenarioId": "supported",
      "evidencePolicyId": "observed",
      "cutoffId": "resale",
      "policyId": "last",
      "proofKey": "supported|observed|resale",
      "asOf": "2026-09-15T23:59:59Z",
      "status": "complete",
      "summary": "Resale and costs reconciled. Credit describes this qualified opportunity under the selected policy; it does not establish causal lift.",
      "timeline": [
        {
          "id": "click-nonbrand",
          "at": "2026-04-03T10:00:00Z",
          "recordedAt": "2026-04-03T10:00:00Z",
          "label": "Nonbrand search ad clicked",
          "channelId": "search-nonbrand",
          "channelLabel": "Nonbrand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-nonbrand"
        },
        {
          "id": "click-brand",
          "at": "2026-04-08T11:00:00Z",
          "recordedAt": "2026-04-08T11:00:00Z",
          "label": "Brand search ad clicked",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-brand"
        },
        {
          "id": "call-1",
          "at": "2026-04-09T12:00:00Z",
          "recordedAt": "2026-04-09T12:00:00Z",
          "label": "Seller called the website number",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/call",
          "locator": "call-1"
        },
        {
          "id": "qualified-1",
          "at": "2026-04-09T15:00:00Z",
          "recordedAt": "2026-04-09T15:00:00Z",
          "label": "Seller-property opportunity qualified",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/qualified",
          "locator": "qualified-1"
        },
        {
          "id": "assessment-1",
          "at": "2026-04-18T14:00:00Z",
          "recordedAt": "2026-04-18T14:00:00Z",
          "label": "Property assessment completed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/assessment",
          "locator": "assessment-1"
        },
        {
          "id": "offer-1",
          "at": "2026-04-24T10:00:00Z",
          "recordedAt": "2026-04-24T10:00:00Z",
          "label": "Written purchase offer delivered",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/offer",
          "locator": "offer-1"
        },
        {
          "id": "contract-1",
          "at": "2026-05-02T12:00:00Z",
          "recordedAt": "2026-05-02T12:00:00Z",
          "label": "Acquisition contract signed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/contract",
          "locator": "contract-1"
        },
        {
          "id": "marketing-cost",
          "at": "2026-05-03T12:00:00Z",
          "recordedAt": "2026-05-03T12:00:00Z",
          "label": "Acquisition marketing cost allocated",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/cost",
          "locator": "marketing-cost"
        },
        {
          "id": "closing-1",
          "at": "2026-06-02T12:00:00Z",
          "recordedAt": "2026-06-02T12:00:00Z",
          "label": "Property purchase closed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/acquisition",
          "locator": "closing-1"
        },
        {
          "id": "renovation-cost",
          "at": "2026-07-10T12:00:00Z",
          "recordedAt": "2026-07-10T12:00:00Z",
          "label": "Renovation costs reconciled",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/cost",
          "locator": "renovation-cost"
        },
        {
          "id": "resale-1",
          "at": "2026-09-03T12:00:00Z",
          "recordedAt": "2026-09-03T12:00:00Z",
          "label": "Resale proceeds recorded",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/resale",
          "locator": "resale-1"
        },
        {
          "id": "holding-cost",
          "at": "2026-09-05T12:00:00Z",
          "recordedAt": "2026-09-05T12:00:00Z",
          "label": "Holding, financing and transaction costs reconciled",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/cost",
          "locator": "holding-cost"
        }
      ],
      "credit": [
        {
          "channelId": "search-brand",
          "label": "Brand paid search",
          "weight": 1,
          "percentage": 100,
          "touchIds": [
            "click-brand"
          ]
        }
      ],
      "outcome": {
        "qualifiedOpportunities": 1,
        "contracts": 1,
        "acquisitions": 1,
        "resales": 1,
        "canceled": false,
        "stage": "resold",
        "label": "Resale and costs reconciled",
        "capitalDeployed": 210000,
        "resaleProceeds": 295000,
        "contributionBeforeMarketing": 27000,
        "marketingAllocation": 3000,
        "contributionAfterMarketing": 24000,
        "missingCosts": [],
        "contributionStatus": "realized",
        "currency": "USD",
        "sourceIds": [
          "qualified-1",
          "contract-1",
          "marketing-cost",
          "closing-1",
          "renovation-cost",
          "resale-1",
          "holding-cost"
        ]
      },
      "issues": [],
      "creditOutcome": "qualified_seller_property_opportunity",
      "eligibleTouchIds": [
        "click-brand",
        "click-nonbrand"
      ],
      "allocationStatus": "computed",
      "policyVersion": "cash-homebuyer.last.observed.v1",
      "propertyId": "property-104",
      "opportunityId": "acquisition-204",
      "sellerGroupId": "seller-group-14",
      "receiptHash": "8c017e278f67d5493cdd57c7c323561900a3619b0b9fd647bf3a23a8e1d16c48"
    },
    {
      "key": "supported|observed|resale|linear",
      "scenarioId": "supported",
      "evidencePolicyId": "observed",
      "cutoffId": "resale",
      "policyId": "linear",
      "proofKey": "supported|observed|resale",
      "asOf": "2026-09-15T23:59:59Z",
      "status": "complete",
      "summary": "Resale and costs reconciled. Credit describes this qualified opportunity under the selected policy; it does not establish causal lift.",
      "timeline": [
        {
          "id": "click-nonbrand",
          "at": "2026-04-03T10:00:00Z",
          "recordedAt": "2026-04-03T10:00:00Z",
          "label": "Nonbrand search ad clicked",
          "channelId": "search-nonbrand",
          "channelLabel": "Nonbrand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-nonbrand"
        },
        {
          "id": "click-brand",
          "at": "2026-04-08T11:00:00Z",
          "recordedAt": "2026-04-08T11:00:00Z",
          "label": "Brand search ad clicked",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-brand"
        },
        {
          "id": "call-1",
          "at": "2026-04-09T12:00:00Z",
          "recordedAt": "2026-04-09T12:00:00Z",
          "label": "Seller called the website number",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/call",
          "locator": "call-1"
        },
        {
          "id": "qualified-1",
          "at": "2026-04-09T15:00:00Z",
          "recordedAt": "2026-04-09T15:00:00Z",
          "label": "Seller-property opportunity qualified",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/qualified",
          "locator": "qualified-1"
        },
        {
          "id": "assessment-1",
          "at": "2026-04-18T14:00:00Z",
          "recordedAt": "2026-04-18T14:00:00Z",
          "label": "Property assessment completed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/assessment",
          "locator": "assessment-1"
        },
        {
          "id": "offer-1",
          "at": "2026-04-24T10:00:00Z",
          "recordedAt": "2026-04-24T10:00:00Z",
          "label": "Written purchase offer delivered",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/offer",
          "locator": "offer-1"
        },
        {
          "id": "contract-1",
          "at": "2026-05-02T12:00:00Z",
          "recordedAt": "2026-05-02T12:00:00Z",
          "label": "Acquisition contract signed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/contract",
          "locator": "contract-1"
        },
        {
          "id": "marketing-cost",
          "at": "2026-05-03T12:00:00Z",
          "recordedAt": "2026-05-03T12:00:00Z",
          "label": "Acquisition marketing cost allocated",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/cost",
          "locator": "marketing-cost"
        },
        {
          "id": "closing-1",
          "at": "2026-06-02T12:00:00Z",
          "recordedAt": "2026-06-02T12:00:00Z",
          "label": "Property purchase closed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/acquisition",
          "locator": "closing-1"
        },
        {
          "id": "renovation-cost",
          "at": "2026-07-10T12:00:00Z",
          "recordedAt": "2026-07-10T12:00:00Z",
          "label": "Renovation costs reconciled",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/cost",
          "locator": "renovation-cost"
        },
        {
          "id": "resale-1",
          "at": "2026-09-03T12:00:00Z",
          "recordedAt": "2026-09-03T12:00:00Z",
          "label": "Resale proceeds recorded",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/resale",
          "locator": "resale-1"
        },
        {
          "id": "holding-cost",
          "at": "2026-09-05T12:00:00Z",
          "recordedAt": "2026-09-05T12:00:00Z",
          "label": "Holding, financing and transaction costs reconciled",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/cost",
          "locator": "holding-cost"
        }
      ],
      "credit": [
        {
          "channelId": "search-nonbrand",
          "label": "Nonbrand paid search",
          "weight": 0.5,
          "percentage": 50,
          "touchIds": [
            "click-nonbrand"
          ]
        },
        {
          "channelId": "search-brand",
          "label": "Brand paid search",
          "weight": 0.5,
          "percentage": 50,
          "touchIds": [
            "click-brand"
          ]
        }
      ],
      "outcome": {
        "qualifiedOpportunities": 1,
        "contracts": 1,
        "acquisitions": 1,
        "resales": 1,
        "canceled": false,
        "stage": "resold",
        "label": "Resale and costs reconciled",
        "capitalDeployed": 210000,
        "resaleProceeds": 295000,
        "contributionBeforeMarketing": 27000,
        "marketingAllocation": 3000,
        "contributionAfterMarketing": 24000,
        "missingCosts": [],
        "contributionStatus": "realized",
        "currency": "USD",
        "sourceIds": [
          "qualified-1",
          "contract-1",
          "marketing-cost",
          "closing-1",
          "renovation-cost",
          "resale-1",
          "holding-cost"
        ]
      },
      "issues": [],
      "creditOutcome": "qualified_seller_property_opportunity",
      "eligibleTouchIds": [
        "click-brand",
        "click-nonbrand"
      ],
      "allocationStatus": "computed",
      "policyVersion": "cash-homebuyer.linear.observed.v1",
      "propertyId": "property-104",
      "opportunityId": "acquisition-204",
      "sellerGroupId": "seller-group-14",
      "receiptHash": "fd3abf1f8a2ebc6358044ce65a4441e08c22b347b6b5fff490e5481928e33c74"
    },
    {
      "key": "supported|reported|contract|first",
      "scenarioId": "supported",
      "evidencePolicyId": "reported",
      "cutoffId": "contract",
      "policyId": "first",
      "proofKey": "supported|reported|contract",
      "asOf": "2026-05-15T23:59:59Z",
      "status": "complete",
      "summary": "Contract signed · purchase pending. Credit describes this qualified opportunity under the selected policy; it does not establish causal lift.",
      "timeline": [
        {
          "id": "click-nonbrand",
          "at": "2026-04-03T10:00:00Z",
          "recordedAt": "2026-04-03T10:00:00Z",
          "label": "Nonbrand search ad clicked",
          "channelId": "search-nonbrand",
          "channelLabel": "Nonbrand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-nonbrand"
        },
        {
          "id": "click-brand",
          "at": "2026-04-08T11:00:00Z",
          "recordedAt": "2026-04-08T11:00:00Z",
          "label": "Brand search ad clicked",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-brand"
        },
        {
          "id": "call-1",
          "at": "2026-04-09T12:00:00Z",
          "recordedAt": "2026-04-09T12:00:00Z",
          "label": "Seller called the website number",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/call",
          "locator": "call-1"
        },
        {
          "id": "qualified-1",
          "at": "2026-04-09T15:00:00Z",
          "recordedAt": "2026-04-09T15:00:00Z",
          "label": "Seller-property opportunity qualified",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/qualified",
          "locator": "qualified-1"
        },
        {
          "id": "assessment-1",
          "at": "2026-04-18T14:00:00Z",
          "recordedAt": "2026-04-18T14:00:00Z",
          "label": "Property assessment completed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/assessment",
          "locator": "assessment-1"
        },
        {
          "id": "offer-1",
          "at": "2026-04-24T10:00:00Z",
          "recordedAt": "2026-04-24T10:00:00Z",
          "label": "Written purchase offer delivered",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/offer",
          "locator": "offer-1"
        },
        {
          "id": "contract-1",
          "at": "2026-05-02T12:00:00Z",
          "recordedAt": "2026-05-02T12:00:00Z",
          "label": "Acquisition contract signed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/contract",
          "locator": "contract-1"
        },
        {
          "id": "marketing-cost",
          "at": "2026-05-03T12:00:00Z",
          "recordedAt": "2026-05-03T12:00:00Z",
          "label": "Acquisition marketing cost allocated",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/cost",
          "locator": "marketing-cost"
        }
      ],
      "credit": [
        {
          "channelId": "search-nonbrand",
          "label": "Nonbrand paid search",
          "weight": 1,
          "percentage": 100,
          "touchIds": [
            "click-nonbrand"
          ]
        }
      ],
      "outcome": {
        "qualifiedOpportunities": 1,
        "contracts": 1,
        "acquisitions": 0,
        "resales": 0,
        "canceled": false,
        "stage": "contract",
        "label": "Contract signed · purchase pending",
        "capitalDeployed": null,
        "resaleProceeds": null,
        "contributionBeforeMarketing": null,
        "marketingAllocation": 3000,
        "contributionAfterMarketing": null,
        "missingCosts": [
          "renovation",
          "holdingAndTransaction"
        ],
        "contributionStatus": "pending",
        "currency": "USD",
        "sourceIds": [
          "qualified-1",
          "contract-1",
          "marketing-cost"
        ]
      },
      "issues": [],
      "creditOutcome": "qualified_seller_property_opportunity",
      "eligibleTouchIds": [
        "click-brand",
        "click-nonbrand"
      ],
      "allocationStatus": "computed",
      "policyVersion": "cash-homebuyer.first.reported.v1",
      "propertyId": "property-104",
      "opportunityId": "acquisition-204",
      "sellerGroupId": "seller-group-14",
      "receiptHash": "b43e4462b0384f515f5783fcf56ad2d5cc4dfb2217cc0f447d70fa675b35c379"
    },
    {
      "key": "supported|reported|contract|last",
      "scenarioId": "supported",
      "evidencePolicyId": "reported",
      "cutoffId": "contract",
      "policyId": "last",
      "proofKey": "supported|reported|contract",
      "asOf": "2026-05-15T23:59:59Z",
      "status": "complete",
      "summary": "Contract signed · purchase pending. Credit describes this qualified opportunity under the selected policy; it does not establish causal lift.",
      "timeline": [
        {
          "id": "click-nonbrand",
          "at": "2026-04-03T10:00:00Z",
          "recordedAt": "2026-04-03T10:00:00Z",
          "label": "Nonbrand search ad clicked",
          "channelId": "search-nonbrand",
          "channelLabel": "Nonbrand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-nonbrand"
        },
        {
          "id": "click-brand",
          "at": "2026-04-08T11:00:00Z",
          "recordedAt": "2026-04-08T11:00:00Z",
          "label": "Brand search ad clicked",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-brand"
        },
        {
          "id": "call-1",
          "at": "2026-04-09T12:00:00Z",
          "recordedAt": "2026-04-09T12:00:00Z",
          "label": "Seller called the website number",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/call",
          "locator": "call-1"
        },
        {
          "id": "qualified-1",
          "at": "2026-04-09T15:00:00Z",
          "recordedAt": "2026-04-09T15:00:00Z",
          "label": "Seller-property opportunity qualified",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/qualified",
          "locator": "qualified-1"
        },
        {
          "id": "assessment-1",
          "at": "2026-04-18T14:00:00Z",
          "recordedAt": "2026-04-18T14:00:00Z",
          "label": "Property assessment completed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/assessment",
          "locator": "assessment-1"
        },
        {
          "id": "offer-1",
          "at": "2026-04-24T10:00:00Z",
          "recordedAt": "2026-04-24T10:00:00Z",
          "label": "Written purchase offer delivered",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/offer",
          "locator": "offer-1"
        },
        {
          "id": "contract-1",
          "at": "2026-05-02T12:00:00Z",
          "recordedAt": "2026-05-02T12:00:00Z",
          "label": "Acquisition contract signed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/contract",
          "locator": "contract-1"
        },
        {
          "id": "marketing-cost",
          "at": "2026-05-03T12:00:00Z",
          "recordedAt": "2026-05-03T12:00:00Z",
          "label": "Acquisition marketing cost allocated",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/cost",
          "locator": "marketing-cost"
        }
      ],
      "credit": [
        {
          "channelId": "search-brand",
          "label": "Brand paid search",
          "weight": 1,
          "percentage": 100,
          "touchIds": [
            "click-brand"
          ]
        }
      ],
      "outcome": {
        "qualifiedOpportunities": 1,
        "contracts": 1,
        "acquisitions": 0,
        "resales": 0,
        "canceled": false,
        "stage": "contract",
        "label": "Contract signed · purchase pending",
        "capitalDeployed": null,
        "resaleProceeds": null,
        "contributionBeforeMarketing": null,
        "marketingAllocation": 3000,
        "contributionAfterMarketing": null,
        "missingCosts": [
          "renovation",
          "holdingAndTransaction"
        ],
        "contributionStatus": "pending",
        "currency": "USD",
        "sourceIds": [
          "qualified-1",
          "contract-1",
          "marketing-cost"
        ]
      },
      "issues": [],
      "creditOutcome": "qualified_seller_property_opportunity",
      "eligibleTouchIds": [
        "click-brand",
        "click-nonbrand"
      ],
      "allocationStatus": "computed",
      "policyVersion": "cash-homebuyer.last.reported.v1",
      "propertyId": "property-104",
      "opportunityId": "acquisition-204",
      "sellerGroupId": "seller-group-14",
      "receiptHash": "81b7c0963e5be49760cd639dff2dda16dd487adacb7b2eea7f5fd85d163208ec"
    },
    {
      "key": "supported|reported|contract|linear",
      "scenarioId": "supported",
      "evidencePolicyId": "reported",
      "cutoffId": "contract",
      "policyId": "linear",
      "proofKey": "supported|reported|contract",
      "asOf": "2026-05-15T23:59:59Z",
      "status": "complete",
      "summary": "Contract signed · purchase pending. Credit describes this qualified opportunity under the selected policy; it does not establish causal lift.",
      "timeline": [
        {
          "id": "click-nonbrand",
          "at": "2026-04-03T10:00:00Z",
          "recordedAt": "2026-04-03T10:00:00Z",
          "label": "Nonbrand search ad clicked",
          "channelId": "search-nonbrand",
          "channelLabel": "Nonbrand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-nonbrand"
        },
        {
          "id": "click-brand",
          "at": "2026-04-08T11:00:00Z",
          "recordedAt": "2026-04-08T11:00:00Z",
          "label": "Brand search ad clicked",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-brand"
        },
        {
          "id": "call-1",
          "at": "2026-04-09T12:00:00Z",
          "recordedAt": "2026-04-09T12:00:00Z",
          "label": "Seller called the website number",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/call",
          "locator": "call-1"
        },
        {
          "id": "qualified-1",
          "at": "2026-04-09T15:00:00Z",
          "recordedAt": "2026-04-09T15:00:00Z",
          "label": "Seller-property opportunity qualified",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/qualified",
          "locator": "qualified-1"
        },
        {
          "id": "assessment-1",
          "at": "2026-04-18T14:00:00Z",
          "recordedAt": "2026-04-18T14:00:00Z",
          "label": "Property assessment completed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/assessment",
          "locator": "assessment-1"
        },
        {
          "id": "offer-1",
          "at": "2026-04-24T10:00:00Z",
          "recordedAt": "2026-04-24T10:00:00Z",
          "label": "Written purchase offer delivered",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/offer",
          "locator": "offer-1"
        },
        {
          "id": "contract-1",
          "at": "2026-05-02T12:00:00Z",
          "recordedAt": "2026-05-02T12:00:00Z",
          "label": "Acquisition contract signed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/contract",
          "locator": "contract-1"
        },
        {
          "id": "marketing-cost",
          "at": "2026-05-03T12:00:00Z",
          "recordedAt": "2026-05-03T12:00:00Z",
          "label": "Acquisition marketing cost allocated",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/cost",
          "locator": "marketing-cost"
        }
      ],
      "credit": [
        {
          "channelId": "search-nonbrand",
          "label": "Nonbrand paid search",
          "weight": 0.5,
          "percentage": 50,
          "touchIds": [
            "click-nonbrand"
          ]
        },
        {
          "channelId": "search-brand",
          "label": "Brand paid search",
          "weight": 0.5,
          "percentage": 50,
          "touchIds": [
            "click-brand"
          ]
        }
      ],
      "outcome": {
        "qualifiedOpportunities": 1,
        "contracts": 1,
        "acquisitions": 0,
        "resales": 0,
        "canceled": false,
        "stage": "contract",
        "label": "Contract signed · purchase pending",
        "capitalDeployed": null,
        "resaleProceeds": null,
        "contributionBeforeMarketing": null,
        "marketingAllocation": 3000,
        "contributionAfterMarketing": null,
        "missingCosts": [
          "renovation",
          "holdingAndTransaction"
        ],
        "contributionStatus": "pending",
        "currency": "USD",
        "sourceIds": [
          "qualified-1",
          "contract-1",
          "marketing-cost"
        ]
      },
      "issues": [],
      "creditOutcome": "qualified_seller_property_opportunity",
      "eligibleTouchIds": [
        "click-brand",
        "click-nonbrand"
      ],
      "allocationStatus": "computed",
      "policyVersion": "cash-homebuyer.linear.reported.v1",
      "propertyId": "property-104",
      "opportunityId": "acquisition-204",
      "sellerGroupId": "seller-group-14",
      "receiptHash": "f227db52bdb724a3e518d625f072e56719c52800a9c4e95b7d2e36f084a4a763"
    },
    {
      "key": "supported|reported|acquired|first",
      "scenarioId": "supported",
      "evidencePolicyId": "reported",
      "cutoffId": "acquired",
      "policyId": "first",
      "proofKey": "supported|reported|acquired",
      "asOf": "2026-06-15T23:59:59Z",
      "status": "complete",
      "summary": "Purchase closed · resale pending. Credit describes this qualified opportunity under the selected policy; it does not establish causal lift.",
      "timeline": [
        {
          "id": "click-nonbrand",
          "at": "2026-04-03T10:00:00Z",
          "recordedAt": "2026-04-03T10:00:00Z",
          "label": "Nonbrand search ad clicked",
          "channelId": "search-nonbrand",
          "channelLabel": "Nonbrand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-nonbrand"
        },
        {
          "id": "click-brand",
          "at": "2026-04-08T11:00:00Z",
          "recordedAt": "2026-04-08T11:00:00Z",
          "label": "Brand search ad clicked",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-brand"
        },
        {
          "id": "call-1",
          "at": "2026-04-09T12:00:00Z",
          "recordedAt": "2026-04-09T12:00:00Z",
          "label": "Seller called the website number",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/call",
          "locator": "call-1"
        },
        {
          "id": "qualified-1",
          "at": "2026-04-09T15:00:00Z",
          "recordedAt": "2026-04-09T15:00:00Z",
          "label": "Seller-property opportunity qualified",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/qualified",
          "locator": "qualified-1"
        },
        {
          "id": "assessment-1",
          "at": "2026-04-18T14:00:00Z",
          "recordedAt": "2026-04-18T14:00:00Z",
          "label": "Property assessment completed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/assessment",
          "locator": "assessment-1"
        },
        {
          "id": "offer-1",
          "at": "2026-04-24T10:00:00Z",
          "recordedAt": "2026-04-24T10:00:00Z",
          "label": "Written purchase offer delivered",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/offer",
          "locator": "offer-1"
        },
        {
          "id": "contract-1",
          "at": "2026-05-02T12:00:00Z",
          "recordedAt": "2026-05-02T12:00:00Z",
          "label": "Acquisition contract signed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/contract",
          "locator": "contract-1"
        },
        {
          "id": "marketing-cost",
          "at": "2026-05-03T12:00:00Z",
          "recordedAt": "2026-05-03T12:00:00Z",
          "label": "Acquisition marketing cost allocated",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/cost",
          "locator": "marketing-cost"
        },
        {
          "id": "closing-1",
          "at": "2026-06-02T12:00:00Z",
          "recordedAt": "2026-06-02T12:00:00Z",
          "label": "Property purchase closed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/acquisition",
          "locator": "closing-1"
        }
      ],
      "credit": [
        {
          "channelId": "search-nonbrand",
          "label": "Nonbrand paid search",
          "weight": 1,
          "percentage": 100,
          "touchIds": [
            "click-nonbrand"
          ]
        }
      ],
      "outcome": {
        "qualifiedOpportunities": 1,
        "contracts": 1,
        "acquisitions": 1,
        "resales": 0,
        "canceled": false,
        "stage": "acquired",
        "label": "Purchase closed · resale pending",
        "capitalDeployed": 210000,
        "resaleProceeds": null,
        "contributionBeforeMarketing": null,
        "marketingAllocation": 3000,
        "contributionAfterMarketing": null,
        "missingCosts": [
          "renovation",
          "holdingAndTransaction"
        ],
        "contributionStatus": "pending",
        "currency": "USD",
        "sourceIds": [
          "qualified-1",
          "contract-1",
          "marketing-cost",
          "closing-1"
        ]
      },
      "issues": [],
      "creditOutcome": "qualified_seller_property_opportunity",
      "eligibleTouchIds": [
        "click-brand",
        "click-nonbrand"
      ],
      "allocationStatus": "computed",
      "policyVersion": "cash-homebuyer.first.reported.v1",
      "propertyId": "property-104",
      "opportunityId": "acquisition-204",
      "sellerGroupId": "seller-group-14",
      "receiptHash": "f231742c377ff112a92bc684318086dc64d6d7a157f291bb9f09dec0e1e936d7"
    },
    {
      "key": "supported|reported|acquired|last",
      "scenarioId": "supported",
      "evidencePolicyId": "reported",
      "cutoffId": "acquired",
      "policyId": "last",
      "proofKey": "supported|reported|acquired",
      "asOf": "2026-06-15T23:59:59Z",
      "status": "complete",
      "summary": "Purchase closed · resale pending. Credit describes this qualified opportunity under the selected policy; it does not establish causal lift.",
      "timeline": [
        {
          "id": "click-nonbrand",
          "at": "2026-04-03T10:00:00Z",
          "recordedAt": "2026-04-03T10:00:00Z",
          "label": "Nonbrand search ad clicked",
          "channelId": "search-nonbrand",
          "channelLabel": "Nonbrand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-nonbrand"
        },
        {
          "id": "click-brand",
          "at": "2026-04-08T11:00:00Z",
          "recordedAt": "2026-04-08T11:00:00Z",
          "label": "Brand search ad clicked",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-brand"
        },
        {
          "id": "call-1",
          "at": "2026-04-09T12:00:00Z",
          "recordedAt": "2026-04-09T12:00:00Z",
          "label": "Seller called the website number",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/call",
          "locator": "call-1"
        },
        {
          "id": "qualified-1",
          "at": "2026-04-09T15:00:00Z",
          "recordedAt": "2026-04-09T15:00:00Z",
          "label": "Seller-property opportunity qualified",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/qualified",
          "locator": "qualified-1"
        },
        {
          "id": "assessment-1",
          "at": "2026-04-18T14:00:00Z",
          "recordedAt": "2026-04-18T14:00:00Z",
          "label": "Property assessment completed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/assessment",
          "locator": "assessment-1"
        },
        {
          "id": "offer-1",
          "at": "2026-04-24T10:00:00Z",
          "recordedAt": "2026-04-24T10:00:00Z",
          "label": "Written purchase offer delivered",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/offer",
          "locator": "offer-1"
        },
        {
          "id": "contract-1",
          "at": "2026-05-02T12:00:00Z",
          "recordedAt": "2026-05-02T12:00:00Z",
          "label": "Acquisition contract signed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/contract",
          "locator": "contract-1"
        },
        {
          "id": "marketing-cost",
          "at": "2026-05-03T12:00:00Z",
          "recordedAt": "2026-05-03T12:00:00Z",
          "label": "Acquisition marketing cost allocated",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/cost",
          "locator": "marketing-cost"
        },
        {
          "id": "closing-1",
          "at": "2026-06-02T12:00:00Z",
          "recordedAt": "2026-06-02T12:00:00Z",
          "label": "Property purchase closed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/acquisition",
          "locator": "closing-1"
        }
      ],
      "credit": [
        {
          "channelId": "search-brand",
          "label": "Brand paid search",
          "weight": 1,
          "percentage": 100,
          "touchIds": [
            "click-brand"
          ]
        }
      ],
      "outcome": {
        "qualifiedOpportunities": 1,
        "contracts": 1,
        "acquisitions": 1,
        "resales": 0,
        "canceled": false,
        "stage": "acquired",
        "label": "Purchase closed · resale pending",
        "capitalDeployed": 210000,
        "resaleProceeds": null,
        "contributionBeforeMarketing": null,
        "marketingAllocation": 3000,
        "contributionAfterMarketing": null,
        "missingCosts": [
          "renovation",
          "holdingAndTransaction"
        ],
        "contributionStatus": "pending",
        "currency": "USD",
        "sourceIds": [
          "qualified-1",
          "contract-1",
          "marketing-cost",
          "closing-1"
        ]
      },
      "issues": [],
      "creditOutcome": "qualified_seller_property_opportunity",
      "eligibleTouchIds": [
        "click-brand",
        "click-nonbrand"
      ],
      "allocationStatus": "computed",
      "policyVersion": "cash-homebuyer.last.reported.v1",
      "propertyId": "property-104",
      "opportunityId": "acquisition-204",
      "sellerGroupId": "seller-group-14",
      "receiptHash": "a49a9cf4a9a84047154fe830aaa0b91fea4698dd9030b2f2fbc2668f9a2f9bb6"
    },
    {
      "key": "supported|reported|acquired|linear",
      "scenarioId": "supported",
      "evidencePolicyId": "reported",
      "cutoffId": "acquired",
      "policyId": "linear",
      "proofKey": "supported|reported|acquired",
      "asOf": "2026-06-15T23:59:59Z",
      "status": "complete",
      "summary": "Purchase closed · resale pending. Credit describes this qualified opportunity under the selected policy; it does not establish causal lift.",
      "timeline": [
        {
          "id": "click-nonbrand",
          "at": "2026-04-03T10:00:00Z",
          "recordedAt": "2026-04-03T10:00:00Z",
          "label": "Nonbrand search ad clicked",
          "channelId": "search-nonbrand",
          "channelLabel": "Nonbrand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-nonbrand"
        },
        {
          "id": "click-brand",
          "at": "2026-04-08T11:00:00Z",
          "recordedAt": "2026-04-08T11:00:00Z",
          "label": "Brand search ad clicked",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-brand"
        },
        {
          "id": "call-1",
          "at": "2026-04-09T12:00:00Z",
          "recordedAt": "2026-04-09T12:00:00Z",
          "label": "Seller called the website number",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/call",
          "locator": "call-1"
        },
        {
          "id": "qualified-1",
          "at": "2026-04-09T15:00:00Z",
          "recordedAt": "2026-04-09T15:00:00Z",
          "label": "Seller-property opportunity qualified",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/qualified",
          "locator": "qualified-1"
        },
        {
          "id": "assessment-1",
          "at": "2026-04-18T14:00:00Z",
          "recordedAt": "2026-04-18T14:00:00Z",
          "label": "Property assessment completed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/assessment",
          "locator": "assessment-1"
        },
        {
          "id": "offer-1",
          "at": "2026-04-24T10:00:00Z",
          "recordedAt": "2026-04-24T10:00:00Z",
          "label": "Written purchase offer delivered",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/offer",
          "locator": "offer-1"
        },
        {
          "id": "contract-1",
          "at": "2026-05-02T12:00:00Z",
          "recordedAt": "2026-05-02T12:00:00Z",
          "label": "Acquisition contract signed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/contract",
          "locator": "contract-1"
        },
        {
          "id": "marketing-cost",
          "at": "2026-05-03T12:00:00Z",
          "recordedAt": "2026-05-03T12:00:00Z",
          "label": "Acquisition marketing cost allocated",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/cost",
          "locator": "marketing-cost"
        },
        {
          "id": "closing-1",
          "at": "2026-06-02T12:00:00Z",
          "recordedAt": "2026-06-02T12:00:00Z",
          "label": "Property purchase closed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/acquisition",
          "locator": "closing-1"
        }
      ],
      "credit": [
        {
          "channelId": "search-nonbrand",
          "label": "Nonbrand paid search",
          "weight": 0.5,
          "percentage": 50,
          "touchIds": [
            "click-nonbrand"
          ]
        },
        {
          "channelId": "search-brand",
          "label": "Brand paid search",
          "weight": 0.5,
          "percentage": 50,
          "touchIds": [
            "click-brand"
          ]
        }
      ],
      "outcome": {
        "qualifiedOpportunities": 1,
        "contracts": 1,
        "acquisitions": 1,
        "resales": 0,
        "canceled": false,
        "stage": "acquired",
        "label": "Purchase closed · resale pending",
        "capitalDeployed": 210000,
        "resaleProceeds": null,
        "contributionBeforeMarketing": null,
        "marketingAllocation": 3000,
        "contributionAfterMarketing": null,
        "missingCosts": [
          "renovation",
          "holdingAndTransaction"
        ],
        "contributionStatus": "pending",
        "currency": "USD",
        "sourceIds": [
          "qualified-1",
          "contract-1",
          "marketing-cost",
          "closing-1"
        ]
      },
      "issues": [],
      "creditOutcome": "qualified_seller_property_opportunity",
      "eligibleTouchIds": [
        "click-brand",
        "click-nonbrand"
      ],
      "allocationStatus": "computed",
      "policyVersion": "cash-homebuyer.linear.reported.v1",
      "propertyId": "property-104",
      "opportunityId": "acquisition-204",
      "sellerGroupId": "seller-group-14",
      "receiptHash": "b37c0657e3d608f482e8d2e6561a3c25fc86692bf55bc235020250808ef193cb"
    },
    {
      "key": "supported|reported|resale|first",
      "scenarioId": "supported",
      "evidencePolicyId": "reported",
      "cutoffId": "resale",
      "policyId": "first",
      "proofKey": "supported|reported|resale",
      "asOf": "2026-09-15T23:59:59Z",
      "status": "complete",
      "summary": "Resale and costs reconciled. Credit describes this qualified opportunity under the selected policy; it does not establish causal lift.",
      "timeline": [
        {
          "id": "click-nonbrand",
          "at": "2026-04-03T10:00:00Z",
          "recordedAt": "2026-04-03T10:00:00Z",
          "label": "Nonbrand search ad clicked",
          "channelId": "search-nonbrand",
          "channelLabel": "Nonbrand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-nonbrand"
        },
        {
          "id": "click-brand",
          "at": "2026-04-08T11:00:00Z",
          "recordedAt": "2026-04-08T11:00:00Z",
          "label": "Brand search ad clicked",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-brand"
        },
        {
          "id": "call-1",
          "at": "2026-04-09T12:00:00Z",
          "recordedAt": "2026-04-09T12:00:00Z",
          "label": "Seller called the website number",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/call",
          "locator": "call-1"
        },
        {
          "id": "qualified-1",
          "at": "2026-04-09T15:00:00Z",
          "recordedAt": "2026-04-09T15:00:00Z",
          "label": "Seller-property opportunity qualified",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/qualified",
          "locator": "qualified-1"
        },
        {
          "id": "assessment-1",
          "at": "2026-04-18T14:00:00Z",
          "recordedAt": "2026-04-18T14:00:00Z",
          "label": "Property assessment completed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/assessment",
          "locator": "assessment-1"
        },
        {
          "id": "offer-1",
          "at": "2026-04-24T10:00:00Z",
          "recordedAt": "2026-04-24T10:00:00Z",
          "label": "Written purchase offer delivered",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/offer",
          "locator": "offer-1"
        },
        {
          "id": "contract-1",
          "at": "2026-05-02T12:00:00Z",
          "recordedAt": "2026-05-02T12:00:00Z",
          "label": "Acquisition contract signed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/contract",
          "locator": "contract-1"
        },
        {
          "id": "marketing-cost",
          "at": "2026-05-03T12:00:00Z",
          "recordedAt": "2026-05-03T12:00:00Z",
          "label": "Acquisition marketing cost allocated",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/cost",
          "locator": "marketing-cost"
        },
        {
          "id": "closing-1",
          "at": "2026-06-02T12:00:00Z",
          "recordedAt": "2026-06-02T12:00:00Z",
          "label": "Property purchase closed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/acquisition",
          "locator": "closing-1"
        },
        {
          "id": "renovation-cost",
          "at": "2026-07-10T12:00:00Z",
          "recordedAt": "2026-07-10T12:00:00Z",
          "label": "Renovation costs reconciled",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/cost",
          "locator": "renovation-cost"
        },
        {
          "id": "resale-1",
          "at": "2026-09-03T12:00:00Z",
          "recordedAt": "2026-09-03T12:00:00Z",
          "label": "Resale proceeds recorded",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/resale",
          "locator": "resale-1"
        },
        {
          "id": "holding-cost",
          "at": "2026-09-05T12:00:00Z",
          "recordedAt": "2026-09-05T12:00:00Z",
          "label": "Holding, financing and transaction costs reconciled",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/cost",
          "locator": "holding-cost"
        }
      ],
      "credit": [
        {
          "channelId": "search-nonbrand",
          "label": "Nonbrand paid search",
          "weight": 1,
          "percentage": 100,
          "touchIds": [
            "click-nonbrand"
          ]
        }
      ],
      "outcome": {
        "qualifiedOpportunities": 1,
        "contracts": 1,
        "acquisitions": 1,
        "resales": 1,
        "canceled": false,
        "stage": "resold",
        "label": "Resale and costs reconciled",
        "capitalDeployed": 210000,
        "resaleProceeds": 295000,
        "contributionBeforeMarketing": 27000,
        "marketingAllocation": 3000,
        "contributionAfterMarketing": 24000,
        "missingCosts": [],
        "contributionStatus": "realized",
        "currency": "USD",
        "sourceIds": [
          "qualified-1",
          "contract-1",
          "marketing-cost",
          "closing-1",
          "renovation-cost",
          "resale-1",
          "holding-cost"
        ]
      },
      "issues": [],
      "creditOutcome": "qualified_seller_property_opportunity",
      "eligibleTouchIds": [
        "click-brand",
        "click-nonbrand"
      ],
      "allocationStatus": "computed",
      "policyVersion": "cash-homebuyer.first.reported.v1",
      "propertyId": "property-104",
      "opportunityId": "acquisition-204",
      "sellerGroupId": "seller-group-14",
      "receiptHash": "4e6b0b05a27dab0264278d2a53e0475fe67d84c7b23955de86b2099ef7d04a7c"
    },
    {
      "key": "supported|reported|resale|last",
      "scenarioId": "supported",
      "evidencePolicyId": "reported",
      "cutoffId": "resale",
      "policyId": "last",
      "proofKey": "supported|reported|resale",
      "asOf": "2026-09-15T23:59:59Z",
      "status": "complete",
      "summary": "Resale and costs reconciled. Credit describes this qualified opportunity under the selected policy; it does not establish causal lift.",
      "timeline": [
        {
          "id": "click-nonbrand",
          "at": "2026-04-03T10:00:00Z",
          "recordedAt": "2026-04-03T10:00:00Z",
          "label": "Nonbrand search ad clicked",
          "channelId": "search-nonbrand",
          "channelLabel": "Nonbrand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-nonbrand"
        },
        {
          "id": "click-brand",
          "at": "2026-04-08T11:00:00Z",
          "recordedAt": "2026-04-08T11:00:00Z",
          "label": "Brand search ad clicked",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-brand"
        },
        {
          "id": "call-1",
          "at": "2026-04-09T12:00:00Z",
          "recordedAt": "2026-04-09T12:00:00Z",
          "label": "Seller called the website number",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/call",
          "locator": "call-1"
        },
        {
          "id": "qualified-1",
          "at": "2026-04-09T15:00:00Z",
          "recordedAt": "2026-04-09T15:00:00Z",
          "label": "Seller-property opportunity qualified",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/qualified",
          "locator": "qualified-1"
        },
        {
          "id": "assessment-1",
          "at": "2026-04-18T14:00:00Z",
          "recordedAt": "2026-04-18T14:00:00Z",
          "label": "Property assessment completed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/assessment",
          "locator": "assessment-1"
        },
        {
          "id": "offer-1",
          "at": "2026-04-24T10:00:00Z",
          "recordedAt": "2026-04-24T10:00:00Z",
          "label": "Written purchase offer delivered",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/offer",
          "locator": "offer-1"
        },
        {
          "id": "contract-1",
          "at": "2026-05-02T12:00:00Z",
          "recordedAt": "2026-05-02T12:00:00Z",
          "label": "Acquisition contract signed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/contract",
          "locator": "contract-1"
        },
        {
          "id": "marketing-cost",
          "at": "2026-05-03T12:00:00Z",
          "recordedAt": "2026-05-03T12:00:00Z",
          "label": "Acquisition marketing cost allocated",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/cost",
          "locator": "marketing-cost"
        },
        {
          "id": "closing-1",
          "at": "2026-06-02T12:00:00Z",
          "recordedAt": "2026-06-02T12:00:00Z",
          "label": "Property purchase closed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/acquisition",
          "locator": "closing-1"
        },
        {
          "id": "renovation-cost",
          "at": "2026-07-10T12:00:00Z",
          "recordedAt": "2026-07-10T12:00:00Z",
          "label": "Renovation costs reconciled",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/cost",
          "locator": "renovation-cost"
        },
        {
          "id": "resale-1",
          "at": "2026-09-03T12:00:00Z",
          "recordedAt": "2026-09-03T12:00:00Z",
          "label": "Resale proceeds recorded",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/resale",
          "locator": "resale-1"
        },
        {
          "id": "holding-cost",
          "at": "2026-09-05T12:00:00Z",
          "recordedAt": "2026-09-05T12:00:00Z",
          "label": "Holding, financing and transaction costs reconciled",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/cost",
          "locator": "holding-cost"
        }
      ],
      "credit": [
        {
          "channelId": "search-brand",
          "label": "Brand paid search",
          "weight": 1,
          "percentage": 100,
          "touchIds": [
            "click-brand"
          ]
        }
      ],
      "outcome": {
        "qualifiedOpportunities": 1,
        "contracts": 1,
        "acquisitions": 1,
        "resales": 1,
        "canceled": false,
        "stage": "resold",
        "label": "Resale and costs reconciled",
        "capitalDeployed": 210000,
        "resaleProceeds": 295000,
        "contributionBeforeMarketing": 27000,
        "marketingAllocation": 3000,
        "contributionAfterMarketing": 24000,
        "missingCosts": [],
        "contributionStatus": "realized",
        "currency": "USD",
        "sourceIds": [
          "qualified-1",
          "contract-1",
          "marketing-cost",
          "closing-1",
          "renovation-cost",
          "resale-1",
          "holding-cost"
        ]
      },
      "issues": [],
      "creditOutcome": "qualified_seller_property_opportunity",
      "eligibleTouchIds": [
        "click-brand",
        "click-nonbrand"
      ],
      "allocationStatus": "computed",
      "policyVersion": "cash-homebuyer.last.reported.v1",
      "propertyId": "property-104",
      "opportunityId": "acquisition-204",
      "sellerGroupId": "seller-group-14",
      "receiptHash": "fc61983f47dc92539ae3cd702605d5889c60788f0e990e820d41c96d5ef08fca"
    },
    {
      "key": "supported|reported|resale|linear",
      "scenarioId": "supported",
      "evidencePolicyId": "reported",
      "cutoffId": "resale",
      "policyId": "linear",
      "proofKey": "supported|reported|resale",
      "asOf": "2026-09-15T23:59:59Z",
      "status": "complete",
      "summary": "Resale and costs reconciled. Credit describes this qualified opportunity under the selected policy; it does not establish causal lift.",
      "timeline": [
        {
          "id": "click-nonbrand",
          "at": "2026-04-03T10:00:00Z",
          "recordedAt": "2026-04-03T10:00:00Z",
          "label": "Nonbrand search ad clicked",
          "channelId": "search-nonbrand",
          "channelLabel": "Nonbrand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-nonbrand"
        },
        {
          "id": "click-brand",
          "at": "2026-04-08T11:00:00Z",
          "recordedAt": "2026-04-08T11:00:00Z",
          "label": "Brand search ad clicked",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-brand"
        },
        {
          "id": "call-1",
          "at": "2026-04-09T12:00:00Z",
          "recordedAt": "2026-04-09T12:00:00Z",
          "label": "Seller called the website number",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/call",
          "locator": "call-1"
        },
        {
          "id": "qualified-1",
          "at": "2026-04-09T15:00:00Z",
          "recordedAt": "2026-04-09T15:00:00Z",
          "label": "Seller-property opportunity qualified",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/qualified",
          "locator": "qualified-1"
        },
        {
          "id": "assessment-1",
          "at": "2026-04-18T14:00:00Z",
          "recordedAt": "2026-04-18T14:00:00Z",
          "label": "Property assessment completed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/assessment",
          "locator": "assessment-1"
        },
        {
          "id": "offer-1",
          "at": "2026-04-24T10:00:00Z",
          "recordedAt": "2026-04-24T10:00:00Z",
          "label": "Written purchase offer delivered",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/offer",
          "locator": "offer-1"
        },
        {
          "id": "contract-1",
          "at": "2026-05-02T12:00:00Z",
          "recordedAt": "2026-05-02T12:00:00Z",
          "label": "Acquisition contract signed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/contract",
          "locator": "contract-1"
        },
        {
          "id": "marketing-cost",
          "at": "2026-05-03T12:00:00Z",
          "recordedAt": "2026-05-03T12:00:00Z",
          "label": "Acquisition marketing cost allocated",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/cost",
          "locator": "marketing-cost"
        },
        {
          "id": "closing-1",
          "at": "2026-06-02T12:00:00Z",
          "recordedAt": "2026-06-02T12:00:00Z",
          "label": "Property purchase closed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/acquisition",
          "locator": "closing-1"
        },
        {
          "id": "renovation-cost",
          "at": "2026-07-10T12:00:00Z",
          "recordedAt": "2026-07-10T12:00:00Z",
          "label": "Renovation costs reconciled",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/cost",
          "locator": "renovation-cost"
        },
        {
          "id": "resale-1",
          "at": "2026-09-03T12:00:00Z",
          "recordedAt": "2026-09-03T12:00:00Z",
          "label": "Resale proceeds recorded",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/resale",
          "locator": "resale-1"
        },
        {
          "id": "holding-cost",
          "at": "2026-09-05T12:00:00Z",
          "recordedAt": "2026-09-05T12:00:00Z",
          "label": "Holding, financing and transaction costs reconciled",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/cost",
          "locator": "holding-cost"
        }
      ],
      "credit": [
        {
          "channelId": "search-nonbrand",
          "label": "Nonbrand paid search",
          "weight": 0.5,
          "percentage": 50,
          "touchIds": [
            "click-nonbrand"
          ]
        },
        {
          "channelId": "search-brand",
          "label": "Brand paid search",
          "weight": 0.5,
          "percentage": 50,
          "touchIds": [
            "click-brand"
          ]
        }
      ],
      "outcome": {
        "qualifiedOpportunities": 1,
        "contracts": 1,
        "acquisitions": 1,
        "resales": 1,
        "canceled": false,
        "stage": "resold",
        "label": "Resale and costs reconciled",
        "capitalDeployed": 210000,
        "resaleProceeds": 295000,
        "contributionBeforeMarketing": 27000,
        "marketingAllocation": 3000,
        "contributionAfterMarketing": 24000,
        "missingCosts": [],
        "contributionStatus": "realized",
        "currency": "USD",
        "sourceIds": [
          "qualified-1",
          "contract-1",
          "marketing-cost",
          "closing-1",
          "renovation-cost",
          "resale-1",
          "holding-cost"
        ]
      },
      "issues": [],
      "creditOutcome": "qualified_seller_property_opportunity",
      "eligibleTouchIds": [
        "click-brand",
        "click-nonbrand"
      ],
      "allocationStatus": "computed",
      "policyVersion": "cash-homebuyer.linear.reported.v1",
      "propertyId": "property-104",
      "opportunityId": "acquisition-204",
      "sellerGroupId": "seller-group-14",
      "receiptHash": "a2d9d599b4baf4b4cd6d3911b6ab0ef7373e1dd9c9157af5ff87f5647346ebe5"
    },
    {
      "key": "mail|observed|contract|first",
      "scenarioId": "mail",
      "evidencePolicyId": "observed",
      "cutoffId": "contract",
      "policyId": "first",
      "proofKey": "mail|observed|contract",
      "asOf": "2026-05-15T23:59:59Z",
      "status": "complete",
      "summary": "Contract signed · purchase pending. Credit describes this qualified opportunity under the selected policy; it does not establish causal lift.",
      "timeline": [
        {
          "id": "mail-dispatch",
          "at": "2026-03-25T10:00:00Z",
          "recordedAt": "2026-03-25T10:00:00Z",
          "label": "Postcard dispatch recorded",
          "channelId": "mail",
          "channelLabel": "Direct mail",
          "evidenceType": "dispatch",
          "disposition": "excluded",
          "reason": "Mail dispatched; individual attention is unknown.",
          "sourceRef": "synthetic://cash-homebuyer/dispatch",
          "locator": "mail-dispatch"
        },
        {
          "id": "seller-report",
          "at": "2026-03-26T10:00:00Z",
          "recordedAt": "2026-04-10T10:00:00Z",
          "label": "Seller reports seeing the postcard",
          "channelId": "mail",
          "channelLabel": "Direct mail",
          "evidenceType": "reported",
          "disposition": "excluded",
          "reason": "Seller report retained; this policy admits observed interactions only.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "seller-report"
        },
        {
          "id": "click-nonbrand",
          "at": "2026-04-03T10:00:00Z",
          "recordedAt": "2026-04-03T10:00:00Z",
          "label": "Nonbrand search ad clicked",
          "channelId": "search-nonbrand",
          "channelLabel": "Nonbrand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-nonbrand"
        },
        {
          "id": "click-brand",
          "at": "2026-04-08T11:00:00Z",
          "recordedAt": "2026-04-08T11:00:00Z",
          "label": "Brand search ad clicked",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-brand"
        },
        {
          "id": "call-1",
          "at": "2026-04-09T12:00:00Z",
          "recordedAt": "2026-04-09T12:00:00Z",
          "label": "Seller called the website number",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/call",
          "locator": "call-1"
        },
        {
          "id": "qualified-1",
          "at": "2026-04-09T15:00:00Z",
          "recordedAt": "2026-04-09T15:00:00Z",
          "label": "Seller-property opportunity qualified",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/qualified",
          "locator": "qualified-1"
        },
        {
          "id": "assessment-1",
          "at": "2026-04-18T14:00:00Z",
          "recordedAt": "2026-04-18T14:00:00Z",
          "label": "Property assessment completed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/assessment",
          "locator": "assessment-1"
        },
        {
          "id": "offer-1",
          "at": "2026-04-24T10:00:00Z",
          "recordedAt": "2026-04-24T10:00:00Z",
          "label": "Written purchase offer delivered",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/offer",
          "locator": "offer-1"
        },
        {
          "id": "contract-1",
          "at": "2026-05-02T12:00:00Z",
          "recordedAt": "2026-05-02T12:00:00Z",
          "label": "Acquisition contract signed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/contract",
          "locator": "contract-1"
        },
        {
          "id": "marketing-cost",
          "at": "2026-05-03T12:00:00Z",
          "recordedAt": "2026-05-03T12:00:00Z",
          "label": "Acquisition marketing cost allocated",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/cost",
          "locator": "marketing-cost"
        }
      ],
      "credit": [
        {
          "channelId": "search-nonbrand",
          "label": "Nonbrand paid search",
          "weight": 1,
          "percentage": 100,
          "touchIds": [
            "click-nonbrand"
          ]
        }
      ],
      "outcome": {
        "qualifiedOpportunities": 1,
        "contracts": 1,
        "acquisitions": 0,
        "resales": 0,
        "canceled": false,
        "stage": "contract",
        "label": "Contract signed · purchase pending",
        "capitalDeployed": null,
        "resaleProceeds": null,
        "contributionBeforeMarketing": null,
        "marketingAllocation": 3000,
        "contributionAfterMarketing": null,
        "missingCosts": [
          "renovation",
          "holdingAndTransaction"
        ],
        "contributionStatus": "pending",
        "currency": "USD",
        "sourceIds": [
          "qualified-1",
          "contract-1",
          "marketing-cost"
        ]
      },
      "issues": [],
      "creditOutcome": "qualified_seller_property_opportunity",
      "eligibleTouchIds": [
        "click-brand",
        "click-nonbrand"
      ],
      "allocationStatus": "computed",
      "policyVersion": "cash-homebuyer.first.observed.v1",
      "propertyId": "property-104",
      "opportunityId": "acquisition-204",
      "sellerGroupId": "seller-group-14",
      "receiptHash": "f7db128eb80f305357bddbdd36820d6997daf8fd813d02810833bdbe5f641f96"
    },
    {
      "key": "mail|observed|contract|last",
      "scenarioId": "mail",
      "evidencePolicyId": "observed",
      "cutoffId": "contract",
      "policyId": "last",
      "proofKey": "mail|observed|contract",
      "asOf": "2026-05-15T23:59:59Z",
      "status": "complete",
      "summary": "Contract signed · purchase pending. Credit describes this qualified opportunity under the selected policy; it does not establish causal lift.",
      "timeline": [
        {
          "id": "mail-dispatch",
          "at": "2026-03-25T10:00:00Z",
          "recordedAt": "2026-03-25T10:00:00Z",
          "label": "Postcard dispatch recorded",
          "channelId": "mail",
          "channelLabel": "Direct mail",
          "evidenceType": "dispatch",
          "disposition": "excluded",
          "reason": "Mail dispatched; individual attention is unknown.",
          "sourceRef": "synthetic://cash-homebuyer/dispatch",
          "locator": "mail-dispatch"
        },
        {
          "id": "seller-report",
          "at": "2026-03-26T10:00:00Z",
          "recordedAt": "2026-04-10T10:00:00Z",
          "label": "Seller reports seeing the postcard",
          "channelId": "mail",
          "channelLabel": "Direct mail",
          "evidenceType": "reported",
          "disposition": "excluded",
          "reason": "Seller report retained; this policy admits observed interactions only.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "seller-report"
        },
        {
          "id": "click-nonbrand",
          "at": "2026-04-03T10:00:00Z",
          "recordedAt": "2026-04-03T10:00:00Z",
          "label": "Nonbrand search ad clicked",
          "channelId": "search-nonbrand",
          "channelLabel": "Nonbrand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-nonbrand"
        },
        {
          "id": "click-brand",
          "at": "2026-04-08T11:00:00Z",
          "recordedAt": "2026-04-08T11:00:00Z",
          "label": "Brand search ad clicked",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-brand"
        },
        {
          "id": "call-1",
          "at": "2026-04-09T12:00:00Z",
          "recordedAt": "2026-04-09T12:00:00Z",
          "label": "Seller called the website number",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/call",
          "locator": "call-1"
        },
        {
          "id": "qualified-1",
          "at": "2026-04-09T15:00:00Z",
          "recordedAt": "2026-04-09T15:00:00Z",
          "label": "Seller-property opportunity qualified",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/qualified",
          "locator": "qualified-1"
        },
        {
          "id": "assessment-1",
          "at": "2026-04-18T14:00:00Z",
          "recordedAt": "2026-04-18T14:00:00Z",
          "label": "Property assessment completed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/assessment",
          "locator": "assessment-1"
        },
        {
          "id": "offer-1",
          "at": "2026-04-24T10:00:00Z",
          "recordedAt": "2026-04-24T10:00:00Z",
          "label": "Written purchase offer delivered",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/offer",
          "locator": "offer-1"
        },
        {
          "id": "contract-1",
          "at": "2026-05-02T12:00:00Z",
          "recordedAt": "2026-05-02T12:00:00Z",
          "label": "Acquisition contract signed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/contract",
          "locator": "contract-1"
        },
        {
          "id": "marketing-cost",
          "at": "2026-05-03T12:00:00Z",
          "recordedAt": "2026-05-03T12:00:00Z",
          "label": "Acquisition marketing cost allocated",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/cost",
          "locator": "marketing-cost"
        }
      ],
      "credit": [
        {
          "channelId": "search-brand",
          "label": "Brand paid search",
          "weight": 1,
          "percentage": 100,
          "touchIds": [
            "click-brand"
          ]
        }
      ],
      "outcome": {
        "qualifiedOpportunities": 1,
        "contracts": 1,
        "acquisitions": 0,
        "resales": 0,
        "canceled": false,
        "stage": "contract",
        "label": "Contract signed · purchase pending",
        "capitalDeployed": null,
        "resaleProceeds": null,
        "contributionBeforeMarketing": null,
        "marketingAllocation": 3000,
        "contributionAfterMarketing": null,
        "missingCosts": [
          "renovation",
          "holdingAndTransaction"
        ],
        "contributionStatus": "pending",
        "currency": "USD",
        "sourceIds": [
          "qualified-1",
          "contract-1",
          "marketing-cost"
        ]
      },
      "issues": [],
      "creditOutcome": "qualified_seller_property_opportunity",
      "eligibleTouchIds": [
        "click-brand",
        "click-nonbrand"
      ],
      "allocationStatus": "computed",
      "policyVersion": "cash-homebuyer.last.observed.v1",
      "propertyId": "property-104",
      "opportunityId": "acquisition-204",
      "sellerGroupId": "seller-group-14",
      "receiptHash": "529c84de99821b2304481e8bd1e2befb5ef3f986d703244cf6065fe284b804c1"
    },
    {
      "key": "mail|observed|contract|linear",
      "scenarioId": "mail",
      "evidencePolicyId": "observed",
      "cutoffId": "contract",
      "policyId": "linear",
      "proofKey": "mail|observed|contract",
      "asOf": "2026-05-15T23:59:59Z",
      "status": "complete",
      "summary": "Contract signed · purchase pending. Credit describes this qualified opportunity under the selected policy; it does not establish causal lift.",
      "timeline": [
        {
          "id": "mail-dispatch",
          "at": "2026-03-25T10:00:00Z",
          "recordedAt": "2026-03-25T10:00:00Z",
          "label": "Postcard dispatch recorded",
          "channelId": "mail",
          "channelLabel": "Direct mail",
          "evidenceType": "dispatch",
          "disposition": "excluded",
          "reason": "Mail dispatched; individual attention is unknown.",
          "sourceRef": "synthetic://cash-homebuyer/dispatch",
          "locator": "mail-dispatch"
        },
        {
          "id": "seller-report",
          "at": "2026-03-26T10:00:00Z",
          "recordedAt": "2026-04-10T10:00:00Z",
          "label": "Seller reports seeing the postcard",
          "channelId": "mail",
          "channelLabel": "Direct mail",
          "evidenceType": "reported",
          "disposition": "excluded",
          "reason": "Seller report retained; this policy admits observed interactions only.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "seller-report"
        },
        {
          "id": "click-nonbrand",
          "at": "2026-04-03T10:00:00Z",
          "recordedAt": "2026-04-03T10:00:00Z",
          "label": "Nonbrand search ad clicked",
          "channelId": "search-nonbrand",
          "channelLabel": "Nonbrand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-nonbrand"
        },
        {
          "id": "click-brand",
          "at": "2026-04-08T11:00:00Z",
          "recordedAt": "2026-04-08T11:00:00Z",
          "label": "Brand search ad clicked",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-brand"
        },
        {
          "id": "call-1",
          "at": "2026-04-09T12:00:00Z",
          "recordedAt": "2026-04-09T12:00:00Z",
          "label": "Seller called the website number",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/call",
          "locator": "call-1"
        },
        {
          "id": "qualified-1",
          "at": "2026-04-09T15:00:00Z",
          "recordedAt": "2026-04-09T15:00:00Z",
          "label": "Seller-property opportunity qualified",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/qualified",
          "locator": "qualified-1"
        },
        {
          "id": "assessment-1",
          "at": "2026-04-18T14:00:00Z",
          "recordedAt": "2026-04-18T14:00:00Z",
          "label": "Property assessment completed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/assessment",
          "locator": "assessment-1"
        },
        {
          "id": "offer-1",
          "at": "2026-04-24T10:00:00Z",
          "recordedAt": "2026-04-24T10:00:00Z",
          "label": "Written purchase offer delivered",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/offer",
          "locator": "offer-1"
        },
        {
          "id": "contract-1",
          "at": "2026-05-02T12:00:00Z",
          "recordedAt": "2026-05-02T12:00:00Z",
          "label": "Acquisition contract signed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/contract",
          "locator": "contract-1"
        },
        {
          "id": "marketing-cost",
          "at": "2026-05-03T12:00:00Z",
          "recordedAt": "2026-05-03T12:00:00Z",
          "label": "Acquisition marketing cost allocated",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/cost",
          "locator": "marketing-cost"
        }
      ],
      "credit": [
        {
          "channelId": "search-nonbrand",
          "label": "Nonbrand paid search",
          "weight": 0.5,
          "percentage": 50,
          "touchIds": [
            "click-nonbrand"
          ]
        },
        {
          "channelId": "search-brand",
          "label": "Brand paid search",
          "weight": 0.5,
          "percentage": 50,
          "touchIds": [
            "click-brand"
          ]
        }
      ],
      "outcome": {
        "qualifiedOpportunities": 1,
        "contracts": 1,
        "acquisitions": 0,
        "resales": 0,
        "canceled": false,
        "stage": "contract",
        "label": "Contract signed · purchase pending",
        "capitalDeployed": null,
        "resaleProceeds": null,
        "contributionBeforeMarketing": null,
        "marketingAllocation": 3000,
        "contributionAfterMarketing": null,
        "missingCosts": [
          "renovation",
          "holdingAndTransaction"
        ],
        "contributionStatus": "pending",
        "currency": "USD",
        "sourceIds": [
          "qualified-1",
          "contract-1",
          "marketing-cost"
        ]
      },
      "issues": [],
      "creditOutcome": "qualified_seller_property_opportunity",
      "eligibleTouchIds": [
        "click-brand",
        "click-nonbrand"
      ],
      "allocationStatus": "computed",
      "policyVersion": "cash-homebuyer.linear.observed.v1",
      "propertyId": "property-104",
      "opportunityId": "acquisition-204",
      "sellerGroupId": "seller-group-14",
      "receiptHash": "c79eb3495e4edfa396ce3facdd3731a1173cddfda5cb0e36d8986ec2a0ae074c"
    },
    {
      "key": "mail|observed|acquired|first",
      "scenarioId": "mail",
      "evidencePolicyId": "observed",
      "cutoffId": "acquired",
      "policyId": "first",
      "proofKey": "mail|observed|acquired",
      "asOf": "2026-06-15T23:59:59Z",
      "status": "complete",
      "summary": "Purchase closed · resale pending. Credit describes this qualified opportunity under the selected policy; it does not establish causal lift.",
      "timeline": [
        {
          "id": "mail-dispatch",
          "at": "2026-03-25T10:00:00Z",
          "recordedAt": "2026-03-25T10:00:00Z",
          "label": "Postcard dispatch recorded",
          "channelId": "mail",
          "channelLabel": "Direct mail",
          "evidenceType": "dispatch",
          "disposition": "excluded",
          "reason": "Mail dispatched; individual attention is unknown.",
          "sourceRef": "synthetic://cash-homebuyer/dispatch",
          "locator": "mail-dispatch"
        },
        {
          "id": "seller-report",
          "at": "2026-03-26T10:00:00Z",
          "recordedAt": "2026-04-10T10:00:00Z",
          "label": "Seller reports seeing the postcard",
          "channelId": "mail",
          "channelLabel": "Direct mail",
          "evidenceType": "reported",
          "disposition": "excluded",
          "reason": "Seller report retained; this policy admits observed interactions only.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "seller-report"
        },
        {
          "id": "click-nonbrand",
          "at": "2026-04-03T10:00:00Z",
          "recordedAt": "2026-04-03T10:00:00Z",
          "label": "Nonbrand search ad clicked",
          "channelId": "search-nonbrand",
          "channelLabel": "Nonbrand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-nonbrand"
        },
        {
          "id": "click-brand",
          "at": "2026-04-08T11:00:00Z",
          "recordedAt": "2026-04-08T11:00:00Z",
          "label": "Brand search ad clicked",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-brand"
        },
        {
          "id": "call-1",
          "at": "2026-04-09T12:00:00Z",
          "recordedAt": "2026-04-09T12:00:00Z",
          "label": "Seller called the website number",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/call",
          "locator": "call-1"
        },
        {
          "id": "qualified-1",
          "at": "2026-04-09T15:00:00Z",
          "recordedAt": "2026-04-09T15:00:00Z",
          "label": "Seller-property opportunity qualified",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/qualified",
          "locator": "qualified-1"
        },
        {
          "id": "assessment-1",
          "at": "2026-04-18T14:00:00Z",
          "recordedAt": "2026-04-18T14:00:00Z",
          "label": "Property assessment completed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/assessment",
          "locator": "assessment-1"
        },
        {
          "id": "offer-1",
          "at": "2026-04-24T10:00:00Z",
          "recordedAt": "2026-04-24T10:00:00Z",
          "label": "Written purchase offer delivered",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/offer",
          "locator": "offer-1"
        },
        {
          "id": "contract-1",
          "at": "2026-05-02T12:00:00Z",
          "recordedAt": "2026-05-02T12:00:00Z",
          "label": "Acquisition contract signed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/contract",
          "locator": "contract-1"
        },
        {
          "id": "marketing-cost",
          "at": "2026-05-03T12:00:00Z",
          "recordedAt": "2026-05-03T12:00:00Z",
          "label": "Acquisition marketing cost allocated",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/cost",
          "locator": "marketing-cost"
        },
        {
          "id": "closing-1",
          "at": "2026-06-02T12:00:00Z",
          "recordedAt": "2026-06-02T12:00:00Z",
          "label": "Property purchase closed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/acquisition",
          "locator": "closing-1"
        }
      ],
      "credit": [
        {
          "channelId": "search-nonbrand",
          "label": "Nonbrand paid search",
          "weight": 1,
          "percentage": 100,
          "touchIds": [
            "click-nonbrand"
          ]
        }
      ],
      "outcome": {
        "qualifiedOpportunities": 1,
        "contracts": 1,
        "acquisitions": 1,
        "resales": 0,
        "canceled": false,
        "stage": "acquired",
        "label": "Purchase closed · resale pending",
        "capitalDeployed": 210000,
        "resaleProceeds": null,
        "contributionBeforeMarketing": null,
        "marketingAllocation": 3000,
        "contributionAfterMarketing": null,
        "missingCosts": [
          "renovation",
          "holdingAndTransaction"
        ],
        "contributionStatus": "pending",
        "currency": "USD",
        "sourceIds": [
          "qualified-1",
          "contract-1",
          "marketing-cost",
          "closing-1"
        ]
      },
      "issues": [],
      "creditOutcome": "qualified_seller_property_opportunity",
      "eligibleTouchIds": [
        "click-brand",
        "click-nonbrand"
      ],
      "allocationStatus": "computed",
      "policyVersion": "cash-homebuyer.first.observed.v1",
      "propertyId": "property-104",
      "opportunityId": "acquisition-204",
      "sellerGroupId": "seller-group-14",
      "receiptHash": "ed45ddd546bbcb5420ab7a1aab697de2e442da7d8e0ff3ee20dd3975af38fcda"
    },
    {
      "key": "mail|observed|acquired|last",
      "scenarioId": "mail",
      "evidencePolicyId": "observed",
      "cutoffId": "acquired",
      "policyId": "last",
      "proofKey": "mail|observed|acquired",
      "asOf": "2026-06-15T23:59:59Z",
      "status": "complete",
      "summary": "Purchase closed · resale pending. Credit describes this qualified opportunity under the selected policy; it does not establish causal lift.",
      "timeline": [
        {
          "id": "mail-dispatch",
          "at": "2026-03-25T10:00:00Z",
          "recordedAt": "2026-03-25T10:00:00Z",
          "label": "Postcard dispatch recorded",
          "channelId": "mail",
          "channelLabel": "Direct mail",
          "evidenceType": "dispatch",
          "disposition": "excluded",
          "reason": "Mail dispatched; individual attention is unknown.",
          "sourceRef": "synthetic://cash-homebuyer/dispatch",
          "locator": "mail-dispatch"
        },
        {
          "id": "seller-report",
          "at": "2026-03-26T10:00:00Z",
          "recordedAt": "2026-04-10T10:00:00Z",
          "label": "Seller reports seeing the postcard",
          "channelId": "mail",
          "channelLabel": "Direct mail",
          "evidenceType": "reported",
          "disposition": "excluded",
          "reason": "Seller report retained; this policy admits observed interactions only.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "seller-report"
        },
        {
          "id": "click-nonbrand",
          "at": "2026-04-03T10:00:00Z",
          "recordedAt": "2026-04-03T10:00:00Z",
          "label": "Nonbrand search ad clicked",
          "channelId": "search-nonbrand",
          "channelLabel": "Nonbrand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-nonbrand"
        },
        {
          "id": "click-brand",
          "at": "2026-04-08T11:00:00Z",
          "recordedAt": "2026-04-08T11:00:00Z",
          "label": "Brand search ad clicked",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-brand"
        },
        {
          "id": "call-1",
          "at": "2026-04-09T12:00:00Z",
          "recordedAt": "2026-04-09T12:00:00Z",
          "label": "Seller called the website number",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/call",
          "locator": "call-1"
        },
        {
          "id": "qualified-1",
          "at": "2026-04-09T15:00:00Z",
          "recordedAt": "2026-04-09T15:00:00Z",
          "label": "Seller-property opportunity qualified",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/qualified",
          "locator": "qualified-1"
        },
        {
          "id": "assessment-1",
          "at": "2026-04-18T14:00:00Z",
          "recordedAt": "2026-04-18T14:00:00Z",
          "label": "Property assessment completed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/assessment",
          "locator": "assessment-1"
        },
        {
          "id": "offer-1",
          "at": "2026-04-24T10:00:00Z",
          "recordedAt": "2026-04-24T10:00:00Z",
          "label": "Written purchase offer delivered",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/offer",
          "locator": "offer-1"
        },
        {
          "id": "contract-1",
          "at": "2026-05-02T12:00:00Z",
          "recordedAt": "2026-05-02T12:00:00Z",
          "label": "Acquisition contract signed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/contract",
          "locator": "contract-1"
        },
        {
          "id": "marketing-cost",
          "at": "2026-05-03T12:00:00Z",
          "recordedAt": "2026-05-03T12:00:00Z",
          "label": "Acquisition marketing cost allocated",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/cost",
          "locator": "marketing-cost"
        },
        {
          "id": "closing-1",
          "at": "2026-06-02T12:00:00Z",
          "recordedAt": "2026-06-02T12:00:00Z",
          "label": "Property purchase closed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/acquisition",
          "locator": "closing-1"
        }
      ],
      "credit": [
        {
          "channelId": "search-brand",
          "label": "Brand paid search",
          "weight": 1,
          "percentage": 100,
          "touchIds": [
            "click-brand"
          ]
        }
      ],
      "outcome": {
        "qualifiedOpportunities": 1,
        "contracts": 1,
        "acquisitions": 1,
        "resales": 0,
        "canceled": false,
        "stage": "acquired",
        "label": "Purchase closed · resale pending",
        "capitalDeployed": 210000,
        "resaleProceeds": null,
        "contributionBeforeMarketing": null,
        "marketingAllocation": 3000,
        "contributionAfterMarketing": null,
        "missingCosts": [
          "renovation",
          "holdingAndTransaction"
        ],
        "contributionStatus": "pending",
        "currency": "USD",
        "sourceIds": [
          "qualified-1",
          "contract-1",
          "marketing-cost",
          "closing-1"
        ]
      },
      "issues": [],
      "creditOutcome": "qualified_seller_property_opportunity",
      "eligibleTouchIds": [
        "click-brand",
        "click-nonbrand"
      ],
      "allocationStatus": "computed",
      "policyVersion": "cash-homebuyer.last.observed.v1",
      "propertyId": "property-104",
      "opportunityId": "acquisition-204",
      "sellerGroupId": "seller-group-14",
      "receiptHash": "5179772a71d0141fb2321404f5aaf3c8c144e82f17ff917fedea49ef05435d88"
    },
    {
      "key": "mail|observed|acquired|linear",
      "scenarioId": "mail",
      "evidencePolicyId": "observed",
      "cutoffId": "acquired",
      "policyId": "linear",
      "proofKey": "mail|observed|acquired",
      "asOf": "2026-06-15T23:59:59Z",
      "status": "complete",
      "summary": "Purchase closed · resale pending. Credit describes this qualified opportunity under the selected policy; it does not establish causal lift.",
      "timeline": [
        {
          "id": "mail-dispatch",
          "at": "2026-03-25T10:00:00Z",
          "recordedAt": "2026-03-25T10:00:00Z",
          "label": "Postcard dispatch recorded",
          "channelId": "mail",
          "channelLabel": "Direct mail",
          "evidenceType": "dispatch",
          "disposition": "excluded",
          "reason": "Mail dispatched; individual attention is unknown.",
          "sourceRef": "synthetic://cash-homebuyer/dispatch",
          "locator": "mail-dispatch"
        },
        {
          "id": "seller-report",
          "at": "2026-03-26T10:00:00Z",
          "recordedAt": "2026-04-10T10:00:00Z",
          "label": "Seller reports seeing the postcard",
          "channelId": "mail",
          "channelLabel": "Direct mail",
          "evidenceType": "reported",
          "disposition": "excluded",
          "reason": "Seller report retained; this policy admits observed interactions only.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "seller-report"
        },
        {
          "id": "click-nonbrand",
          "at": "2026-04-03T10:00:00Z",
          "recordedAt": "2026-04-03T10:00:00Z",
          "label": "Nonbrand search ad clicked",
          "channelId": "search-nonbrand",
          "channelLabel": "Nonbrand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-nonbrand"
        },
        {
          "id": "click-brand",
          "at": "2026-04-08T11:00:00Z",
          "recordedAt": "2026-04-08T11:00:00Z",
          "label": "Brand search ad clicked",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-brand"
        },
        {
          "id": "call-1",
          "at": "2026-04-09T12:00:00Z",
          "recordedAt": "2026-04-09T12:00:00Z",
          "label": "Seller called the website number",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/call",
          "locator": "call-1"
        },
        {
          "id": "qualified-1",
          "at": "2026-04-09T15:00:00Z",
          "recordedAt": "2026-04-09T15:00:00Z",
          "label": "Seller-property opportunity qualified",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/qualified",
          "locator": "qualified-1"
        },
        {
          "id": "assessment-1",
          "at": "2026-04-18T14:00:00Z",
          "recordedAt": "2026-04-18T14:00:00Z",
          "label": "Property assessment completed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/assessment",
          "locator": "assessment-1"
        },
        {
          "id": "offer-1",
          "at": "2026-04-24T10:00:00Z",
          "recordedAt": "2026-04-24T10:00:00Z",
          "label": "Written purchase offer delivered",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/offer",
          "locator": "offer-1"
        },
        {
          "id": "contract-1",
          "at": "2026-05-02T12:00:00Z",
          "recordedAt": "2026-05-02T12:00:00Z",
          "label": "Acquisition contract signed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/contract",
          "locator": "contract-1"
        },
        {
          "id": "marketing-cost",
          "at": "2026-05-03T12:00:00Z",
          "recordedAt": "2026-05-03T12:00:00Z",
          "label": "Acquisition marketing cost allocated",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/cost",
          "locator": "marketing-cost"
        },
        {
          "id": "closing-1",
          "at": "2026-06-02T12:00:00Z",
          "recordedAt": "2026-06-02T12:00:00Z",
          "label": "Property purchase closed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/acquisition",
          "locator": "closing-1"
        }
      ],
      "credit": [
        {
          "channelId": "search-nonbrand",
          "label": "Nonbrand paid search",
          "weight": 0.5,
          "percentage": 50,
          "touchIds": [
            "click-nonbrand"
          ]
        },
        {
          "channelId": "search-brand",
          "label": "Brand paid search",
          "weight": 0.5,
          "percentage": 50,
          "touchIds": [
            "click-brand"
          ]
        }
      ],
      "outcome": {
        "qualifiedOpportunities": 1,
        "contracts": 1,
        "acquisitions": 1,
        "resales": 0,
        "canceled": false,
        "stage": "acquired",
        "label": "Purchase closed · resale pending",
        "capitalDeployed": 210000,
        "resaleProceeds": null,
        "contributionBeforeMarketing": null,
        "marketingAllocation": 3000,
        "contributionAfterMarketing": null,
        "missingCosts": [
          "renovation",
          "holdingAndTransaction"
        ],
        "contributionStatus": "pending",
        "currency": "USD",
        "sourceIds": [
          "qualified-1",
          "contract-1",
          "marketing-cost",
          "closing-1"
        ]
      },
      "issues": [],
      "creditOutcome": "qualified_seller_property_opportunity",
      "eligibleTouchIds": [
        "click-brand",
        "click-nonbrand"
      ],
      "allocationStatus": "computed",
      "policyVersion": "cash-homebuyer.linear.observed.v1",
      "propertyId": "property-104",
      "opportunityId": "acquisition-204",
      "sellerGroupId": "seller-group-14",
      "receiptHash": "6bb847f949abf8b568561fbc0cc85ca3be2666183ebc963198414c48a11a3467"
    },
    {
      "key": "mail|observed|resale|first",
      "scenarioId": "mail",
      "evidencePolicyId": "observed",
      "cutoffId": "resale",
      "policyId": "first",
      "proofKey": "mail|observed|resale",
      "asOf": "2026-09-15T23:59:59Z",
      "status": "complete",
      "summary": "Resale and costs reconciled. Credit describes this qualified opportunity under the selected policy; it does not establish causal lift.",
      "timeline": [
        {
          "id": "mail-dispatch",
          "at": "2026-03-25T10:00:00Z",
          "recordedAt": "2026-03-25T10:00:00Z",
          "label": "Postcard dispatch recorded",
          "channelId": "mail",
          "channelLabel": "Direct mail",
          "evidenceType": "dispatch",
          "disposition": "excluded",
          "reason": "Mail dispatched; individual attention is unknown.",
          "sourceRef": "synthetic://cash-homebuyer/dispatch",
          "locator": "mail-dispatch"
        },
        {
          "id": "seller-report",
          "at": "2026-03-26T10:00:00Z",
          "recordedAt": "2026-04-10T10:00:00Z",
          "label": "Seller reports seeing the postcard",
          "channelId": "mail",
          "channelLabel": "Direct mail",
          "evidenceType": "reported",
          "disposition": "excluded",
          "reason": "Seller report retained; this policy admits observed interactions only.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "seller-report"
        },
        {
          "id": "click-nonbrand",
          "at": "2026-04-03T10:00:00Z",
          "recordedAt": "2026-04-03T10:00:00Z",
          "label": "Nonbrand search ad clicked",
          "channelId": "search-nonbrand",
          "channelLabel": "Nonbrand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-nonbrand"
        },
        {
          "id": "click-brand",
          "at": "2026-04-08T11:00:00Z",
          "recordedAt": "2026-04-08T11:00:00Z",
          "label": "Brand search ad clicked",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-brand"
        },
        {
          "id": "call-1",
          "at": "2026-04-09T12:00:00Z",
          "recordedAt": "2026-04-09T12:00:00Z",
          "label": "Seller called the website number",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/call",
          "locator": "call-1"
        },
        {
          "id": "qualified-1",
          "at": "2026-04-09T15:00:00Z",
          "recordedAt": "2026-04-09T15:00:00Z",
          "label": "Seller-property opportunity qualified",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/qualified",
          "locator": "qualified-1"
        },
        {
          "id": "assessment-1",
          "at": "2026-04-18T14:00:00Z",
          "recordedAt": "2026-04-18T14:00:00Z",
          "label": "Property assessment completed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/assessment",
          "locator": "assessment-1"
        },
        {
          "id": "offer-1",
          "at": "2026-04-24T10:00:00Z",
          "recordedAt": "2026-04-24T10:00:00Z",
          "label": "Written purchase offer delivered",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/offer",
          "locator": "offer-1"
        },
        {
          "id": "contract-1",
          "at": "2026-05-02T12:00:00Z",
          "recordedAt": "2026-05-02T12:00:00Z",
          "label": "Acquisition contract signed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/contract",
          "locator": "contract-1"
        },
        {
          "id": "marketing-cost",
          "at": "2026-05-03T12:00:00Z",
          "recordedAt": "2026-05-03T12:00:00Z",
          "label": "Acquisition marketing cost allocated",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/cost",
          "locator": "marketing-cost"
        },
        {
          "id": "closing-1",
          "at": "2026-06-02T12:00:00Z",
          "recordedAt": "2026-06-02T12:00:00Z",
          "label": "Property purchase closed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/acquisition",
          "locator": "closing-1"
        },
        {
          "id": "renovation-cost",
          "at": "2026-07-10T12:00:00Z",
          "recordedAt": "2026-07-10T12:00:00Z",
          "label": "Renovation costs reconciled",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/cost",
          "locator": "renovation-cost"
        },
        {
          "id": "resale-1",
          "at": "2026-09-03T12:00:00Z",
          "recordedAt": "2026-09-03T12:00:00Z",
          "label": "Resale proceeds recorded",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/resale",
          "locator": "resale-1"
        },
        {
          "id": "holding-cost",
          "at": "2026-09-05T12:00:00Z",
          "recordedAt": "2026-09-05T12:00:00Z",
          "label": "Holding, financing and transaction costs reconciled",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/cost",
          "locator": "holding-cost"
        }
      ],
      "credit": [
        {
          "channelId": "search-nonbrand",
          "label": "Nonbrand paid search",
          "weight": 1,
          "percentage": 100,
          "touchIds": [
            "click-nonbrand"
          ]
        }
      ],
      "outcome": {
        "qualifiedOpportunities": 1,
        "contracts": 1,
        "acquisitions": 1,
        "resales": 1,
        "canceled": false,
        "stage": "resold",
        "label": "Resale and costs reconciled",
        "capitalDeployed": 210000,
        "resaleProceeds": 295000,
        "contributionBeforeMarketing": 27000,
        "marketingAllocation": 3000,
        "contributionAfterMarketing": 24000,
        "missingCosts": [],
        "contributionStatus": "realized",
        "currency": "USD",
        "sourceIds": [
          "qualified-1",
          "contract-1",
          "marketing-cost",
          "closing-1",
          "renovation-cost",
          "resale-1",
          "holding-cost"
        ]
      },
      "issues": [],
      "creditOutcome": "qualified_seller_property_opportunity",
      "eligibleTouchIds": [
        "click-brand",
        "click-nonbrand"
      ],
      "allocationStatus": "computed",
      "policyVersion": "cash-homebuyer.first.observed.v1",
      "propertyId": "property-104",
      "opportunityId": "acquisition-204",
      "sellerGroupId": "seller-group-14",
      "receiptHash": "8f46fb54db724a3178bf8f45de5a10af6db2bdd9e3169b24d927bee2a9092aaa"
    },
    {
      "key": "mail|observed|resale|last",
      "scenarioId": "mail",
      "evidencePolicyId": "observed",
      "cutoffId": "resale",
      "policyId": "last",
      "proofKey": "mail|observed|resale",
      "asOf": "2026-09-15T23:59:59Z",
      "status": "complete",
      "summary": "Resale and costs reconciled. Credit describes this qualified opportunity under the selected policy; it does not establish causal lift.",
      "timeline": [
        {
          "id": "mail-dispatch",
          "at": "2026-03-25T10:00:00Z",
          "recordedAt": "2026-03-25T10:00:00Z",
          "label": "Postcard dispatch recorded",
          "channelId": "mail",
          "channelLabel": "Direct mail",
          "evidenceType": "dispatch",
          "disposition": "excluded",
          "reason": "Mail dispatched; individual attention is unknown.",
          "sourceRef": "synthetic://cash-homebuyer/dispatch",
          "locator": "mail-dispatch"
        },
        {
          "id": "seller-report",
          "at": "2026-03-26T10:00:00Z",
          "recordedAt": "2026-04-10T10:00:00Z",
          "label": "Seller reports seeing the postcard",
          "channelId": "mail",
          "channelLabel": "Direct mail",
          "evidenceType": "reported",
          "disposition": "excluded",
          "reason": "Seller report retained; this policy admits observed interactions only.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "seller-report"
        },
        {
          "id": "click-nonbrand",
          "at": "2026-04-03T10:00:00Z",
          "recordedAt": "2026-04-03T10:00:00Z",
          "label": "Nonbrand search ad clicked",
          "channelId": "search-nonbrand",
          "channelLabel": "Nonbrand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-nonbrand"
        },
        {
          "id": "click-brand",
          "at": "2026-04-08T11:00:00Z",
          "recordedAt": "2026-04-08T11:00:00Z",
          "label": "Brand search ad clicked",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-brand"
        },
        {
          "id": "call-1",
          "at": "2026-04-09T12:00:00Z",
          "recordedAt": "2026-04-09T12:00:00Z",
          "label": "Seller called the website number",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/call",
          "locator": "call-1"
        },
        {
          "id": "qualified-1",
          "at": "2026-04-09T15:00:00Z",
          "recordedAt": "2026-04-09T15:00:00Z",
          "label": "Seller-property opportunity qualified",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/qualified",
          "locator": "qualified-1"
        },
        {
          "id": "assessment-1",
          "at": "2026-04-18T14:00:00Z",
          "recordedAt": "2026-04-18T14:00:00Z",
          "label": "Property assessment completed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/assessment",
          "locator": "assessment-1"
        },
        {
          "id": "offer-1",
          "at": "2026-04-24T10:00:00Z",
          "recordedAt": "2026-04-24T10:00:00Z",
          "label": "Written purchase offer delivered",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/offer",
          "locator": "offer-1"
        },
        {
          "id": "contract-1",
          "at": "2026-05-02T12:00:00Z",
          "recordedAt": "2026-05-02T12:00:00Z",
          "label": "Acquisition contract signed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/contract",
          "locator": "contract-1"
        },
        {
          "id": "marketing-cost",
          "at": "2026-05-03T12:00:00Z",
          "recordedAt": "2026-05-03T12:00:00Z",
          "label": "Acquisition marketing cost allocated",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/cost",
          "locator": "marketing-cost"
        },
        {
          "id": "closing-1",
          "at": "2026-06-02T12:00:00Z",
          "recordedAt": "2026-06-02T12:00:00Z",
          "label": "Property purchase closed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/acquisition",
          "locator": "closing-1"
        },
        {
          "id": "renovation-cost",
          "at": "2026-07-10T12:00:00Z",
          "recordedAt": "2026-07-10T12:00:00Z",
          "label": "Renovation costs reconciled",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/cost",
          "locator": "renovation-cost"
        },
        {
          "id": "resale-1",
          "at": "2026-09-03T12:00:00Z",
          "recordedAt": "2026-09-03T12:00:00Z",
          "label": "Resale proceeds recorded",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/resale",
          "locator": "resale-1"
        },
        {
          "id": "holding-cost",
          "at": "2026-09-05T12:00:00Z",
          "recordedAt": "2026-09-05T12:00:00Z",
          "label": "Holding, financing and transaction costs reconciled",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/cost",
          "locator": "holding-cost"
        }
      ],
      "credit": [
        {
          "channelId": "search-brand",
          "label": "Brand paid search",
          "weight": 1,
          "percentage": 100,
          "touchIds": [
            "click-brand"
          ]
        }
      ],
      "outcome": {
        "qualifiedOpportunities": 1,
        "contracts": 1,
        "acquisitions": 1,
        "resales": 1,
        "canceled": false,
        "stage": "resold",
        "label": "Resale and costs reconciled",
        "capitalDeployed": 210000,
        "resaleProceeds": 295000,
        "contributionBeforeMarketing": 27000,
        "marketingAllocation": 3000,
        "contributionAfterMarketing": 24000,
        "missingCosts": [],
        "contributionStatus": "realized",
        "currency": "USD",
        "sourceIds": [
          "qualified-1",
          "contract-1",
          "marketing-cost",
          "closing-1",
          "renovation-cost",
          "resale-1",
          "holding-cost"
        ]
      },
      "issues": [],
      "creditOutcome": "qualified_seller_property_opportunity",
      "eligibleTouchIds": [
        "click-brand",
        "click-nonbrand"
      ],
      "allocationStatus": "computed",
      "policyVersion": "cash-homebuyer.last.observed.v1",
      "propertyId": "property-104",
      "opportunityId": "acquisition-204",
      "sellerGroupId": "seller-group-14",
      "receiptHash": "a1ea75e5128ea0ca1a28c41a70f5c496ffb38b1492f3941b6927476811c721ec"
    },
    {
      "key": "mail|observed|resale|linear",
      "scenarioId": "mail",
      "evidencePolicyId": "observed",
      "cutoffId": "resale",
      "policyId": "linear",
      "proofKey": "mail|observed|resale",
      "asOf": "2026-09-15T23:59:59Z",
      "status": "complete",
      "summary": "Resale and costs reconciled. Credit describes this qualified opportunity under the selected policy; it does not establish causal lift.",
      "timeline": [
        {
          "id": "mail-dispatch",
          "at": "2026-03-25T10:00:00Z",
          "recordedAt": "2026-03-25T10:00:00Z",
          "label": "Postcard dispatch recorded",
          "channelId": "mail",
          "channelLabel": "Direct mail",
          "evidenceType": "dispatch",
          "disposition": "excluded",
          "reason": "Mail dispatched; individual attention is unknown.",
          "sourceRef": "synthetic://cash-homebuyer/dispatch",
          "locator": "mail-dispatch"
        },
        {
          "id": "seller-report",
          "at": "2026-03-26T10:00:00Z",
          "recordedAt": "2026-04-10T10:00:00Z",
          "label": "Seller reports seeing the postcard",
          "channelId": "mail",
          "channelLabel": "Direct mail",
          "evidenceType": "reported",
          "disposition": "excluded",
          "reason": "Seller report retained; this policy admits observed interactions only.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "seller-report"
        },
        {
          "id": "click-nonbrand",
          "at": "2026-04-03T10:00:00Z",
          "recordedAt": "2026-04-03T10:00:00Z",
          "label": "Nonbrand search ad clicked",
          "channelId": "search-nonbrand",
          "channelLabel": "Nonbrand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-nonbrand"
        },
        {
          "id": "click-brand",
          "at": "2026-04-08T11:00:00Z",
          "recordedAt": "2026-04-08T11:00:00Z",
          "label": "Brand search ad clicked",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-brand"
        },
        {
          "id": "call-1",
          "at": "2026-04-09T12:00:00Z",
          "recordedAt": "2026-04-09T12:00:00Z",
          "label": "Seller called the website number",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/call",
          "locator": "call-1"
        },
        {
          "id": "qualified-1",
          "at": "2026-04-09T15:00:00Z",
          "recordedAt": "2026-04-09T15:00:00Z",
          "label": "Seller-property opportunity qualified",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/qualified",
          "locator": "qualified-1"
        },
        {
          "id": "assessment-1",
          "at": "2026-04-18T14:00:00Z",
          "recordedAt": "2026-04-18T14:00:00Z",
          "label": "Property assessment completed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/assessment",
          "locator": "assessment-1"
        },
        {
          "id": "offer-1",
          "at": "2026-04-24T10:00:00Z",
          "recordedAt": "2026-04-24T10:00:00Z",
          "label": "Written purchase offer delivered",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/offer",
          "locator": "offer-1"
        },
        {
          "id": "contract-1",
          "at": "2026-05-02T12:00:00Z",
          "recordedAt": "2026-05-02T12:00:00Z",
          "label": "Acquisition contract signed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/contract",
          "locator": "contract-1"
        },
        {
          "id": "marketing-cost",
          "at": "2026-05-03T12:00:00Z",
          "recordedAt": "2026-05-03T12:00:00Z",
          "label": "Acquisition marketing cost allocated",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/cost",
          "locator": "marketing-cost"
        },
        {
          "id": "closing-1",
          "at": "2026-06-02T12:00:00Z",
          "recordedAt": "2026-06-02T12:00:00Z",
          "label": "Property purchase closed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/acquisition",
          "locator": "closing-1"
        },
        {
          "id": "renovation-cost",
          "at": "2026-07-10T12:00:00Z",
          "recordedAt": "2026-07-10T12:00:00Z",
          "label": "Renovation costs reconciled",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/cost",
          "locator": "renovation-cost"
        },
        {
          "id": "resale-1",
          "at": "2026-09-03T12:00:00Z",
          "recordedAt": "2026-09-03T12:00:00Z",
          "label": "Resale proceeds recorded",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/resale",
          "locator": "resale-1"
        },
        {
          "id": "holding-cost",
          "at": "2026-09-05T12:00:00Z",
          "recordedAt": "2026-09-05T12:00:00Z",
          "label": "Holding, financing and transaction costs reconciled",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/cost",
          "locator": "holding-cost"
        }
      ],
      "credit": [
        {
          "channelId": "search-nonbrand",
          "label": "Nonbrand paid search",
          "weight": 0.5,
          "percentage": 50,
          "touchIds": [
            "click-nonbrand"
          ]
        },
        {
          "channelId": "search-brand",
          "label": "Brand paid search",
          "weight": 0.5,
          "percentage": 50,
          "touchIds": [
            "click-brand"
          ]
        }
      ],
      "outcome": {
        "qualifiedOpportunities": 1,
        "contracts": 1,
        "acquisitions": 1,
        "resales": 1,
        "canceled": false,
        "stage": "resold",
        "label": "Resale and costs reconciled",
        "capitalDeployed": 210000,
        "resaleProceeds": 295000,
        "contributionBeforeMarketing": 27000,
        "marketingAllocation": 3000,
        "contributionAfterMarketing": 24000,
        "missingCosts": [],
        "contributionStatus": "realized",
        "currency": "USD",
        "sourceIds": [
          "qualified-1",
          "contract-1",
          "marketing-cost",
          "closing-1",
          "renovation-cost",
          "resale-1",
          "holding-cost"
        ]
      },
      "issues": [],
      "creditOutcome": "qualified_seller_property_opportunity",
      "eligibleTouchIds": [
        "click-brand",
        "click-nonbrand"
      ],
      "allocationStatus": "computed",
      "policyVersion": "cash-homebuyer.linear.observed.v1",
      "propertyId": "property-104",
      "opportunityId": "acquisition-204",
      "sellerGroupId": "seller-group-14",
      "receiptHash": "ba1d742f778e4b453dbb2f18a9ad68145bd3f0cf0efc2bc3405f822dd5ecaeef"
    },
    {
      "key": "mail|reported|contract|first",
      "scenarioId": "mail",
      "evidencePolicyId": "reported",
      "cutoffId": "contract",
      "policyId": "first",
      "proofKey": "mail|reported|contract",
      "asOf": "2026-05-15T23:59:59Z",
      "status": "complete",
      "summary": "Contract signed · purchase pending. Credit describes this qualified opportunity under the selected policy; it does not establish causal lift.",
      "timeline": [
        {
          "id": "mail-dispatch",
          "at": "2026-03-25T10:00:00Z",
          "recordedAt": "2026-03-25T10:00:00Z",
          "label": "Postcard dispatch recorded",
          "channelId": "mail",
          "channelLabel": "Direct mail",
          "evidenceType": "dispatch",
          "disposition": "excluded",
          "reason": "Mail dispatched; individual attention is unknown.",
          "sourceRef": "synthetic://cash-homebuyer/dispatch",
          "locator": "mail-dispatch"
        },
        {
          "id": "seller-report",
          "at": "2026-03-26T10:00:00Z",
          "recordedAt": "2026-04-10T10:00:00Z",
          "label": "Seller reports seeing the postcard",
          "channelId": "mail",
          "channelLabel": "Direct mail",
          "evidenceType": "reported",
          "disposition": "eligible",
          "reason": "Reviewed seller report admitted by this policy; reported influence is not observed exposure.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "seller-report"
        },
        {
          "id": "click-nonbrand",
          "at": "2026-04-03T10:00:00Z",
          "recordedAt": "2026-04-03T10:00:00Z",
          "label": "Nonbrand search ad clicked",
          "channelId": "search-nonbrand",
          "channelLabel": "Nonbrand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-nonbrand"
        },
        {
          "id": "click-brand",
          "at": "2026-04-08T11:00:00Z",
          "recordedAt": "2026-04-08T11:00:00Z",
          "label": "Brand search ad clicked",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-brand"
        },
        {
          "id": "call-1",
          "at": "2026-04-09T12:00:00Z",
          "recordedAt": "2026-04-09T12:00:00Z",
          "label": "Seller called the website number",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/call",
          "locator": "call-1"
        },
        {
          "id": "qualified-1",
          "at": "2026-04-09T15:00:00Z",
          "recordedAt": "2026-04-09T15:00:00Z",
          "label": "Seller-property opportunity qualified",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/qualified",
          "locator": "qualified-1"
        },
        {
          "id": "assessment-1",
          "at": "2026-04-18T14:00:00Z",
          "recordedAt": "2026-04-18T14:00:00Z",
          "label": "Property assessment completed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/assessment",
          "locator": "assessment-1"
        },
        {
          "id": "offer-1",
          "at": "2026-04-24T10:00:00Z",
          "recordedAt": "2026-04-24T10:00:00Z",
          "label": "Written purchase offer delivered",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/offer",
          "locator": "offer-1"
        },
        {
          "id": "contract-1",
          "at": "2026-05-02T12:00:00Z",
          "recordedAt": "2026-05-02T12:00:00Z",
          "label": "Acquisition contract signed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/contract",
          "locator": "contract-1"
        },
        {
          "id": "marketing-cost",
          "at": "2026-05-03T12:00:00Z",
          "recordedAt": "2026-05-03T12:00:00Z",
          "label": "Acquisition marketing cost allocated",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/cost",
          "locator": "marketing-cost"
        }
      ],
      "credit": [
        {
          "channelId": "mail",
          "label": "Direct mail",
          "weight": 1,
          "percentage": 100,
          "touchIds": [
            "seller-report"
          ]
        }
      ],
      "outcome": {
        "qualifiedOpportunities": 1,
        "contracts": 1,
        "acquisitions": 0,
        "resales": 0,
        "canceled": false,
        "stage": "contract",
        "label": "Contract signed · purchase pending",
        "capitalDeployed": null,
        "resaleProceeds": null,
        "contributionBeforeMarketing": null,
        "marketingAllocation": 3000,
        "contributionAfterMarketing": null,
        "missingCosts": [
          "renovation",
          "holdingAndTransaction"
        ],
        "contributionStatus": "pending",
        "currency": "USD",
        "sourceIds": [
          "qualified-1",
          "contract-1",
          "marketing-cost"
        ]
      },
      "issues": [],
      "creditOutcome": "qualified_seller_property_opportunity",
      "eligibleTouchIds": [
        "seller-report",
        "click-brand",
        "click-nonbrand"
      ],
      "allocationStatus": "computed",
      "policyVersion": "cash-homebuyer.first.reported.v1",
      "propertyId": "property-104",
      "opportunityId": "acquisition-204",
      "sellerGroupId": "seller-group-14",
      "receiptHash": "a91b8dc28b9811637ed4a44d36c7cc472853516650e9fc855fc85c5b79c9cf79"
    },
    {
      "key": "mail|reported|contract|last",
      "scenarioId": "mail",
      "evidencePolicyId": "reported",
      "cutoffId": "contract",
      "policyId": "last",
      "proofKey": "mail|reported|contract",
      "asOf": "2026-05-15T23:59:59Z",
      "status": "complete",
      "summary": "Contract signed · purchase pending. Credit describes this qualified opportunity under the selected policy; it does not establish causal lift.",
      "timeline": [
        {
          "id": "mail-dispatch",
          "at": "2026-03-25T10:00:00Z",
          "recordedAt": "2026-03-25T10:00:00Z",
          "label": "Postcard dispatch recorded",
          "channelId": "mail",
          "channelLabel": "Direct mail",
          "evidenceType": "dispatch",
          "disposition": "excluded",
          "reason": "Mail dispatched; individual attention is unknown.",
          "sourceRef": "synthetic://cash-homebuyer/dispatch",
          "locator": "mail-dispatch"
        },
        {
          "id": "seller-report",
          "at": "2026-03-26T10:00:00Z",
          "recordedAt": "2026-04-10T10:00:00Z",
          "label": "Seller reports seeing the postcard",
          "channelId": "mail",
          "channelLabel": "Direct mail",
          "evidenceType": "reported",
          "disposition": "eligible",
          "reason": "Reviewed seller report admitted by this policy; reported influence is not observed exposure.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "seller-report"
        },
        {
          "id": "click-nonbrand",
          "at": "2026-04-03T10:00:00Z",
          "recordedAt": "2026-04-03T10:00:00Z",
          "label": "Nonbrand search ad clicked",
          "channelId": "search-nonbrand",
          "channelLabel": "Nonbrand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-nonbrand"
        },
        {
          "id": "click-brand",
          "at": "2026-04-08T11:00:00Z",
          "recordedAt": "2026-04-08T11:00:00Z",
          "label": "Brand search ad clicked",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-brand"
        },
        {
          "id": "call-1",
          "at": "2026-04-09T12:00:00Z",
          "recordedAt": "2026-04-09T12:00:00Z",
          "label": "Seller called the website number",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/call",
          "locator": "call-1"
        },
        {
          "id": "qualified-1",
          "at": "2026-04-09T15:00:00Z",
          "recordedAt": "2026-04-09T15:00:00Z",
          "label": "Seller-property opportunity qualified",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/qualified",
          "locator": "qualified-1"
        },
        {
          "id": "assessment-1",
          "at": "2026-04-18T14:00:00Z",
          "recordedAt": "2026-04-18T14:00:00Z",
          "label": "Property assessment completed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/assessment",
          "locator": "assessment-1"
        },
        {
          "id": "offer-1",
          "at": "2026-04-24T10:00:00Z",
          "recordedAt": "2026-04-24T10:00:00Z",
          "label": "Written purchase offer delivered",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/offer",
          "locator": "offer-1"
        },
        {
          "id": "contract-1",
          "at": "2026-05-02T12:00:00Z",
          "recordedAt": "2026-05-02T12:00:00Z",
          "label": "Acquisition contract signed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/contract",
          "locator": "contract-1"
        },
        {
          "id": "marketing-cost",
          "at": "2026-05-03T12:00:00Z",
          "recordedAt": "2026-05-03T12:00:00Z",
          "label": "Acquisition marketing cost allocated",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/cost",
          "locator": "marketing-cost"
        }
      ],
      "credit": [
        {
          "channelId": "search-brand",
          "label": "Brand paid search",
          "weight": 1,
          "percentage": 100,
          "touchIds": [
            "click-brand"
          ]
        }
      ],
      "outcome": {
        "qualifiedOpportunities": 1,
        "contracts": 1,
        "acquisitions": 0,
        "resales": 0,
        "canceled": false,
        "stage": "contract",
        "label": "Contract signed · purchase pending",
        "capitalDeployed": null,
        "resaleProceeds": null,
        "contributionBeforeMarketing": null,
        "marketingAllocation": 3000,
        "contributionAfterMarketing": null,
        "missingCosts": [
          "renovation",
          "holdingAndTransaction"
        ],
        "contributionStatus": "pending",
        "currency": "USD",
        "sourceIds": [
          "qualified-1",
          "contract-1",
          "marketing-cost"
        ]
      },
      "issues": [],
      "creditOutcome": "qualified_seller_property_opportunity",
      "eligibleTouchIds": [
        "seller-report",
        "click-brand",
        "click-nonbrand"
      ],
      "allocationStatus": "computed",
      "policyVersion": "cash-homebuyer.last.reported.v1",
      "propertyId": "property-104",
      "opportunityId": "acquisition-204",
      "sellerGroupId": "seller-group-14",
      "receiptHash": "819317c0068361f3d6a99a302e04f343fac416d12ef6996f464b1d2fb4e59dbd"
    },
    {
      "key": "mail|reported|contract|linear",
      "scenarioId": "mail",
      "evidencePolicyId": "reported",
      "cutoffId": "contract",
      "policyId": "linear",
      "proofKey": "mail|reported|contract",
      "asOf": "2026-05-15T23:59:59Z",
      "status": "complete",
      "summary": "Contract signed · purchase pending. Credit describes this qualified opportunity under the selected policy; it does not establish causal lift.",
      "timeline": [
        {
          "id": "mail-dispatch",
          "at": "2026-03-25T10:00:00Z",
          "recordedAt": "2026-03-25T10:00:00Z",
          "label": "Postcard dispatch recorded",
          "channelId": "mail",
          "channelLabel": "Direct mail",
          "evidenceType": "dispatch",
          "disposition": "excluded",
          "reason": "Mail dispatched; individual attention is unknown.",
          "sourceRef": "synthetic://cash-homebuyer/dispatch",
          "locator": "mail-dispatch"
        },
        {
          "id": "seller-report",
          "at": "2026-03-26T10:00:00Z",
          "recordedAt": "2026-04-10T10:00:00Z",
          "label": "Seller reports seeing the postcard",
          "channelId": "mail",
          "channelLabel": "Direct mail",
          "evidenceType": "reported",
          "disposition": "eligible",
          "reason": "Reviewed seller report admitted by this policy; reported influence is not observed exposure.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "seller-report"
        },
        {
          "id": "click-nonbrand",
          "at": "2026-04-03T10:00:00Z",
          "recordedAt": "2026-04-03T10:00:00Z",
          "label": "Nonbrand search ad clicked",
          "channelId": "search-nonbrand",
          "channelLabel": "Nonbrand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-nonbrand"
        },
        {
          "id": "click-brand",
          "at": "2026-04-08T11:00:00Z",
          "recordedAt": "2026-04-08T11:00:00Z",
          "label": "Brand search ad clicked",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-brand"
        },
        {
          "id": "call-1",
          "at": "2026-04-09T12:00:00Z",
          "recordedAt": "2026-04-09T12:00:00Z",
          "label": "Seller called the website number",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/call",
          "locator": "call-1"
        },
        {
          "id": "qualified-1",
          "at": "2026-04-09T15:00:00Z",
          "recordedAt": "2026-04-09T15:00:00Z",
          "label": "Seller-property opportunity qualified",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/qualified",
          "locator": "qualified-1"
        },
        {
          "id": "assessment-1",
          "at": "2026-04-18T14:00:00Z",
          "recordedAt": "2026-04-18T14:00:00Z",
          "label": "Property assessment completed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/assessment",
          "locator": "assessment-1"
        },
        {
          "id": "offer-1",
          "at": "2026-04-24T10:00:00Z",
          "recordedAt": "2026-04-24T10:00:00Z",
          "label": "Written purchase offer delivered",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/offer",
          "locator": "offer-1"
        },
        {
          "id": "contract-1",
          "at": "2026-05-02T12:00:00Z",
          "recordedAt": "2026-05-02T12:00:00Z",
          "label": "Acquisition contract signed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/contract",
          "locator": "contract-1"
        },
        {
          "id": "marketing-cost",
          "at": "2026-05-03T12:00:00Z",
          "recordedAt": "2026-05-03T12:00:00Z",
          "label": "Acquisition marketing cost allocated",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/cost",
          "locator": "marketing-cost"
        }
      ],
      "credit": [
        {
          "channelId": "mail",
          "label": "Direct mail",
          "weight": 0.3333333333333333,
          "percentage": 33.333333333333336,
          "touchIds": [
            "seller-report"
          ]
        },
        {
          "channelId": "search-nonbrand",
          "label": "Nonbrand paid search",
          "weight": 0.3333333333333333,
          "percentage": 33.333333333333336,
          "touchIds": [
            "click-nonbrand"
          ]
        },
        {
          "channelId": "search-brand",
          "label": "Brand paid search",
          "weight": 0.3333333333333333,
          "percentage": 33.333333333333336,
          "touchIds": [
            "click-brand"
          ]
        }
      ],
      "outcome": {
        "qualifiedOpportunities": 1,
        "contracts": 1,
        "acquisitions": 0,
        "resales": 0,
        "canceled": false,
        "stage": "contract",
        "label": "Contract signed · purchase pending",
        "capitalDeployed": null,
        "resaleProceeds": null,
        "contributionBeforeMarketing": null,
        "marketingAllocation": 3000,
        "contributionAfterMarketing": null,
        "missingCosts": [
          "renovation",
          "holdingAndTransaction"
        ],
        "contributionStatus": "pending",
        "currency": "USD",
        "sourceIds": [
          "qualified-1",
          "contract-1",
          "marketing-cost"
        ]
      },
      "issues": [],
      "creditOutcome": "qualified_seller_property_opportunity",
      "eligibleTouchIds": [
        "seller-report",
        "click-brand",
        "click-nonbrand"
      ],
      "allocationStatus": "computed",
      "policyVersion": "cash-homebuyer.linear.reported.v1",
      "propertyId": "property-104",
      "opportunityId": "acquisition-204",
      "sellerGroupId": "seller-group-14",
      "receiptHash": "eda447402d52b342ad8ecb7325fbc357b520f5f6bca9ce63b76b8ce62d146368"
    },
    {
      "key": "mail|reported|acquired|first",
      "scenarioId": "mail",
      "evidencePolicyId": "reported",
      "cutoffId": "acquired",
      "policyId": "first",
      "proofKey": "mail|reported|acquired",
      "asOf": "2026-06-15T23:59:59Z",
      "status": "complete",
      "summary": "Purchase closed · resale pending. Credit describes this qualified opportunity under the selected policy; it does not establish causal lift.",
      "timeline": [
        {
          "id": "mail-dispatch",
          "at": "2026-03-25T10:00:00Z",
          "recordedAt": "2026-03-25T10:00:00Z",
          "label": "Postcard dispatch recorded",
          "channelId": "mail",
          "channelLabel": "Direct mail",
          "evidenceType": "dispatch",
          "disposition": "excluded",
          "reason": "Mail dispatched; individual attention is unknown.",
          "sourceRef": "synthetic://cash-homebuyer/dispatch",
          "locator": "mail-dispatch"
        },
        {
          "id": "seller-report",
          "at": "2026-03-26T10:00:00Z",
          "recordedAt": "2026-04-10T10:00:00Z",
          "label": "Seller reports seeing the postcard",
          "channelId": "mail",
          "channelLabel": "Direct mail",
          "evidenceType": "reported",
          "disposition": "eligible",
          "reason": "Reviewed seller report admitted by this policy; reported influence is not observed exposure.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "seller-report"
        },
        {
          "id": "click-nonbrand",
          "at": "2026-04-03T10:00:00Z",
          "recordedAt": "2026-04-03T10:00:00Z",
          "label": "Nonbrand search ad clicked",
          "channelId": "search-nonbrand",
          "channelLabel": "Nonbrand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-nonbrand"
        },
        {
          "id": "click-brand",
          "at": "2026-04-08T11:00:00Z",
          "recordedAt": "2026-04-08T11:00:00Z",
          "label": "Brand search ad clicked",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-brand"
        },
        {
          "id": "call-1",
          "at": "2026-04-09T12:00:00Z",
          "recordedAt": "2026-04-09T12:00:00Z",
          "label": "Seller called the website number",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/call",
          "locator": "call-1"
        },
        {
          "id": "qualified-1",
          "at": "2026-04-09T15:00:00Z",
          "recordedAt": "2026-04-09T15:00:00Z",
          "label": "Seller-property opportunity qualified",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/qualified",
          "locator": "qualified-1"
        },
        {
          "id": "assessment-1",
          "at": "2026-04-18T14:00:00Z",
          "recordedAt": "2026-04-18T14:00:00Z",
          "label": "Property assessment completed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/assessment",
          "locator": "assessment-1"
        },
        {
          "id": "offer-1",
          "at": "2026-04-24T10:00:00Z",
          "recordedAt": "2026-04-24T10:00:00Z",
          "label": "Written purchase offer delivered",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/offer",
          "locator": "offer-1"
        },
        {
          "id": "contract-1",
          "at": "2026-05-02T12:00:00Z",
          "recordedAt": "2026-05-02T12:00:00Z",
          "label": "Acquisition contract signed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/contract",
          "locator": "contract-1"
        },
        {
          "id": "marketing-cost",
          "at": "2026-05-03T12:00:00Z",
          "recordedAt": "2026-05-03T12:00:00Z",
          "label": "Acquisition marketing cost allocated",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/cost",
          "locator": "marketing-cost"
        },
        {
          "id": "closing-1",
          "at": "2026-06-02T12:00:00Z",
          "recordedAt": "2026-06-02T12:00:00Z",
          "label": "Property purchase closed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/acquisition",
          "locator": "closing-1"
        }
      ],
      "credit": [
        {
          "channelId": "mail",
          "label": "Direct mail",
          "weight": 1,
          "percentage": 100,
          "touchIds": [
            "seller-report"
          ]
        }
      ],
      "outcome": {
        "qualifiedOpportunities": 1,
        "contracts": 1,
        "acquisitions": 1,
        "resales": 0,
        "canceled": false,
        "stage": "acquired",
        "label": "Purchase closed · resale pending",
        "capitalDeployed": 210000,
        "resaleProceeds": null,
        "contributionBeforeMarketing": null,
        "marketingAllocation": 3000,
        "contributionAfterMarketing": null,
        "missingCosts": [
          "renovation",
          "holdingAndTransaction"
        ],
        "contributionStatus": "pending",
        "currency": "USD",
        "sourceIds": [
          "qualified-1",
          "contract-1",
          "marketing-cost",
          "closing-1"
        ]
      },
      "issues": [],
      "creditOutcome": "qualified_seller_property_opportunity",
      "eligibleTouchIds": [
        "seller-report",
        "click-brand",
        "click-nonbrand"
      ],
      "allocationStatus": "computed",
      "policyVersion": "cash-homebuyer.first.reported.v1",
      "propertyId": "property-104",
      "opportunityId": "acquisition-204",
      "sellerGroupId": "seller-group-14",
      "receiptHash": "b24d764ac0a57e9fcbe60894222d4da8504429ebace2ccb21ea1617dff38c638"
    },
    {
      "key": "mail|reported|acquired|last",
      "scenarioId": "mail",
      "evidencePolicyId": "reported",
      "cutoffId": "acquired",
      "policyId": "last",
      "proofKey": "mail|reported|acquired",
      "asOf": "2026-06-15T23:59:59Z",
      "status": "complete",
      "summary": "Purchase closed · resale pending. Credit describes this qualified opportunity under the selected policy; it does not establish causal lift.",
      "timeline": [
        {
          "id": "mail-dispatch",
          "at": "2026-03-25T10:00:00Z",
          "recordedAt": "2026-03-25T10:00:00Z",
          "label": "Postcard dispatch recorded",
          "channelId": "mail",
          "channelLabel": "Direct mail",
          "evidenceType": "dispatch",
          "disposition": "excluded",
          "reason": "Mail dispatched; individual attention is unknown.",
          "sourceRef": "synthetic://cash-homebuyer/dispatch",
          "locator": "mail-dispatch"
        },
        {
          "id": "seller-report",
          "at": "2026-03-26T10:00:00Z",
          "recordedAt": "2026-04-10T10:00:00Z",
          "label": "Seller reports seeing the postcard",
          "channelId": "mail",
          "channelLabel": "Direct mail",
          "evidenceType": "reported",
          "disposition": "eligible",
          "reason": "Reviewed seller report admitted by this policy; reported influence is not observed exposure.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "seller-report"
        },
        {
          "id": "click-nonbrand",
          "at": "2026-04-03T10:00:00Z",
          "recordedAt": "2026-04-03T10:00:00Z",
          "label": "Nonbrand search ad clicked",
          "channelId": "search-nonbrand",
          "channelLabel": "Nonbrand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-nonbrand"
        },
        {
          "id": "click-brand",
          "at": "2026-04-08T11:00:00Z",
          "recordedAt": "2026-04-08T11:00:00Z",
          "label": "Brand search ad clicked",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-brand"
        },
        {
          "id": "call-1",
          "at": "2026-04-09T12:00:00Z",
          "recordedAt": "2026-04-09T12:00:00Z",
          "label": "Seller called the website number",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/call",
          "locator": "call-1"
        },
        {
          "id": "qualified-1",
          "at": "2026-04-09T15:00:00Z",
          "recordedAt": "2026-04-09T15:00:00Z",
          "label": "Seller-property opportunity qualified",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/qualified",
          "locator": "qualified-1"
        },
        {
          "id": "assessment-1",
          "at": "2026-04-18T14:00:00Z",
          "recordedAt": "2026-04-18T14:00:00Z",
          "label": "Property assessment completed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/assessment",
          "locator": "assessment-1"
        },
        {
          "id": "offer-1",
          "at": "2026-04-24T10:00:00Z",
          "recordedAt": "2026-04-24T10:00:00Z",
          "label": "Written purchase offer delivered",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/offer",
          "locator": "offer-1"
        },
        {
          "id": "contract-1",
          "at": "2026-05-02T12:00:00Z",
          "recordedAt": "2026-05-02T12:00:00Z",
          "label": "Acquisition contract signed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/contract",
          "locator": "contract-1"
        },
        {
          "id": "marketing-cost",
          "at": "2026-05-03T12:00:00Z",
          "recordedAt": "2026-05-03T12:00:00Z",
          "label": "Acquisition marketing cost allocated",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/cost",
          "locator": "marketing-cost"
        },
        {
          "id": "closing-1",
          "at": "2026-06-02T12:00:00Z",
          "recordedAt": "2026-06-02T12:00:00Z",
          "label": "Property purchase closed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/acquisition",
          "locator": "closing-1"
        }
      ],
      "credit": [
        {
          "channelId": "search-brand",
          "label": "Brand paid search",
          "weight": 1,
          "percentage": 100,
          "touchIds": [
            "click-brand"
          ]
        }
      ],
      "outcome": {
        "qualifiedOpportunities": 1,
        "contracts": 1,
        "acquisitions": 1,
        "resales": 0,
        "canceled": false,
        "stage": "acquired",
        "label": "Purchase closed · resale pending",
        "capitalDeployed": 210000,
        "resaleProceeds": null,
        "contributionBeforeMarketing": null,
        "marketingAllocation": 3000,
        "contributionAfterMarketing": null,
        "missingCosts": [
          "renovation",
          "holdingAndTransaction"
        ],
        "contributionStatus": "pending",
        "currency": "USD",
        "sourceIds": [
          "qualified-1",
          "contract-1",
          "marketing-cost",
          "closing-1"
        ]
      },
      "issues": [],
      "creditOutcome": "qualified_seller_property_opportunity",
      "eligibleTouchIds": [
        "seller-report",
        "click-brand",
        "click-nonbrand"
      ],
      "allocationStatus": "computed",
      "policyVersion": "cash-homebuyer.last.reported.v1",
      "propertyId": "property-104",
      "opportunityId": "acquisition-204",
      "sellerGroupId": "seller-group-14",
      "receiptHash": "699cd700e30964e7c3105f7d06c48bd217eda9b7eb1f646cdb231fb713a9cb73"
    },
    {
      "key": "mail|reported|acquired|linear",
      "scenarioId": "mail",
      "evidencePolicyId": "reported",
      "cutoffId": "acquired",
      "policyId": "linear",
      "proofKey": "mail|reported|acquired",
      "asOf": "2026-06-15T23:59:59Z",
      "status": "complete",
      "summary": "Purchase closed · resale pending. Credit describes this qualified opportunity under the selected policy; it does not establish causal lift.",
      "timeline": [
        {
          "id": "mail-dispatch",
          "at": "2026-03-25T10:00:00Z",
          "recordedAt": "2026-03-25T10:00:00Z",
          "label": "Postcard dispatch recorded",
          "channelId": "mail",
          "channelLabel": "Direct mail",
          "evidenceType": "dispatch",
          "disposition": "excluded",
          "reason": "Mail dispatched; individual attention is unknown.",
          "sourceRef": "synthetic://cash-homebuyer/dispatch",
          "locator": "mail-dispatch"
        },
        {
          "id": "seller-report",
          "at": "2026-03-26T10:00:00Z",
          "recordedAt": "2026-04-10T10:00:00Z",
          "label": "Seller reports seeing the postcard",
          "channelId": "mail",
          "channelLabel": "Direct mail",
          "evidenceType": "reported",
          "disposition": "eligible",
          "reason": "Reviewed seller report admitted by this policy; reported influence is not observed exposure.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "seller-report"
        },
        {
          "id": "click-nonbrand",
          "at": "2026-04-03T10:00:00Z",
          "recordedAt": "2026-04-03T10:00:00Z",
          "label": "Nonbrand search ad clicked",
          "channelId": "search-nonbrand",
          "channelLabel": "Nonbrand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-nonbrand"
        },
        {
          "id": "click-brand",
          "at": "2026-04-08T11:00:00Z",
          "recordedAt": "2026-04-08T11:00:00Z",
          "label": "Brand search ad clicked",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-brand"
        },
        {
          "id": "call-1",
          "at": "2026-04-09T12:00:00Z",
          "recordedAt": "2026-04-09T12:00:00Z",
          "label": "Seller called the website number",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/call",
          "locator": "call-1"
        },
        {
          "id": "qualified-1",
          "at": "2026-04-09T15:00:00Z",
          "recordedAt": "2026-04-09T15:00:00Z",
          "label": "Seller-property opportunity qualified",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/qualified",
          "locator": "qualified-1"
        },
        {
          "id": "assessment-1",
          "at": "2026-04-18T14:00:00Z",
          "recordedAt": "2026-04-18T14:00:00Z",
          "label": "Property assessment completed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/assessment",
          "locator": "assessment-1"
        },
        {
          "id": "offer-1",
          "at": "2026-04-24T10:00:00Z",
          "recordedAt": "2026-04-24T10:00:00Z",
          "label": "Written purchase offer delivered",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/offer",
          "locator": "offer-1"
        },
        {
          "id": "contract-1",
          "at": "2026-05-02T12:00:00Z",
          "recordedAt": "2026-05-02T12:00:00Z",
          "label": "Acquisition contract signed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/contract",
          "locator": "contract-1"
        },
        {
          "id": "marketing-cost",
          "at": "2026-05-03T12:00:00Z",
          "recordedAt": "2026-05-03T12:00:00Z",
          "label": "Acquisition marketing cost allocated",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/cost",
          "locator": "marketing-cost"
        },
        {
          "id": "closing-1",
          "at": "2026-06-02T12:00:00Z",
          "recordedAt": "2026-06-02T12:00:00Z",
          "label": "Property purchase closed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/acquisition",
          "locator": "closing-1"
        }
      ],
      "credit": [
        {
          "channelId": "mail",
          "label": "Direct mail",
          "weight": 0.3333333333333333,
          "percentage": 33.333333333333336,
          "touchIds": [
            "seller-report"
          ]
        },
        {
          "channelId": "search-nonbrand",
          "label": "Nonbrand paid search",
          "weight": 0.3333333333333333,
          "percentage": 33.333333333333336,
          "touchIds": [
            "click-nonbrand"
          ]
        },
        {
          "channelId": "search-brand",
          "label": "Brand paid search",
          "weight": 0.3333333333333333,
          "percentage": 33.333333333333336,
          "touchIds": [
            "click-brand"
          ]
        }
      ],
      "outcome": {
        "qualifiedOpportunities": 1,
        "contracts": 1,
        "acquisitions": 1,
        "resales": 0,
        "canceled": false,
        "stage": "acquired",
        "label": "Purchase closed · resale pending",
        "capitalDeployed": 210000,
        "resaleProceeds": null,
        "contributionBeforeMarketing": null,
        "marketingAllocation": 3000,
        "contributionAfterMarketing": null,
        "missingCosts": [
          "renovation",
          "holdingAndTransaction"
        ],
        "contributionStatus": "pending",
        "currency": "USD",
        "sourceIds": [
          "qualified-1",
          "contract-1",
          "marketing-cost",
          "closing-1"
        ]
      },
      "issues": [],
      "creditOutcome": "qualified_seller_property_opportunity",
      "eligibleTouchIds": [
        "seller-report",
        "click-brand",
        "click-nonbrand"
      ],
      "allocationStatus": "computed",
      "policyVersion": "cash-homebuyer.linear.reported.v1",
      "propertyId": "property-104",
      "opportunityId": "acquisition-204",
      "sellerGroupId": "seller-group-14",
      "receiptHash": "58e52f76a371017e135aef841405565078853b5af30994b33c311e07be5b8d98"
    },
    {
      "key": "mail|reported|resale|first",
      "scenarioId": "mail",
      "evidencePolicyId": "reported",
      "cutoffId": "resale",
      "policyId": "first",
      "proofKey": "mail|reported|resale",
      "asOf": "2026-09-15T23:59:59Z",
      "status": "complete",
      "summary": "Resale and costs reconciled. Credit describes this qualified opportunity under the selected policy; it does not establish causal lift.",
      "timeline": [
        {
          "id": "mail-dispatch",
          "at": "2026-03-25T10:00:00Z",
          "recordedAt": "2026-03-25T10:00:00Z",
          "label": "Postcard dispatch recorded",
          "channelId": "mail",
          "channelLabel": "Direct mail",
          "evidenceType": "dispatch",
          "disposition": "excluded",
          "reason": "Mail dispatched; individual attention is unknown.",
          "sourceRef": "synthetic://cash-homebuyer/dispatch",
          "locator": "mail-dispatch"
        },
        {
          "id": "seller-report",
          "at": "2026-03-26T10:00:00Z",
          "recordedAt": "2026-04-10T10:00:00Z",
          "label": "Seller reports seeing the postcard",
          "channelId": "mail",
          "channelLabel": "Direct mail",
          "evidenceType": "reported",
          "disposition": "eligible",
          "reason": "Reviewed seller report admitted by this policy; reported influence is not observed exposure.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "seller-report"
        },
        {
          "id": "click-nonbrand",
          "at": "2026-04-03T10:00:00Z",
          "recordedAt": "2026-04-03T10:00:00Z",
          "label": "Nonbrand search ad clicked",
          "channelId": "search-nonbrand",
          "channelLabel": "Nonbrand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-nonbrand"
        },
        {
          "id": "click-brand",
          "at": "2026-04-08T11:00:00Z",
          "recordedAt": "2026-04-08T11:00:00Z",
          "label": "Brand search ad clicked",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-brand"
        },
        {
          "id": "call-1",
          "at": "2026-04-09T12:00:00Z",
          "recordedAt": "2026-04-09T12:00:00Z",
          "label": "Seller called the website number",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/call",
          "locator": "call-1"
        },
        {
          "id": "qualified-1",
          "at": "2026-04-09T15:00:00Z",
          "recordedAt": "2026-04-09T15:00:00Z",
          "label": "Seller-property opportunity qualified",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/qualified",
          "locator": "qualified-1"
        },
        {
          "id": "assessment-1",
          "at": "2026-04-18T14:00:00Z",
          "recordedAt": "2026-04-18T14:00:00Z",
          "label": "Property assessment completed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/assessment",
          "locator": "assessment-1"
        },
        {
          "id": "offer-1",
          "at": "2026-04-24T10:00:00Z",
          "recordedAt": "2026-04-24T10:00:00Z",
          "label": "Written purchase offer delivered",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/offer",
          "locator": "offer-1"
        },
        {
          "id": "contract-1",
          "at": "2026-05-02T12:00:00Z",
          "recordedAt": "2026-05-02T12:00:00Z",
          "label": "Acquisition contract signed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/contract",
          "locator": "contract-1"
        },
        {
          "id": "marketing-cost",
          "at": "2026-05-03T12:00:00Z",
          "recordedAt": "2026-05-03T12:00:00Z",
          "label": "Acquisition marketing cost allocated",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/cost",
          "locator": "marketing-cost"
        },
        {
          "id": "closing-1",
          "at": "2026-06-02T12:00:00Z",
          "recordedAt": "2026-06-02T12:00:00Z",
          "label": "Property purchase closed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/acquisition",
          "locator": "closing-1"
        },
        {
          "id": "renovation-cost",
          "at": "2026-07-10T12:00:00Z",
          "recordedAt": "2026-07-10T12:00:00Z",
          "label": "Renovation costs reconciled",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/cost",
          "locator": "renovation-cost"
        },
        {
          "id": "resale-1",
          "at": "2026-09-03T12:00:00Z",
          "recordedAt": "2026-09-03T12:00:00Z",
          "label": "Resale proceeds recorded",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/resale",
          "locator": "resale-1"
        },
        {
          "id": "holding-cost",
          "at": "2026-09-05T12:00:00Z",
          "recordedAt": "2026-09-05T12:00:00Z",
          "label": "Holding, financing and transaction costs reconciled",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/cost",
          "locator": "holding-cost"
        }
      ],
      "credit": [
        {
          "channelId": "mail",
          "label": "Direct mail",
          "weight": 1,
          "percentage": 100,
          "touchIds": [
            "seller-report"
          ]
        }
      ],
      "outcome": {
        "qualifiedOpportunities": 1,
        "contracts": 1,
        "acquisitions": 1,
        "resales": 1,
        "canceled": false,
        "stage": "resold",
        "label": "Resale and costs reconciled",
        "capitalDeployed": 210000,
        "resaleProceeds": 295000,
        "contributionBeforeMarketing": 27000,
        "marketingAllocation": 3000,
        "contributionAfterMarketing": 24000,
        "missingCosts": [],
        "contributionStatus": "realized",
        "currency": "USD",
        "sourceIds": [
          "qualified-1",
          "contract-1",
          "marketing-cost",
          "closing-1",
          "renovation-cost",
          "resale-1",
          "holding-cost"
        ]
      },
      "issues": [],
      "creditOutcome": "qualified_seller_property_opportunity",
      "eligibleTouchIds": [
        "seller-report",
        "click-brand",
        "click-nonbrand"
      ],
      "allocationStatus": "computed",
      "policyVersion": "cash-homebuyer.first.reported.v1",
      "propertyId": "property-104",
      "opportunityId": "acquisition-204",
      "sellerGroupId": "seller-group-14",
      "receiptHash": "7800035c5134c7a92ddf7ece09df1eecda7a4ef029bfa2fdd5d7584068344e96"
    },
    {
      "key": "mail|reported|resale|last",
      "scenarioId": "mail",
      "evidencePolicyId": "reported",
      "cutoffId": "resale",
      "policyId": "last",
      "proofKey": "mail|reported|resale",
      "asOf": "2026-09-15T23:59:59Z",
      "status": "complete",
      "summary": "Resale and costs reconciled. Credit describes this qualified opportunity under the selected policy; it does not establish causal lift.",
      "timeline": [
        {
          "id": "mail-dispatch",
          "at": "2026-03-25T10:00:00Z",
          "recordedAt": "2026-03-25T10:00:00Z",
          "label": "Postcard dispatch recorded",
          "channelId": "mail",
          "channelLabel": "Direct mail",
          "evidenceType": "dispatch",
          "disposition": "excluded",
          "reason": "Mail dispatched; individual attention is unknown.",
          "sourceRef": "synthetic://cash-homebuyer/dispatch",
          "locator": "mail-dispatch"
        },
        {
          "id": "seller-report",
          "at": "2026-03-26T10:00:00Z",
          "recordedAt": "2026-04-10T10:00:00Z",
          "label": "Seller reports seeing the postcard",
          "channelId": "mail",
          "channelLabel": "Direct mail",
          "evidenceType": "reported",
          "disposition": "eligible",
          "reason": "Reviewed seller report admitted by this policy; reported influence is not observed exposure.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "seller-report"
        },
        {
          "id": "click-nonbrand",
          "at": "2026-04-03T10:00:00Z",
          "recordedAt": "2026-04-03T10:00:00Z",
          "label": "Nonbrand search ad clicked",
          "channelId": "search-nonbrand",
          "channelLabel": "Nonbrand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-nonbrand"
        },
        {
          "id": "click-brand",
          "at": "2026-04-08T11:00:00Z",
          "recordedAt": "2026-04-08T11:00:00Z",
          "label": "Brand search ad clicked",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-brand"
        },
        {
          "id": "call-1",
          "at": "2026-04-09T12:00:00Z",
          "recordedAt": "2026-04-09T12:00:00Z",
          "label": "Seller called the website number",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/call",
          "locator": "call-1"
        },
        {
          "id": "qualified-1",
          "at": "2026-04-09T15:00:00Z",
          "recordedAt": "2026-04-09T15:00:00Z",
          "label": "Seller-property opportunity qualified",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/qualified",
          "locator": "qualified-1"
        },
        {
          "id": "assessment-1",
          "at": "2026-04-18T14:00:00Z",
          "recordedAt": "2026-04-18T14:00:00Z",
          "label": "Property assessment completed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/assessment",
          "locator": "assessment-1"
        },
        {
          "id": "offer-1",
          "at": "2026-04-24T10:00:00Z",
          "recordedAt": "2026-04-24T10:00:00Z",
          "label": "Written purchase offer delivered",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/offer",
          "locator": "offer-1"
        },
        {
          "id": "contract-1",
          "at": "2026-05-02T12:00:00Z",
          "recordedAt": "2026-05-02T12:00:00Z",
          "label": "Acquisition contract signed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/contract",
          "locator": "contract-1"
        },
        {
          "id": "marketing-cost",
          "at": "2026-05-03T12:00:00Z",
          "recordedAt": "2026-05-03T12:00:00Z",
          "label": "Acquisition marketing cost allocated",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/cost",
          "locator": "marketing-cost"
        },
        {
          "id": "closing-1",
          "at": "2026-06-02T12:00:00Z",
          "recordedAt": "2026-06-02T12:00:00Z",
          "label": "Property purchase closed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/acquisition",
          "locator": "closing-1"
        },
        {
          "id": "renovation-cost",
          "at": "2026-07-10T12:00:00Z",
          "recordedAt": "2026-07-10T12:00:00Z",
          "label": "Renovation costs reconciled",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/cost",
          "locator": "renovation-cost"
        },
        {
          "id": "resale-1",
          "at": "2026-09-03T12:00:00Z",
          "recordedAt": "2026-09-03T12:00:00Z",
          "label": "Resale proceeds recorded",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/resale",
          "locator": "resale-1"
        },
        {
          "id": "holding-cost",
          "at": "2026-09-05T12:00:00Z",
          "recordedAt": "2026-09-05T12:00:00Z",
          "label": "Holding, financing and transaction costs reconciled",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/cost",
          "locator": "holding-cost"
        }
      ],
      "credit": [
        {
          "channelId": "search-brand",
          "label": "Brand paid search",
          "weight": 1,
          "percentage": 100,
          "touchIds": [
            "click-brand"
          ]
        }
      ],
      "outcome": {
        "qualifiedOpportunities": 1,
        "contracts": 1,
        "acquisitions": 1,
        "resales": 1,
        "canceled": false,
        "stage": "resold",
        "label": "Resale and costs reconciled",
        "capitalDeployed": 210000,
        "resaleProceeds": 295000,
        "contributionBeforeMarketing": 27000,
        "marketingAllocation": 3000,
        "contributionAfterMarketing": 24000,
        "missingCosts": [],
        "contributionStatus": "realized",
        "currency": "USD",
        "sourceIds": [
          "qualified-1",
          "contract-1",
          "marketing-cost",
          "closing-1",
          "renovation-cost",
          "resale-1",
          "holding-cost"
        ]
      },
      "issues": [],
      "creditOutcome": "qualified_seller_property_opportunity",
      "eligibleTouchIds": [
        "seller-report",
        "click-brand",
        "click-nonbrand"
      ],
      "allocationStatus": "computed",
      "policyVersion": "cash-homebuyer.last.reported.v1",
      "propertyId": "property-104",
      "opportunityId": "acquisition-204",
      "sellerGroupId": "seller-group-14",
      "receiptHash": "789085e43966b9d2d73de888e8d41ec2db1c0a205644478f74c4c5101e30275a"
    },
    {
      "key": "mail|reported|resale|linear",
      "scenarioId": "mail",
      "evidencePolicyId": "reported",
      "cutoffId": "resale",
      "policyId": "linear",
      "proofKey": "mail|reported|resale",
      "asOf": "2026-09-15T23:59:59Z",
      "status": "complete",
      "summary": "Resale and costs reconciled. Credit describes this qualified opportunity under the selected policy; it does not establish causal lift.",
      "timeline": [
        {
          "id": "mail-dispatch",
          "at": "2026-03-25T10:00:00Z",
          "recordedAt": "2026-03-25T10:00:00Z",
          "label": "Postcard dispatch recorded",
          "channelId": "mail",
          "channelLabel": "Direct mail",
          "evidenceType": "dispatch",
          "disposition": "excluded",
          "reason": "Mail dispatched; individual attention is unknown.",
          "sourceRef": "synthetic://cash-homebuyer/dispatch",
          "locator": "mail-dispatch"
        },
        {
          "id": "seller-report",
          "at": "2026-03-26T10:00:00Z",
          "recordedAt": "2026-04-10T10:00:00Z",
          "label": "Seller reports seeing the postcard",
          "channelId": "mail",
          "channelLabel": "Direct mail",
          "evidenceType": "reported",
          "disposition": "eligible",
          "reason": "Reviewed seller report admitted by this policy; reported influence is not observed exposure.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "seller-report"
        },
        {
          "id": "click-nonbrand",
          "at": "2026-04-03T10:00:00Z",
          "recordedAt": "2026-04-03T10:00:00Z",
          "label": "Nonbrand search ad clicked",
          "channelId": "search-nonbrand",
          "channelLabel": "Nonbrand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-nonbrand"
        },
        {
          "id": "click-brand",
          "at": "2026-04-08T11:00:00Z",
          "recordedAt": "2026-04-08T11:00:00Z",
          "label": "Brand search ad clicked",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-brand"
        },
        {
          "id": "call-1",
          "at": "2026-04-09T12:00:00Z",
          "recordedAt": "2026-04-09T12:00:00Z",
          "label": "Seller called the website number",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/call",
          "locator": "call-1"
        },
        {
          "id": "qualified-1",
          "at": "2026-04-09T15:00:00Z",
          "recordedAt": "2026-04-09T15:00:00Z",
          "label": "Seller-property opportunity qualified",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/qualified",
          "locator": "qualified-1"
        },
        {
          "id": "assessment-1",
          "at": "2026-04-18T14:00:00Z",
          "recordedAt": "2026-04-18T14:00:00Z",
          "label": "Property assessment completed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/assessment",
          "locator": "assessment-1"
        },
        {
          "id": "offer-1",
          "at": "2026-04-24T10:00:00Z",
          "recordedAt": "2026-04-24T10:00:00Z",
          "label": "Written purchase offer delivered",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/offer",
          "locator": "offer-1"
        },
        {
          "id": "contract-1",
          "at": "2026-05-02T12:00:00Z",
          "recordedAt": "2026-05-02T12:00:00Z",
          "label": "Acquisition contract signed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/contract",
          "locator": "contract-1"
        },
        {
          "id": "marketing-cost",
          "at": "2026-05-03T12:00:00Z",
          "recordedAt": "2026-05-03T12:00:00Z",
          "label": "Acquisition marketing cost allocated",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/cost",
          "locator": "marketing-cost"
        },
        {
          "id": "closing-1",
          "at": "2026-06-02T12:00:00Z",
          "recordedAt": "2026-06-02T12:00:00Z",
          "label": "Property purchase closed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/acquisition",
          "locator": "closing-1"
        },
        {
          "id": "renovation-cost",
          "at": "2026-07-10T12:00:00Z",
          "recordedAt": "2026-07-10T12:00:00Z",
          "label": "Renovation costs reconciled",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/cost",
          "locator": "renovation-cost"
        },
        {
          "id": "resale-1",
          "at": "2026-09-03T12:00:00Z",
          "recordedAt": "2026-09-03T12:00:00Z",
          "label": "Resale proceeds recorded",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/resale",
          "locator": "resale-1"
        },
        {
          "id": "holding-cost",
          "at": "2026-09-05T12:00:00Z",
          "recordedAt": "2026-09-05T12:00:00Z",
          "label": "Holding, financing and transaction costs reconciled",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/cost",
          "locator": "holding-cost"
        }
      ],
      "credit": [
        {
          "channelId": "mail",
          "label": "Direct mail",
          "weight": 0.3333333333333333,
          "percentage": 33.333333333333336,
          "touchIds": [
            "seller-report"
          ]
        },
        {
          "channelId": "search-nonbrand",
          "label": "Nonbrand paid search",
          "weight": 0.3333333333333333,
          "percentage": 33.333333333333336,
          "touchIds": [
            "click-nonbrand"
          ]
        },
        {
          "channelId": "search-brand",
          "label": "Brand paid search",
          "weight": 0.3333333333333333,
          "percentage": 33.333333333333336,
          "touchIds": [
            "click-brand"
          ]
        }
      ],
      "outcome": {
        "qualifiedOpportunities": 1,
        "contracts": 1,
        "acquisitions": 1,
        "resales": 1,
        "canceled": false,
        "stage": "resold",
        "label": "Resale and costs reconciled",
        "capitalDeployed": 210000,
        "resaleProceeds": 295000,
        "contributionBeforeMarketing": 27000,
        "marketingAllocation": 3000,
        "contributionAfterMarketing": 24000,
        "missingCosts": [],
        "contributionStatus": "realized",
        "currency": "USD",
        "sourceIds": [
          "qualified-1",
          "contract-1",
          "marketing-cost",
          "closing-1",
          "renovation-cost",
          "resale-1",
          "holding-cost"
        ]
      },
      "issues": [],
      "creditOutcome": "qualified_seller_property_opportunity",
      "eligibleTouchIds": [
        "seller-report",
        "click-brand",
        "click-nonbrand"
      ],
      "allocationStatus": "computed",
      "policyVersion": "cash-homebuyer.linear.reported.v1",
      "propertyId": "property-104",
      "opportunityId": "acquisition-204",
      "sellerGroupId": "seller-group-14",
      "receiptHash": "63aee11a2072de382e31cbbcd1654b8b4c6b6530bc51edec49127c0aa0c64c85"
    },
    {
      "key": "duplicate|observed|contract|first",
      "scenarioId": "duplicate",
      "evidencePolicyId": "observed",
      "cutoffId": "contract",
      "policyId": "first",
      "proofKey": "duplicate|observed|contract",
      "asOf": "2026-05-15T23:59:59Z",
      "status": "complete",
      "summary": "Contract signed · purchase pending. Credit describes this qualified opportunity under the selected policy; it does not establish causal lift.",
      "timeline": [
        {
          "id": "click-nonbrand",
          "at": "2026-04-03T10:00:00Z",
          "recordedAt": "2026-04-03T10:00:00Z",
          "label": "Nonbrand search ad clicked",
          "channelId": "search-nonbrand",
          "channelLabel": "Nonbrand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-nonbrand"
        },
        {
          "id": "click-brand",
          "at": "2026-04-08T11:00:00Z",
          "recordedAt": "2026-04-08T11:00:00Z",
          "label": "Brand search ad clicked",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-brand"
        },
        {
          "id": "call-1",
          "at": "2026-04-09T12:00:00Z",
          "recordedAt": "2026-04-09T12:00:00Z",
          "label": "Seller called the website number",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/call",
          "locator": "call-1"
        },
        {
          "id": "call-webhook-retry",
          "at": "2026-04-09T12:00:00Z",
          "recordedAt": "2026-04-09T12:01:00Z",
          "label": "Repeated delivery of the same call event",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "excluded",
          "reason": "Duplicate delivery of an existing source event.",
          "sourceRef": "synthetic://cash-homebuyer/call",
          "locator": "call-webhook-retry"
        },
        {
          "id": "call-forwarded-leg",
          "at": "2026-04-09T12:00:30Z",
          "recordedAt": "2026-04-09T12:00:30Z",
          "label": "Call forwarded to the acquisition team",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "observed",
          "disposition": "excluded",
          "reason": "Forwarded leg of an existing call; not a new seller opportunity.",
          "sourceRef": "synthetic://cash-homebuyer/call-leg",
          "locator": "call-forwarded-leg"
        },
        {
          "id": "qualified-1",
          "at": "2026-04-09T15:00:00Z",
          "recordedAt": "2026-04-09T15:00:00Z",
          "label": "Seller-property opportunity qualified",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/qualified",
          "locator": "qualified-1"
        },
        {
          "id": "coowner-callback",
          "at": "2026-04-11T12:00:00Z",
          "recordedAt": "2026-04-11T12:00:00Z",
          "label": "Coowner called about the same property",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "observed",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/call",
          "locator": "coowner-callback"
        },
        {
          "id": "assessment-1",
          "at": "2026-04-18T14:00:00Z",
          "recordedAt": "2026-04-18T14:00:00Z",
          "label": "Property assessment completed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/assessment",
          "locator": "assessment-1"
        },
        {
          "id": "offer-1",
          "at": "2026-04-24T10:00:00Z",
          "recordedAt": "2026-04-24T10:00:00Z",
          "label": "Written purchase offer delivered",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/offer",
          "locator": "offer-1"
        },
        {
          "id": "contract-1",
          "at": "2026-05-02T12:00:00Z",
          "recordedAt": "2026-05-02T12:00:00Z",
          "label": "Acquisition contract signed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/contract",
          "locator": "contract-1"
        },
        {
          "id": "marketing-cost",
          "at": "2026-05-03T12:00:00Z",
          "recordedAt": "2026-05-03T12:00:00Z",
          "label": "Acquisition marketing cost allocated",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/cost",
          "locator": "marketing-cost"
        }
      ],
      "credit": [
        {
          "channelId": "search-nonbrand",
          "label": "Nonbrand paid search",
          "weight": 1,
          "percentage": 100,
          "touchIds": [
            "click-nonbrand"
          ]
        }
      ],
      "outcome": {
        "qualifiedOpportunities": 1,
        "contracts": 1,
        "acquisitions": 0,
        "resales": 0,
        "canceled": false,
        "stage": "contract",
        "label": "Contract signed · purchase pending",
        "capitalDeployed": null,
        "resaleProceeds": null,
        "contributionBeforeMarketing": null,
        "marketingAllocation": 3000,
        "contributionAfterMarketing": null,
        "missingCosts": [
          "renovation",
          "holdingAndTransaction"
        ],
        "contributionStatus": "pending",
        "currency": "USD",
        "sourceIds": [
          "qualified-1",
          "contract-1",
          "marketing-cost"
        ]
      },
      "issues": [],
      "creditOutcome": "qualified_seller_property_opportunity",
      "eligibleTouchIds": [
        "click-brand",
        "click-nonbrand"
      ],
      "allocationStatus": "computed",
      "policyVersion": "cash-homebuyer.first.observed.v1",
      "propertyId": "property-104",
      "opportunityId": "acquisition-204",
      "sellerGroupId": "seller-group-14",
      "receiptHash": "be5766a00d101a15d23308db784d76e86001a43e333c5a51f17587eb594c2f4a"
    },
    {
      "key": "duplicate|observed|contract|last",
      "scenarioId": "duplicate",
      "evidencePolicyId": "observed",
      "cutoffId": "contract",
      "policyId": "last",
      "proofKey": "duplicate|observed|contract",
      "asOf": "2026-05-15T23:59:59Z",
      "status": "complete",
      "summary": "Contract signed · purchase pending. Credit describes this qualified opportunity under the selected policy; it does not establish causal lift.",
      "timeline": [
        {
          "id": "click-nonbrand",
          "at": "2026-04-03T10:00:00Z",
          "recordedAt": "2026-04-03T10:00:00Z",
          "label": "Nonbrand search ad clicked",
          "channelId": "search-nonbrand",
          "channelLabel": "Nonbrand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-nonbrand"
        },
        {
          "id": "click-brand",
          "at": "2026-04-08T11:00:00Z",
          "recordedAt": "2026-04-08T11:00:00Z",
          "label": "Brand search ad clicked",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-brand"
        },
        {
          "id": "call-1",
          "at": "2026-04-09T12:00:00Z",
          "recordedAt": "2026-04-09T12:00:00Z",
          "label": "Seller called the website number",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/call",
          "locator": "call-1"
        },
        {
          "id": "call-webhook-retry",
          "at": "2026-04-09T12:00:00Z",
          "recordedAt": "2026-04-09T12:01:00Z",
          "label": "Repeated delivery of the same call event",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "excluded",
          "reason": "Duplicate delivery of an existing source event.",
          "sourceRef": "synthetic://cash-homebuyer/call",
          "locator": "call-webhook-retry"
        },
        {
          "id": "call-forwarded-leg",
          "at": "2026-04-09T12:00:30Z",
          "recordedAt": "2026-04-09T12:00:30Z",
          "label": "Call forwarded to the acquisition team",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "observed",
          "disposition": "excluded",
          "reason": "Forwarded leg of an existing call; not a new seller opportunity.",
          "sourceRef": "synthetic://cash-homebuyer/call-leg",
          "locator": "call-forwarded-leg"
        },
        {
          "id": "qualified-1",
          "at": "2026-04-09T15:00:00Z",
          "recordedAt": "2026-04-09T15:00:00Z",
          "label": "Seller-property opportunity qualified",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/qualified",
          "locator": "qualified-1"
        },
        {
          "id": "coowner-callback",
          "at": "2026-04-11T12:00:00Z",
          "recordedAt": "2026-04-11T12:00:00Z",
          "label": "Coowner called about the same property",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "observed",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/call",
          "locator": "coowner-callback"
        },
        {
          "id": "assessment-1",
          "at": "2026-04-18T14:00:00Z",
          "recordedAt": "2026-04-18T14:00:00Z",
          "label": "Property assessment completed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/assessment",
          "locator": "assessment-1"
        },
        {
          "id": "offer-1",
          "at": "2026-04-24T10:00:00Z",
          "recordedAt": "2026-04-24T10:00:00Z",
          "label": "Written purchase offer delivered",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/offer",
          "locator": "offer-1"
        },
        {
          "id": "contract-1",
          "at": "2026-05-02T12:00:00Z",
          "recordedAt": "2026-05-02T12:00:00Z",
          "label": "Acquisition contract signed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/contract",
          "locator": "contract-1"
        },
        {
          "id": "marketing-cost",
          "at": "2026-05-03T12:00:00Z",
          "recordedAt": "2026-05-03T12:00:00Z",
          "label": "Acquisition marketing cost allocated",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/cost",
          "locator": "marketing-cost"
        }
      ],
      "credit": [
        {
          "channelId": "search-brand",
          "label": "Brand paid search",
          "weight": 1,
          "percentage": 100,
          "touchIds": [
            "click-brand"
          ]
        }
      ],
      "outcome": {
        "qualifiedOpportunities": 1,
        "contracts": 1,
        "acquisitions": 0,
        "resales": 0,
        "canceled": false,
        "stage": "contract",
        "label": "Contract signed · purchase pending",
        "capitalDeployed": null,
        "resaleProceeds": null,
        "contributionBeforeMarketing": null,
        "marketingAllocation": 3000,
        "contributionAfterMarketing": null,
        "missingCosts": [
          "renovation",
          "holdingAndTransaction"
        ],
        "contributionStatus": "pending",
        "currency": "USD",
        "sourceIds": [
          "qualified-1",
          "contract-1",
          "marketing-cost"
        ]
      },
      "issues": [],
      "creditOutcome": "qualified_seller_property_opportunity",
      "eligibleTouchIds": [
        "click-brand",
        "click-nonbrand"
      ],
      "allocationStatus": "computed",
      "policyVersion": "cash-homebuyer.last.observed.v1",
      "propertyId": "property-104",
      "opportunityId": "acquisition-204",
      "sellerGroupId": "seller-group-14",
      "receiptHash": "b2140aa51870ee1d2a00ebacecb68dae160b428de986b3932fcffe78b9cf6519"
    },
    {
      "key": "duplicate|observed|contract|linear",
      "scenarioId": "duplicate",
      "evidencePolicyId": "observed",
      "cutoffId": "contract",
      "policyId": "linear",
      "proofKey": "duplicate|observed|contract",
      "asOf": "2026-05-15T23:59:59Z",
      "status": "complete",
      "summary": "Contract signed · purchase pending. Credit describes this qualified opportunity under the selected policy; it does not establish causal lift.",
      "timeline": [
        {
          "id": "click-nonbrand",
          "at": "2026-04-03T10:00:00Z",
          "recordedAt": "2026-04-03T10:00:00Z",
          "label": "Nonbrand search ad clicked",
          "channelId": "search-nonbrand",
          "channelLabel": "Nonbrand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-nonbrand"
        },
        {
          "id": "click-brand",
          "at": "2026-04-08T11:00:00Z",
          "recordedAt": "2026-04-08T11:00:00Z",
          "label": "Brand search ad clicked",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-brand"
        },
        {
          "id": "call-1",
          "at": "2026-04-09T12:00:00Z",
          "recordedAt": "2026-04-09T12:00:00Z",
          "label": "Seller called the website number",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/call",
          "locator": "call-1"
        },
        {
          "id": "call-webhook-retry",
          "at": "2026-04-09T12:00:00Z",
          "recordedAt": "2026-04-09T12:01:00Z",
          "label": "Repeated delivery of the same call event",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "excluded",
          "reason": "Duplicate delivery of an existing source event.",
          "sourceRef": "synthetic://cash-homebuyer/call",
          "locator": "call-webhook-retry"
        },
        {
          "id": "call-forwarded-leg",
          "at": "2026-04-09T12:00:30Z",
          "recordedAt": "2026-04-09T12:00:30Z",
          "label": "Call forwarded to the acquisition team",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "observed",
          "disposition": "excluded",
          "reason": "Forwarded leg of an existing call; not a new seller opportunity.",
          "sourceRef": "synthetic://cash-homebuyer/call-leg",
          "locator": "call-forwarded-leg"
        },
        {
          "id": "qualified-1",
          "at": "2026-04-09T15:00:00Z",
          "recordedAt": "2026-04-09T15:00:00Z",
          "label": "Seller-property opportunity qualified",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/qualified",
          "locator": "qualified-1"
        },
        {
          "id": "coowner-callback",
          "at": "2026-04-11T12:00:00Z",
          "recordedAt": "2026-04-11T12:00:00Z",
          "label": "Coowner called about the same property",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "observed",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/call",
          "locator": "coowner-callback"
        },
        {
          "id": "assessment-1",
          "at": "2026-04-18T14:00:00Z",
          "recordedAt": "2026-04-18T14:00:00Z",
          "label": "Property assessment completed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/assessment",
          "locator": "assessment-1"
        },
        {
          "id": "offer-1",
          "at": "2026-04-24T10:00:00Z",
          "recordedAt": "2026-04-24T10:00:00Z",
          "label": "Written purchase offer delivered",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/offer",
          "locator": "offer-1"
        },
        {
          "id": "contract-1",
          "at": "2026-05-02T12:00:00Z",
          "recordedAt": "2026-05-02T12:00:00Z",
          "label": "Acquisition contract signed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/contract",
          "locator": "contract-1"
        },
        {
          "id": "marketing-cost",
          "at": "2026-05-03T12:00:00Z",
          "recordedAt": "2026-05-03T12:00:00Z",
          "label": "Acquisition marketing cost allocated",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/cost",
          "locator": "marketing-cost"
        }
      ],
      "credit": [
        {
          "channelId": "search-nonbrand",
          "label": "Nonbrand paid search",
          "weight": 0.5,
          "percentage": 50,
          "touchIds": [
            "click-nonbrand"
          ]
        },
        {
          "channelId": "search-brand",
          "label": "Brand paid search",
          "weight": 0.5,
          "percentage": 50,
          "touchIds": [
            "click-brand"
          ]
        }
      ],
      "outcome": {
        "qualifiedOpportunities": 1,
        "contracts": 1,
        "acquisitions": 0,
        "resales": 0,
        "canceled": false,
        "stage": "contract",
        "label": "Contract signed · purchase pending",
        "capitalDeployed": null,
        "resaleProceeds": null,
        "contributionBeforeMarketing": null,
        "marketingAllocation": 3000,
        "contributionAfterMarketing": null,
        "missingCosts": [
          "renovation",
          "holdingAndTransaction"
        ],
        "contributionStatus": "pending",
        "currency": "USD",
        "sourceIds": [
          "qualified-1",
          "contract-1",
          "marketing-cost"
        ]
      },
      "issues": [],
      "creditOutcome": "qualified_seller_property_opportunity",
      "eligibleTouchIds": [
        "click-brand",
        "click-nonbrand"
      ],
      "allocationStatus": "computed",
      "policyVersion": "cash-homebuyer.linear.observed.v1",
      "propertyId": "property-104",
      "opportunityId": "acquisition-204",
      "sellerGroupId": "seller-group-14",
      "receiptHash": "d2d9fc2c203e69b39b0bd1ea31af705cd0c4cc08d39745f8b9539a87950287a0"
    },
    {
      "key": "duplicate|observed|acquired|first",
      "scenarioId": "duplicate",
      "evidencePolicyId": "observed",
      "cutoffId": "acquired",
      "policyId": "first",
      "proofKey": "duplicate|observed|acquired",
      "asOf": "2026-06-15T23:59:59Z",
      "status": "complete",
      "summary": "Purchase closed · resale pending. Credit describes this qualified opportunity under the selected policy; it does not establish causal lift.",
      "timeline": [
        {
          "id": "click-nonbrand",
          "at": "2026-04-03T10:00:00Z",
          "recordedAt": "2026-04-03T10:00:00Z",
          "label": "Nonbrand search ad clicked",
          "channelId": "search-nonbrand",
          "channelLabel": "Nonbrand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-nonbrand"
        },
        {
          "id": "click-brand",
          "at": "2026-04-08T11:00:00Z",
          "recordedAt": "2026-04-08T11:00:00Z",
          "label": "Brand search ad clicked",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-brand"
        },
        {
          "id": "call-1",
          "at": "2026-04-09T12:00:00Z",
          "recordedAt": "2026-04-09T12:00:00Z",
          "label": "Seller called the website number",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/call",
          "locator": "call-1"
        },
        {
          "id": "call-webhook-retry",
          "at": "2026-04-09T12:00:00Z",
          "recordedAt": "2026-04-09T12:01:00Z",
          "label": "Repeated delivery of the same call event",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "excluded",
          "reason": "Duplicate delivery of an existing source event.",
          "sourceRef": "synthetic://cash-homebuyer/call",
          "locator": "call-webhook-retry"
        },
        {
          "id": "call-forwarded-leg",
          "at": "2026-04-09T12:00:30Z",
          "recordedAt": "2026-04-09T12:00:30Z",
          "label": "Call forwarded to the acquisition team",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "observed",
          "disposition": "excluded",
          "reason": "Forwarded leg of an existing call; not a new seller opportunity.",
          "sourceRef": "synthetic://cash-homebuyer/call-leg",
          "locator": "call-forwarded-leg"
        },
        {
          "id": "qualified-1",
          "at": "2026-04-09T15:00:00Z",
          "recordedAt": "2026-04-09T15:00:00Z",
          "label": "Seller-property opportunity qualified",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/qualified",
          "locator": "qualified-1"
        },
        {
          "id": "coowner-callback",
          "at": "2026-04-11T12:00:00Z",
          "recordedAt": "2026-04-11T12:00:00Z",
          "label": "Coowner called about the same property",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "observed",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/call",
          "locator": "coowner-callback"
        },
        {
          "id": "assessment-1",
          "at": "2026-04-18T14:00:00Z",
          "recordedAt": "2026-04-18T14:00:00Z",
          "label": "Property assessment completed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/assessment",
          "locator": "assessment-1"
        },
        {
          "id": "offer-1",
          "at": "2026-04-24T10:00:00Z",
          "recordedAt": "2026-04-24T10:00:00Z",
          "label": "Written purchase offer delivered",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/offer",
          "locator": "offer-1"
        },
        {
          "id": "contract-1",
          "at": "2026-05-02T12:00:00Z",
          "recordedAt": "2026-05-02T12:00:00Z",
          "label": "Acquisition contract signed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/contract",
          "locator": "contract-1"
        },
        {
          "id": "marketing-cost",
          "at": "2026-05-03T12:00:00Z",
          "recordedAt": "2026-05-03T12:00:00Z",
          "label": "Acquisition marketing cost allocated",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/cost",
          "locator": "marketing-cost"
        },
        {
          "id": "closing-1",
          "at": "2026-06-02T12:00:00Z",
          "recordedAt": "2026-06-02T12:00:00Z",
          "label": "Property purchase closed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/acquisition",
          "locator": "closing-1"
        }
      ],
      "credit": [
        {
          "channelId": "search-nonbrand",
          "label": "Nonbrand paid search",
          "weight": 1,
          "percentage": 100,
          "touchIds": [
            "click-nonbrand"
          ]
        }
      ],
      "outcome": {
        "qualifiedOpportunities": 1,
        "contracts": 1,
        "acquisitions": 1,
        "resales": 0,
        "canceled": false,
        "stage": "acquired",
        "label": "Purchase closed · resale pending",
        "capitalDeployed": 210000,
        "resaleProceeds": null,
        "contributionBeforeMarketing": null,
        "marketingAllocation": 3000,
        "contributionAfterMarketing": null,
        "missingCosts": [
          "renovation",
          "holdingAndTransaction"
        ],
        "contributionStatus": "pending",
        "currency": "USD",
        "sourceIds": [
          "qualified-1",
          "contract-1",
          "marketing-cost",
          "closing-1"
        ]
      },
      "issues": [],
      "creditOutcome": "qualified_seller_property_opportunity",
      "eligibleTouchIds": [
        "click-brand",
        "click-nonbrand"
      ],
      "allocationStatus": "computed",
      "policyVersion": "cash-homebuyer.first.observed.v1",
      "propertyId": "property-104",
      "opportunityId": "acquisition-204",
      "sellerGroupId": "seller-group-14",
      "receiptHash": "c6dd9bce8c2d0b5dc26934f307756d5eaf954cf904344ad0ade15cdea5dfb196"
    },
    {
      "key": "duplicate|observed|acquired|last",
      "scenarioId": "duplicate",
      "evidencePolicyId": "observed",
      "cutoffId": "acquired",
      "policyId": "last",
      "proofKey": "duplicate|observed|acquired",
      "asOf": "2026-06-15T23:59:59Z",
      "status": "complete",
      "summary": "Purchase closed · resale pending. Credit describes this qualified opportunity under the selected policy; it does not establish causal lift.",
      "timeline": [
        {
          "id": "click-nonbrand",
          "at": "2026-04-03T10:00:00Z",
          "recordedAt": "2026-04-03T10:00:00Z",
          "label": "Nonbrand search ad clicked",
          "channelId": "search-nonbrand",
          "channelLabel": "Nonbrand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-nonbrand"
        },
        {
          "id": "click-brand",
          "at": "2026-04-08T11:00:00Z",
          "recordedAt": "2026-04-08T11:00:00Z",
          "label": "Brand search ad clicked",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-brand"
        },
        {
          "id": "call-1",
          "at": "2026-04-09T12:00:00Z",
          "recordedAt": "2026-04-09T12:00:00Z",
          "label": "Seller called the website number",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/call",
          "locator": "call-1"
        },
        {
          "id": "call-webhook-retry",
          "at": "2026-04-09T12:00:00Z",
          "recordedAt": "2026-04-09T12:01:00Z",
          "label": "Repeated delivery of the same call event",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "excluded",
          "reason": "Duplicate delivery of an existing source event.",
          "sourceRef": "synthetic://cash-homebuyer/call",
          "locator": "call-webhook-retry"
        },
        {
          "id": "call-forwarded-leg",
          "at": "2026-04-09T12:00:30Z",
          "recordedAt": "2026-04-09T12:00:30Z",
          "label": "Call forwarded to the acquisition team",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "observed",
          "disposition": "excluded",
          "reason": "Forwarded leg of an existing call; not a new seller opportunity.",
          "sourceRef": "synthetic://cash-homebuyer/call-leg",
          "locator": "call-forwarded-leg"
        },
        {
          "id": "qualified-1",
          "at": "2026-04-09T15:00:00Z",
          "recordedAt": "2026-04-09T15:00:00Z",
          "label": "Seller-property opportunity qualified",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/qualified",
          "locator": "qualified-1"
        },
        {
          "id": "coowner-callback",
          "at": "2026-04-11T12:00:00Z",
          "recordedAt": "2026-04-11T12:00:00Z",
          "label": "Coowner called about the same property",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "observed",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/call",
          "locator": "coowner-callback"
        },
        {
          "id": "assessment-1",
          "at": "2026-04-18T14:00:00Z",
          "recordedAt": "2026-04-18T14:00:00Z",
          "label": "Property assessment completed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/assessment",
          "locator": "assessment-1"
        },
        {
          "id": "offer-1",
          "at": "2026-04-24T10:00:00Z",
          "recordedAt": "2026-04-24T10:00:00Z",
          "label": "Written purchase offer delivered",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/offer",
          "locator": "offer-1"
        },
        {
          "id": "contract-1",
          "at": "2026-05-02T12:00:00Z",
          "recordedAt": "2026-05-02T12:00:00Z",
          "label": "Acquisition contract signed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/contract",
          "locator": "contract-1"
        },
        {
          "id": "marketing-cost",
          "at": "2026-05-03T12:00:00Z",
          "recordedAt": "2026-05-03T12:00:00Z",
          "label": "Acquisition marketing cost allocated",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/cost",
          "locator": "marketing-cost"
        },
        {
          "id": "closing-1",
          "at": "2026-06-02T12:00:00Z",
          "recordedAt": "2026-06-02T12:00:00Z",
          "label": "Property purchase closed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/acquisition",
          "locator": "closing-1"
        }
      ],
      "credit": [
        {
          "channelId": "search-brand",
          "label": "Brand paid search",
          "weight": 1,
          "percentage": 100,
          "touchIds": [
            "click-brand"
          ]
        }
      ],
      "outcome": {
        "qualifiedOpportunities": 1,
        "contracts": 1,
        "acquisitions": 1,
        "resales": 0,
        "canceled": false,
        "stage": "acquired",
        "label": "Purchase closed · resale pending",
        "capitalDeployed": 210000,
        "resaleProceeds": null,
        "contributionBeforeMarketing": null,
        "marketingAllocation": 3000,
        "contributionAfterMarketing": null,
        "missingCosts": [
          "renovation",
          "holdingAndTransaction"
        ],
        "contributionStatus": "pending",
        "currency": "USD",
        "sourceIds": [
          "qualified-1",
          "contract-1",
          "marketing-cost",
          "closing-1"
        ]
      },
      "issues": [],
      "creditOutcome": "qualified_seller_property_opportunity",
      "eligibleTouchIds": [
        "click-brand",
        "click-nonbrand"
      ],
      "allocationStatus": "computed",
      "policyVersion": "cash-homebuyer.last.observed.v1",
      "propertyId": "property-104",
      "opportunityId": "acquisition-204",
      "sellerGroupId": "seller-group-14",
      "receiptHash": "6af03ef6b355f7b50eb3acf90613ad1fb3ef713f22f8368fc3c62d2e3d5b5840"
    },
    {
      "key": "duplicate|observed|acquired|linear",
      "scenarioId": "duplicate",
      "evidencePolicyId": "observed",
      "cutoffId": "acquired",
      "policyId": "linear",
      "proofKey": "duplicate|observed|acquired",
      "asOf": "2026-06-15T23:59:59Z",
      "status": "complete",
      "summary": "Purchase closed · resale pending. Credit describes this qualified opportunity under the selected policy; it does not establish causal lift.",
      "timeline": [
        {
          "id": "click-nonbrand",
          "at": "2026-04-03T10:00:00Z",
          "recordedAt": "2026-04-03T10:00:00Z",
          "label": "Nonbrand search ad clicked",
          "channelId": "search-nonbrand",
          "channelLabel": "Nonbrand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-nonbrand"
        },
        {
          "id": "click-brand",
          "at": "2026-04-08T11:00:00Z",
          "recordedAt": "2026-04-08T11:00:00Z",
          "label": "Brand search ad clicked",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-brand"
        },
        {
          "id": "call-1",
          "at": "2026-04-09T12:00:00Z",
          "recordedAt": "2026-04-09T12:00:00Z",
          "label": "Seller called the website number",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/call",
          "locator": "call-1"
        },
        {
          "id": "call-webhook-retry",
          "at": "2026-04-09T12:00:00Z",
          "recordedAt": "2026-04-09T12:01:00Z",
          "label": "Repeated delivery of the same call event",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "excluded",
          "reason": "Duplicate delivery of an existing source event.",
          "sourceRef": "synthetic://cash-homebuyer/call",
          "locator": "call-webhook-retry"
        },
        {
          "id": "call-forwarded-leg",
          "at": "2026-04-09T12:00:30Z",
          "recordedAt": "2026-04-09T12:00:30Z",
          "label": "Call forwarded to the acquisition team",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "observed",
          "disposition": "excluded",
          "reason": "Forwarded leg of an existing call; not a new seller opportunity.",
          "sourceRef": "synthetic://cash-homebuyer/call-leg",
          "locator": "call-forwarded-leg"
        },
        {
          "id": "qualified-1",
          "at": "2026-04-09T15:00:00Z",
          "recordedAt": "2026-04-09T15:00:00Z",
          "label": "Seller-property opportunity qualified",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/qualified",
          "locator": "qualified-1"
        },
        {
          "id": "coowner-callback",
          "at": "2026-04-11T12:00:00Z",
          "recordedAt": "2026-04-11T12:00:00Z",
          "label": "Coowner called about the same property",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "observed",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/call",
          "locator": "coowner-callback"
        },
        {
          "id": "assessment-1",
          "at": "2026-04-18T14:00:00Z",
          "recordedAt": "2026-04-18T14:00:00Z",
          "label": "Property assessment completed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/assessment",
          "locator": "assessment-1"
        },
        {
          "id": "offer-1",
          "at": "2026-04-24T10:00:00Z",
          "recordedAt": "2026-04-24T10:00:00Z",
          "label": "Written purchase offer delivered",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/offer",
          "locator": "offer-1"
        },
        {
          "id": "contract-1",
          "at": "2026-05-02T12:00:00Z",
          "recordedAt": "2026-05-02T12:00:00Z",
          "label": "Acquisition contract signed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/contract",
          "locator": "contract-1"
        },
        {
          "id": "marketing-cost",
          "at": "2026-05-03T12:00:00Z",
          "recordedAt": "2026-05-03T12:00:00Z",
          "label": "Acquisition marketing cost allocated",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/cost",
          "locator": "marketing-cost"
        },
        {
          "id": "closing-1",
          "at": "2026-06-02T12:00:00Z",
          "recordedAt": "2026-06-02T12:00:00Z",
          "label": "Property purchase closed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/acquisition",
          "locator": "closing-1"
        }
      ],
      "credit": [
        {
          "channelId": "search-nonbrand",
          "label": "Nonbrand paid search",
          "weight": 0.5,
          "percentage": 50,
          "touchIds": [
            "click-nonbrand"
          ]
        },
        {
          "channelId": "search-brand",
          "label": "Brand paid search",
          "weight": 0.5,
          "percentage": 50,
          "touchIds": [
            "click-brand"
          ]
        }
      ],
      "outcome": {
        "qualifiedOpportunities": 1,
        "contracts": 1,
        "acquisitions": 1,
        "resales": 0,
        "canceled": false,
        "stage": "acquired",
        "label": "Purchase closed · resale pending",
        "capitalDeployed": 210000,
        "resaleProceeds": null,
        "contributionBeforeMarketing": null,
        "marketingAllocation": 3000,
        "contributionAfterMarketing": null,
        "missingCosts": [
          "renovation",
          "holdingAndTransaction"
        ],
        "contributionStatus": "pending",
        "currency": "USD",
        "sourceIds": [
          "qualified-1",
          "contract-1",
          "marketing-cost",
          "closing-1"
        ]
      },
      "issues": [],
      "creditOutcome": "qualified_seller_property_opportunity",
      "eligibleTouchIds": [
        "click-brand",
        "click-nonbrand"
      ],
      "allocationStatus": "computed",
      "policyVersion": "cash-homebuyer.linear.observed.v1",
      "propertyId": "property-104",
      "opportunityId": "acquisition-204",
      "sellerGroupId": "seller-group-14",
      "receiptHash": "24e525be8f8d34d6ebd5375a4d2162041468d8c9cb0bd590f8e1060e9b83b029"
    },
    {
      "key": "duplicate|observed|resale|first",
      "scenarioId": "duplicate",
      "evidencePolicyId": "observed",
      "cutoffId": "resale",
      "policyId": "first",
      "proofKey": "duplicate|observed|resale",
      "asOf": "2026-09-15T23:59:59Z",
      "status": "complete",
      "summary": "Resale and costs reconciled. Credit describes this qualified opportunity under the selected policy; it does not establish causal lift.",
      "timeline": [
        {
          "id": "click-nonbrand",
          "at": "2026-04-03T10:00:00Z",
          "recordedAt": "2026-04-03T10:00:00Z",
          "label": "Nonbrand search ad clicked",
          "channelId": "search-nonbrand",
          "channelLabel": "Nonbrand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-nonbrand"
        },
        {
          "id": "click-brand",
          "at": "2026-04-08T11:00:00Z",
          "recordedAt": "2026-04-08T11:00:00Z",
          "label": "Brand search ad clicked",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-brand"
        },
        {
          "id": "call-1",
          "at": "2026-04-09T12:00:00Z",
          "recordedAt": "2026-04-09T12:00:00Z",
          "label": "Seller called the website number",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/call",
          "locator": "call-1"
        },
        {
          "id": "call-webhook-retry",
          "at": "2026-04-09T12:00:00Z",
          "recordedAt": "2026-04-09T12:01:00Z",
          "label": "Repeated delivery of the same call event",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "excluded",
          "reason": "Duplicate delivery of an existing source event.",
          "sourceRef": "synthetic://cash-homebuyer/call",
          "locator": "call-webhook-retry"
        },
        {
          "id": "call-forwarded-leg",
          "at": "2026-04-09T12:00:30Z",
          "recordedAt": "2026-04-09T12:00:30Z",
          "label": "Call forwarded to the acquisition team",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "observed",
          "disposition": "excluded",
          "reason": "Forwarded leg of an existing call; not a new seller opportunity.",
          "sourceRef": "synthetic://cash-homebuyer/call-leg",
          "locator": "call-forwarded-leg"
        },
        {
          "id": "qualified-1",
          "at": "2026-04-09T15:00:00Z",
          "recordedAt": "2026-04-09T15:00:00Z",
          "label": "Seller-property opportunity qualified",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/qualified",
          "locator": "qualified-1"
        },
        {
          "id": "coowner-callback",
          "at": "2026-04-11T12:00:00Z",
          "recordedAt": "2026-04-11T12:00:00Z",
          "label": "Coowner called about the same property",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "observed",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/call",
          "locator": "coowner-callback"
        },
        {
          "id": "assessment-1",
          "at": "2026-04-18T14:00:00Z",
          "recordedAt": "2026-04-18T14:00:00Z",
          "label": "Property assessment completed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/assessment",
          "locator": "assessment-1"
        },
        {
          "id": "offer-1",
          "at": "2026-04-24T10:00:00Z",
          "recordedAt": "2026-04-24T10:00:00Z",
          "label": "Written purchase offer delivered",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/offer",
          "locator": "offer-1"
        },
        {
          "id": "contract-1",
          "at": "2026-05-02T12:00:00Z",
          "recordedAt": "2026-05-02T12:00:00Z",
          "label": "Acquisition contract signed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/contract",
          "locator": "contract-1"
        },
        {
          "id": "marketing-cost",
          "at": "2026-05-03T12:00:00Z",
          "recordedAt": "2026-05-03T12:00:00Z",
          "label": "Acquisition marketing cost allocated",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/cost",
          "locator": "marketing-cost"
        },
        {
          "id": "closing-1",
          "at": "2026-06-02T12:00:00Z",
          "recordedAt": "2026-06-02T12:00:00Z",
          "label": "Property purchase closed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/acquisition",
          "locator": "closing-1"
        },
        {
          "id": "renovation-cost",
          "at": "2026-07-10T12:00:00Z",
          "recordedAt": "2026-07-10T12:00:00Z",
          "label": "Renovation costs reconciled",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/cost",
          "locator": "renovation-cost"
        },
        {
          "id": "resale-1",
          "at": "2026-09-03T12:00:00Z",
          "recordedAt": "2026-09-03T12:00:00Z",
          "label": "Resale proceeds recorded",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/resale",
          "locator": "resale-1"
        },
        {
          "id": "holding-cost",
          "at": "2026-09-05T12:00:00Z",
          "recordedAt": "2026-09-05T12:00:00Z",
          "label": "Holding, financing and transaction costs reconciled",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/cost",
          "locator": "holding-cost"
        }
      ],
      "credit": [
        {
          "channelId": "search-nonbrand",
          "label": "Nonbrand paid search",
          "weight": 1,
          "percentage": 100,
          "touchIds": [
            "click-nonbrand"
          ]
        }
      ],
      "outcome": {
        "qualifiedOpportunities": 1,
        "contracts": 1,
        "acquisitions": 1,
        "resales": 1,
        "canceled": false,
        "stage": "resold",
        "label": "Resale and costs reconciled",
        "capitalDeployed": 210000,
        "resaleProceeds": 295000,
        "contributionBeforeMarketing": 27000,
        "marketingAllocation": 3000,
        "contributionAfterMarketing": 24000,
        "missingCosts": [],
        "contributionStatus": "realized",
        "currency": "USD",
        "sourceIds": [
          "qualified-1",
          "contract-1",
          "marketing-cost",
          "closing-1",
          "renovation-cost",
          "resale-1",
          "holding-cost"
        ]
      },
      "issues": [],
      "creditOutcome": "qualified_seller_property_opportunity",
      "eligibleTouchIds": [
        "click-brand",
        "click-nonbrand"
      ],
      "allocationStatus": "computed",
      "policyVersion": "cash-homebuyer.first.observed.v1",
      "propertyId": "property-104",
      "opportunityId": "acquisition-204",
      "sellerGroupId": "seller-group-14",
      "receiptHash": "a5d59de6048204ff406476da4a89682a2d5c85e66ecb5e755a6b96cdd2938482"
    },
    {
      "key": "duplicate|observed|resale|last",
      "scenarioId": "duplicate",
      "evidencePolicyId": "observed",
      "cutoffId": "resale",
      "policyId": "last",
      "proofKey": "duplicate|observed|resale",
      "asOf": "2026-09-15T23:59:59Z",
      "status": "complete",
      "summary": "Resale and costs reconciled. Credit describes this qualified opportunity under the selected policy; it does not establish causal lift.",
      "timeline": [
        {
          "id": "click-nonbrand",
          "at": "2026-04-03T10:00:00Z",
          "recordedAt": "2026-04-03T10:00:00Z",
          "label": "Nonbrand search ad clicked",
          "channelId": "search-nonbrand",
          "channelLabel": "Nonbrand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-nonbrand"
        },
        {
          "id": "click-brand",
          "at": "2026-04-08T11:00:00Z",
          "recordedAt": "2026-04-08T11:00:00Z",
          "label": "Brand search ad clicked",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-brand"
        },
        {
          "id": "call-1",
          "at": "2026-04-09T12:00:00Z",
          "recordedAt": "2026-04-09T12:00:00Z",
          "label": "Seller called the website number",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/call",
          "locator": "call-1"
        },
        {
          "id": "call-webhook-retry",
          "at": "2026-04-09T12:00:00Z",
          "recordedAt": "2026-04-09T12:01:00Z",
          "label": "Repeated delivery of the same call event",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "excluded",
          "reason": "Duplicate delivery of an existing source event.",
          "sourceRef": "synthetic://cash-homebuyer/call",
          "locator": "call-webhook-retry"
        },
        {
          "id": "call-forwarded-leg",
          "at": "2026-04-09T12:00:30Z",
          "recordedAt": "2026-04-09T12:00:30Z",
          "label": "Call forwarded to the acquisition team",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "observed",
          "disposition": "excluded",
          "reason": "Forwarded leg of an existing call; not a new seller opportunity.",
          "sourceRef": "synthetic://cash-homebuyer/call-leg",
          "locator": "call-forwarded-leg"
        },
        {
          "id": "qualified-1",
          "at": "2026-04-09T15:00:00Z",
          "recordedAt": "2026-04-09T15:00:00Z",
          "label": "Seller-property opportunity qualified",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/qualified",
          "locator": "qualified-1"
        },
        {
          "id": "coowner-callback",
          "at": "2026-04-11T12:00:00Z",
          "recordedAt": "2026-04-11T12:00:00Z",
          "label": "Coowner called about the same property",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "observed",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/call",
          "locator": "coowner-callback"
        },
        {
          "id": "assessment-1",
          "at": "2026-04-18T14:00:00Z",
          "recordedAt": "2026-04-18T14:00:00Z",
          "label": "Property assessment completed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/assessment",
          "locator": "assessment-1"
        },
        {
          "id": "offer-1",
          "at": "2026-04-24T10:00:00Z",
          "recordedAt": "2026-04-24T10:00:00Z",
          "label": "Written purchase offer delivered",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/offer",
          "locator": "offer-1"
        },
        {
          "id": "contract-1",
          "at": "2026-05-02T12:00:00Z",
          "recordedAt": "2026-05-02T12:00:00Z",
          "label": "Acquisition contract signed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/contract",
          "locator": "contract-1"
        },
        {
          "id": "marketing-cost",
          "at": "2026-05-03T12:00:00Z",
          "recordedAt": "2026-05-03T12:00:00Z",
          "label": "Acquisition marketing cost allocated",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/cost",
          "locator": "marketing-cost"
        },
        {
          "id": "closing-1",
          "at": "2026-06-02T12:00:00Z",
          "recordedAt": "2026-06-02T12:00:00Z",
          "label": "Property purchase closed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/acquisition",
          "locator": "closing-1"
        },
        {
          "id": "renovation-cost",
          "at": "2026-07-10T12:00:00Z",
          "recordedAt": "2026-07-10T12:00:00Z",
          "label": "Renovation costs reconciled",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/cost",
          "locator": "renovation-cost"
        },
        {
          "id": "resale-1",
          "at": "2026-09-03T12:00:00Z",
          "recordedAt": "2026-09-03T12:00:00Z",
          "label": "Resale proceeds recorded",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/resale",
          "locator": "resale-1"
        },
        {
          "id": "holding-cost",
          "at": "2026-09-05T12:00:00Z",
          "recordedAt": "2026-09-05T12:00:00Z",
          "label": "Holding, financing and transaction costs reconciled",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/cost",
          "locator": "holding-cost"
        }
      ],
      "credit": [
        {
          "channelId": "search-brand",
          "label": "Brand paid search",
          "weight": 1,
          "percentage": 100,
          "touchIds": [
            "click-brand"
          ]
        }
      ],
      "outcome": {
        "qualifiedOpportunities": 1,
        "contracts": 1,
        "acquisitions": 1,
        "resales": 1,
        "canceled": false,
        "stage": "resold",
        "label": "Resale and costs reconciled",
        "capitalDeployed": 210000,
        "resaleProceeds": 295000,
        "contributionBeforeMarketing": 27000,
        "marketingAllocation": 3000,
        "contributionAfterMarketing": 24000,
        "missingCosts": [],
        "contributionStatus": "realized",
        "currency": "USD",
        "sourceIds": [
          "qualified-1",
          "contract-1",
          "marketing-cost",
          "closing-1",
          "renovation-cost",
          "resale-1",
          "holding-cost"
        ]
      },
      "issues": [],
      "creditOutcome": "qualified_seller_property_opportunity",
      "eligibleTouchIds": [
        "click-brand",
        "click-nonbrand"
      ],
      "allocationStatus": "computed",
      "policyVersion": "cash-homebuyer.last.observed.v1",
      "propertyId": "property-104",
      "opportunityId": "acquisition-204",
      "sellerGroupId": "seller-group-14",
      "receiptHash": "0e126574a70f4c61e8b5742017fc65bb07f5a4d28cb6b445e881563112b181bf"
    },
    {
      "key": "duplicate|observed|resale|linear",
      "scenarioId": "duplicate",
      "evidencePolicyId": "observed",
      "cutoffId": "resale",
      "policyId": "linear",
      "proofKey": "duplicate|observed|resale",
      "asOf": "2026-09-15T23:59:59Z",
      "status": "complete",
      "summary": "Resale and costs reconciled. Credit describes this qualified opportunity under the selected policy; it does not establish causal lift.",
      "timeline": [
        {
          "id": "click-nonbrand",
          "at": "2026-04-03T10:00:00Z",
          "recordedAt": "2026-04-03T10:00:00Z",
          "label": "Nonbrand search ad clicked",
          "channelId": "search-nonbrand",
          "channelLabel": "Nonbrand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-nonbrand"
        },
        {
          "id": "click-brand",
          "at": "2026-04-08T11:00:00Z",
          "recordedAt": "2026-04-08T11:00:00Z",
          "label": "Brand search ad clicked",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-brand"
        },
        {
          "id": "call-1",
          "at": "2026-04-09T12:00:00Z",
          "recordedAt": "2026-04-09T12:00:00Z",
          "label": "Seller called the website number",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/call",
          "locator": "call-1"
        },
        {
          "id": "call-webhook-retry",
          "at": "2026-04-09T12:00:00Z",
          "recordedAt": "2026-04-09T12:01:00Z",
          "label": "Repeated delivery of the same call event",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "excluded",
          "reason": "Duplicate delivery of an existing source event.",
          "sourceRef": "synthetic://cash-homebuyer/call",
          "locator": "call-webhook-retry"
        },
        {
          "id": "call-forwarded-leg",
          "at": "2026-04-09T12:00:30Z",
          "recordedAt": "2026-04-09T12:00:30Z",
          "label": "Call forwarded to the acquisition team",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "observed",
          "disposition": "excluded",
          "reason": "Forwarded leg of an existing call; not a new seller opportunity.",
          "sourceRef": "synthetic://cash-homebuyer/call-leg",
          "locator": "call-forwarded-leg"
        },
        {
          "id": "qualified-1",
          "at": "2026-04-09T15:00:00Z",
          "recordedAt": "2026-04-09T15:00:00Z",
          "label": "Seller-property opportunity qualified",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/qualified",
          "locator": "qualified-1"
        },
        {
          "id": "coowner-callback",
          "at": "2026-04-11T12:00:00Z",
          "recordedAt": "2026-04-11T12:00:00Z",
          "label": "Coowner called about the same property",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "observed",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/call",
          "locator": "coowner-callback"
        },
        {
          "id": "assessment-1",
          "at": "2026-04-18T14:00:00Z",
          "recordedAt": "2026-04-18T14:00:00Z",
          "label": "Property assessment completed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/assessment",
          "locator": "assessment-1"
        },
        {
          "id": "offer-1",
          "at": "2026-04-24T10:00:00Z",
          "recordedAt": "2026-04-24T10:00:00Z",
          "label": "Written purchase offer delivered",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/offer",
          "locator": "offer-1"
        },
        {
          "id": "contract-1",
          "at": "2026-05-02T12:00:00Z",
          "recordedAt": "2026-05-02T12:00:00Z",
          "label": "Acquisition contract signed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/contract",
          "locator": "contract-1"
        },
        {
          "id": "marketing-cost",
          "at": "2026-05-03T12:00:00Z",
          "recordedAt": "2026-05-03T12:00:00Z",
          "label": "Acquisition marketing cost allocated",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/cost",
          "locator": "marketing-cost"
        },
        {
          "id": "closing-1",
          "at": "2026-06-02T12:00:00Z",
          "recordedAt": "2026-06-02T12:00:00Z",
          "label": "Property purchase closed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/acquisition",
          "locator": "closing-1"
        },
        {
          "id": "renovation-cost",
          "at": "2026-07-10T12:00:00Z",
          "recordedAt": "2026-07-10T12:00:00Z",
          "label": "Renovation costs reconciled",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/cost",
          "locator": "renovation-cost"
        },
        {
          "id": "resale-1",
          "at": "2026-09-03T12:00:00Z",
          "recordedAt": "2026-09-03T12:00:00Z",
          "label": "Resale proceeds recorded",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/resale",
          "locator": "resale-1"
        },
        {
          "id": "holding-cost",
          "at": "2026-09-05T12:00:00Z",
          "recordedAt": "2026-09-05T12:00:00Z",
          "label": "Holding, financing and transaction costs reconciled",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/cost",
          "locator": "holding-cost"
        }
      ],
      "credit": [
        {
          "channelId": "search-nonbrand",
          "label": "Nonbrand paid search",
          "weight": 0.5,
          "percentage": 50,
          "touchIds": [
            "click-nonbrand"
          ]
        },
        {
          "channelId": "search-brand",
          "label": "Brand paid search",
          "weight": 0.5,
          "percentage": 50,
          "touchIds": [
            "click-brand"
          ]
        }
      ],
      "outcome": {
        "qualifiedOpportunities": 1,
        "contracts": 1,
        "acquisitions": 1,
        "resales": 1,
        "canceled": false,
        "stage": "resold",
        "label": "Resale and costs reconciled",
        "capitalDeployed": 210000,
        "resaleProceeds": 295000,
        "contributionBeforeMarketing": 27000,
        "marketingAllocation": 3000,
        "contributionAfterMarketing": 24000,
        "missingCosts": [],
        "contributionStatus": "realized",
        "currency": "USD",
        "sourceIds": [
          "qualified-1",
          "contract-1",
          "marketing-cost",
          "closing-1",
          "renovation-cost",
          "resale-1",
          "holding-cost"
        ]
      },
      "issues": [],
      "creditOutcome": "qualified_seller_property_opportunity",
      "eligibleTouchIds": [
        "click-brand",
        "click-nonbrand"
      ],
      "allocationStatus": "computed",
      "policyVersion": "cash-homebuyer.linear.observed.v1",
      "propertyId": "property-104",
      "opportunityId": "acquisition-204",
      "sellerGroupId": "seller-group-14",
      "receiptHash": "b74481bfcee26068fce6abb0593fe6b175963eec7ed1c6cebf75e5bad25fb3aa"
    },
    {
      "key": "duplicate|reported|contract|first",
      "scenarioId": "duplicate",
      "evidencePolicyId": "reported",
      "cutoffId": "contract",
      "policyId": "first",
      "proofKey": "duplicate|reported|contract",
      "asOf": "2026-05-15T23:59:59Z",
      "status": "complete",
      "summary": "Contract signed · purchase pending. Credit describes this qualified opportunity under the selected policy; it does not establish causal lift.",
      "timeline": [
        {
          "id": "click-nonbrand",
          "at": "2026-04-03T10:00:00Z",
          "recordedAt": "2026-04-03T10:00:00Z",
          "label": "Nonbrand search ad clicked",
          "channelId": "search-nonbrand",
          "channelLabel": "Nonbrand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-nonbrand"
        },
        {
          "id": "click-brand",
          "at": "2026-04-08T11:00:00Z",
          "recordedAt": "2026-04-08T11:00:00Z",
          "label": "Brand search ad clicked",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-brand"
        },
        {
          "id": "call-1",
          "at": "2026-04-09T12:00:00Z",
          "recordedAt": "2026-04-09T12:00:00Z",
          "label": "Seller called the website number",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/call",
          "locator": "call-1"
        },
        {
          "id": "call-webhook-retry",
          "at": "2026-04-09T12:00:00Z",
          "recordedAt": "2026-04-09T12:01:00Z",
          "label": "Repeated delivery of the same call event",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "excluded",
          "reason": "Duplicate delivery of an existing source event.",
          "sourceRef": "synthetic://cash-homebuyer/call",
          "locator": "call-webhook-retry"
        },
        {
          "id": "call-forwarded-leg",
          "at": "2026-04-09T12:00:30Z",
          "recordedAt": "2026-04-09T12:00:30Z",
          "label": "Call forwarded to the acquisition team",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "observed",
          "disposition": "excluded",
          "reason": "Forwarded leg of an existing call; not a new seller opportunity.",
          "sourceRef": "synthetic://cash-homebuyer/call-leg",
          "locator": "call-forwarded-leg"
        },
        {
          "id": "qualified-1",
          "at": "2026-04-09T15:00:00Z",
          "recordedAt": "2026-04-09T15:00:00Z",
          "label": "Seller-property opportunity qualified",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/qualified",
          "locator": "qualified-1"
        },
        {
          "id": "coowner-callback",
          "at": "2026-04-11T12:00:00Z",
          "recordedAt": "2026-04-11T12:00:00Z",
          "label": "Coowner called about the same property",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "observed",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/call",
          "locator": "coowner-callback"
        },
        {
          "id": "assessment-1",
          "at": "2026-04-18T14:00:00Z",
          "recordedAt": "2026-04-18T14:00:00Z",
          "label": "Property assessment completed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/assessment",
          "locator": "assessment-1"
        },
        {
          "id": "offer-1",
          "at": "2026-04-24T10:00:00Z",
          "recordedAt": "2026-04-24T10:00:00Z",
          "label": "Written purchase offer delivered",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/offer",
          "locator": "offer-1"
        },
        {
          "id": "contract-1",
          "at": "2026-05-02T12:00:00Z",
          "recordedAt": "2026-05-02T12:00:00Z",
          "label": "Acquisition contract signed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/contract",
          "locator": "contract-1"
        },
        {
          "id": "marketing-cost",
          "at": "2026-05-03T12:00:00Z",
          "recordedAt": "2026-05-03T12:00:00Z",
          "label": "Acquisition marketing cost allocated",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/cost",
          "locator": "marketing-cost"
        }
      ],
      "credit": [
        {
          "channelId": "search-nonbrand",
          "label": "Nonbrand paid search",
          "weight": 1,
          "percentage": 100,
          "touchIds": [
            "click-nonbrand"
          ]
        }
      ],
      "outcome": {
        "qualifiedOpportunities": 1,
        "contracts": 1,
        "acquisitions": 0,
        "resales": 0,
        "canceled": false,
        "stage": "contract",
        "label": "Contract signed · purchase pending",
        "capitalDeployed": null,
        "resaleProceeds": null,
        "contributionBeforeMarketing": null,
        "marketingAllocation": 3000,
        "contributionAfterMarketing": null,
        "missingCosts": [
          "renovation",
          "holdingAndTransaction"
        ],
        "contributionStatus": "pending",
        "currency": "USD",
        "sourceIds": [
          "qualified-1",
          "contract-1",
          "marketing-cost"
        ]
      },
      "issues": [],
      "creditOutcome": "qualified_seller_property_opportunity",
      "eligibleTouchIds": [
        "click-brand",
        "click-nonbrand"
      ],
      "allocationStatus": "computed",
      "policyVersion": "cash-homebuyer.first.reported.v1",
      "propertyId": "property-104",
      "opportunityId": "acquisition-204",
      "sellerGroupId": "seller-group-14",
      "receiptHash": "2aa1f42a1601c57df200527fd81f1507ffaf0d61396133ee47fd603d469517a0"
    },
    {
      "key": "duplicate|reported|contract|last",
      "scenarioId": "duplicate",
      "evidencePolicyId": "reported",
      "cutoffId": "contract",
      "policyId": "last",
      "proofKey": "duplicate|reported|contract",
      "asOf": "2026-05-15T23:59:59Z",
      "status": "complete",
      "summary": "Contract signed · purchase pending. Credit describes this qualified opportunity under the selected policy; it does not establish causal lift.",
      "timeline": [
        {
          "id": "click-nonbrand",
          "at": "2026-04-03T10:00:00Z",
          "recordedAt": "2026-04-03T10:00:00Z",
          "label": "Nonbrand search ad clicked",
          "channelId": "search-nonbrand",
          "channelLabel": "Nonbrand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-nonbrand"
        },
        {
          "id": "click-brand",
          "at": "2026-04-08T11:00:00Z",
          "recordedAt": "2026-04-08T11:00:00Z",
          "label": "Brand search ad clicked",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-brand"
        },
        {
          "id": "call-1",
          "at": "2026-04-09T12:00:00Z",
          "recordedAt": "2026-04-09T12:00:00Z",
          "label": "Seller called the website number",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/call",
          "locator": "call-1"
        },
        {
          "id": "call-webhook-retry",
          "at": "2026-04-09T12:00:00Z",
          "recordedAt": "2026-04-09T12:01:00Z",
          "label": "Repeated delivery of the same call event",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "excluded",
          "reason": "Duplicate delivery of an existing source event.",
          "sourceRef": "synthetic://cash-homebuyer/call",
          "locator": "call-webhook-retry"
        },
        {
          "id": "call-forwarded-leg",
          "at": "2026-04-09T12:00:30Z",
          "recordedAt": "2026-04-09T12:00:30Z",
          "label": "Call forwarded to the acquisition team",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "observed",
          "disposition": "excluded",
          "reason": "Forwarded leg of an existing call; not a new seller opportunity.",
          "sourceRef": "synthetic://cash-homebuyer/call-leg",
          "locator": "call-forwarded-leg"
        },
        {
          "id": "qualified-1",
          "at": "2026-04-09T15:00:00Z",
          "recordedAt": "2026-04-09T15:00:00Z",
          "label": "Seller-property opportunity qualified",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/qualified",
          "locator": "qualified-1"
        },
        {
          "id": "coowner-callback",
          "at": "2026-04-11T12:00:00Z",
          "recordedAt": "2026-04-11T12:00:00Z",
          "label": "Coowner called about the same property",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "observed",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/call",
          "locator": "coowner-callback"
        },
        {
          "id": "assessment-1",
          "at": "2026-04-18T14:00:00Z",
          "recordedAt": "2026-04-18T14:00:00Z",
          "label": "Property assessment completed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/assessment",
          "locator": "assessment-1"
        },
        {
          "id": "offer-1",
          "at": "2026-04-24T10:00:00Z",
          "recordedAt": "2026-04-24T10:00:00Z",
          "label": "Written purchase offer delivered",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/offer",
          "locator": "offer-1"
        },
        {
          "id": "contract-1",
          "at": "2026-05-02T12:00:00Z",
          "recordedAt": "2026-05-02T12:00:00Z",
          "label": "Acquisition contract signed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/contract",
          "locator": "contract-1"
        },
        {
          "id": "marketing-cost",
          "at": "2026-05-03T12:00:00Z",
          "recordedAt": "2026-05-03T12:00:00Z",
          "label": "Acquisition marketing cost allocated",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/cost",
          "locator": "marketing-cost"
        }
      ],
      "credit": [
        {
          "channelId": "search-brand",
          "label": "Brand paid search",
          "weight": 1,
          "percentage": 100,
          "touchIds": [
            "click-brand"
          ]
        }
      ],
      "outcome": {
        "qualifiedOpportunities": 1,
        "contracts": 1,
        "acquisitions": 0,
        "resales": 0,
        "canceled": false,
        "stage": "contract",
        "label": "Contract signed · purchase pending",
        "capitalDeployed": null,
        "resaleProceeds": null,
        "contributionBeforeMarketing": null,
        "marketingAllocation": 3000,
        "contributionAfterMarketing": null,
        "missingCosts": [
          "renovation",
          "holdingAndTransaction"
        ],
        "contributionStatus": "pending",
        "currency": "USD",
        "sourceIds": [
          "qualified-1",
          "contract-1",
          "marketing-cost"
        ]
      },
      "issues": [],
      "creditOutcome": "qualified_seller_property_opportunity",
      "eligibleTouchIds": [
        "click-brand",
        "click-nonbrand"
      ],
      "allocationStatus": "computed",
      "policyVersion": "cash-homebuyer.last.reported.v1",
      "propertyId": "property-104",
      "opportunityId": "acquisition-204",
      "sellerGroupId": "seller-group-14",
      "receiptHash": "91db603196f3b3628562b1cb0c4683967766086bbaff6f3cedab3ca624593030"
    },
    {
      "key": "duplicate|reported|contract|linear",
      "scenarioId": "duplicate",
      "evidencePolicyId": "reported",
      "cutoffId": "contract",
      "policyId": "linear",
      "proofKey": "duplicate|reported|contract",
      "asOf": "2026-05-15T23:59:59Z",
      "status": "complete",
      "summary": "Contract signed · purchase pending. Credit describes this qualified opportunity under the selected policy; it does not establish causal lift.",
      "timeline": [
        {
          "id": "click-nonbrand",
          "at": "2026-04-03T10:00:00Z",
          "recordedAt": "2026-04-03T10:00:00Z",
          "label": "Nonbrand search ad clicked",
          "channelId": "search-nonbrand",
          "channelLabel": "Nonbrand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-nonbrand"
        },
        {
          "id": "click-brand",
          "at": "2026-04-08T11:00:00Z",
          "recordedAt": "2026-04-08T11:00:00Z",
          "label": "Brand search ad clicked",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-brand"
        },
        {
          "id": "call-1",
          "at": "2026-04-09T12:00:00Z",
          "recordedAt": "2026-04-09T12:00:00Z",
          "label": "Seller called the website number",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/call",
          "locator": "call-1"
        },
        {
          "id": "call-webhook-retry",
          "at": "2026-04-09T12:00:00Z",
          "recordedAt": "2026-04-09T12:01:00Z",
          "label": "Repeated delivery of the same call event",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "excluded",
          "reason": "Duplicate delivery of an existing source event.",
          "sourceRef": "synthetic://cash-homebuyer/call",
          "locator": "call-webhook-retry"
        },
        {
          "id": "call-forwarded-leg",
          "at": "2026-04-09T12:00:30Z",
          "recordedAt": "2026-04-09T12:00:30Z",
          "label": "Call forwarded to the acquisition team",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "observed",
          "disposition": "excluded",
          "reason": "Forwarded leg of an existing call; not a new seller opportunity.",
          "sourceRef": "synthetic://cash-homebuyer/call-leg",
          "locator": "call-forwarded-leg"
        },
        {
          "id": "qualified-1",
          "at": "2026-04-09T15:00:00Z",
          "recordedAt": "2026-04-09T15:00:00Z",
          "label": "Seller-property opportunity qualified",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/qualified",
          "locator": "qualified-1"
        },
        {
          "id": "coowner-callback",
          "at": "2026-04-11T12:00:00Z",
          "recordedAt": "2026-04-11T12:00:00Z",
          "label": "Coowner called about the same property",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "observed",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/call",
          "locator": "coowner-callback"
        },
        {
          "id": "assessment-1",
          "at": "2026-04-18T14:00:00Z",
          "recordedAt": "2026-04-18T14:00:00Z",
          "label": "Property assessment completed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/assessment",
          "locator": "assessment-1"
        },
        {
          "id": "offer-1",
          "at": "2026-04-24T10:00:00Z",
          "recordedAt": "2026-04-24T10:00:00Z",
          "label": "Written purchase offer delivered",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/offer",
          "locator": "offer-1"
        },
        {
          "id": "contract-1",
          "at": "2026-05-02T12:00:00Z",
          "recordedAt": "2026-05-02T12:00:00Z",
          "label": "Acquisition contract signed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/contract",
          "locator": "contract-1"
        },
        {
          "id": "marketing-cost",
          "at": "2026-05-03T12:00:00Z",
          "recordedAt": "2026-05-03T12:00:00Z",
          "label": "Acquisition marketing cost allocated",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/cost",
          "locator": "marketing-cost"
        }
      ],
      "credit": [
        {
          "channelId": "search-nonbrand",
          "label": "Nonbrand paid search",
          "weight": 0.5,
          "percentage": 50,
          "touchIds": [
            "click-nonbrand"
          ]
        },
        {
          "channelId": "search-brand",
          "label": "Brand paid search",
          "weight": 0.5,
          "percentage": 50,
          "touchIds": [
            "click-brand"
          ]
        }
      ],
      "outcome": {
        "qualifiedOpportunities": 1,
        "contracts": 1,
        "acquisitions": 0,
        "resales": 0,
        "canceled": false,
        "stage": "contract",
        "label": "Contract signed · purchase pending",
        "capitalDeployed": null,
        "resaleProceeds": null,
        "contributionBeforeMarketing": null,
        "marketingAllocation": 3000,
        "contributionAfterMarketing": null,
        "missingCosts": [
          "renovation",
          "holdingAndTransaction"
        ],
        "contributionStatus": "pending",
        "currency": "USD",
        "sourceIds": [
          "qualified-1",
          "contract-1",
          "marketing-cost"
        ]
      },
      "issues": [],
      "creditOutcome": "qualified_seller_property_opportunity",
      "eligibleTouchIds": [
        "click-brand",
        "click-nonbrand"
      ],
      "allocationStatus": "computed",
      "policyVersion": "cash-homebuyer.linear.reported.v1",
      "propertyId": "property-104",
      "opportunityId": "acquisition-204",
      "sellerGroupId": "seller-group-14",
      "receiptHash": "f19df43f7ad4fd2c9167a0e0540362c7ceee64021a8d4f2ebb1ef9db1023634b"
    },
    {
      "key": "duplicate|reported|acquired|first",
      "scenarioId": "duplicate",
      "evidencePolicyId": "reported",
      "cutoffId": "acquired",
      "policyId": "first",
      "proofKey": "duplicate|reported|acquired",
      "asOf": "2026-06-15T23:59:59Z",
      "status": "complete",
      "summary": "Purchase closed · resale pending. Credit describes this qualified opportunity under the selected policy; it does not establish causal lift.",
      "timeline": [
        {
          "id": "click-nonbrand",
          "at": "2026-04-03T10:00:00Z",
          "recordedAt": "2026-04-03T10:00:00Z",
          "label": "Nonbrand search ad clicked",
          "channelId": "search-nonbrand",
          "channelLabel": "Nonbrand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-nonbrand"
        },
        {
          "id": "click-brand",
          "at": "2026-04-08T11:00:00Z",
          "recordedAt": "2026-04-08T11:00:00Z",
          "label": "Brand search ad clicked",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-brand"
        },
        {
          "id": "call-1",
          "at": "2026-04-09T12:00:00Z",
          "recordedAt": "2026-04-09T12:00:00Z",
          "label": "Seller called the website number",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/call",
          "locator": "call-1"
        },
        {
          "id": "call-webhook-retry",
          "at": "2026-04-09T12:00:00Z",
          "recordedAt": "2026-04-09T12:01:00Z",
          "label": "Repeated delivery of the same call event",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "excluded",
          "reason": "Duplicate delivery of an existing source event.",
          "sourceRef": "synthetic://cash-homebuyer/call",
          "locator": "call-webhook-retry"
        },
        {
          "id": "call-forwarded-leg",
          "at": "2026-04-09T12:00:30Z",
          "recordedAt": "2026-04-09T12:00:30Z",
          "label": "Call forwarded to the acquisition team",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "observed",
          "disposition": "excluded",
          "reason": "Forwarded leg of an existing call; not a new seller opportunity.",
          "sourceRef": "synthetic://cash-homebuyer/call-leg",
          "locator": "call-forwarded-leg"
        },
        {
          "id": "qualified-1",
          "at": "2026-04-09T15:00:00Z",
          "recordedAt": "2026-04-09T15:00:00Z",
          "label": "Seller-property opportunity qualified",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/qualified",
          "locator": "qualified-1"
        },
        {
          "id": "coowner-callback",
          "at": "2026-04-11T12:00:00Z",
          "recordedAt": "2026-04-11T12:00:00Z",
          "label": "Coowner called about the same property",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "observed",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/call",
          "locator": "coowner-callback"
        },
        {
          "id": "assessment-1",
          "at": "2026-04-18T14:00:00Z",
          "recordedAt": "2026-04-18T14:00:00Z",
          "label": "Property assessment completed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/assessment",
          "locator": "assessment-1"
        },
        {
          "id": "offer-1",
          "at": "2026-04-24T10:00:00Z",
          "recordedAt": "2026-04-24T10:00:00Z",
          "label": "Written purchase offer delivered",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/offer",
          "locator": "offer-1"
        },
        {
          "id": "contract-1",
          "at": "2026-05-02T12:00:00Z",
          "recordedAt": "2026-05-02T12:00:00Z",
          "label": "Acquisition contract signed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/contract",
          "locator": "contract-1"
        },
        {
          "id": "marketing-cost",
          "at": "2026-05-03T12:00:00Z",
          "recordedAt": "2026-05-03T12:00:00Z",
          "label": "Acquisition marketing cost allocated",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/cost",
          "locator": "marketing-cost"
        },
        {
          "id": "closing-1",
          "at": "2026-06-02T12:00:00Z",
          "recordedAt": "2026-06-02T12:00:00Z",
          "label": "Property purchase closed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/acquisition",
          "locator": "closing-1"
        }
      ],
      "credit": [
        {
          "channelId": "search-nonbrand",
          "label": "Nonbrand paid search",
          "weight": 1,
          "percentage": 100,
          "touchIds": [
            "click-nonbrand"
          ]
        }
      ],
      "outcome": {
        "qualifiedOpportunities": 1,
        "contracts": 1,
        "acquisitions": 1,
        "resales": 0,
        "canceled": false,
        "stage": "acquired",
        "label": "Purchase closed · resale pending",
        "capitalDeployed": 210000,
        "resaleProceeds": null,
        "contributionBeforeMarketing": null,
        "marketingAllocation": 3000,
        "contributionAfterMarketing": null,
        "missingCosts": [
          "renovation",
          "holdingAndTransaction"
        ],
        "contributionStatus": "pending",
        "currency": "USD",
        "sourceIds": [
          "qualified-1",
          "contract-1",
          "marketing-cost",
          "closing-1"
        ]
      },
      "issues": [],
      "creditOutcome": "qualified_seller_property_opportunity",
      "eligibleTouchIds": [
        "click-brand",
        "click-nonbrand"
      ],
      "allocationStatus": "computed",
      "policyVersion": "cash-homebuyer.first.reported.v1",
      "propertyId": "property-104",
      "opportunityId": "acquisition-204",
      "sellerGroupId": "seller-group-14",
      "receiptHash": "553b58af96a6bf22170f073cd7bb093b8651d1241f12aac7141b56977b38ac73"
    },
    {
      "key": "duplicate|reported|acquired|last",
      "scenarioId": "duplicate",
      "evidencePolicyId": "reported",
      "cutoffId": "acquired",
      "policyId": "last",
      "proofKey": "duplicate|reported|acquired",
      "asOf": "2026-06-15T23:59:59Z",
      "status": "complete",
      "summary": "Purchase closed · resale pending. Credit describes this qualified opportunity under the selected policy; it does not establish causal lift.",
      "timeline": [
        {
          "id": "click-nonbrand",
          "at": "2026-04-03T10:00:00Z",
          "recordedAt": "2026-04-03T10:00:00Z",
          "label": "Nonbrand search ad clicked",
          "channelId": "search-nonbrand",
          "channelLabel": "Nonbrand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-nonbrand"
        },
        {
          "id": "click-brand",
          "at": "2026-04-08T11:00:00Z",
          "recordedAt": "2026-04-08T11:00:00Z",
          "label": "Brand search ad clicked",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-brand"
        },
        {
          "id": "call-1",
          "at": "2026-04-09T12:00:00Z",
          "recordedAt": "2026-04-09T12:00:00Z",
          "label": "Seller called the website number",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/call",
          "locator": "call-1"
        },
        {
          "id": "call-webhook-retry",
          "at": "2026-04-09T12:00:00Z",
          "recordedAt": "2026-04-09T12:01:00Z",
          "label": "Repeated delivery of the same call event",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "excluded",
          "reason": "Duplicate delivery of an existing source event.",
          "sourceRef": "synthetic://cash-homebuyer/call",
          "locator": "call-webhook-retry"
        },
        {
          "id": "call-forwarded-leg",
          "at": "2026-04-09T12:00:30Z",
          "recordedAt": "2026-04-09T12:00:30Z",
          "label": "Call forwarded to the acquisition team",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "observed",
          "disposition": "excluded",
          "reason": "Forwarded leg of an existing call; not a new seller opportunity.",
          "sourceRef": "synthetic://cash-homebuyer/call-leg",
          "locator": "call-forwarded-leg"
        },
        {
          "id": "qualified-1",
          "at": "2026-04-09T15:00:00Z",
          "recordedAt": "2026-04-09T15:00:00Z",
          "label": "Seller-property opportunity qualified",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/qualified",
          "locator": "qualified-1"
        },
        {
          "id": "coowner-callback",
          "at": "2026-04-11T12:00:00Z",
          "recordedAt": "2026-04-11T12:00:00Z",
          "label": "Coowner called about the same property",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "observed",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/call",
          "locator": "coowner-callback"
        },
        {
          "id": "assessment-1",
          "at": "2026-04-18T14:00:00Z",
          "recordedAt": "2026-04-18T14:00:00Z",
          "label": "Property assessment completed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/assessment",
          "locator": "assessment-1"
        },
        {
          "id": "offer-1",
          "at": "2026-04-24T10:00:00Z",
          "recordedAt": "2026-04-24T10:00:00Z",
          "label": "Written purchase offer delivered",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/offer",
          "locator": "offer-1"
        },
        {
          "id": "contract-1",
          "at": "2026-05-02T12:00:00Z",
          "recordedAt": "2026-05-02T12:00:00Z",
          "label": "Acquisition contract signed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/contract",
          "locator": "contract-1"
        },
        {
          "id": "marketing-cost",
          "at": "2026-05-03T12:00:00Z",
          "recordedAt": "2026-05-03T12:00:00Z",
          "label": "Acquisition marketing cost allocated",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/cost",
          "locator": "marketing-cost"
        },
        {
          "id": "closing-1",
          "at": "2026-06-02T12:00:00Z",
          "recordedAt": "2026-06-02T12:00:00Z",
          "label": "Property purchase closed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/acquisition",
          "locator": "closing-1"
        }
      ],
      "credit": [
        {
          "channelId": "search-brand",
          "label": "Brand paid search",
          "weight": 1,
          "percentage": 100,
          "touchIds": [
            "click-brand"
          ]
        }
      ],
      "outcome": {
        "qualifiedOpportunities": 1,
        "contracts": 1,
        "acquisitions": 1,
        "resales": 0,
        "canceled": false,
        "stage": "acquired",
        "label": "Purchase closed · resale pending",
        "capitalDeployed": 210000,
        "resaleProceeds": null,
        "contributionBeforeMarketing": null,
        "marketingAllocation": 3000,
        "contributionAfterMarketing": null,
        "missingCosts": [
          "renovation",
          "holdingAndTransaction"
        ],
        "contributionStatus": "pending",
        "currency": "USD",
        "sourceIds": [
          "qualified-1",
          "contract-1",
          "marketing-cost",
          "closing-1"
        ]
      },
      "issues": [],
      "creditOutcome": "qualified_seller_property_opportunity",
      "eligibleTouchIds": [
        "click-brand",
        "click-nonbrand"
      ],
      "allocationStatus": "computed",
      "policyVersion": "cash-homebuyer.last.reported.v1",
      "propertyId": "property-104",
      "opportunityId": "acquisition-204",
      "sellerGroupId": "seller-group-14",
      "receiptHash": "fc52a6a0cda42d9534d467da4b1529bc8aaa8042309209ac9b6a8de3c3c19af8"
    },
    {
      "key": "duplicate|reported|acquired|linear",
      "scenarioId": "duplicate",
      "evidencePolicyId": "reported",
      "cutoffId": "acquired",
      "policyId": "linear",
      "proofKey": "duplicate|reported|acquired",
      "asOf": "2026-06-15T23:59:59Z",
      "status": "complete",
      "summary": "Purchase closed · resale pending. Credit describes this qualified opportunity under the selected policy; it does not establish causal lift.",
      "timeline": [
        {
          "id": "click-nonbrand",
          "at": "2026-04-03T10:00:00Z",
          "recordedAt": "2026-04-03T10:00:00Z",
          "label": "Nonbrand search ad clicked",
          "channelId": "search-nonbrand",
          "channelLabel": "Nonbrand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-nonbrand"
        },
        {
          "id": "click-brand",
          "at": "2026-04-08T11:00:00Z",
          "recordedAt": "2026-04-08T11:00:00Z",
          "label": "Brand search ad clicked",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-brand"
        },
        {
          "id": "call-1",
          "at": "2026-04-09T12:00:00Z",
          "recordedAt": "2026-04-09T12:00:00Z",
          "label": "Seller called the website number",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/call",
          "locator": "call-1"
        },
        {
          "id": "call-webhook-retry",
          "at": "2026-04-09T12:00:00Z",
          "recordedAt": "2026-04-09T12:01:00Z",
          "label": "Repeated delivery of the same call event",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "excluded",
          "reason": "Duplicate delivery of an existing source event.",
          "sourceRef": "synthetic://cash-homebuyer/call",
          "locator": "call-webhook-retry"
        },
        {
          "id": "call-forwarded-leg",
          "at": "2026-04-09T12:00:30Z",
          "recordedAt": "2026-04-09T12:00:30Z",
          "label": "Call forwarded to the acquisition team",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "observed",
          "disposition": "excluded",
          "reason": "Forwarded leg of an existing call; not a new seller opportunity.",
          "sourceRef": "synthetic://cash-homebuyer/call-leg",
          "locator": "call-forwarded-leg"
        },
        {
          "id": "qualified-1",
          "at": "2026-04-09T15:00:00Z",
          "recordedAt": "2026-04-09T15:00:00Z",
          "label": "Seller-property opportunity qualified",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/qualified",
          "locator": "qualified-1"
        },
        {
          "id": "coowner-callback",
          "at": "2026-04-11T12:00:00Z",
          "recordedAt": "2026-04-11T12:00:00Z",
          "label": "Coowner called about the same property",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "observed",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/call",
          "locator": "coowner-callback"
        },
        {
          "id": "assessment-1",
          "at": "2026-04-18T14:00:00Z",
          "recordedAt": "2026-04-18T14:00:00Z",
          "label": "Property assessment completed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/assessment",
          "locator": "assessment-1"
        },
        {
          "id": "offer-1",
          "at": "2026-04-24T10:00:00Z",
          "recordedAt": "2026-04-24T10:00:00Z",
          "label": "Written purchase offer delivered",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/offer",
          "locator": "offer-1"
        },
        {
          "id": "contract-1",
          "at": "2026-05-02T12:00:00Z",
          "recordedAt": "2026-05-02T12:00:00Z",
          "label": "Acquisition contract signed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/contract",
          "locator": "contract-1"
        },
        {
          "id": "marketing-cost",
          "at": "2026-05-03T12:00:00Z",
          "recordedAt": "2026-05-03T12:00:00Z",
          "label": "Acquisition marketing cost allocated",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/cost",
          "locator": "marketing-cost"
        },
        {
          "id": "closing-1",
          "at": "2026-06-02T12:00:00Z",
          "recordedAt": "2026-06-02T12:00:00Z",
          "label": "Property purchase closed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/acquisition",
          "locator": "closing-1"
        }
      ],
      "credit": [
        {
          "channelId": "search-nonbrand",
          "label": "Nonbrand paid search",
          "weight": 0.5,
          "percentage": 50,
          "touchIds": [
            "click-nonbrand"
          ]
        },
        {
          "channelId": "search-brand",
          "label": "Brand paid search",
          "weight": 0.5,
          "percentage": 50,
          "touchIds": [
            "click-brand"
          ]
        }
      ],
      "outcome": {
        "qualifiedOpportunities": 1,
        "contracts": 1,
        "acquisitions": 1,
        "resales": 0,
        "canceled": false,
        "stage": "acquired",
        "label": "Purchase closed · resale pending",
        "capitalDeployed": 210000,
        "resaleProceeds": null,
        "contributionBeforeMarketing": null,
        "marketingAllocation": 3000,
        "contributionAfterMarketing": null,
        "missingCosts": [
          "renovation",
          "holdingAndTransaction"
        ],
        "contributionStatus": "pending",
        "currency": "USD",
        "sourceIds": [
          "qualified-1",
          "contract-1",
          "marketing-cost",
          "closing-1"
        ]
      },
      "issues": [],
      "creditOutcome": "qualified_seller_property_opportunity",
      "eligibleTouchIds": [
        "click-brand",
        "click-nonbrand"
      ],
      "allocationStatus": "computed",
      "policyVersion": "cash-homebuyer.linear.reported.v1",
      "propertyId": "property-104",
      "opportunityId": "acquisition-204",
      "sellerGroupId": "seller-group-14",
      "receiptHash": "ad2179661be3dc0b577d58f88ee29b31dceb9ed21a202b579e780e784908ddb3"
    },
    {
      "key": "duplicate|reported|resale|first",
      "scenarioId": "duplicate",
      "evidencePolicyId": "reported",
      "cutoffId": "resale",
      "policyId": "first",
      "proofKey": "duplicate|reported|resale",
      "asOf": "2026-09-15T23:59:59Z",
      "status": "complete",
      "summary": "Resale and costs reconciled. Credit describes this qualified opportunity under the selected policy; it does not establish causal lift.",
      "timeline": [
        {
          "id": "click-nonbrand",
          "at": "2026-04-03T10:00:00Z",
          "recordedAt": "2026-04-03T10:00:00Z",
          "label": "Nonbrand search ad clicked",
          "channelId": "search-nonbrand",
          "channelLabel": "Nonbrand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-nonbrand"
        },
        {
          "id": "click-brand",
          "at": "2026-04-08T11:00:00Z",
          "recordedAt": "2026-04-08T11:00:00Z",
          "label": "Brand search ad clicked",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-brand"
        },
        {
          "id": "call-1",
          "at": "2026-04-09T12:00:00Z",
          "recordedAt": "2026-04-09T12:00:00Z",
          "label": "Seller called the website number",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/call",
          "locator": "call-1"
        },
        {
          "id": "call-webhook-retry",
          "at": "2026-04-09T12:00:00Z",
          "recordedAt": "2026-04-09T12:01:00Z",
          "label": "Repeated delivery of the same call event",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "excluded",
          "reason": "Duplicate delivery of an existing source event.",
          "sourceRef": "synthetic://cash-homebuyer/call",
          "locator": "call-webhook-retry"
        },
        {
          "id": "call-forwarded-leg",
          "at": "2026-04-09T12:00:30Z",
          "recordedAt": "2026-04-09T12:00:30Z",
          "label": "Call forwarded to the acquisition team",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "observed",
          "disposition": "excluded",
          "reason": "Forwarded leg of an existing call; not a new seller opportunity.",
          "sourceRef": "synthetic://cash-homebuyer/call-leg",
          "locator": "call-forwarded-leg"
        },
        {
          "id": "qualified-1",
          "at": "2026-04-09T15:00:00Z",
          "recordedAt": "2026-04-09T15:00:00Z",
          "label": "Seller-property opportunity qualified",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/qualified",
          "locator": "qualified-1"
        },
        {
          "id": "coowner-callback",
          "at": "2026-04-11T12:00:00Z",
          "recordedAt": "2026-04-11T12:00:00Z",
          "label": "Coowner called about the same property",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "observed",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/call",
          "locator": "coowner-callback"
        },
        {
          "id": "assessment-1",
          "at": "2026-04-18T14:00:00Z",
          "recordedAt": "2026-04-18T14:00:00Z",
          "label": "Property assessment completed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/assessment",
          "locator": "assessment-1"
        },
        {
          "id": "offer-1",
          "at": "2026-04-24T10:00:00Z",
          "recordedAt": "2026-04-24T10:00:00Z",
          "label": "Written purchase offer delivered",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/offer",
          "locator": "offer-1"
        },
        {
          "id": "contract-1",
          "at": "2026-05-02T12:00:00Z",
          "recordedAt": "2026-05-02T12:00:00Z",
          "label": "Acquisition contract signed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/contract",
          "locator": "contract-1"
        },
        {
          "id": "marketing-cost",
          "at": "2026-05-03T12:00:00Z",
          "recordedAt": "2026-05-03T12:00:00Z",
          "label": "Acquisition marketing cost allocated",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/cost",
          "locator": "marketing-cost"
        },
        {
          "id": "closing-1",
          "at": "2026-06-02T12:00:00Z",
          "recordedAt": "2026-06-02T12:00:00Z",
          "label": "Property purchase closed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/acquisition",
          "locator": "closing-1"
        },
        {
          "id": "renovation-cost",
          "at": "2026-07-10T12:00:00Z",
          "recordedAt": "2026-07-10T12:00:00Z",
          "label": "Renovation costs reconciled",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/cost",
          "locator": "renovation-cost"
        },
        {
          "id": "resale-1",
          "at": "2026-09-03T12:00:00Z",
          "recordedAt": "2026-09-03T12:00:00Z",
          "label": "Resale proceeds recorded",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/resale",
          "locator": "resale-1"
        },
        {
          "id": "holding-cost",
          "at": "2026-09-05T12:00:00Z",
          "recordedAt": "2026-09-05T12:00:00Z",
          "label": "Holding, financing and transaction costs reconciled",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/cost",
          "locator": "holding-cost"
        }
      ],
      "credit": [
        {
          "channelId": "search-nonbrand",
          "label": "Nonbrand paid search",
          "weight": 1,
          "percentage": 100,
          "touchIds": [
            "click-nonbrand"
          ]
        }
      ],
      "outcome": {
        "qualifiedOpportunities": 1,
        "contracts": 1,
        "acquisitions": 1,
        "resales": 1,
        "canceled": false,
        "stage": "resold",
        "label": "Resale and costs reconciled",
        "capitalDeployed": 210000,
        "resaleProceeds": 295000,
        "contributionBeforeMarketing": 27000,
        "marketingAllocation": 3000,
        "contributionAfterMarketing": 24000,
        "missingCosts": [],
        "contributionStatus": "realized",
        "currency": "USD",
        "sourceIds": [
          "qualified-1",
          "contract-1",
          "marketing-cost",
          "closing-1",
          "renovation-cost",
          "resale-1",
          "holding-cost"
        ]
      },
      "issues": [],
      "creditOutcome": "qualified_seller_property_opportunity",
      "eligibleTouchIds": [
        "click-brand",
        "click-nonbrand"
      ],
      "allocationStatus": "computed",
      "policyVersion": "cash-homebuyer.first.reported.v1",
      "propertyId": "property-104",
      "opportunityId": "acquisition-204",
      "sellerGroupId": "seller-group-14",
      "receiptHash": "61ab33a0b105d67118c22e3beca46fb0c8e86e25000d20ca579f43a79f95a199"
    },
    {
      "key": "duplicate|reported|resale|last",
      "scenarioId": "duplicate",
      "evidencePolicyId": "reported",
      "cutoffId": "resale",
      "policyId": "last",
      "proofKey": "duplicate|reported|resale",
      "asOf": "2026-09-15T23:59:59Z",
      "status": "complete",
      "summary": "Resale and costs reconciled. Credit describes this qualified opportunity under the selected policy; it does not establish causal lift.",
      "timeline": [
        {
          "id": "click-nonbrand",
          "at": "2026-04-03T10:00:00Z",
          "recordedAt": "2026-04-03T10:00:00Z",
          "label": "Nonbrand search ad clicked",
          "channelId": "search-nonbrand",
          "channelLabel": "Nonbrand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-nonbrand"
        },
        {
          "id": "click-brand",
          "at": "2026-04-08T11:00:00Z",
          "recordedAt": "2026-04-08T11:00:00Z",
          "label": "Brand search ad clicked",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-brand"
        },
        {
          "id": "call-1",
          "at": "2026-04-09T12:00:00Z",
          "recordedAt": "2026-04-09T12:00:00Z",
          "label": "Seller called the website number",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/call",
          "locator": "call-1"
        },
        {
          "id": "call-webhook-retry",
          "at": "2026-04-09T12:00:00Z",
          "recordedAt": "2026-04-09T12:01:00Z",
          "label": "Repeated delivery of the same call event",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "excluded",
          "reason": "Duplicate delivery of an existing source event.",
          "sourceRef": "synthetic://cash-homebuyer/call",
          "locator": "call-webhook-retry"
        },
        {
          "id": "call-forwarded-leg",
          "at": "2026-04-09T12:00:30Z",
          "recordedAt": "2026-04-09T12:00:30Z",
          "label": "Call forwarded to the acquisition team",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "observed",
          "disposition": "excluded",
          "reason": "Forwarded leg of an existing call; not a new seller opportunity.",
          "sourceRef": "synthetic://cash-homebuyer/call-leg",
          "locator": "call-forwarded-leg"
        },
        {
          "id": "qualified-1",
          "at": "2026-04-09T15:00:00Z",
          "recordedAt": "2026-04-09T15:00:00Z",
          "label": "Seller-property opportunity qualified",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/qualified",
          "locator": "qualified-1"
        },
        {
          "id": "coowner-callback",
          "at": "2026-04-11T12:00:00Z",
          "recordedAt": "2026-04-11T12:00:00Z",
          "label": "Coowner called about the same property",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "observed",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/call",
          "locator": "coowner-callback"
        },
        {
          "id": "assessment-1",
          "at": "2026-04-18T14:00:00Z",
          "recordedAt": "2026-04-18T14:00:00Z",
          "label": "Property assessment completed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/assessment",
          "locator": "assessment-1"
        },
        {
          "id": "offer-1",
          "at": "2026-04-24T10:00:00Z",
          "recordedAt": "2026-04-24T10:00:00Z",
          "label": "Written purchase offer delivered",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/offer",
          "locator": "offer-1"
        },
        {
          "id": "contract-1",
          "at": "2026-05-02T12:00:00Z",
          "recordedAt": "2026-05-02T12:00:00Z",
          "label": "Acquisition contract signed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/contract",
          "locator": "contract-1"
        },
        {
          "id": "marketing-cost",
          "at": "2026-05-03T12:00:00Z",
          "recordedAt": "2026-05-03T12:00:00Z",
          "label": "Acquisition marketing cost allocated",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/cost",
          "locator": "marketing-cost"
        },
        {
          "id": "closing-1",
          "at": "2026-06-02T12:00:00Z",
          "recordedAt": "2026-06-02T12:00:00Z",
          "label": "Property purchase closed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/acquisition",
          "locator": "closing-1"
        },
        {
          "id": "renovation-cost",
          "at": "2026-07-10T12:00:00Z",
          "recordedAt": "2026-07-10T12:00:00Z",
          "label": "Renovation costs reconciled",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/cost",
          "locator": "renovation-cost"
        },
        {
          "id": "resale-1",
          "at": "2026-09-03T12:00:00Z",
          "recordedAt": "2026-09-03T12:00:00Z",
          "label": "Resale proceeds recorded",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/resale",
          "locator": "resale-1"
        },
        {
          "id": "holding-cost",
          "at": "2026-09-05T12:00:00Z",
          "recordedAt": "2026-09-05T12:00:00Z",
          "label": "Holding, financing and transaction costs reconciled",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/cost",
          "locator": "holding-cost"
        }
      ],
      "credit": [
        {
          "channelId": "search-brand",
          "label": "Brand paid search",
          "weight": 1,
          "percentage": 100,
          "touchIds": [
            "click-brand"
          ]
        }
      ],
      "outcome": {
        "qualifiedOpportunities": 1,
        "contracts": 1,
        "acquisitions": 1,
        "resales": 1,
        "canceled": false,
        "stage": "resold",
        "label": "Resale and costs reconciled",
        "capitalDeployed": 210000,
        "resaleProceeds": 295000,
        "contributionBeforeMarketing": 27000,
        "marketingAllocation": 3000,
        "contributionAfterMarketing": 24000,
        "missingCosts": [],
        "contributionStatus": "realized",
        "currency": "USD",
        "sourceIds": [
          "qualified-1",
          "contract-1",
          "marketing-cost",
          "closing-1",
          "renovation-cost",
          "resale-1",
          "holding-cost"
        ]
      },
      "issues": [],
      "creditOutcome": "qualified_seller_property_opportunity",
      "eligibleTouchIds": [
        "click-brand",
        "click-nonbrand"
      ],
      "allocationStatus": "computed",
      "policyVersion": "cash-homebuyer.last.reported.v1",
      "propertyId": "property-104",
      "opportunityId": "acquisition-204",
      "sellerGroupId": "seller-group-14",
      "receiptHash": "a1d1e23225c1a77fbd9ea5ecc93548f56f50bd59c69c96a151aaf6611428ab3e"
    },
    {
      "key": "duplicate|reported|resale|linear",
      "scenarioId": "duplicate",
      "evidencePolicyId": "reported",
      "cutoffId": "resale",
      "policyId": "linear",
      "proofKey": "duplicate|reported|resale",
      "asOf": "2026-09-15T23:59:59Z",
      "status": "complete",
      "summary": "Resale and costs reconciled. Credit describes this qualified opportunity under the selected policy; it does not establish causal lift.",
      "timeline": [
        {
          "id": "click-nonbrand",
          "at": "2026-04-03T10:00:00Z",
          "recordedAt": "2026-04-03T10:00:00Z",
          "label": "Nonbrand search ad clicked",
          "channelId": "search-nonbrand",
          "channelLabel": "Nonbrand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-nonbrand"
        },
        {
          "id": "click-brand",
          "at": "2026-04-08T11:00:00Z",
          "recordedAt": "2026-04-08T11:00:00Z",
          "label": "Brand search ad clicked",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-brand"
        },
        {
          "id": "call-1",
          "at": "2026-04-09T12:00:00Z",
          "recordedAt": "2026-04-09T12:00:00Z",
          "label": "Seller called the website number",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/call",
          "locator": "call-1"
        },
        {
          "id": "call-webhook-retry",
          "at": "2026-04-09T12:00:00Z",
          "recordedAt": "2026-04-09T12:01:00Z",
          "label": "Repeated delivery of the same call event",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "excluded",
          "reason": "Duplicate delivery of an existing source event.",
          "sourceRef": "synthetic://cash-homebuyer/call",
          "locator": "call-webhook-retry"
        },
        {
          "id": "call-forwarded-leg",
          "at": "2026-04-09T12:00:30Z",
          "recordedAt": "2026-04-09T12:00:30Z",
          "label": "Call forwarded to the acquisition team",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "observed",
          "disposition": "excluded",
          "reason": "Forwarded leg of an existing call; not a new seller opportunity.",
          "sourceRef": "synthetic://cash-homebuyer/call-leg",
          "locator": "call-forwarded-leg"
        },
        {
          "id": "qualified-1",
          "at": "2026-04-09T15:00:00Z",
          "recordedAt": "2026-04-09T15:00:00Z",
          "label": "Seller-property opportunity qualified",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/qualified",
          "locator": "qualified-1"
        },
        {
          "id": "coowner-callback",
          "at": "2026-04-11T12:00:00Z",
          "recordedAt": "2026-04-11T12:00:00Z",
          "label": "Coowner called about the same property",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "observed",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/call",
          "locator": "coowner-callback"
        },
        {
          "id": "assessment-1",
          "at": "2026-04-18T14:00:00Z",
          "recordedAt": "2026-04-18T14:00:00Z",
          "label": "Property assessment completed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/assessment",
          "locator": "assessment-1"
        },
        {
          "id": "offer-1",
          "at": "2026-04-24T10:00:00Z",
          "recordedAt": "2026-04-24T10:00:00Z",
          "label": "Written purchase offer delivered",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/offer",
          "locator": "offer-1"
        },
        {
          "id": "contract-1",
          "at": "2026-05-02T12:00:00Z",
          "recordedAt": "2026-05-02T12:00:00Z",
          "label": "Acquisition contract signed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/contract",
          "locator": "contract-1"
        },
        {
          "id": "marketing-cost",
          "at": "2026-05-03T12:00:00Z",
          "recordedAt": "2026-05-03T12:00:00Z",
          "label": "Acquisition marketing cost allocated",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/cost",
          "locator": "marketing-cost"
        },
        {
          "id": "closing-1",
          "at": "2026-06-02T12:00:00Z",
          "recordedAt": "2026-06-02T12:00:00Z",
          "label": "Property purchase closed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/acquisition",
          "locator": "closing-1"
        },
        {
          "id": "renovation-cost",
          "at": "2026-07-10T12:00:00Z",
          "recordedAt": "2026-07-10T12:00:00Z",
          "label": "Renovation costs reconciled",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/cost",
          "locator": "renovation-cost"
        },
        {
          "id": "resale-1",
          "at": "2026-09-03T12:00:00Z",
          "recordedAt": "2026-09-03T12:00:00Z",
          "label": "Resale proceeds recorded",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/resale",
          "locator": "resale-1"
        },
        {
          "id": "holding-cost",
          "at": "2026-09-05T12:00:00Z",
          "recordedAt": "2026-09-05T12:00:00Z",
          "label": "Holding, financing and transaction costs reconciled",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/cost",
          "locator": "holding-cost"
        }
      ],
      "credit": [
        {
          "channelId": "search-nonbrand",
          "label": "Nonbrand paid search",
          "weight": 0.5,
          "percentage": 50,
          "touchIds": [
            "click-nonbrand"
          ]
        },
        {
          "channelId": "search-brand",
          "label": "Brand paid search",
          "weight": 0.5,
          "percentage": 50,
          "touchIds": [
            "click-brand"
          ]
        }
      ],
      "outcome": {
        "qualifiedOpportunities": 1,
        "contracts": 1,
        "acquisitions": 1,
        "resales": 1,
        "canceled": false,
        "stage": "resold",
        "label": "Resale and costs reconciled",
        "capitalDeployed": 210000,
        "resaleProceeds": 295000,
        "contributionBeforeMarketing": 27000,
        "marketingAllocation": 3000,
        "contributionAfterMarketing": 24000,
        "missingCosts": [],
        "contributionStatus": "realized",
        "currency": "USD",
        "sourceIds": [
          "qualified-1",
          "contract-1",
          "marketing-cost",
          "closing-1",
          "renovation-cost",
          "resale-1",
          "holding-cost"
        ]
      },
      "issues": [],
      "creditOutcome": "qualified_seller_property_opportunity",
      "eligibleTouchIds": [
        "click-brand",
        "click-nonbrand"
      ],
      "allocationStatus": "computed",
      "policyVersion": "cash-homebuyer.linear.reported.v1",
      "propertyId": "property-104",
      "opportunityId": "acquisition-204",
      "sellerGroupId": "seller-group-14",
      "receiptHash": "d94fd11d0cd8feffb7733907099880609f802808fd0eb0a600e4a5b6cb983ab6"
    },
    {
      "key": "mapping|observed|contract|first",
      "scenarioId": "mapping",
      "evidencePolicyId": "observed",
      "cutoffId": "contract",
      "policyId": "first",
      "proofKey": "mapping|observed|contract",
      "asOf": "2026-05-15T23:59:59Z",
      "status": "needs_review",
      "summary": "Known interactions are retained. Final policy allocation is withheld while the source gap is reviewed.",
      "timeline": [
        {
          "id": "click-nonbrand",
          "at": "2026-04-03T10:00:00Z",
          "recordedAt": "2026-04-03T10:00:00Z",
          "label": "Nonbrand search ad clicked",
          "channelId": "search-nonbrand",
          "channelLabel": "Nonbrand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-nonbrand"
        },
        {
          "id": "click-brand",
          "at": "2026-04-08T11:00:00Z",
          "recordedAt": "2026-04-08T11:00:00Z",
          "label": "Brand search ad clicked",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-brand"
        },
        {
          "id": "call-1",
          "at": "2026-04-09T12:00:00Z",
          "recordedAt": "2026-04-09T12:00:00Z",
          "label": "Seller called; number-to-channel history missing",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "observed",
          "disposition": "unresolved",
          "reason": "Tracking-number assignment missing at call time. Known clicks remain supported; final allocation needs review.",
          "sourceRef": "synthetic://cash-homebuyer/call",
          "locator": "call-1"
        },
        {
          "id": "qualified-1",
          "at": "2026-04-09T15:00:00Z",
          "recordedAt": "2026-04-09T15:00:00Z",
          "label": "Seller-property opportunity qualified",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/qualified",
          "locator": "qualified-1"
        },
        {
          "id": "assessment-1",
          "at": "2026-04-18T14:00:00Z",
          "recordedAt": "2026-04-18T14:00:00Z",
          "label": "Property assessment completed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/assessment",
          "locator": "assessment-1"
        },
        {
          "id": "offer-1",
          "at": "2026-04-24T10:00:00Z",
          "recordedAt": "2026-04-24T10:00:00Z",
          "label": "Written purchase offer delivered",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/offer",
          "locator": "offer-1"
        },
        {
          "id": "contract-1",
          "at": "2026-05-02T12:00:00Z",
          "recordedAt": "2026-05-02T12:00:00Z",
          "label": "Acquisition contract signed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/contract",
          "locator": "contract-1"
        },
        {
          "id": "marketing-cost",
          "at": "2026-05-03T12:00:00Z",
          "recordedAt": "2026-05-03T12:00:00Z",
          "label": "Acquisition marketing cost allocated",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/cost",
          "locator": "marketing-cost"
        }
      ],
      "credit": [],
      "outcome": {
        "qualifiedOpportunities": 1,
        "contracts": 1,
        "acquisitions": 0,
        "resales": 0,
        "canceled": false,
        "stage": "contract",
        "label": "Contract signed · purchase pending",
        "capitalDeployed": null,
        "resaleProceeds": null,
        "contributionBeforeMarketing": null,
        "marketingAllocation": 3000,
        "contributionAfterMarketing": null,
        "missingCosts": [
          "renovation",
          "holdingAndTransaction"
        ],
        "contributionStatus": "pending",
        "currency": "USD",
        "sourceIds": [
          "qualified-1",
          "contract-1",
          "marketing-cost"
        ]
      },
      "issues": [
        {
          "code": "missing_source_mapping",
          "message": "Tracking-number assignment missing at call time. Known clicks remain supported; final allocation needs review."
        }
      ],
      "creditOutcome": "qualified_seller_property_opportunity",
      "eligibleTouchIds": [
        "click-brand",
        "click-nonbrand"
      ],
      "allocationStatus": "withheld",
      "policyVersion": "cash-homebuyer.first.observed.v1",
      "propertyId": "property-104",
      "opportunityId": "acquisition-204",
      "sellerGroupId": "seller-group-14",
      "receiptHash": "ec772245ff247e216991d99bcbb5f7c68867e5cfd865c600a7ada4225239fa6c"
    },
    {
      "key": "mapping|observed|contract|last",
      "scenarioId": "mapping",
      "evidencePolicyId": "observed",
      "cutoffId": "contract",
      "policyId": "last",
      "proofKey": "mapping|observed|contract",
      "asOf": "2026-05-15T23:59:59Z",
      "status": "needs_review",
      "summary": "Known interactions are retained. Final policy allocation is withheld while the source gap is reviewed.",
      "timeline": [
        {
          "id": "click-nonbrand",
          "at": "2026-04-03T10:00:00Z",
          "recordedAt": "2026-04-03T10:00:00Z",
          "label": "Nonbrand search ad clicked",
          "channelId": "search-nonbrand",
          "channelLabel": "Nonbrand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-nonbrand"
        },
        {
          "id": "click-brand",
          "at": "2026-04-08T11:00:00Z",
          "recordedAt": "2026-04-08T11:00:00Z",
          "label": "Brand search ad clicked",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-brand"
        },
        {
          "id": "call-1",
          "at": "2026-04-09T12:00:00Z",
          "recordedAt": "2026-04-09T12:00:00Z",
          "label": "Seller called; number-to-channel history missing",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "observed",
          "disposition": "unresolved",
          "reason": "Tracking-number assignment missing at call time. Known clicks remain supported; final allocation needs review.",
          "sourceRef": "synthetic://cash-homebuyer/call",
          "locator": "call-1"
        },
        {
          "id": "qualified-1",
          "at": "2026-04-09T15:00:00Z",
          "recordedAt": "2026-04-09T15:00:00Z",
          "label": "Seller-property opportunity qualified",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/qualified",
          "locator": "qualified-1"
        },
        {
          "id": "assessment-1",
          "at": "2026-04-18T14:00:00Z",
          "recordedAt": "2026-04-18T14:00:00Z",
          "label": "Property assessment completed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/assessment",
          "locator": "assessment-1"
        },
        {
          "id": "offer-1",
          "at": "2026-04-24T10:00:00Z",
          "recordedAt": "2026-04-24T10:00:00Z",
          "label": "Written purchase offer delivered",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/offer",
          "locator": "offer-1"
        },
        {
          "id": "contract-1",
          "at": "2026-05-02T12:00:00Z",
          "recordedAt": "2026-05-02T12:00:00Z",
          "label": "Acquisition contract signed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/contract",
          "locator": "contract-1"
        },
        {
          "id": "marketing-cost",
          "at": "2026-05-03T12:00:00Z",
          "recordedAt": "2026-05-03T12:00:00Z",
          "label": "Acquisition marketing cost allocated",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/cost",
          "locator": "marketing-cost"
        }
      ],
      "credit": [],
      "outcome": {
        "qualifiedOpportunities": 1,
        "contracts": 1,
        "acquisitions": 0,
        "resales": 0,
        "canceled": false,
        "stage": "contract",
        "label": "Contract signed · purchase pending",
        "capitalDeployed": null,
        "resaleProceeds": null,
        "contributionBeforeMarketing": null,
        "marketingAllocation": 3000,
        "contributionAfterMarketing": null,
        "missingCosts": [
          "renovation",
          "holdingAndTransaction"
        ],
        "contributionStatus": "pending",
        "currency": "USD",
        "sourceIds": [
          "qualified-1",
          "contract-1",
          "marketing-cost"
        ]
      },
      "issues": [
        {
          "code": "missing_source_mapping",
          "message": "Tracking-number assignment missing at call time. Known clicks remain supported; final allocation needs review."
        }
      ],
      "creditOutcome": "qualified_seller_property_opportunity",
      "eligibleTouchIds": [
        "click-brand",
        "click-nonbrand"
      ],
      "allocationStatus": "withheld",
      "policyVersion": "cash-homebuyer.last.observed.v1",
      "propertyId": "property-104",
      "opportunityId": "acquisition-204",
      "sellerGroupId": "seller-group-14",
      "receiptHash": "e2aa9e6c758c6606e20edc79103fd57391659186a676b02b55ddeaa09a137a4a"
    },
    {
      "key": "mapping|observed|contract|linear",
      "scenarioId": "mapping",
      "evidencePolicyId": "observed",
      "cutoffId": "contract",
      "policyId": "linear",
      "proofKey": "mapping|observed|contract",
      "asOf": "2026-05-15T23:59:59Z",
      "status": "needs_review",
      "summary": "Known interactions are retained. Final policy allocation is withheld while the source gap is reviewed.",
      "timeline": [
        {
          "id": "click-nonbrand",
          "at": "2026-04-03T10:00:00Z",
          "recordedAt": "2026-04-03T10:00:00Z",
          "label": "Nonbrand search ad clicked",
          "channelId": "search-nonbrand",
          "channelLabel": "Nonbrand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-nonbrand"
        },
        {
          "id": "click-brand",
          "at": "2026-04-08T11:00:00Z",
          "recordedAt": "2026-04-08T11:00:00Z",
          "label": "Brand search ad clicked",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-brand"
        },
        {
          "id": "call-1",
          "at": "2026-04-09T12:00:00Z",
          "recordedAt": "2026-04-09T12:00:00Z",
          "label": "Seller called; number-to-channel history missing",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "observed",
          "disposition": "unresolved",
          "reason": "Tracking-number assignment missing at call time. Known clicks remain supported; final allocation needs review.",
          "sourceRef": "synthetic://cash-homebuyer/call",
          "locator": "call-1"
        },
        {
          "id": "qualified-1",
          "at": "2026-04-09T15:00:00Z",
          "recordedAt": "2026-04-09T15:00:00Z",
          "label": "Seller-property opportunity qualified",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/qualified",
          "locator": "qualified-1"
        },
        {
          "id": "assessment-1",
          "at": "2026-04-18T14:00:00Z",
          "recordedAt": "2026-04-18T14:00:00Z",
          "label": "Property assessment completed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/assessment",
          "locator": "assessment-1"
        },
        {
          "id": "offer-1",
          "at": "2026-04-24T10:00:00Z",
          "recordedAt": "2026-04-24T10:00:00Z",
          "label": "Written purchase offer delivered",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/offer",
          "locator": "offer-1"
        },
        {
          "id": "contract-1",
          "at": "2026-05-02T12:00:00Z",
          "recordedAt": "2026-05-02T12:00:00Z",
          "label": "Acquisition contract signed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/contract",
          "locator": "contract-1"
        },
        {
          "id": "marketing-cost",
          "at": "2026-05-03T12:00:00Z",
          "recordedAt": "2026-05-03T12:00:00Z",
          "label": "Acquisition marketing cost allocated",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/cost",
          "locator": "marketing-cost"
        }
      ],
      "credit": [],
      "outcome": {
        "qualifiedOpportunities": 1,
        "contracts": 1,
        "acquisitions": 0,
        "resales": 0,
        "canceled": false,
        "stage": "contract",
        "label": "Contract signed · purchase pending",
        "capitalDeployed": null,
        "resaleProceeds": null,
        "contributionBeforeMarketing": null,
        "marketingAllocation": 3000,
        "contributionAfterMarketing": null,
        "missingCosts": [
          "renovation",
          "holdingAndTransaction"
        ],
        "contributionStatus": "pending",
        "currency": "USD",
        "sourceIds": [
          "qualified-1",
          "contract-1",
          "marketing-cost"
        ]
      },
      "issues": [
        {
          "code": "missing_source_mapping",
          "message": "Tracking-number assignment missing at call time. Known clicks remain supported; final allocation needs review."
        }
      ],
      "creditOutcome": "qualified_seller_property_opportunity",
      "eligibleTouchIds": [
        "click-brand",
        "click-nonbrand"
      ],
      "allocationStatus": "withheld",
      "policyVersion": "cash-homebuyer.linear.observed.v1",
      "propertyId": "property-104",
      "opportunityId": "acquisition-204",
      "sellerGroupId": "seller-group-14",
      "receiptHash": "4243a5b4f142cdc99e3d9c3bfbd8ddba4c68949a6e88e5ea18a061417f755964"
    },
    {
      "key": "mapping|observed|acquired|first",
      "scenarioId": "mapping",
      "evidencePolicyId": "observed",
      "cutoffId": "acquired",
      "policyId": "first",
      "proofKey": "mapping|observed|acquired",
      "asOf": "2026-06-15T23:59:59Z",
      "status": "needs_review",
      "summary": "Known interactions are retained. Final policy allocation is withheld while the source gap is reviewed.",
      "timeline": [
        {
          "id": "click-nonbrand",
          "at": "2026-04-03T10:00:00Z",
          "recordedAt": "2026-04-03T10:00:00Z",
          "label": "Nonbrand search ad clicked",
          "channelId": "search-nonbrand",
          "channelLabel": "Nonbrand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-nonbrand"
        },
        {
          "id": "click-brand",
          "at": "2026-04-08T11:00:00Z",
          "recordedAt": "2026-04-08T11:00:00Z",
          "label": "Brand search ad clicked",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-brand"
        },
        {
          "id": "call-1",
          "at": "2026-04-09T12:00:00Z",
          "recordedAt": "2026-04-09T12:00:00Z",
          "label": "Seller called; number-to-channel history missing",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "observed",
          "disposition": "unresolved",
          "reason": "Tracking-number assignment missing at call time. Known clicks remain supported; final allocation needs review.",
          "sourceRef": "synthetic://cash-homebuyer/call",
          "locator": "call-1"
        },
        {
          "id": "qualified-1",
          "at": "2026-04-09T15:00:00Z",
          "recordedAt": "2026-04-09T15:00:00Z",
          "label": "Seller-property opportunity qualified",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/qualified",
          "locator": "qualified-1"
        },
        {
          "id": "assessment-1",
          "at": "2026-04-18T14:00:00Z",
          "recordedAt": "2026-04-18T14:00:00Z",
          "label": "Property assessment completed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/assessment",
          "locator": "assessment-1"
        },
        {
          "id": "offer-1",
          "at": "2026-04-24T10:00:00Z",
          "recordedAt": "2026-04-24T10:00:00Z",
          "label": "Written purchase offer delivered",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/offer",
          "locator": "offer-1"
        },
        {
          "id": "contract-1",
          "at": "2026-05-02T12:00:00Z",
          "recordedAt": "2026-05-02T12:00:00Z",
          "label": "Acquisition contract signed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/contract",
          "locator": "contract-1"
        },
        {
          "id": "marketing-cost",
          "at": "2026-05-03T12:00:00Z",
          "recordedAt": "2026-05-03T12:00:00Z",
          "label": "Acquisition marketing cost allocated",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/cost",
          "locator": "marketing-cost"
        },
        {
          "id": "closing-1",
          "at": "2026-06-02T12:00:00Z",
          "recordedAt": "2026-06-02T12:00:00Z",
          "label": "Property purchase closed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/acquisition",
          "locator": "closing-1"
        }
      ],
      "credit": [],
      "outcome": {
        "qualifiedOpportunities": 1,
        "contracts": 1,
        "acquisitions": 1,
        "resales": 0,
        "canceled": false,
        "stage": "acquired",
        "label": "Purchase closed · resale pending",
        "capitalDeployed": 210000,
        "resaleProceeds": null,
        "contributionBeforeMarketing": null,
        "marketingAllocation": 3000,
        "contributionAfterMarketing": null,
        "missingCosts": [
          "renovation",
          "holdingAndTransaction"
        ],
        "contributionStatus": "pending",
        "currency": "USD",
        "sourceIds": [
          "qualified-1",
          "contract-1",
          "marketing-cost",
          "closing-1"
        ]
      },
      "issues": [
        {
          "code": "missing_source_mapping",
          "message": "Tracking-number assignment missing at call time. Known clicks remain supported; final allocation needs review."
        }
      ],
      "creditOutcome": "qualified_seller_property_opportunity",
      "eligibleTouchIds": [
        "click-brand",
        "click-nonbrand"
      ],
      "allocationStatus": "withheld",
      "policyVersion": "cash-homebuyer.first.observed.v1",
      "propertyId": "property-104",
      "opportunityId": "acquisition-204",
      "sellerGroupId": "seller-group-14",
      "receiptHash": "bd3d02f3fd14bb73690460c47a64f60663d2c077feab1bc1cd6c8dda0e90c9a5"
    },
    {
      "key": "mapping|observed|acquired|last",
      "scenarioId": "mapping",
      "evidencePolicyId": "observed",
      "cutoffId": "acquired",
      "policyId": "last",
      "proofKey": "mapping|observed|acquired",
      "asOf": "2026-06-15T23:59:59Z",
      "status": "needs_review",
      "summary": "Known interactions are retained. Final policy allocation is withheld while the source gap is reviewed.",
      "timeline": [
        {
          "id": "click-nonbrand",
          "at": "2026-04-03T10:00:00Z",
          "recordedAt": "2026-04-03T10:00:00Z",
          "label": "Nonbrand search ad clicked",
          "channelId": "search-nonbrand",
          "channelLabel": "Nonbrand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-nonbrand"
        },
        {
          "id": "click-brand",
          "at": "2026-04-08T11:00:00Z",
          "recordedAt": "2026-04-08T11:00:00Z",
          "label": "Brand search ad clicked",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-brand"
        },
        {
          "id": "call-1",
          "at": "2026-04-09T12:00:00Z",
          "recordedAt": "2026-04-09T12:00:00Z",
          "label": "Seller called; number-to-channel history missing",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "observed",
          "disposition": "unresolved",
          "reason": "Tracking-number assignment missing at call time. Known clicks remain supported; final allocation needs review.",
          "sourceRef": "synthetic://cash-homebuyer/call",
          "locator": "call-1"
        },
        {
          "id": "qualified-1",
          "at": "2026-04-09T15:00:00Z",
          "recordedAt": "2026-04-09T15:00:00Z",
          "label": "Seller-property opportunity qualified",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/qualified",
          "locator": "qualified-1"
        },
        {
          "id": "assessment-1",
          "at": "2026-04-18T14:00:00Z",
          "recordedAt": "2026-04-18T14:00:00Z",
          "label": "Property assessment completed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/assessment",
          "locator": "assessment-1"
        },
        {
          "id": "offer-1",
          "at": "2026-04-24T10:00:00Z",
          "recordedAt": "2026-04-24T10:00:00Z",
          "label": "Written purchase offer delivered",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/offer",
          "locator": "offer-1"
        },
        {
          "id": "contract-1",
          "at": "2026-05-02T12:00:00Z",
          "recordedAt": "2026-05-02T12:00:00Z",
          "label": "Acquisition contract signed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/contract",
          "locator": "contract-1"
        },
        {
          "id": "marketing-cost",
          "at": "2026-05-03T12:00:00Z",
          "recordedAt": "2026-05-03T12:00:00Z",
          "label": "Acquisition marketing cost allocated",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/cost",
          "locator": "marketing-cost"
        },
        {
          "id": "closing-1",
          "at": "2026-06-02T12:00:00Z",
          "recordedAt": "2026-06-02T12:00:00Z",
          "label": "Property purchase closed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/acquisition",
          "locator": "closing-1"
        }
      ],
      "credit": [],
      "outcome": {
        "qualifiedOpportunities": 1,
        "contracts": 1,
        "acquisitions": 1,
        "resales": 0,
        "canceled": false,
        "stage": "acquired",
        "label": "Purchase closed · resale pending",
        "capitalDeployed": 210000,
        "resaleProceeds": null,
        "contributionBeforeMarketing": null,
        "marketingAllocation": 3000,
        "contributionAfterMarketing": null,
        "missingCosts": [
          "renovation",
          "holdingAndTransaction"
        ],
        "contributionStatus": "pending",
        "currency": "USD",
        "sourceIds": [
          "qualified-1",
          "contract-1",
          "marketing-cost",
          "closing-1"
        ]
      },
      "issues": [
        {
          "code": "missing_source_mapping",
          "message": "Tracking-number assignment missing at call time. Known clicks remain supported; final allocation needs review."
        }
      ],
      "creditOutcome": "qualified_seller_property_opportunity",
      "eligibleTouchIds": [
        "click-brand",
        "click-nonbrand"
      ],
      "allocationStatus": "withheld",
      "policyVersion": "cash-homebuyer.last.observed.v1",
      "propertyId": "property-104",
      "opportunityId": "acquisition-204",
      "sellerGroupId": "seller-group-14",
      "receiptHash": "391e884dc6af6c43a25f789bb0c2b970c511fcc6102d575b67e5aadab393c1cd"
    },
    {
      "key": "mapping|observed|acquired|linear",
      "scenarioId": "mapping",
      "evidencePolicyId": "observed",
      "cutoffId": "acquired",
      "policyId": "linear",
      "proofKey": "mapping|observed|acquired",
      "asOf": "2026-06-15T23:59:59Z",
      "status": "needs_review",
      "summary": "Known interactions are retained. Final policy allocation is withheld while the source gap is reviewed.",
      "timeline": [
        {
          "id": "click-nonbrand",
          "at": "2026-04-03T10:00:00Z",
          "recordedAt": "2026-04-03T10:00:00Z",
          "label": "Nonbrand search ad clicked",
          "channelId": "search-nonbrand",
          "channelLabel": "Nonbrand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-nonbrand"
        },
        {
          "id": "click-brand",
          "at": "2026-04-08T11:00:00Z",
          "recordedAt": "2026-04-08T11:00:00Z",
          "label": "Brand search ad clicked",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-brand"
        },
        {
          "id": "call-1",
          "at": "2026-04-09T12:00:00Z",
          "recordedAt": "2026-04-09T12:00:00Z",
          "label": "Seller called; number-to-channel history missing",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "observed",
          "disposition": "unresolved",
          "reason": "Tracking-number assignment missing at call time. Known clicks remain supported; final allocation needs review.",
          "sourceRef": "synthetic://cash-homebuyer/call",
          "locator": "call-1"
        },
        {
          "id": "qualified-1",
          "at": "2026-04-09T15:00:00Z",
          "recordedAt": "2026-04-09T15:00:00Z",
          "label": "Seller-property opportunity qualified",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/qualified",
          "locator": "qualified-1"
        },
        {
          "id": "assessment-1",
          "at": "2026-04-18T14:00:00Z",
          "recordedAt": "2026-04-18T14:00:00Z",
          "label": "Property assessment completed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/assessment",
          "locator": "assessment-1"
        },
        {
          "id": "offer-1",
          "at": "2026-04-24T10:00:00Z",
          "recordedAt": "2026-04-24T10:00:00Z",
          "label": "Written purchase offer delivered",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/offer",
          "locator": "offer-1"
        },
        {
          "id": "contract-1",
          "at": "2026-05-02T12:00:00Z",
          "recordedAt": "2026-05-02T12:00:00Z",
          "label": "Acquisition contract signed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/contract",
          "locator": "contract-1"
        },
        {
          "id": "marketing-cost",
          "at": "2026-05-03T12:00:00Z",
          "recordedAt": "2026-05-03T12:00:00Z",
          "label": "Acquisition marketing cost allocated",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/cost",
          "locator": "marketing-cost"
        },
        {
          "id": "closing-1",
          "at": "2026-06-02T12:00:00Z",
          "recordedAt": "2026-06-02T12:00:00Z",
          "label": "Property purchase closed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/acquisition",
          "locator": "closing-1"
        }
      ],
      "credit": [],
      "outcome": {
        "qualifiedOpportunities": 1,
        "contracts": 1,
        "acquisitions": 1,
        "resales": 0,
        "canceled": false,
        "stage": "acquired",
        "label": "Purchase closed · resale pending",
        "capitalDeployed": 210000,
        "resaleProceeds": null,
        "contributionBeforeMarketing": null,
        "marketingAllocation": 3000,
        "contributionAfterMarketing": null,
        "missingCosts": [
          "renovation",
          "holdingAndTransaction"
        ],
        "contributionStatus": "pending",
        "currency": "USD",
        "sourceIds": [
          "qualified-1",
          "contract-1",
          "marketing-cost",
          "closing-1"
        ]
      },
      "issues": [
        {
          "code": "missing_source_mapping",
          "message": "Tracking-number assignment missing at call time. Known clicks remain supported; final allocation needs review."
        }
      ],
      "creditOutcome": "qualified_seller_property_opportunity",
      "eligibleTouchIds": [
        "click-brand",
        "click-nonbrand"
      ],
      "allocationStatus": "withheld",
      "policyVersion": "cash-homebuyer.linear.observed.v1",
      "propertyId": "property-104",
      "opportunityId": "acquisition-204",
      "sellerGroupId": "seller-group-14",
      "receiptHash": "d41ceaa3f2c564aa45e657ed2e0bd1badcce34f7007147fb7ec0703d74c70e54"
    },
    {
      "key": "mapping|observed|resale|first",
      "scenarioId": "mapping",
      "evidencePolicyId": "observed",
      "cutoffId": "resale",
      "policyId": "first",
      "proofKey": "mapping|observed|resale",
      "asOf": "2026-09-15T23:59:59Z",
      "status": "needs_review",
      "summary": "Known interactions are retained. Final policy allocation is withheld while the source gap is reviewed.",
      "timeline": [
        {
          "id": "click-nonbrand",
          "at": "2026-04-03T10:00:00Z",
          "recordedAt": "2026-04-03T10:00:00Z",
          "label": "Nonbrand search ad clicked",
          "channelId": "search-nonbrand",
          "channelLabel": "Nonbrand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-nonbrand"
        },
        {
          "id": "click-brand",
          "at": "2026-04-08T11:00:00Z",
          "recordedAt": "2026-04-08T11:00:00Z",
          "label": "Brand search ad clicked",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-brand"
        },
        {
          "id": "call-1",
          "at": "2026-04-09T12:00:00Z",
          "recordedAt": "2026-04-09T12:00:00Z",
          "label": "Seller called; number-to-channel history missing",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "observed",
          "disposition": "unresolved",
          "reason": "Tracking-number assignment missing at call time. Known clicks remain supported; final allocation needs review.",
          "sourceRef": "synthetic://cash-homebuyer/call",
          "locator": "call-1"
        },
        {
          "id": "qualified-1",
          "at": "2026-04-09T15:00:00Z",
          "recordedAt": "2026-04-09T15:00:00Z",
          "label": "Seller-property opportunity qualified",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/qualified",
          "locator": "qualified-1"
        },
        {
          "id": "assessment-1",
          "at": "2026-04-18T14:00:00Z",
          "recordedAt": "2026-04-18T14:00:00Z",
          "label": "Property assessment completed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/assessment",
          "locator": "assessment-1"
        },
        {
          "id": "offer-1",
          "at": "2026-04-24T10:00:00Z",
          "recordedAt": "2026-04-24T10:00:00Z",
          "label": "Written purchase offer delivered",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/offer",
          "locator": "offer-1"
        },
        {
          "id": "contract-1",
          "at": "2026-05-02T12:00:00Z",
          "recordedAt": "2026-05-02T12:00:00Z",
          "label": "Acquisition contract signed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/contract",
          "locator": "contract-1"
        },
        {
          "id": "marketing-cost",
          "at": "2026-05-03T12:00:00Z",
          "recordedAt": "2026-05-03T12:00:00Z",
          "label": "Acquisition marketing cost allocated",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/cost",
          "locator": "marketing-cost"
        },
        {
          "id": "closing-1",
          "at": "2026-06-02T12:00:00Z",
          "recordedAt": "2026-06-02T12:00:00Z",
          "label": "Property purchase closed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/acquisition",
          "locator": "closing-1"
        },
        {
          "id": "renovation-cost",
          "at": "2026-07-10T12:00:00Z",
          "recordedAt": "2026-07-10T12:00:00Z",
          "label": "Renovation costs reconciled",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/cost",
          "locator": "renovation-cost"
        },
        {
          "id": "resale-1",
          "at": "2026-09-03T12:00:00Z",
          "recordedAt": "2026-09-03T12:00:00Z",
          "label": "Resale proceeds recorded",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/resale",
          "locator": "resale-1"
        },
        {
          "id": "holding-cost",
          "at": "2026-09-05T12:00:00Z",
          "recordedAt": "2026-09-05T12:00:00Z",
          "label": "Holding, financing and transaction costs reconciled",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/cost",
          "locator": "holding-cost"
        }
      ],
      "credit": [],
      "outcome": {
        "qualifiedOpportunities": 1,
        "contracts": 1,
        "acquisitions": 1,
        "resales": 1,
        "canceled": false,
        "stage": "resold",
        "label": "Resale and costs reconciled",
        "capitalDeployed": 210000,
        "resaleProceeds": 295000,
        "contributionBeforeMarketing": 27000,
        "marketingAllocation": 3000,
        "contributionAfterMarketing": 24000,
        "missingCosts": [],
        "contributionStatus": "realized",
        "currency": "USD",
        "sourceIds": [
          "qualified-1",
          "contract-1",
          "marketing-cost",
          "closing-1",
          "renovation-cost",
          "resale-1",
          "holding-cost"
        ]
      },
      "issues": [
        {
          "code": "missing_source_mapping",
          "message": "Tracking-number assignment missing at call time. Known clicks remain supported; final allocation needs review."
        }
      ],
      "creditOutcome": "qualified_seller_property_opportunity",
      "eligibleTouchIds": [
        "click-brand",
        "click-nonbrand"
      ],
      "allocationStatus": "withheld",
      "policyVersion": "cash-homebuyer.first.observed.v1",
      "propertyId": "property-104",
      "opportunityId": "acquisition-204",
      "sellerGroupId": "seller-group-14",
      "receiptHash": "f98b389e8b45679416b71ecda3fd5668af7d2d050877c02fa74b2e030e07fc01"
    },
    {
      "key": "mapping|observed|resale|last",
      "scenarioId": "mapping",
      "evidencePolicyId": "observed",
      "cutoffId": "resale",
      "policyId": "last",
      "proofKey": "mapping|observed|resale",
      "asOf": "2026-09-15T23:59:59Z",
      "status": "needs_review",
      "summary": "Known interactions are retained. Final policy allocation is withheld while the source gap is reviewed.",
      "timeline": [
        {
          "id": "click-nonbrand",
          "at": "2026-04-03T10:00:00Z",
          "recordedAt": "2026-04-03T10:00:00Z",
          "label": "Nonbrand search ad clicked",
          "channelId": "search-nonbrand",
          "channelLabel": "Nonbrand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-nonbrand"
        },
        {
          "id": "click-brand",
          "at": "2026-04-08T11:00:00Z",
          "recordedAt": "2026-04-08T11:00:00Z",
          "label": "Brand search ad clicked",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-brand"
        },
        {
          "id": "call-1",
          "at": "2026-04-09T12:00:00Z",
          "recordedAt": "2026-04-09T12:00:00Z",
          "label": "Seller called; number-to-channel history missing",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "observed",
          "disposition": "unresolved",
          "reason": "Tracking-number assignment missing at call time. Known clicks remain supported; final allocation needs review.",
          "sourceRef": "synthetic://cash-homebuyer/call",
          "locator": "call-1"
        },
        {
          "id": "qualified-1",
          "at": "2026-04-09T15:00:00Z",
          "recordedAt": "2026-04-09T15:00:00Z",
          "label": "Seller-property opportunity qualified",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/qualified",
          "locator": "qualified-1"
        },
        {
          "id": "assessment-1",
          "at": "2026-04-18T14:00:00Z",
          "recordedAt": "2026-04-18T14:00:00Z",
          "label": "Property assessment completed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/assessment",
          "locator": "assessment-1"
        },
        {
          "id": "offer-1",
          "at": "2026-04-24T10:00:00Z",
          "recordedAt": "2026-04-24T10:00:00Z",
          "label": "Written purchase offer delivered",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/offer",
          "locator": "offer-1"
        },
        {
          "id": "contract-1",
          "at": "2026-05-02T12:00:00Z",
          "recordedAt": "2026-05-02T12:00:00Z",
          "label": "Acquisition contract signed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/contract",
          "locator": "contract-1"
        },
        {
          "id": "marketing-cost",
          "at": "2026-05-03T12:00:00Z",
          "recordedAt": "2026-05-03T12:00:00Z",
          "label": "Acquisition marketing cost allocated",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/cost",
          "locator": "marketing-cost"
        },
        {
          "id": "closing-1",
          "at": "2026-06-02T12:00:00Z",
          "recordedAt": "2026-06-02T12:00:00Z",
          "label": "Property purchase closed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/acquisition",
          "locator": "closing-1"
        },
        {
          "id": "renovation-cost",
          "at": "2026-07-10T12:00:00Z",
          "recordedAt": "2026-07-10T12:00:00Z",
          "label": "Renovation costs reconciled",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/cost",
          "locator": "renovation-cost"
        },
        {
          "id": "resale-1",
          "at": "2026-09-03T12:00:00Z",
          "recordedAt": "2026-09-03T12:00:00Z",
          "label": "Resale proceeds recorded",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/resale",
          "locator": "resale-1"
        },
        {
          "id": "holding-cost",
          "at": "2026-09-05T12:00:00Z",
          "recordedAt": "2026-09-05T12:00:00Z",
          "label": "Holding, financing and transaction costs reconciled",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/cost",
          "locator": "holding-cost"
        }
      ],
      "credit": [],
      "outcome": {
        "qualifiedOpportunities": 1,
        "contracts": 1,
        "acquisitions": 1,
        "resales": 1,
        "canceled": false,
        "stage": "resold",
        "label": "Resale and costs reconciled",
        "capitalDeployed": 210000,
        "resaleProceeds": 295000,
        "contributionBeforeMarketing": 27000,
        "marketingAllocation": 3000,
        "contributionAfterMarketing": 24000,
        "missingCosts": [],
        "contributionStatus": "realized",
        "currency": "USD",
        "sourceIds": [
          "qualified-1",
          "contract-1",
          "marketing-cost",
          "closing-1",
          "renovation-cost",
          "resale-1",
          "holding-cost"
        ]
      },
      "issues": [
        {
          "code": "missing_source_mapping",
          "message": "Tracking-number assignment missing at call time. Known clicks remain supported; final allocation needs review."
        }
      ],
      "creditOutcome": "qualified_seller_property_opportunity",
      "eligibleTouchIds": [
        "click-brand",
        "click-nonbrand"
      ],
      "allocationStatus": "withheld",
      "policyVersion": "cash-homebuyer.last.observed.v1",
      "propertyId": "property-104",
      "opportunityId": "acquisition-204",
      "sellerGroupId": "seller-group-14",
      "receiptHash": "eaa4d1a09c5e89c19cac073c0ac83db12b0148f7f0b8347a5f5a57d44b9a9241"
    },
    {
      "key": "mapping|observed|resale|linear",
      "scenarioId": "mapping",
      "evidencePolicyId": "observed",
      "cutoffId": "resale",
      "policyId": "linear",
      "proofKey": "mapping|observed|resale",
      "asOf": "2026-09-15T23:59:59Z",
      "status": "needs_review",
      "summary": "Known interactions are retained. Final policy allocation is withheld while the source gap is reviewed.",
      "timeline": [
        {
          "id": "click-nonbrand",
          "at": "2026-04-03T10:00:00Z",
          "recordedAt": "2026-04-03T10:00:00Z",
          "label": "Nonbrand search ad clicked",
          "channelId": "search-nonbrand",
          "channelLabel": "Nonbrand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-nonbrand"
        },
        {
          "id": "click-brand",
          "at": "2026-04-08T11:00:00Z",
          "recordedAt": "2026-04-08T11:00:00Z",
          "label": "Brand search ad clicked",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-brand"
        },
        {
          "id": "call-1",
          "at": "2026-04-09T12:00:00Z",
          "recordedAt": "2026-04-09T12:00:00Z",
          "label": "Seller called; number-to-channel history missing",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "observed",
          "disposition": "unresolved",
          "reason": "Tracking-number assignment missing at call time. Known clicks remain supported; final allocation needs review.",
          "sourceRef": "synthetic://cash-homebuyer/call",
          "locator": "call-1"
        },
        {
          "id": "qualified-1",
          "at": "2026-04-09T15:00:00Z",
          "recordedAt": "2026-04-09T15:00:00Z",
          "label": "Seller-property opportunity qualified",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/qualified",
          "locator": "qualified-1"
        },
        {
          "id": "assessment-1",
          "at": "2026-04-18T14:00:00Z",
          "recordedAt": "2026-04-18T14:00:00Z",
          "label": "Property assessment completed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/assessment",
          "locator": "assessment-1"
        },
        {
          "id": "offer-1",
          "at": "2026-04-24T10:00:00Z",
          "recordedAt": "2026-04-24T10:00:00Z",
          "label": "Written purchase offer delivered",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/offer",
          "locator": "offer-1"
        },
        {
          "id": "contract-1",
          "at": "2026-05-02T12:00:00Z",
          "recordedAt": "2026-05-02T12:00:00Z",
          "label": "Acquisition contract signed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/contract",
          "locator": "contract-1"
        },
        {
          "id": "marketing-cost",
          "at": "2026-05-03T12:00:00Z",
          "recordedAt": "2026-05-03T12:00:00Z",
          "label": "Acquisition marketing cost allocated",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/cost",
          "locator": "marketing-cost"
        },
        {
          "id": "closing-1",
          "at": "2026-06-02T12:00:00Z",
          "recordedAt": "2026-06-02T12:00:00Z",
          "label": "Property purchase closed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/acquisition",
          "locator": "closing-1"
        },
        {
          "id": "renovation-cost",
          "at": "2026-07-10T12:00:00Z",
          "recordedAt": "2026-07-10T12:00:00Z",
          "label": "Renovation costs reconciled",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/cost",
          "locator": "renovation-cost"
        },
        {
          "id": "resale-1",
          "at": "2026-09-03T12:00:00Z",
          "recordedAt": "2026-09-03T12:00:00Z",
          "label": "Resale proceeds recorded",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/resale",
          "locator": "resale-1"
        },
        {
          "id": "holding-cost",
          "at": "2026-09-05T12:00:00Z",
          "recordedAt": "2026-09-05T12:00:00Z",
          "label": "Holding, financing and transaction costs reconciled",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/cost",
          "locator": "holding-cost"
        }
      ],
      "credit": [],
      "outcome": {
        "qualifiedOpportunities": 1,
        "contracts": 1,
        "acquisitions": 1,
        "resales": 1,
        "canceled": false,
        "stage": "resold",
        "label": "Resale and costs reconciled",
        "capitalDeployed": 210000,
        "resaleProceeds": 295000,
        "contributionBeforeMarketing": 27000,
        "marketingAllocation": 3000,
        "contributionAfterMarketing": 24000,
        "missingCosts": [],
        "contributionStatus": "realized",
        "currency": "USD",
        "sourceIds": [
          "qualified-1",
          "contract-1",
          "marketing-cost",
          "closing-1",
          "renovation-cost",
          "resale-1",
          "holding-cost"
        ]
      },
      "issues": [
        {
          "code": "missing_source_mapping",
          "message": "Tracking-number assignment missing at call time. Known clicks remain supported; final allocation needs review."
        }
      ],
      "creditOutcome": "qualified_seller_property_opportunity",
      "eligibleTouchIds": [
        "click-brand",
        "click-nonbrand"
      ],
      "allocationStatus": "withheld",
      "policyVersion": "cash-homebuyer.linear.observed.v1",
      "propertyId": "property-104",
      "opportunityId": "acquisition-204",
      "sellerGroupId": "seller-group-14",
      "receiptHash": "8572ec3f51b7b3e74beebda5c961c2cb83cdfe46c33a6722a2382f2b43f76691"
    },
    {
      "key": "mapping|reported|contract|first",
      "scenarioId": "mapping",
      "evidencePolicyId": "reported",
      "cutoffId": "contract",
      "policyId": "first",
      "proofKey": "mapping|reported|contract",
      "asOf": "2026-05-15T23:59:59Z",
      "status": "needs_review",
      "summary": "Known interactions are retained. Final policy allocation is withheld while the source gap is reviewed.",
      "timeline": [
        {
          "id": "click-nonbrand",
          "at": "2026-04-03T10:00:00Z",
          "recordedAt": "2026-04-03T10:00:00Z",
          "label": "Nonbrand search ad clicked",
          "channelId": "search-nonbrand",
          "channelLabel": "Nonbrand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-nonbrand"
        },
        {
          "id": "click-brand",
          "at": "2026-04-08T11:00:00Z",
          "recordedAt": "2026-04-08T11:00:00Z",
          "label": "Brand search ad clicked",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-brand"
        },
        {
          "id": "call-1",
          "at": "2026-04-09T12:00:00Z",
          "recordedAt": "2026-04-09T12:00:00Z",
          "label": "Seller called; number-to-channel history missing",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "observed",
          "disposition": "unresolved",
          "reason": "Tracking-number assignment missing at call time. Known clicks remain supported; final allocation needs review.",
          "sourceRef": "synthetic://cash-homebuyer/call",
          "locator": "call-1"
        },
        {
          "id": "qualified-1",
          "at": "2026-04-09T15:00:00Z",
          "recordedAt": "2026-04-09T15:00:00Z",
          "label": "Seller-property opportunity qualified",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/qualified",
          "locator": "qualified-1"
        },
        {
          "id": "assessment-1",
          "at": "2026-04-18T14:00:00Z",
          "recordedAt": "2026-04-18T14:00:00Z",
          "label": "Property assessment completed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/assessment",
          "locator": "assessment-1"
        },
        {
          "id": "offer-1",
          "at": "2026-04-24T10:00:00Z",
          "recordedAt": "2026-04-24T10:00:00Z",
          "label": "Written purchase offer delivered",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/offer",
          "locator": "offer-1"
        },
        {
          "id": "contract-1",
          "at": "2026-05-02T12:00:00Z",
          "recordedAt": "2026-05-02T12:00:00Z",
          "label": "Acquisition contract signed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/contract",
          "locator": "contract-1"
        },
        {
          "id": "marketing-cost",
          "at": "2026-05-03T12:00:00Z",
          "recordedAt": "2026-05-03T12:00:00Z",
          "label": "Acquisition marketing cost allocated",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/cost",
          "locator": "marketing-cost"
        }
      ],
      "credit": [],
      "outcome": {
        "qualifiedOpportunities": 1,
        "contracts": 1,
        "acquisitions": 0,
        "resales": 0,
        "canceled": false,
        "stage": "contract",
        "label": "Contract signed · purchase pending",
        "capitalDeployed": null,
        "resaleProceeds": null,
        "contributionBeforeMarketing": null,
        "marketingAllocation": 3000,
        "contributionAfterMarketing": null,
        "missingCosts": [
          "renovation",
          "holdingAndTransaction"
        ],
        "contributionStatus": "pending",
        "currency": "USD",
        "sourceIds": [
          "qualified-1",
          "contract-1",
          "marketing-cost"
        ]
      },
      "issues": [
        {
          "code": "missing_source_mapping",
          "message": "Tracking-number assignment missing at call time. Known clicks remain supported; final allocation needs review."
        }
      ],
      "creditOutcome": "qualified_seller_property_opportunity",
      "eligibleTouchIds": [
        "click-brand",
        "click-nonbrand"
      ],
      "allocationStatus": "withheld",
      "policyVersion": "cash-homebuyer.first.reported.v1",
      "propertyId": "property-104",
      "opportunityId": "acquisition-204",
      "sellerGroupId": "seller-group-14",
      "receiptHash": "2d9adc7f9569e8ca8b1737ea639489c66473ad53b5c9d68d97e9415a69ce4269"
    },
    {
      "key": "mapping|reported|contract|last",
      "scenarioId": "mapping",
      "evidencePolicyId": "reported",
      "cutoffId": "contract",
      "policyId": "last",
      "proofKey": "mapping|reported|contract",
      "asOf": "2026-05-15T23:59:59Z",
      "status": "needs_review",
      "summary": "Known interactions are retained. Final policy allocation is withheld while the source gap is reviewed.",
      "timeline": [
        {
          "id": "click-nonbrand",
          "at": "2026-04-03T10:00:00Z",
          "recordedAt": "2026-04-03T10:00:00Z",
          "label": "Nonbrand search ad clicked",
          "channelId": "search-nonbrand",
          "channelLabel": "Nonbrand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-nonbrand"
        },
        {
          "id": "click-brand",
          "at": "2026-04-08T11:00:00Z",
          "recordedAt": "2026-04-08T11:00:00Z",
          "label": "Brand search ad clicked",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-brand"
        },
        {
          "id": "call-1",
          "at": "2026-04-09T12:00:00Z",
          "recordedAt": "2026-04-09T12:00:00Z",
          "label": "Seller called; number-to-channel history missing",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "observed",
          "disposition": "unresolved",
          "reason": "Tracking-number assignment missing at call time. Known clicks remain supported; final allocation needs review.",
          "sourceRef": "synthetic://cash-homebuyer/call",
          "locator": "call-1"
        },
        {
          "id": "qualified-1",
          "at": "2026-04-09T15:00:00Z",
          "recordedAt": "2026-04-09T15:00:00Z",
          "label": "Seller-property opportunity qualified",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/qualified",
          "locator": "qualified-1"
        },
        {
          "id": "assessment-1",
          "at": "2026-04-18T14:00:00Z",
          "recordedAt": "2026-04-18T14:00:00Z",
          "label": "Property assessment completed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/assessment",
          "locator": "assessment-1"
        },
        {
          "id": "offer-1",
          "at": "2026-04-24T10:00:00Z",
          "recordedAt": "2026-04-24T10:00:00Z",
          "label": "Written purchase offer delivered",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/offer",
          "locator": "offer-1"
        },
        {
          "id": "contract-1",
          "at": "2026-05-02T12:00:00Z",
          "recordedAt": "2026-05-02T12:00:00Z",
          "label": "Acquisition contract signed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/contract",
          "locator": "contract-1"
        },
        {
          "id": "marketing-cost",
          "at": "2026-05-03T12:00:00Z",
          "recordedAt": "2026-05-03T12:00:00Z",
          "label": "Acquisition marketing cost allocated",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/cost",
          "locator": "marketing-cost"
        }
      ],
      "credit": [],
      "outcome": {
        "qualifiedOpportunities": 1,
        "contracts": 1,
        "acquisitions": 0,
        "resales": 0,
        "canceled": false,
        "stage": "contract",
        "label": "Contract signed · purchase pending",
        "capitalDeployed": null,
        "resaleProceeds": null,
        "contributionBeforeMarketing": null,
        "marketingAllocation": 3000,
        "contributionAfterMarketing": null,
        "missingCosts": [
          "renovation",
          "holdingAndTransaction"
        ],
        "contributionStatus": "pending",
        "currency": "USD",
        "sourceIds": [
          "qualified-1",
          "contract-1",
          "marketing-cost"
        ]
      },
      "issues": [
        {
          "code": "missing_source_mapping",
          "message": "Tracking-number assignment missing at call time. Known clicks remain supported; final allocation needs review."
        }
      ],
      "creditOutcome": "qualified_seller_property_opportunity",
      "eligibleTouchIds": [
        "click-brand",
        "click-nonbrand"
      ],
      "allocationStatus": "withheld",
      "policyVersion": "cash-homebuyer.last.reported.v1",
      "propertyId": "property-104",
      "opportunityId": "acquisition-204",
      "sellerGroupId": "seller-group-14",
      "receiptHash": "84ed8928eb72ed7caeb12c2ae9bdb21343828eb1f7ac29730706bb6f6eced9b0"
    },
    {
      "key": "mapping|reported|contract|linear",
      "scenarioId": "mapping",
      "evidencePolicyId": "reported",
      "cutoffId": "contract",
      "policyId": "linear",
      "proofKey": "mapping|reported|contract",
      "asOf": "2026-05-15T23:59:59Z",
      "status": "needs_review",
      "summary": "Known interactions are retained. Final policy allocation is withheld while the source gap is reviewed.",
      "timeline": [
        {
          "id": "click-nonbrand",
          "at": "2026-04-03T10:00:00Z",
          "recordedAt": "2026-04-03T10:00:00Z",
          "label": "Nonbrand search ad clicked",
          "channelId": "search-nonbrand",
          "channelLabel": "Nonbrand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-nonbrand"
        },
        {
          "id": "click-brand",
          "at": "2026-04-08T11:00:00Z",
          "recordedAt": "2026-04-08T11:00:00Z",
          "label": "Brand search ad clicked",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-brand"
        },
        {
          "id": "call-1",
          "at": "2026-04-09T12:00:00Z",
          "recordedAt": "2026-04-09T12:00:00Z",
          "label": "Seller called; number-to-channel history missing",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "observed",
          "disposition": "unresolved",
          "reason": "Tracking-number assignment missing at call time. Known clicks remain supported; final allocation needs review.",
          "sourceRef": "synthetic://cash-homebuyer/call",
          "locator": "call-1"
        },
        {
          "id": "qualified-1",
          "at": "2026-04-09T15:00:00Z",
          "recordedAt": "2026-04-09T15:00:00Z",
          "label": "Seller-property opportunity qualified",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/qualified",
          "locator": "qualified-1"
        },
        {
          "id": "assessment-1",
          "at": "2026-04-18T14:00:00Z",
          "recordedAt": "2026-04-18T14:00:00Z",
          "label": "Property assessment completed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/assessment",
          "locator": "assessment-1"
        },
        {
          "id": "offer-1",
          "at": "2026-04-24T10:00:00Z",
          "recordedAt": "2026-04-24T10:00:00Z",
          "label": "Written purchase offer delivered",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/offer",
          "locator": "offer-1"
        },
        {
          "id": "contract-1",
          "at": "2026-05-02T12:00:00Z",
          "recordedAt": "2026-05-02T12:00:00Z",
          "label": "Acquisition contract signed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/contract",
          "locator": "contract-1"
        },
        {
          "id": "marketing-cost",
          "at": "2026-05-03T12:00:00Z",
          "recordedAt": "2026-05-03T12:00:00Z",
          "label": "Acquisition marketing cost allocated",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/cost",
          "locator": "marketing-cost"
        }
      ],
      "credit": [],
      "outcome": {
        "qualifiedOpportunities": 1,
        "contracts": 1,
        "acquisitions": 0,
        "resales": 0,
        "canceled": false,
        "stage": "contract",
        "label": "Contract signed · purchase pending",
        "capitalDeployed": null,
        "resaleProceeds": null,
        "contributionBeforeMarketing": null,
        "marketingAllocation": 3000,
        "contributionAfterMarketing": null,
        "missingCosts": [
          "renovation",
          "holdingAndTransaction"
        ],
        "contributionStatus": "pending",
        "currency": "USD",
        "sourceIds": [
          "qualified-1",
          "contract-1",
          "marketing-cost"
        ]
      },
      "issues": [
        {
          "code": "missing_source_mapping",
          "message": "Tracking-number assignment missing at call time. Known clicks remain supported; final allocation needs review."
        }
      ],
      "creditOutcome": "qualified_seller_property_opportunity",
      "eligibleTouchIds": [
        "click-brand",
        "click-nonbrand"
      ],
      "allocationStatus": "withheld",
      "policyVersion": "cash-homebuyer.linear.reported.v1",
      "propertyId": "property-104",
      "opportunityId": "acquisition-204",
      "sellerGroupId": "seller-group-14",
      "receiptHash": "e2d64a329a5b7cc6bb30bace79e918be1e8539db6eeb5fdaa7ae98cb6b067dc9"
    },
    {
      "key": "mapping|reported|acquired|first",
      "scenarioId": "mapping",
      "evidencePolicyId": "reported",
      "cutoffId": "acquired",
      "policyId": "first",
      "proofKey": "mapping|reported|acquired",
      "asOf": "2026-06-15T23:59:59Z",
      "status": "needs_review",
      "summary": "Known interactions are retained. Final policy allocation is withheld while the source gap is reviewed.",
      "timeline": [
        {
          "id": "click-nonbrand",
          "at": "2026-04-03T10:00:00Z",
          "recordedAt": "2026-04-03T10:00:00Z",
          "label": "Nonbrand search ad clicked",
          "channelId": "search-nonbrand",
          "channelLabel": "Nonbrand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-nonbrand"
        },
        {
          "id": "click-brand",
          "at": "2026-04-08T11:00:00Z",
          "recordedAt": "2026-04-08T11:00:00Z",
          "label": "Brand search ad clicked",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-brand"
        },
        {
          "id": "call-1",
          "at": "2026-04-09T12:00:00Z",
          "recordedAt": "2026-04-09T12:00:00Z",
          "label": "Seller called; number-to-channel history missing",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "observed",
          "disposition": "unresolved",
          "reason": "Tracking-number assignment missing at call time. Known clicks remain supported; final allocation needs review.",
          "sourceRef": "synthetic://cash-homebuyer/call",
          "locator": "call-1"
        },
        {
          "id": "qualified-1",
          "at": "2026-04-09T15:00:00Z",
          "recordedAt": "2026-04-09T15:00:00Z",
          "label": "Seller-property opportunity qualified",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/qualified",
          "locator": "qualified-1"
        },
        {
          "id": "assessment-1",
          "at": "2026-04-18T14:00:00Z",
          "recordedAt": "2026-04-18T14:00:00Z",
          "label": "Property assessment completed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/assessment",
          "locator": "assessment-1"
        },
        {
          "id": "offer-1",
          "at": "2026-04-24T10:00:00Z",
          "recordedAt": "2026-04-24T10:00:00Z",
          "label": "Written purchase offer delivered",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/offer",
          "locator": "offer-1"
        },
        {
          "id": "contract-1",
          "at": "2026-05-02T12:00:00Z",
          "recordedAt": "2026-05-02T12:00:00Z",
          "label": "Acquisition contract signed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/contract",
          "locator": "contract-1"
        },
        {
          "id": "marketing-cost",
          "at": "2026-05-03T12:00:00Z",
          "recordedAt": "2026-05-03T12:00:00Z",
          "label": "Acquisition marketing cost allocated",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/cost",
          "locator": "marketing-cost"
        },
        {
          "id": "closing-1",
          "at": "2026-06-02T12:00:00Z",
          "recordedAt": "2026-06-02T12:00:00Z",
          "label": "Property purchase closed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/acquisition",
          "locator": "closing-1"
        }
      ],
      "credit": [],
      "outcome": {
        "qualifiedOpportunities": 1,
        "contracts": 1,
        "acquisitions": 1,
        "resales": 0,
        "canceled": false,
        "stage": "acquired",
        "label": "Purchase closed · resale pending",
        "capitalDeployed": 210000,
        "resaleProceeds": null,
        "contributionBeforeMarketing": null,
        "marketingAllocation": 3000,
        "contributionAfterMarketing": null,
        "missingCosts": [
          "renovation",
          "holdingAndTransaction"
        ],
        "contributionStatus": "pending",
        "currency": "USD",
        "sourceIds": [
          "qualified-1",
          "contract-1",
          "marketing-cost",
          "closing-1"
        ]
      },
      "issues": [
        {
          "code": "missing_source_mapping",
          "message": "Tracking-number assignment missing at call time. Known clicks remain supported; final allocation needs review."
        }
      ],
      "creditOutcome": "qualified_seller_property_opportunity",
      "eligibleTouchIds": [
        "click-brand",
        "click-nonbrand"
      ],
      "allocationStatus": "withheld",
      "policyVersion": "cash-homebuyer.first.reported.v1",
      "propertyId": "property-104",
      "opportunityId": "acquisition-204",
      "sellerGroupId": "seller-group-14",
      "receiptHash": "03929c2d1a5185598b04174412c99d687d041b445ac0fd11f98c9704492b196a"
    },
    {
      "key": "mapping|reported|acquired|last",
      "scenarioId": "mapping",
      "evidencePolicyId": "reported",
      "cutoffId": "acquired",
      "policyId": "last",
      "proofKey": "mapping|reported|acquired",
      "asOf": "2026-06-15T23:59:59Z",
      "status": "needs_review",
      "summary": "Known interactions are retained. Final policy allocation is withheld while the source gap is reviewed.",
      "timeline": [
        {
          "id": "click-nonbrand",
          "at": "2026-04-03T10:00:00Z",
          "recordedAt": "2026-04-03T10:00:00Z",
          "label": "Nonbrand search ad clicked",
          "channelId": "search-nonbrand",
          "channelLabel": "Nonbrand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-nonbrand"
        },
        {
          "id": "click-brand",
          "at": "2026-04-08T11:00:00Z",
          "recordedAt": "2026-04-08T11:00:00Z",
          "label": "Brand search ad clicked",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-brand"
        },
        {
          "id": "call-1",
          "at": "2026-04-09T12:00:00Z",
          "recordedAt": "2026-04-09T12:00:00Z",
          "label": "Seller called; number-to-channel history missing",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "observed",
          "disposition": "unresolved",
          "reason": "Tracking-number assignment missing at call time. Known clicks remain supported; final allocation needs review.",
          "sourceRef": "synthetic://cash-homebuyer/call",
          "locator": "call-1"
        },
        {
          "id": "qualified-1",
          "at": "2026-04-09T15:00:00Z",
          "recordedAt": "2026-04-09T15:00:00Z",
          "label": "Seller-property opportunity qualified",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/qualified",
          "locator": "qualified-1"
        },
        {
          "id": "assessment-1",
          "at": "2026-04-18T14:00:00Z",
          "recordedAt": "2026-04-18T14:00:00Z",
          "label": "Property assessment completed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/assessment",
          "locator": "assessment-1"
        },
        {
          "id": "offer-1",
          "at": "2026-04-24T10:00:00Z",
          "recordedAt": "2026-04-24T10:00:00Z",
          "label": "Written purchase offer delivered",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/offer",
          "locator": "offer-1"
        },
        {
          "id": "contract-1",
          "at": "2026-05-02T12:00:00Z",
          "recordedAt": "2026-05-02T12:00:00Z",
          "label": "Acquisition contract signed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/contract",
          "locator": "contract-1"
        },
        {
          "id": "marketing-cost",
          "at": "2026-05-03T12:00:00Z",
          "recordedAt": "2026-05-03T12:00:00Z",
          "label": "Acquisition marketing cost allocated",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/cost",
          "locator": "marketing-cost"
        },
        {
          "id": "closing-1",
          "at": "2026-06-02T12:00:00Z",
          "recordedAt": "2026-06-02T12:00:00Z",
          "label": "Property purchase closed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/acquisition",
          "locator": "closing-1"
        }
      ],
      "credit": [],
      "outcome": {
        "qualifiedOpportunities": 1,
        "contracts": 1,
        "acquisitions": 1,
        "resales": 0,
        "canceled": false,
        "stage": "acquired",
        "label": "Purchase closed · resale pending",
        "capitalDeployed": 210000,
        "resaleProceeds": null,
        "contributionBeforeMarketing": null,
        "marketingAllocation": 3000,
        "contributionAfterMarketing": null,
        "missingCosts": [
          "renovation",
          "holdingAndTransaction"
        ],
        "contributionStatus": "pending",
        "currency": "USD",
        "sourceIds": [
          "qualified-1",
          "contract-1",
          "marketing-cost",
          "closing-1"
        ]
      },
      "issues": [
        {
          "code": "missing_source_mapping",
          "message": "Tracking-number assignment missing at call time. Known clicks remain supported; final allocation needs review."
        }
      ],
      "creditOutcome": "qualified_seller_property_opportunity",
      "eligibleTouchIds": [
        "click-brand",
        "click-nonbrand"
      ],
      "allocationStatus": "withheld",
      "policyVersion": "cash-homebuyer.last.reported.v1",
      "propertyId": "property-104",
      "opportunityId": "acquisition-204",
      "sellerGroupId": "seller-group-14",
      "receiptHash": "4bf5aa16ce6d59c81a450f0d8d298a52126078b0186560a28180960b98a59f61"
    },
    {
      "key": "mapping|reported|acquired|linear",
      "scenarioId": "mapping",
      "evidencePolicyId": "reported",
      "cutoffId": "acquired",
      "policyId": "linear",
      "proofKey": "mapping|reported|acquired",
      "asOf": "2026-06-15T23:59:59Z",
      "status": "needs_review",
      "summary": "Known interactions are retained. Final policy allocation is withheld while the source gap is reviewed.",
      "timeline": [
        {
          "id": "click-nonbrand",
          "at": "2026-04-03T10:00:00Z",
          "recordedAt": "2026-04-03T10:00:00Z",
          "label": "Nonbrand search ad clicked",
          "channelId": "search-nonbrand",
          "channelLabel": "Nonbrand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-nonbrand"
        },
        {
          "id": "click-brand",
          "at": "2026-04-08T11:00:00Z",
          "recordedAt": "2026-04-08T11:00:00Z",
          "label": "Brand search ad clicked",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-brand"
        },
        {
          "id": "call-1",
          "at": "2026-04-09T12:00:00Z",
          "recordedAt": "2026-04-09T12:00:00Z",
          "label": "Seller called; number-to-channel history missing",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "observed",
          "disposition": "unresolved",
          "reason": "Tracking-number assignment missing at call time. Known clicks remain supported; final allocation needs review.",
          "sourceRef": "synthetic://cash-homebuyer/call",
          "locator": "call-1"
        },
        {
          "id": "qualified-1",
          "at": "2026-04-09T15:00:00Z",
          "recordedAt": "2026-04-09T15:00:00Z",
          "label": "Seller-property opportunity qualified",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/qualified",
          "locator": "qualified-1"
        },
        {
          "id": "assessment-1",
          "at": "2026-04-18T14:00:00Z",
          "recordedAt": "2026-04-18T14:00:00Z",
          "label": "Property assessment completed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/assessment",
          "locator": "assessment-1"
        },
        {
          "id": "offer-1",
          "at": "2026-04-24T10:00:00Z",
          "recordedAt": "2026-04-24T10:00:00Z",
          "label": "Written purchase offer delivered",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/offer",
          "locator": "offer-1"
        },
        {
          "id": "contract-1",
          "at": "2026-05-02T12:00:00Z",
          "recordedAt": "2026-05-02T12:00:00Z",
          "label": "Acquisition contract signed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/contract",
          "locator": "contract-1"
        },
        {
          "id": "marketing-cost",
          "at": "2026-05-03T12:00:00Z",
          "recordedAt": "2026-05-03T12:00:00Z",
          "label": "Acquisition marketing cost allocated",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/cost",
          "locator": "marketing-cost"
        },
        {
          "id": "closing-1",
          "at": "2026-06-02T12:00:00Z",
          "recordedAt": "2026-06-02T12:00:00Z",
          "label": "Property purchase closed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/acquisition",
          "locator": "closing-1"
        }
      ],
      "credit": [],
      "outcome": {
        "qualifiedOpportunities": 1,
        "contracts": 1,
        "acquisitions": 1,
        "resales": 0,
        "canceled": false,
        "stage": "acquired",
        "label": "Purchase closed · resale pending",
        "capitalDeployed": 210000,
        "resaleProceeds": null,
        "contributionBeforeMarketing": null,
        "marketingAllocation": 3000,
        "contributionAfterMarketing": null,
        "missingCosts": [
          "renovation",
          "holdingAndTransaction"
        ],
        "contributionStatus": "pending",
        "currency": "USD",
        "sourceIds": [
          "qualified-1",
          "contract-1",
          "marketing-cost",
          "closing-1"
        ]
      },
      "issues": [
        {
          "code": "missing_source_mapping",
          "message": "Tracking-number assignment missing at call time. Known clicks remain supported; final allocation needs review."
        }
      ],
      "creditOutcome": "qualified_seller_property_opportunity",
      "eligibleTouchIds": [
        "click-brand",
        "click-nonbrand"
      ],
      "allocationStatus": "withheld",
      "policyVersion": "cash-homebuyer.linear.reported.v1",
      "propertyId": "property-104",
      "opportunityId": "acquisition-204",
      "sellerGroupId": "seller-group-14",
      "receiptHash": "f23b1926065abb29e37a70a3fee107064fa30cb2000ee8d57c9a2c7624f791ea"
    },
    {
      "key": "mapping|reported|resale|first",
      "scenarioId": "mapping",
      "evidencePolicyId": "reported",
      "cutoffId": "resale",
      "policyId": "first",
      "proofKey": "mapping|reported|resale",
      "asOf": "2026-09-15T23:59:59Z",
      "status": "needs_review",
      "summary": "Known interactions are retained. Final policy allocation is withheld while the source gap is reviewed.",
      "timeline": [
        {
          "id": "click-nonbrand",
          "at": "2026-04-03T10:00:00Z",
          "recordedAt": "2026-04-03T10:00:00Z",
          "label": "Nonbrand search ad clicked",
          "channelId": "search-nonbrand",
          "channelLabel": "Nonbrand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-nonbrand"
        },
        {
          "id": "click-brand",
          "at": "2026-04-08T11:00:00Z",
          "recordedAt": "2026-04-08T11:00:00Z",
          "label": "Brand search ad clicked",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-brand"
        },
        {
          "id": "call-1",
          "at": "2026-04-09T12:00:00Z",
          "recordedAt": "2026-04-09T12:00:00Z",
          "label": "Seller called; number-to-channel history missing",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "observed",
          "disposition": "unresolved",
          "reason": "Tracking-number assignment missing at call time. Known clicks remain supported; final allocation needs review.",
          "sourceRef": "synthetic://cash-homebuyer/call",
          "locator": "call-1"
        },
        {
          "id": "qualified-1",
          "at": "2026-04-09T15:00:00Z",
          "recordedAt": "2026-04-09T15:00:00Z",
          "label": "Seller-property opportunity qualified",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/qualified",
          "locator": "qualified-1"
        },
        {
          "id": "assessment-1",
          "at": "2026-04-18T14:00:00Z",
          "recordedAt": "2026-04-18T14:00:00Z",
          "label": "Property assessment completed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/assessment",
          "locator": "assessment-1"
        },
        {
          "id": "offer-1",
          "at": "2026-04-24T10:00:00Z",
          "recordedAt": "2026-04-24T10:00:00Z",
          "label": "Written purchase offer delivered",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/offer",
          "locator": "offer-1"
        },
        {
          "id": "contract-1",
          "at": "2026-05-02T12:00:00Z",
          "recordedAt": "2026-05-02T12:00:00Z",
          "label": "Acquisition contract signed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/contract",
          "locator": "contract-1"
        },
        {
          "id": "marketing-cost",
          "at": "2026-05-03T12:00:00Z",
          "recordedAt": "2026-05-03T12:00:00Z",
          "label": "Acquisition marketing cost allocated",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/cost",
          "locator": "marketing-cost"
        },
        {
          "id": "closing-1",
          "at": "2026-06-02T12:00:00Z",
          "recordedAt": "2026-06-02T12:00:00Z",
          "label": "Property purchase closed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/acquisition",
          "locator": "closing-1"
        },
        {
          "id": "renovation-cost",
          "at": "2026-07-10T12:00:00Z",
          "recordedAt": "2026-07-10T12:00:00Z",
          "label": "Renovation costs reconciled",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/cost",
          "locator": "renovation-cost"
        },
        {
          "id": "resale-1",
          "at": "2026-09-03T12:00:00Z",
          "recordedAt": "2026-09-03T12:00:00Z",
          "label": "Resale proceeds recorded",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/resale",
          "locator": "resale-1"
        },
        {
          "id": "holding-cost",
          "at": "2026-09-05T12:00:00Z",
          "recordedAt": "2026-09-05T12:00:00Z",
          "label": "Holding, financing and transaction costs reconciled",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/cost",
          "locator": "holding-cost"
        }
      ],
      "credit": [],
      "outcome": {
        "qualifiedOpportunities": 1,
        "contracts": 1,
        "acquisitions": 1,
        "resales": 1,
        "canceled": false,
        "stage": "resold",
        "label": "Resale and costs reconciled",
        "capitalDeployed": 210000,
        "resaleProceeds": 295000,
        "contributionBeforeMarketing": 27000,
        "marketingAllocation": 3000,
        "contributionAfterMarketing": 24000,
        "missingCosts": [],
        "contributionStatus": "realized",
        "currency": "USD",
        "sourceIds": [
          "qualified-1",
          "contract-1",
          "marketing-cost",
          "closing-1",
          "renovation-cost",
          "resale-1",
          "holding-cost"
        ]
      },
      "issues": [
        {
          "code": "missing_source_mapping",
          "message": "Tracking-number assignment missing at call time. Known clicks remain supported; final allocation needs review."
        }
      ],
      "creditOutcome": "qualified_seller_property_opportunity",
      "eligibleTouchIds": [
        "click-brand",
        "click-nonbrand"
      ],
      "allocationStatus": "withheld",
      "policyVersion": "cash-homebuyer.first.reported.v1",
      "propertyId": "property-104",
      "opportunityId": "acquisition-204",
      "sellerGroupId": "seller-group-14",
      "receiptHash": "063fa413a1d71fd73d4e1e9646f2139219067a6f07d9b96f9126b5c8c1716b59"
    },
    {
      "key": "mapping|reported|resale|last",
      "scenarioId": "mapping",
      "evidencePolicyId": "reported",
      "cutoffId": "resale",
      "policyId": "last",
      "proofKey": "mapping|reported|resale",
      "asOf": "2026-09-15T23:59:59Z",
      "status": "needs_review",
      "summary": "Known interactions are retained. Final policy allocation is withheld while the source gap is reviewed.",
      "timeline": [
        {
          "id": "click-nonbrand",
          "at": "2026-04-03T10:00:00Z",
          "recordedAt": "2026-04-03T10:00:00Z",
          "label": "Nonbrand search ad clicked",
          "channelId": "search-nonbrand",
          "channelLabel": "Nonbrand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-nonbrand"
        },
        {
          "id": "click-brand",
          "at": "2026-04-08T11:00:00Z",
          "recordedAt": "2026-04-08T11:00:00Z",
          "label": "Brand search ad clicked",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-brand"
        },
        {
          "id": "call-1",
          "at": "2026-04-09T12:00:00Z",
          "recordedAt": "2026-04-09T12:00:00Z",
          "label": "Seller called; number-to-channel history missing",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "observed",
          "disposition": "unresolved",
          "reason": "Tracking-number assignment missing at call time. Known clicks remain supported; final allocation needs review.",
          "sourceRef": "synthetic://cash-homebuyer/call",
          "locator": "call-1"
        },
        {
          "id": "qualified-1",
          "at": "2026-04-09T15:00:00Z",
          "recordedAt": "2026-04-09T15:00:00Z",
          "label": "Seller-property opportunity qualified",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/qualified",
          "locator": "qualified-1"
        },
        {
          "id": "assessment-1",
          "at": "2026-04-18T14:00:00Z",
          "recordedAt": "2026-04-18T14:00:00Z",
          "label": "Property assessment completed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/assessment",
          "locator": "assessment-1"
        },
        {
          "id": "offer-1",
          "at": "2026-04-24T10:00:00Z",
          "recordedAt": "2026-04-24T10:00:00Z",
          "label": "Written purchase offer delivered",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/offer",
          "locator": "offer-1"
        },
        {
          "id": "contract-1",
          "at": "2026-05-02T12:00:00Z",
          "recordedAt": "2026-05-02T12:00:00Z",
          "label": "Acquisition contract signed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/contract",
          "locator": "contract-1"
        },
        {
          "id": "marketing-cost",
          "at": "2026-05-03T12:00:00Z",
          "recordedAt": "2026-05-03T12:00:00Z",
          "label": "Acquisition marketing cost allocated",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/cost",
          "locator": "marketing-cost"
        },
        {
          "id": "closing-1",
          "at": "2026-06-02T12:00:00Z",
          "recordedAt": "2026-06-02T12:00:00Z",
          "label": "Property purchase closed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/acquisition",
          "locator": "closing-1"
        },
        {
          "id": "renovation-cost",
          "at": "2026-07-10T12:00:00Z",
          "recordedAt": "2026-07-10T12:00:00Z",
          "label": "Renovation costs reconciled",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/cost",
          "locator": "renovation-cost"
        },
        {
          "id": "resale-1",
          "at": "2026-09-03T12:00:00Z",
          "recordedAt": "2026-09-03T12:00:00Z",
          "label": "Resale proceeds recorded",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/resale",
          "locator": "resale-1"
        },
        {
          "id": "holding-cost",
          "at": "2026-09-05T12:00:00Z",
          "recordedAt": "2026-09-05T12:00:00Z",
          "label": "Holding, financing and transaction costs reconciled",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/cost",
          "locator": "holding-cost"
        }
      ],
      "credit": [],
      "outcome": {
        "qualifiedOpportunities": 1,
        "contracts": 1,
        "acquisitions": 1,
        "resales": 1,
        "canceled": false,
        "stage": "resold",
        "label": "Resale and costs reconciled",
        "capitalDeployed": 210000,
        "resaleProceeds": 295000,
        "contributionBeforeMarketing": 27000,
        "marketingAllocation": 3000,
        "contributionAfterMarketing": 24000,
        "missingCosts": [],
        "contributionStatus": "realized",
        "currency": "USD",
        "sourceIds": [
          "qualified-1",
          "contract-1",
          "marketing-cost",
          "closing-1",
          "renovation-cost",
          "resale-1",
          "holding-cost"
        ]
      },
      "issues": [
        {
          "code": "missing_source_mapping",
          "message": "Tracking-number assignment missing at call time. Known clicks remain supported; final allocation needs review."
        }
      ],
      "creditOutcome": "qualified_seller_property_opportunity",
      "eligibleTouchIds": [
        "click-brand",
        "click-nonbrand"
      ],
      "allocationStatus": "withheld",
      "policyVersion": "cash-homebuyer.last.reported.v1",
      "propertyId": "property-104",
      "opportunityId": "acquisition-204",
      "sellerGroupId": "seller-group-14",
      "receiptHash": "080b638e85f71df5dfe27394d2a134de6a5f414d92cdbed2ac5db22f4180da06"
    },
    {
      "key": "mapping|reported|resale|linear",
      "scenarioId": "mapping",
      "evidencePolicyId": "reported",
      "cutoffId": "resale",
      "policyId": "linear",
      "proofKey": "mapping|reported|resale",
      "asOf": "2026-09-15T23:59:59Z",
      "status": "needs_review",
      "summary": "Known interactions are retained. Final policy allocation is withheld while the source gap is reviewed.",
      "timeline": [
        {
          "id": "click-nonbrand",
          "at": "2026-04-03T10:00:00Z",
          "recordedAt": "2026-04-03T10:00:00Z",
          "label": "Nonbrand search ad clicked",
          "channelId": "search-nonbrand",
          "channelLabel": "Nonbrand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-nonbrand"
        },
        {
          "id": "click-brand",
          "at": "2026-04-08T11:00:00Z",
          "recordedAt": "2026-04-08T11:00:00Z",
          "label": "Brand search ad clicked",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-brand"
        },
        {
          "id": "call-1",
          "at": "2026-04-09T12:00:00Z",
          "recordedAt": "2026-04-09T12:00:00Z",
          "label": "Seller called; number-to-channel history missing",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "observed",
          "disposition": "unresolved",
          "reason": "Tracking-number assignment missing at call time. Known clicks remain supported; final allocation needs review.",
          "sourceRef": "synthetic://cash-homebuyer/call",
          "locator": "call-1"
        },
        {
          "id": "qualified-1",
          "at": "2026-04-09T15:00:00Z",
          "recordedAt": "2026-04-09T15:00:00Z",
          "label": "Seller-property opportunity qualified",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/qualified",
          "locator": "qualified-1"
        },
        {
          "id": "assessment-1",
          "at": "2026-04-18T14:00:00Z",
          "recordedAt": "2026-04-18T14:00:00Z",
          "label": "Property assessment completed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/assessment",
          "locator": "assessment-1"
        },
        {
          "id": "offer-1",
          "at": "2026-04-24T10:00:00Z",
          "recordedAt": "2026-04-24T10:00:00Z",
          "label": "Written purchase offer delivered",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/offer",
          "locator": "offer-1"
        },
        {
          "id": "contract-1",
          "at": "2026-05-02T12:00:00Z",
          "recordedAt": "2026-05-02T12:00:00Z",
          "label": "Acquisition contract signed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/contract",
          "locator": "contract-1"
        },
        {
          "id": "marketing-cost",
          "at": "2026-05-03T12:00:00Z",
          "recordedAt": "2026-05-03T12:00:00Z",
          "label": "Acquisition marketing cost allocated",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/cost",
          "locator": "marketing-cost"
        },
        {
          "id": "closing-1",
          "at": "2026-06-02T12:00:00Z",
          "recordedAt": "2026-06-02T12:00:00Z",
          "label": "Property purchase closed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/acquisition",
          "locator": "closing-1"
        },
        {
          "id": "renovation-cost",
          "at": "2026-07-10T12:00:00Z",
          "recordedAt": "2026-07-10T12:00:00Z",
          "label": "Renovation costs reconciled",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/cost",
          "locator": "renovation-cost"
        },
        {
          "id": "resale-1",
          "at": "2026-09-03T12:00:00Z",
          "recordedAt": "2026-09-03T12:00:00Z",
          "label": "Resale proceeds recorded",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/resale",
          "locator": "resale-1"
        },
        {
          "id": "holding-cost",
          "at": "2026-09-05T12:00:00Z",
          "recordedAt": "2026-09-05T12:00:00Z",
          "label": "Holding, financing and transaction costs reconciled",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/cost",
          "locator": "holding-cost"
        }
      ],
      "credit": [],
      "outcome": {
        "qualifiedOpportunities": 1,
        "contracts": 1,
        "acquisitions": 1,
        "resales": 1,
        "canceled": false,
        "stage": "resold",
        "label": "Resale and costs reconciled",
        "capitalDeployed": 210000,
        "resaleProceeds": 295000,
        "contributionBeforeMarketing": 27000,
        "marketingAllocation": 3000,
        "contributionAfterMarketing": 24000,
        "missingCosts": [],
        "contributionStatus": "realized",
        "currency": "USD",
        "sourceIds": [
          "qualified-1",
          "contract-1",
          "marketing-cost",
          "closing-1",
          "renovation-cost",
          "resale-1",
          "holding-cost"
        ]
      },
      "issues": [
        {
          "code": "missing_source_mapping",
          "message": "Tracking-number assignment missing at call time. Known clicks remain supported; final allocation needs review."
        }
      ],
      "creditOutcome": "qualified_seller_property_opportunity",
      "eligibleTouchIds": [
        "click-brand",
        "click-nonbrand"
      ],
      "allocationStatus": "withheld",
      "policyVersion": "cash-homebuyer.linear.reported.v1",
      "propertyId": "property-104",
      "opportunityId": "acquisition-204",
      "sellerGroupId": "seller-group-14",
      "receiptHash": "f186d7ea8394f6486659cc00d182a28c55f770ac6435151973526caf75417043"
    },
    {
      "key": "repeat|observed|contract|first",
      "scenarioId": "repeat",
      "evidencePolicyId": "observed",
      "cutoffId": "contract",
      "policyId": "first",
      "proofKey": "repeat|observed|contract",
      "asOf": "2026-05-15T23:59:59Z",
      "status": "complete",
      "summary": "Contract signed · purchase pending. Credit describes this qualified opportunity under the selected policy; it does not establish causal lift.",
      "timeline": [
        {
          "id": "prior-referral",
          "at": "2026-03-12T10:00:00Z",
          "recordedAt": "2026-03-12T10:00:00Z",
          "label": "Referral for an earlier acquisition attempt",
          "channelId": "referral",
          "channelLabel": "Referral",
          "evidenceType": "observed",
          "disposition": "excluded",
          "reason": "Belongs to a different property, opportunity or seller group.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "prior-referral"
        },
        {
          "id": "click-nonbrand",
          "at": "2026-04-03T10:00:00Z",
          "recordedAt": "2026-04-03T10:00:00Z",
          "label": "Nonbrand search ad clicked",
          "channelId": "search-nonbrand",
          "channelLabel": "Nonbrand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-nonbrand"
        },
        {
          "id": "click-brand",
          "at": "2026-04-08T11:00:00Z",
          "recordedAt": "2026-04-08T11:00:00Z",
          "label": "Brand search ad clicked",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-brand"
        },
        {
          "id": "call-1",
          "at": "2026-04-09T12:00:00Z",
          "recordedAt": "2026-04-09T12:00:00Z",
          "label": "Seller called the website number",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/call",
          "locator": "call-1"
        },
        {
          "id": "qualified-1",
          "at": "2026-04-09T15:00:00Z",
          "recordedAt": "2026-04-09T15:00:00Z",
          "label": "Seller-property opportunity qualified",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/qualified",
          "locator": "qualified-1"
        },
        {
          "id": "assessment-1",
          "at": "2026-04-18T14:00:00Z",
          "recordedAt": "2026-04-18T14:00:00Z",
          "label": "Property assessment completed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/assessment",
          "locator": "assessment-1"
        },
        {
          "id": "offer-1",
          "at": "2026-04-24T10:00:00Z",
          "recordedAt": "2026-04-24T10:00:00Z",
          "label": "Written purchase offer delivered",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/offer",
          "locator": "offer-1"
        },
        {
          "id": "contract-1",
          "at": "2026-05-02T12:00:00Z",
          "recordedAt": "2026-05-02T12:00:00Z",
          "label": "Acquisition contract signed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/contract",
          "locator": "contract-1"
        },
        {
          "id": "marketing-cost",
          "at": "2026-05-03T12:00:00Z",
          "recordedAt": "2026-05-03T12:00:00Z",
          "label": "Acquisition marketing cost allocated",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/cost",
          "locator": "marketing-cost"
        }
      ],
      "credit": [
        {
          "channelId": "search-nonbrand",
          "label": "Nonbrand paid search",
          "weight": 1,
          "percentage": 100,
          "touchIds": [
            "click-nonbrand"
          ]
        }
      ],
      "outcome": {
        "qualifiedOpportunities": 1,
        "contracts": 1,
        "acquisitions": 0,
        "resales": 0,
        "canceled": false,
        "stage": "contract",
        "label": "Contract signed · purchase pending",
        "capitalDeployed": null,
        "resaleProceeds": null,
        "contributionBeforeMarketing": null,
        "marketingAllocation": 3000,
        "contributionAfterMarketing": null,
        "missingCosts": [
          "renovation",
          "holdingAndTransaction"
        ],
        "contributionStatus": "pending",
        "currency": "USD",
        "sourceIds": [
          "qualified-1",
          "contract-1",
          "marketing-cost"
        ]
      },
      "issues": [],
      "creditOutcome": "qualified_seller_property_opportunity",
      "eligibleTouchIds": [
        "click-brand",
        "click-nonbrand"
      ],
      "allocationStatus": "computed",
      "policyVersion": "cash-homebuyer.first.observed.v1",
      "propertyId": "property-104",
      "opportunityId": "acquisition-204",
      "sellerGroupId": "seller-group-14",
      "receiptHash": "369ef60a4cd08d38f33e7e649b281cd36b71a790be8250ad5d74a4379454e7f2"
    },
    {
      "key": "repeat|observed|contract|last",
      "scenarioId": "repeat",
      "evidencePolicyId": "observed",
      "cutoffId": "contract",
      "policyId": "last",
      "proofKey": "repeat|observed|contract",
      "asOf": "2026-05-15T23:59:59Z",
      "status": "complete",
      "summary": "Contract signed · purchase pending. Credit describes this qualified opportunity under the selected policy; it does not establish causal lift.",
      "timeline": [
        {
          "id": "prior-referral",
          "at": "2026-03-12T10:00:00Z",
          "recordedAt": "2026-03-12T10:00:00Z",
          "label": "Referral for an earlier acquisition attempt",
          "channelId": "referral",
          "channelLabel": "Referral",
          "evidenceType": "observed",
          "disposition": "excluded",
          "reason": "Belongs to a different property, opportunity or seller group.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "prior-referral"
        },
        {
          "id": "click-nonbrand",
          "at": "2026-04-03T10:00:00Z",
          "recordedAt": "2026-04-03T10:00:00Z",
          "label": "Nonbrand search ad clicked",
          "channelId": "search-nonbrand",
          "channelLabel": "Nonbrand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-nonbrand"
        },
        {
          "id": "click-brand",
          "at": "2026-04-08T11:00:00Z",
          "recordedAt": "2026-04-08T11:00:00Z",
          "label": "Brand search ad clicked",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-brand"
        },
        {
          "id": "call-1",
          "at": "2026-04-09T12:00:00Z",
          "recordedAt": "2026-04-09T12:00:00Z",
          "label": "Seller called the website number",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/call",
          "locator": "call-1"
        },
        {
          "id": "qualified-1",
          "at": "2026-04-09T15:00:00Z",
          "recordedAt": "2026-04-09T15:00:00Z",
          "label": "Seller-property opportunity qualified",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/qualified",
          "locator": "qualified-1"
        },
        {
          "id": "assessment-1",
          "at": "2026-04-18T14:00:00Z",
          "recordedAt": "2026-04-18T14:00:00Z",
          "label": "Property assessment completed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/assessment",
          "locator": "assessment-1"
        },
        {
          "id": "offer-1",
          "at": "2026-04-24T10:00:00Z",
          "recordedAt": "2026-04-24T10:00:00Z",
          "label": "Written purchase offer delivered",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/offer",
          "locator": "offer-1"
        },
        {
          "id": "contract-1",
          "at": "2026-05-02T12:00:00Z",
          "recordedAt": "2026-05-02T12:00:00Z",
          "label": "Acquisition contract signed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/contract",
          "locator": "contract-1"
        },
        {
          "id": "marketing-cost",
          "at": "2026-05-03T12:00:00Z",
          "recordedAt": "2026-05-03T12:00:00Z",
          "label": "Acquisition marketing cost allocated",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/cost",
          "locator": "marketing-cost"
        }
      ],
      "credit": [
        {
          "channelId": "search-brand",
          "label": "Brand paid search",
          "weight": 1,
          "percentage": 100,
          "touchIds": [
            "click-brand"
          ]
        }
      ],
      "outcome": {
        "qualifiedOpportunities": 1,
        "contracts": 1,
        "acquisitions": 0,
        "resales": 0,
        "canceled": false,
        "stage": "contract",
        "label": "Contract signed · purchase pending",
        "capitalDeployed": null,
        "resaleProceeds": null,
        "contributionBeforeMarketing": null,
        "marketingAllocation": 3000,
        "contributionAfterMarketing": null,
        "missingCosts": [
          "renovation",
          "holdingAndTransaction"
        ],
        "contributionStatus": "pending",
        "currency": "USD",
        "sourceIds": [
          "qualified-1",
          "contract-1",
          "marketing-cost"
        ]
      },
      "issues": [],
      "creditOutcome": "qualified_seller_property_opportunity",
      "eligibleTouchIds": [
        "click-brand",
        "click-nonbrand"
      ],
      "allocationStatus": "computed",
      "policyVersion": "cash-homebuyer.last.observed.v1",
      "propertyId": "property-104",
      "opportunityId": "acquisition-204",
      "sellerGroupId": "seller-group-14",
      "receiptHash": "90573e13a05a0235d34d1caf48d1ca0423679bf8370162833968f3162bd12c84"
    },
    {
      "key": "repeat|observed|contract|linear",
      "scenarioId": "repeat",
      "evidencePolicyId": "observed",
      "cutoffId": "contract",
      "policyId": "linear",
      "proofKey": "repeat|observed|contract",
      "asOf": "2026-05-15T23:59:59Z",
      "status": "complete",
      "summary": "Contract signed · purchase pending. Credit describes this qualified opportunity under the selected policy; it does not establish causal lift.",
      "timeline": [
        {
          "id": "prior-referral",
          "at": "2026-03-12T10:00:00Z",
          "recordedAt": "2026-03-12T10:00:00Z",
          "label": "Referral for an earlier acquisition attempt",
          "channelId": "referral",
          "channelLabel": "Referral",
          "evidenceType": "observed",
          "disposition": "excluded",
          "reason": "Belongs to a different property, opportunity or seller group.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "prior-referral"
        },
        {
          "id": "click-nonbrand",
          "at": "2026-04-03T10:00:00Z",
          "recordedAt": "2026-04-03T10:00:00Z",
          "label": "Nonbrand search ad clicked",
          "channelId": "search-nonbrand",
          "channelLabel": "Nonbrand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-nonbrand"
        },
        {
          "id": "click-brand",
          "at": "2026-04-08T11:00:00Z",
          "recordedAt": "2026-04-08T11:00:00Z",
          "label": "Brand search ad clicked",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-brand"
        },
        {
          "id": "call-1",
          "at": "2026-04-09T12:00:00Z",
          "recordedAt": "2026-04-09T12:00:00Z",
          "label": "Seller called the website number",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/call",
          "locator": "call-1"
        },
        {
          "id": "qualified-1",
          "at": "2026-04-09T15:00:00Z",
          "recordedAt": "2026-04-09T15:00:00Z",
          "label": "Seller-property opportunity qualified",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/qualified",
          "locator": "qualified-1"
        },
        {
          "id": "assessment-1",
          "at": "2026-04-18T14:00:00Z",
          "recordedAt": "2026-04-18T14:00:00Z",
          "label": "Property assessment completed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/assessment",
          "locator": "assessment-1"
        },
        {
          "id": "offer-1",
          "at": "2026-04-24T10:00:00Z",
          "recordedAt": "2026-04-24T10:00:00Z",
          "label": "Written purchase offer delivered",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/offer",
          "locator": "offer-1"
        },
        {
          "id": "contract-1",
          "at": "2026-05-02T12:00:00Z",
          "recordedAt": "2026-05-02T12:00:00Z",
          "label": "Acquisition contract signed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/contract",
          "locator": "contract-1"
        },
        {
          "id": "marketing-cost",
          "at": "2026-05-03T12:00:00Z",
          "recordedAt": "2026-05-03T12:00:00Z",
          "label": "Acquisition marketing cost allocated",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/cost",
          "locator": "marketing-cost"
        }
      ],
      "credit": [
        {
          "channelId": "search-nonbrand",
          "label": "Nonbrand paid search",
          "weight": 0.5,
          "percentage": 50,
          "touchIds": [
            "click-nonbrand"
          ]
        },
        {
          "channelId": "search-brand",
          "label": "Brand paid search",
          "weight": 0.5,
          "percentage": 50,
          "touchIds": [
            "click-brand"
          ]
        }
      ],
      "outcome": {
        "qualifiedOpportunities": 1,
        "contracts": 1,
        "acquisitions": 0,
        "resales": 0,
        "canceled": false,
        "stage": "contract",
        "label": "Contract signed · purchase pending",
        "capitalDeployed": null,
        "resaleProceeds": null,
        "contributionBeforeMarketing": null,
        "marketingAllocation": 3000,
        "contributionAfterMarketing": null,
        "missingCosts": [
          "renovation",
          "holdingAndTransaction"
        ],
        "contributionStatus": "pending",
        "currency": "USD",
        "sourceIds": [
          "qualified-1",
          "contract-1",
          "marketing-cost"
        ]
      },
      "issues": [],
      "creditOutcome": "qualified_seller_property_opportunity",
      "eligibleTouchIds": [
        "click-brand",
        "click-nonbrand"
      ],
      "allocationStatus": "computed",
      "policyVersion": "cash-homebuyer.linear.observed.v1",
      "propertyId": "property-104",
      "opportunityId": "acquisition-204",
      "sellerGroupId": "seller-group-14",
      "receiptHash": "a7f0c3de27c8519cb41742b363fa5190eb7275757a76986b733fced2d206e253"
    },
    {
      "key": "repeat|observed|acquired|first",
      "scenarioId": "repeat",
      "evidencePolicyId": "observed",
      "cutoffId": "acquired",
      "policyId": "first",
      "proofKey": "repeat|observed|acquired",
      "asOf": "2026-06-15T23:59:59Z",
      "status": "complete",
      "summary": "Purchase closed · resale pending. Credit describes this qualified opportunity under the selected policy; it does not establish causal lift.",
      "timeline": [
        {
          "id": "prior-referral",
          "at": "2026-03-12T10:00:00Z",
          "recordedAt": "2026-03-12T10:00:00Z",
          "label": "Referral for an earlier acquisition attempt",
          "channelId": "referral",
          "channelLabel": "Referral",
          "evidenceType": "observed",
          "disposition": "excluded",
          "reason": "Belongs to a different property, opportunity or seller group.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "prior-referral"
        },
        {
          "id": "click-nonbrand",
          "at": "2026-04-03T10:00:00Z",
          "recordedAt": "2026-04-03T10:00:00Z",
          "label": "Nonbrand search ad clicked",
          "channelId": "search-nonbrand",
          "channelLabel": "Nonbrand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-nonbrand"
        },
        {
          "id": "click-brand",
          "at": "2026-04-08T11:00:00Z",
          "recordedAt": "2026-04-08T11:00:00Z",
          "label": "Brand search ad clicked",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-brand"
        },
        {
          "id": "call-1",
          "at": "2026-04-09T12:00:00Z",
          "recordedAt": "2026-04-09T12:00:00Z",
          "label": "Seller called the website number",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/call",
          "locator": "call-1"
        },
        {
          "id": "qualified-1",
          "at": "2026-04-09T15:00:00Z",
          "recordedAt": "2026-04-09T15:00:00Z",
          "label": "Seller-property opportunity qualified",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/qualified",
          "locator": "qualified-1"
        },
        {
          "id": "assessment-1",
          "at": "2026-04-18T14:00:00Z",
          "recordedAt": "2026-04-18T14:00:00Z",
          "label": "Property assessment completed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/assessment",
          "locator": "assessment-1"
        },
        {
          "id": "offer-1",
          "at": "2026-04-24T10:00:00Z",
          "recordedAt": "2026-04-24T10:00:00Z",
          "label": "Written purchase offer delivered",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/offer",
          "locator": "offer-1"
        },
        {
          "id": "contract-1",
          "at": "2026-05-02T12:00:00Z",
          "recordedAt": "2026-05-02T12:00:00Z",
          "label": "Acquisition contract signed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/contract",
          "locator": "contract-1"
        },
        {
          "id": "marketing-cost",
          "at": "2026-05-03T12:00:00Z",
          "recordedAt": "2026-05-03T12:00:00Z",
          "label": "Acquisition marketing cost allocated",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/cost",
          "locator": "marketing-cost"
        },
        {
          "id": "closing-1",
          "at": "2026-06-02T12:00:00Z",
          "recordedAt": "2026-06-02T12:00:00Z",
          "label": "Property purchase closed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/acquisition",
          "locator": "closing-1"
        }
      ],
      "credit": [
        {
          "channelId": "search-nonbrand",
          "label": "Nonbrand paid search",
          "weight": 1,
          "percentage": 100,
          "touchIds": [
            "click-nonbrand"
          ]
        }
      ],
      "outcome": {
        "qualifiedOpportunities": 1,
        "contracts": 1,
        "acquisitions": 1,
        "resales": 0,
        "canceled": false,
        "stage": "acquired",
        "label": "Purchase closed · resale pending",
        "capitalDeployed": 210000,
        "resaleProceeds": null,
        "contributionBeforeMarketing": null,
        "marketingAllocation": 3000,
        "contributionAfterMarketing": null,
        "missingCosts": [
          "renovation",
          "holdingAndTransaction"
        ],
        "contributionStatus": "pending",
        "currency": "USD",
        "sourceIds": [
          "qualified-1",
          "contract-1",
          "marketing-cost",
          "closing-1"
        ]
      },
      "issues": [],
      "creditOutcome": "qualified_seller_property_opportunity",
      "eligibleTouchIds": [
        "click-brand",
        "click-nonbrand"
      ],
      "allocationStatus": "computed",
      "policyVersion": "cash-homebuyer.first.observed.v1",
      "propertyId": "property-104",
      "opportunityId": "acquisition-204",
      "sellerGroupId": "seller-group-14",
      "receiptHash": "77960b0d50f1dcefe5188a789dda8c310b902a4f31376f5713564b7fe1100c75"
    },
    {
      "key": "repeat|observed|acquired|last",
      "scenarioId": "repeat",
      "evidencePolicyId": "observed",
      "cutoffId": "acquired",
      "policyId": "last",
      "proofKey": "repeat|observed|acquired",
      "asOf": "2026-06-15T23:59:59Z",
      "status": "complete",
      "summary": "Purchase closed · resale pending. Credit describes this qualified opportunity under the selected policy; it does not establish causal lift.",
      "timeline": [
        {
          "id": "prior-referral",
          "at": "2026-03-12T10:00:00Z",
          "recordedAt": "2026-03-12T10:00:00Z",
          "label": "Referral for an earlier acquisition attempt",
          "channelId": "referral",
          "channelLabel": "Referral",
          "evidenceType": "observed",
          "disposition": "excluded",
          "reason": "Belongs to a different property, opportunity or seller group.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "prior-referral"
        },
        {
          "id": "click-nonbrand",
          "at": "2026-04-03T10:00:00Z",
          "recordedAt": "2026-04-03T10:00:00Z",
          "label": "Nonbrand search ad clicked",
          "channelId": "search-nonbrand",
          "channelLabel": "Nonbrand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-nonbrand"
        },
        {
          "id": "click-brand",
          "at": "2026-04-08T11:00:00Z",
          "recordedAt": "2026-04-08T11:00:00Z",
          "label": "Brand search ad clicked",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-brand"
        },
        {
          "id": "call-1",
          "at": "2026-04-09T12:00:00Z",
          "recordedAt": "2026-04-09T12:00:00Z",
          "label": "Seller called the website number",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/call",
          "locator": "call-1"
        },
        {
          "id": "qualified-1",
          "at": "2026-04-09T15:00:00Z",
          "recordedAt": "2026-04-09T15:00:00Z",
          "label": "Seller-property opportunity qualified",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/qualified",
          "locator": "qualified-1"
        },
        {
          "id": "assessment-1",
          "at": "2026-04-18T14:00:00Z",
          "recordedAt": "2026-04-18T14:00:00Z",
          "label": "Property assessment completed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/assessment",
          "locator": "assessment-1"
        },
        {
          "id": "offer-1",
          "at": "2026-04-24T10:00:00Z",
          "recordedAt": "2026-04-24T10:00:00Z",
          "label": "Written purchase offer delivered",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/offer",
          "locator": "offer-1"
        },
        {
          "id": "contract-1",
          "at": "2026-05-02T12:00:00Z",
          "recordedAt": "2026-05-02T12:00:00Z",
          "label": "Acquisition contract signed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/contract",
          "locator": "contract-1"
        },
        {
          "id": "marketing-cost",
          "at": "2026-05-03T12:00:00Z",
          "recordedAt": "2026-05-03T12:00:00Z",
          "label": "Acquisition marketing cost allocated",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/cost",
          "locator": "marketing-cost"
        },
        {
          "id": "closing-1",
          "at": "2026-06-02T12:00:00Z",
          "recordedAt": "2026-06-02T12:00:00Z",
          "label": "Property purchase closed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/acquisition",
          "locator": "closing-1"
        }
      ],
      "credit": [
        {
          "channelId": "search-brand",
          "label": "Brand paid search",
          "weight": 1,
          "percentage": 100,
          "touchIds": [
            "click-brand"
          ]
        }
      ],
      "outcome": {
        "qualifiedOpportunities": 1,
        "contracts": 1,
        "acquisitions": 1,
        "resales": 0,
        "canceled": false,
        "stage": "acquired",
        "label": "Purchase closed · resale pending",
        "capitalDeployed": 210000,
        "resaleProceeds": null,
        "contributionBeforeMarketing": null,
        "marketingAllocation": 3000,
        "contributionAfterMarketing": null,
        "missingCosts": [
          "renovation",
          "holdingAndTransaction"
        ],
        "contributionStatus": "pending",
        "currency": "USD",
        "sourceIds": [
          "qualified-1",
          "contract-1",
          "marketing-cost",
          "closing-1"
        ]
      },
      "issues": [],
      "creditOutcome": "qualified_seller_property_opportunity",
      "eligibleTouchIds": [
        "click-brand",
        "click-nonbrand"
      ],
      "allocationStatus": "computed",
      "policyVersion": "cash-homebuyer.last.observed.v1",
      "propertyId": "property-104",
      "opportunityId": "acquisition-204",
      "sellerGroupId": "seller-group-14",
      "receiptHash": "cfabe05c0132ce3879c47791f92ee95346e0fc3f963b55285d7264f93bb81930"
    },
    {
      "key": "repeat|observed|acquired|linear",
      "scenarioId": "repeat",
      "evidencePolicyId": "observed",
      "cutoffId": "acquired",
      "policyId": "linear",
      "proofKey": "repeat|observed|acquired",
      "asOf": "2026-06-15T23:59:59Z",
      "status": "complete",
      "summary": "Purchase closed · resale pending. Credit describes this qualified opportunity under the selected policy; it does not establish causal lift.",
      "timeline": [
        {
          "id": "prior-referral",
          "at": "2026-03-12T10:00:00Z",
          "recordedAt": "2026-03-12T10:00:00Z",
          "label": "Referral for an earlier acquisition attempt",
          "channelId": "referral",
          "channelLabel": "Referral",
          "evidenceType": "observed",
          "disposition": "excluded",
          "reason": "Belongs to a different property, opportunity or seller group.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "prior-referral"
        },
        {
          "id": "click-nonbrand",
          "at": "2026-04-03T10:00:00Z",
          "recordedAt": "2026-04-03T10:00:00Z",
          "label": "Nonbrand search ad clicked",
          "channelId": "search-nonbrand",
          "channelLabel": "Nonbrand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-nonbrand"
        },
        {
          "id": "click-brand",
          "at": "2026-04-08T11:00:00Z",
          "recordedAt": "2026-04-08T11:00:00Z",
          "label": "Brand search ad clicked",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-brand"
        },
        {
          "id": "call-1",
          "at": "2026-04-09T12:00:00Z",
          "recordedAt": "2026-04-09T12:00:00Z",
          "label": "Seller called the website number",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/call",
          "locator": "call-1"
        },
        {
          "id": "qualified-1",
          "at": "2026-04-09T15:00:00Z",
          "recordedAt": "2026-04-09T15:00:00Z",
          "label": "Seller-property opportunity qualified",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/qualified",
          "locator": "qualified-1"
        },
        {
          "id": "assessment-1",
          "at": "2026-04-18T14:00:00Z",
          "recordedAt": "2026-04-18T14:00:00Z",
          "label": "Property assessment completed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/assessment",
          "locator": "assessment-1"
        },
        {
          "id": "offer-1",
          "at": "2026-04-24T10:00:00Z",
          "recordedAt": "2026-04-24T10:00:00Z",
          "label": "Written purchase offer delivered",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/offer",
          "locator": "offer-1"
        },
        {
          "id": "contract-1",
          "at": "2026-05-02T12:00:00Z",
          "recordedAt": "2026-05-02T12:00:00Z",
          "label": "Acquisition contract signed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/contract",
          "locator": "contract-1"
        },
        {
          "id": "marketing-cost",
          "at": "2026-05-03T12:00:00Z",
          "recordedAt": "2026-05-03T12:00:00Z",
          "label": "Acquisition marketing cost allocated",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/cost",
          "locator": "marketing-cost"
        },
        {
          "id": "closing-1",
          "at": "2026-06-02T12:00:00Z",
          "recordedAt": "2026-06-02T12:00:00Z",
          "label": "Property purchase closed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/acquisition",
          "locator": "closing-1"
        }
      ],
      "credit": [
        {
          "channelId": "search-nonbrand",
          "label": "Nonbrand paid search",
          "weight": 0.5,
          "percentage": 50,
          "touchIds": [
            "click-nonbrand"
          ]
        },
        {
          "channelId": "search-brand",
          "label": "Brand paid search",
          "weight": 0.5,
          "percentage": 50,
          "touchIds": [
            "click-brand"
          ]
        }
      ],
      "outcome": {
        "qualifiedOpportunities": 1,
        "contracts": 1,
        "acquisitions": 1,
        "resales": 0,
        "canceled": false,
        "stage": "acquired",
        "label": "Purchase closed · resale pending",
        "capitalDeployed": 210000,
        "resaleProceeds": null,
        "contributionBeforeMarketing": null,
        "marketingAllocation": 3000,
        "contributionAfterMarketing": null,
        "missingCosts": [
          "renovation",
          "holdingAndTransaction"
        ],
        "contributionStatus": "pending",
        "currency": "USD",
        "sourceIds": [
          "qualified-1",
          "contract-1",
          "marketing-cost",
          "closing-1"
        ]
      },
      "issues": [],
      "creditOutcome": "qualified_seller_property_opportunity",
      "eligibleTouchIds": [
        "click-brand",
        "click-nonbrand"
      ],
      "allocationStatus": "computed",
      "policyVersion": "cash-homebuyer.linear.observed.v1",
      "propertyId": "property-104",
      "opportunityId": "acquisition-204",
      "sellerGroupId": "seller-group-14",
      "receiptHash": "1671912c3e88a33019d5f90f4cdbec4e8e89ba69c332aa2fc8ac38714cd79fa2"
    },
    {
      "key": "repeat|observed|resale|first",
      "scenarioId": "repeat",
      "evidencePolicyId": "observed",
      "cutoffId": "resale",
      "policyId": "first",
      "proofKey": "repeat|observed|resale",
      "asOf": "2026-09-15T23:59:59Z",
      "status": "complete",
      "summary": "Resale and costs reconciled. Credit describes this qualified opportunity under the selected policy; it does not establish causal lift.",
      "timeline": [
        {
          "id": "prior-referral",
          "at": "2026-03-12T10:00:00Z",
          "recordedAt": "2026-03-12T10:00:00Z",
          "label": "Referral for an earlier acquisition attempt",
          "channelId": "referral",
          "channelLabel": "Referral",
          "evidenceType": "observed",
          "disposition": "excluded",
          "reason": "Belongs to a different property, opportunity or seller group.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "prior-referral"
        },
        {
          "id": "click-nonbrand",
          "at": "2026-04-03T10:00:00Z",
          "recordedAt": "2026-04-03T10:00:00Z",
          "label": "Nonbrand search ad clicked",
          "channelId": "search-nonbrand",
          "channelLabel": "Nonbrand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-nonbrand"
        },
        {
          "id": "click-brand",
          "at": "2026-04-08T11:00:00Z",
          "recordedAt": "2026-04-08T11:00:00Z",
          "label": "Brand search ad clicked",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-brand"
        },
        {
          "id": "call-1",
          "at": "2026-04-09T12:00:00Z",
          "recordedAt": "2026-04-09T12:00:00Z",
          "label": "Seller called the website number",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/call",
          "locator": "call-1"
        },
        {
          "id": "qualified-1",
          "at": "2026-04-09T15:00:00Z",
          "recordedAt": "2026-04-09T15:00:00Z",
          "label": "Seller-property opportunity qualified",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/qualified",
          "locator": "qualified-1"
        },
        {
          "id": "assessment-1",
          "at": "2026-04-18T14:00:00Z",
          "recordedAt": "2026-04-18T14:00:00Z",
          "label": "Property assessment completed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/assessment",
          "locator": "assessment-1"
        },
        {
          "id": "offer-1",
          "at": "2026-04-24T10:00:00Z",
          "recordedAt": "2026-04-24T10:00:00Z",
          "label": "Written purchase offer delivered",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/offer",
          "locator": "offer-1"
        },
        {
          "id": "contract-1",
          "at": "2026-05-02T12:00:00Z",
          "recordedAt": "2026-05-02T12:00:00Z",
          "label": "Acquisition contract signed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/contract",
          "locator": "contract-1"
        },
        {
          "id": "marketing-cost",
          "at": "2026-05-03T12:00:00Z",
          "recordedAt": "2026-05-03T12:00:00Z",
          "label": "Acquisition marketing cost allocated",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/cost",
          "locator": "marketing-cost"
        },
        {
          "id": "closing-1",
          "at": "2026-06-02T12:00:00Z",
          "recordedAt": "2026-06-02T12:00:00Z",
          "label": "Property purchase closed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/acquisition",
          "locator": "closing-1"
        },
        {
          "id": "renovation-cost",
          "at": "2026-07-10T12:00:00Z",
          "recordedAt": "2026-07-10T12:00:00Z",
          "label": "Renovation costs reconciled",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/cost",
          "locator": "renovation-cost"
        },
        {
          "id": "resale-1",
          "at": "2026-09-03T12:00:00Z",
          "recordedAt": "2026-09-03T12:00:00Z",
          "label": "Resale proceeds recorded",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/resale",
          "locator": "resale-1"
        },
        {
          "id": "holding-cost",
          "at": "2026-09-05T12:00:00Z",
          "recordedAt": "2026-09-05T12:00:00Z",
          "label": "Holding, financing and transaction costs reconciled",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/cost",
          "locator": "holding-cost"
        }
      ],
      "credit": [
        {
          "channelId": "search-nonbrand",
          "label": "Nonbrand paid search",
          "weight": 1,
          "percentage": 100,
          "touchIds": [
            "click-nonbrand"
          ]
        }
      ],
      "outcome": {
        "qualifiedOpportunities": 1,
        "contracts": 1,
        "acquisitions": 1,
        "resales": 1,
        "canceled": false,
        "stage": "resold",
        "label": "Resale and costs reconciled",
        "capitalDeployed": 210000,
        "resaleProceeds": 295000,
        "contributionBeforeMarketing": 27000,
        "marketingAllocation": 3000,
        "contributionAfterMarketing": 24000,
        "missingCosts": [],
        "contributionStatus": "realized",
        "currency": "USD",
        "sourceIds": [
          "qualified-1",
          "contract-1",
          "marketing-cost",
          "closing-1",
          "renovation-cost",
          "resale-1",
          "holding-cost"
        ]
      },
      "issues": [],
      "creditOutcome": "qualified_seller_property_opportunity",
      "eligibleTouchIds": [
        "click-brand",
        "click-nonbrand"
      ],
      "allocationStatus": "computed",
      "policyVersion": "cash-homebuyer.first.observed.v1",
      "propertyId": "property-104",
      "opportunityId": "acquisition-204",
      "sellerGroupId": "seller-group-14",
      "receiptHash": "f4452faea9c4cc4de6197fd1cd32375ae1283cc6d6550b3bd01c9b62b120adbc"
    },
    {
      "key": "repeat|observed|resale|last",
      "scenarioId": "repeat",
      "evidencePolicyId": "observed",
      "cutoffId": "resale",
      "policyId": "last",
      "proofKey": "repeat|observed|resale",
      "asOf": "2026-09-15T23:59:59Z",
      "status": "complete",
      "summary": "Resale and costs reconciled. Credit describes this qualified opportunity under the selected policy; it does not establish causal lift.",
      "timeline": [
        {
          "id": "prior-referral",
          "at": "2026-03-12T10:00:00Z",
          "recordedAt": "2026-03-12T10:00:00Z",
          "label": "Referral for an earlier acquisition attempt",
          "channelId": "referral",
          "channelLabel": "Referral",
          "evidenceType": "observed",
          "disposition": "excluded",
          "reason": "Belongs to a different property, opportunity or seller group.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "prior-referral"
        },
        {
          "id": "click-nonbrand",
          "at": "2026-04-03T10:00:00Z",
          "recordedAt": "2026-04-03T10:00:00Z",
          "label": "Nonbrand search ad clicked",
          "channelId": "search-nonbrand",
          "channelLabel": "Nonbrand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-nonbrand"
        },
        {
          "id": "click-brand",
          "at": "2026-04-08T11:00:00Z",
          "recordedAt": "2026-04-08T11:00:00Z",
          "label": "Brand search ad clicked",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-brand"
        },
        {
          "id": "call-1",
          "at": "2026-04-09T12:00:00Z",
          "recordedAt": "2026-04-09T12:00:00Z",
          "label": "Seller called the website number",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/call",
          "locator": "call-1"
        },
        {
          "id": "qualified-1",
          "at": "2026-04-09T15:00:00Z",
          "recordedAt": "2026-04-09T15:00:00Z",
          "label": "Seller-property opportunity qualified",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/qualified",
          "locator": "qualified-1"
        },
        {
          "id": "assessment-1",
          "at": "2026-04-18T14:00:00Z",
          "recordedAt": "2026-04-18T14:00:00Z",
          "label": "Property assessment completed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/assessment",
          "locator": "assessment-1"
        },
        {
          "id": "offer-1",
          "at": "2026-04-24T10:00:00Z",
          "recordedAt": "2026-04-24T10:00:00Z",
          "label": "Written purchase offer delivered",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/offer",
          "locator": "offer-1"
        },
        {
          "id": "contract-1",
          "at": "2026-05-02T12:00:00Z",
          "recordedAt": "2026-05-02T12:00:00Z",
          "label": "Acquisition contract signed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/contract",
          "locator": "contract-1"
        },
        {
          "id": "marketing-cost",
          "at": "2026-05-03T12:00:00Z",
          "recordedAt": "2026-05-03T12:00:00Z",
          "label": "Acquisition marketing cost allocated",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/cost",
          "locator": "marketing-cost"
        },
        {
          "id": "closing-1",
          "at": "2026-06-02T12:00:00Z",
          "recordedAt": "2026-06-02T12:00:00Z",
          "label": "Property purchase closed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/acquisition",
          "locator": "closing-1"
        },
        {
          "id": "renovation-cost",
          "at": "2026-07-10T12:00:00Z",
          "recordedAt": "2026-07-10T12:00:00Z",
          "label": "Renovation costs reconciled",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/cost",
          "locator": "renovation-cost"
        },
        {
          "id": "resale-1",
          "at": "2026-09-03T12:00:00Z",
          "recordedAt": "2026-09-03T12:00:00Z",
          "label": "Resale proceeds recorded",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/resale",
          "locator": "resale-1"
        },
        {
          "id": "holding-cost",
          "at": "2026-09-05T12:00:00Z",
          "recordedAt": "2026-09-05T12:00:00Z",
          "label": "Holding, financing and transaction costs reconciled",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/cost",
          "locator": "holding-cost"
        }
      ],
      "credit": [
        {
          "channelId": "search-brand",
          "label": "Brand paid search",
          "weight": 1,
          "percentage": 100,
          "touchIds": [
            "click-brand"
          ]
        }
      ],
      "outcome": {
        "qualifiedOpportunities": 1,
        "contracts": 1,
        "acquisitions": 1,
        "resales": 1,
        "canceled": false,
        "stage": "resold",
        "label": "Resale and costs reconciled",
        "capitalDeployed": 210000,
        "resaleProceeds": 295000,
        "contributionBeforeMarketing": 27000,
        "marketingAllocation": 3000,
        "contributionAfterMarketing": 24000,
        "missingCosts": [],
        "contributionStatus": "realized",
        "currency": "USD",
        "sourceIds": [
          "qualified-1",
          "contract-1",
          "marketing-cost",
          "closing-1",
          "renovation-cost",
          "resale-1",
          "holding-cost"
        ]
      },
      "issues": [],
      "creditOutcome": "qualified_seller_property_opportunity",
      "eligibleTouchIds": [
        "click-brand",
        "click-nonbrand"
      ],
      "allocationStatus": "computed",
      "policyVersion": "cash-homebuyer.last.observed.v1",
      "propertyId": "property-104",
      "opportunityId": "acquisition-204",
      "sellerGroupId": "seller-group-14",
      "receiptHash": "3bff7ea74b90097a919ba0e641165b80fcb10a57a03cbbd4b6df2a714f9546a1"
    },
    {
      "key": "repeat|observed|resale|linear",
      "scenarioId": "repeat",
      "evidencePolicyId": "observed",
      "cutoffId": "resale",
      "policyId": "linear",
      "proofKey": "repeat|observed|resale",
      "asOf": "2026-09-15T23:59:59Z",
      "status": "complete",
      "summary": "Resale and costs reconciled. Credit describes this qualified opportunity under the selected policy; it does not establish causal lift.",
      "timeline": [
        {
          "id": "prior-referral",
          "at": "2026-03-12T10:00:00Z",
          "recordedAt": "2026-03-12T10:00:00Z",
          "label": "Referral for an earlier acquisition attempt",
          "channelId": "referral",
          "channelLabel": "Referral",
          "evidenceType": "observed",
          "disposition": "excluded",
          "reason": "Belongs to a different property, opportunity or seller group.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "prior-referral"
        },
        {
          "id": "click-nonbrand",
          "at": "2026-04-03T10:00:00Z",
          "recordedAt": "2026-04-03T10:00:00Z",
          "label": "Nonbrand search ad clicked",
          "channelId": "search-nonbrand",
          "channelLabel": "Nonbrand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-nonbrand"
        },
        {
          "id": "click-brand",
          "at": "2026-04-08T11:00:00Z",
          "recordedAt": "2026-04-08T11:00:00Z",
          "label": "Brand search ad clicked",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-brand"
        },
        {
          "id": "call-1",
          "at": "2026-04-09T12:00:00Z",
          "recordedAt": "2026-04-09T12:00:00Z",
          "label": "Seller called the website number",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/call",
          "locator": "call-1"
        },
        {
          "id": "qualified-1",
          "at": "2026-04-09T15:00:00Z",
          "recordedAt": "2026-04-09T15:00:00Z",
          "label": "Seller-property opportunity qualified",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/qualified",
          "locator": "qualified-1"
        },
        {
          "id": "assessment-1",
          "at": "2026-04-18T14:00:00Z",
          "recordedAt": "2026-04-18T14:00:00Z",
          "label": "Property assessment completed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/assessment",
          "locator": "assessment-1"
        },
        {
          "id": "offer-1",
          "at": "2026-04-24T10:00:00Z",
          "recordedAt": "2026-04-24T10:00:00Z",
          "label": "Written purchase offer delivered",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/offer",
          "locator": "offer-1"
        },
        {
          "id": "contract-1",
          "at": "2026-05-02T12:00:00Z",
          "recordedAt": "2026-05-02T12:00:00Z",
          "label": "Acquisition contract signed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/contract",
          "locator": "contract-1"
        },
        {
          "id": "marketing-cost",
          "at": "2026-05-03T12:00:00Z",
          "recordedAt": "2026-05-03T12:00:00Z",
          "label": "Acquisition marketing cost allocated",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/cost",
          "locator": "marketing-cost"
        },
        {
          "id": "closing-1",
          "at": "2026-06-02T12:00:00Z",
          "recordedAt": "2026-06-02T12:00:00Z",
          "label": "Property purchase closed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/acquisition",
          "locator": "closing-1"
        },
        {
          "id": "renovation-cost",
          "at": "2026-07-10T12:00:00Z",
          "recordedAt": "2026-07-10T12:00:00Z",
          "label": "Renovation costs reconciled",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/cost",
          "locator": "renovation-cost"
        },
        {
          "id": "resale-1",
          "at": "2026-09-03T12:00:00Z",
          "recordedAt": "2026-09-03T12:00:00Z",
          "label": "Resale proceeds recorded",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/resale",
          "locator": "resale-1"
        },
        {
          "id": "holding-cost",
          "at": "2026-09-05T12:00:00Z",
          "recordedAt": "2026-09-05T12:00:00Z",
          "label": "Holding, financing and transaction costs reconciled",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/cost",
          "locator": "holding-cost"
        }
      ],
      "credit": [
        {
          "channelId": "search-nonbrand",
          "label": "Nonbrand paid search",
          "weight": 0.5,
          "percentage": 50,
          "touchIds": [
            "click-nonbrand"
          ]
        },
        {
          "channelId": "search-brand",
          "label": "Brand paid search",
          "weight": 0.5,
          "percentage": 50,
          "touchIds": [
            "click-brand"
          ]
        }
      ],
      "outcome": {
        "qualifiedOpportunities": 1,
        "contracts": 1,
        "acquisitions": 1,
        "resales": 1,
        "canceled": false,
        "stage": "resold",
        "label": "Resale and costs reconciled",
        "capitalDeployed": 210000,
        "resaleProceeds": 295000,
        "contributionBeforeMarketing": 27000,
        "marketingAllocation": 3000,
        "contributionAfterMarketing": 24000,
        "missingCosts": [],
        "contributionStatus": "realized",
        "currency": "USD",
        "sourceIds": [
          "qualified-1",
          "contract-1",
          "marketing-cost",
          "closing-1",
          "renovation-cost",
          "resale-1",
          "holding-cost"
        ]
      },
      "issues": [],
      "creditOutcome": "qualified_seller_property_opportunity",
      "eligibleTouchIds": [
        "click-brand",
        "click-nonbrand"
      ],
      "allocationStatus": "computed",
      "policyVersion": "cash-homebuyer.linear.observed.v1",
      "propertyId": "property-104",
      "opportunityId": "acquisition-204",
      "sellerGroupId": "seller-group-14",
      "receiptHash": "2590f66c6213dcb47f9ecf5c02bd036048d9cc8467955fbf140346db639d1b65"
    },
    {
      "key": "repeat|reported|contract|first",
      "scenarioId": "repeat",
      "evidencePolicyId": "reported",
      "cutoffId": "contract",
      "policyId": "first",
      "proofKey": "repeat|reported|contract",
      "asOf": "2026-05-15T23:59:59Z",
      "status": "complete",
      "summary": "Contract signed · purchase pending. Credit describes this qualified opportunity under the selected policy; it does not establish causal lift.",
      "timeline": [
        {
          "id": "prior-referral",
          "at": "2026-03-12T10:00:00Z",
          "recordedAt": "2026-03-12T10:00:00Z",
          "label": "Referral for an earlier acquisition attempt",
          "channelId": "referral",
          "channelLabel": "Referral",
          "evidenceType": "observed",
          "disposition": "excluded",
          "reason": "Belongs to a different property, opportunity or seller group.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "prior-referral"
        },
        {
          "id": "click-nonbrand",
          "at": "2026-04-03T10:00:00Z",
          "recordedAt": "2026-04-03T10:00:00Z",
          "label": "Nonbrand search ad clicked",
          "channelId": "search-nonbrand",
          "channelLabel": "Nonbrand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-nonbrand"
        },
        {
          "id": "click-brand",
          "at": "2026-04-08T11:00:00Z",
          "recordedAt": "2026-04-08T11:00:00Z",
          "label": "Brand search ad clicked",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-brand"
        },
        {
          "id": "call-1",
          "at": "2026-04-09T12:00:00Z",
          "recordedAt": "2026-04-09T12:00:00Z",
          "label": "Seller called the website number",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/call",
          "locator": "call-1"
        },
        {
          "id": "qualified-1",
          "at": "2026-04-09T15:00:00Z",
          "recordedAt": "2026-04-09T15:00:00Z",
          "label": "Seller-property opportunity qualified",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/qualified",
          "locator": "qualified-1"
        },
        {
          "id": "assessment-1",
          "at": "2026-04-18T14:00:00Z",
          "recordedAt": "2026-04-18T14:00:00Z",
          "label": "Property assessment completed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/assessment",
          "locator": "assessment-1"
        },
        {
          "id": "offer-1",
          "at": "2026-04-24T10:00:00Z",
          "recordedAt": "2026-04-24T10:00:00Z",
          "label": "Written purchase offer delivered",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/offer",
          "locator": "offer-1"
        },
        {
          "id": "contract-1",
          "at": "2026-05-02T12:00:00Z",
          "recordedAt": "2026-05-02T12:00:00Z",
          "label": "Acquisition contract signed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/contract",
          "locator": "contract-1"
        },
        {
          "id": "marketing-cost",
          "at": "2026-05-03T12:00:00Z",
          "recordedAt": "2026-05-03T12:00:00Z",
          "label": "Acquisition marketing cost allocated",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/cost",
          "locator": "marketing-cost"
        }
      ],
      "credit": [
        {
          "channelId": "search-nonbrand",
          "label": "Nonbrand paid search",
          "weight": 1,
          "percentage": 100,
          "touchIds": [
            "click-nonbrand"
          ]
        }
      ],
      "outcome": {
        "qualifiedOpportunities": 1,
        "contracts": 1,
        "acquisitions": 0,
        "resales": 0,
        "canceled": false,
        "stage": "contract",
        "label": "Contract signed · purchase pending",
        "capitalDeployed": null,
        "resaleProceeds": null,
        "contributionBeforeMarketing": null,
        "marketingAllocation": 3000,
        "contributionAfterMarketing": null,
        "missingCosts": [
          "renovation",
          "holdingAndTransaction"
        ],
        "contributionStatus": "pending",
        "currency": "USD",
        "sourceIds": [
          "qualified-1",
          "contract-1",
          "marketing-cost"
        ]
      },
      "issues": [],
      "creditOutcome": "qualified_seller_property_opportunity",
      "eligibleTouchIds": [
        "click-brand",
        "click-nonbrand"
      ],
      "allocationStatus": "computed",
      "policyVersion": "cash-homebuyer.first.reported.v1",
      "propertyId": "property-104",
      "opportunityId": "acquisition-204",
      "sellerGroupId": "seller-group-14",
      "receiptHash": "659d72cc40a8638210a587bc02e1073857ed6f8aabdec655c2d433c641f73b5b"
    },
    {
      "key": "repeat|reported|contract|last",
      "scenarioId": "repeat",
      "evidencePolicyId": "reported",
      "cutoffId": "contract",
      "policyId": "last",
      "proofKey": "repeat|reported|contract",
      "asOf": "2026-05-15T23:59:59Z",
      "status": "complete",
      "summary": "Contract signed · purchase pending. Credit describes this qualified opportunity under the selected policy; it does not establish causal lift.",
      "timeline": [
        {
          "id": "prior-referral",
          "at": "2026-03-12T10:00:00Z",
          "recordedAt": "2026-03-12T10:00:00Z",
          "label": "Referral for an earlier acquisition attempt",
          "channelId": "referral",
          "channelLabel": "Referral",
          "evidenceType": "observed",
          "disposition": "excluded",
          "reason": "Belongs to a different property, opportunity or seller group.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "prior-referral"
        },
        {
          "id": "click-nonbrand",
          "at": "2026-04-03T10:00:00Z",
          "recordedAt": "2026-04-03T10:00:00Z",
          "label": "Nonbrand search ad clicked",
          "channelId": "search-nonbrand",
          "channelLabel": "Nonbrand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-nonbrand"
        },
        {
          "id": "click-brand",
          "at": "2026-04-08T11:00:00Z",
          "recordedAt": "2026-04-08T11:00:00Z",
          "label": "Brand search ad clicked",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-brand"
        },
        {
          "id": "call-1",
          "at": "2026-04-09T12:00:00Z",
          "recordedAt": "2026-04-09T12:00:00Z",
          "label": "Seller called the website number",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/call",
          "locator": "call-1"
        },
        {
          "id": "qualified-1",
          "at": "2026-04-09T15:00:00Z",
          "recordedAt": "2026-04-09T15:00:00Z",
          "label": "Seller-property opportunity qualified",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/qualified",
          "locator": "qualified-1"
        },
        {
          "id": "assessment-1",
          "at": "2026-04-18T14:00:00Z",
          "recordedAt": "2026-04-18T14:00:00Z",
          "label": "Property assessment completed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/assessment",
          "locator": "assessment-1"
        },
        {
          "id": "offer-1",
          "at": "2026-04-24T10:00:00Z",
          "recordedAt": "2026-04-24T10:00:00Z",
          "label": "Written purchase offer delivered",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/offer",
          "locator": "offer-1"
        },
        {
          "id": "contract-1",
          "at": "2026-05-02T12:00:00Z",
          "recordedAt": "2026-05-02T12:00:00Z",
          "label": "Acquisition contract signed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/contract",
          "locator": "contract-1"
        },
        {
          "id": "marketing-cost",
          "at": "2026-05-03T12:00:00Z",
          "recordedAt": "2026-05-03T12:00:00Z",
          "label": "Acquisition marketing cost allocated",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/cost",
          "locator": "marketing-cost"
        }
      ],
      "credit": [
        {
          "channelId": "search-brand",
          "label": "Brand paid search",
          "weight": 1,
          "percentage": 100,
          "touchIds": [
            "click-brand"
          ]
        }
      ],
      "outcome": {
        "qualifiedOpportunities": 1,
        "contracts": 1,
        "acquisitions": 0,
        "resales": 0,
        "canceled": false,
        "stage": "contract",
        "label": "Contract signed · purchase pending",
        "capitalDeployed": null,
        "resaleProceeds": null,
        "contributionBeforeMarketing": null,
        "marketingAllocation": 3000,
        "contributionAfterMarketing": null,
        "missingCosts": [
          "renovation",
          "holdingAndTransaction"
        ],
        "contributionStatus": "pending",
        "currency": "USD",
        "sourceIds": [
          "qualified-1",
          "contract-1",
          "marketing-cost"
        ]
      },
      "issues": [],
      "creditOutcome": "qualified_seller_property_opportunity",
      "eligibleTouchIds": [
        "click-brand",
        "click-nonbrand"
      ],
      "allocationStatus": "computed",
      "policyVersion": "cash-homebuyer.last.reported.v1",
      "propertyId": "property-104",
      "opportunityId": "acquisition-204",
      "sellerGroupId": "seller-group-14",
      "receiptHash": "02745ca4cc7a61d9c63fb009e6dd403a44b25ba0208f6eb1c1b111b8a62847ba"
    },
    {
      "key": "repeat|reported|contract|linear",
      "scenarioId": "repeat",
      "evidencePolicyId": "reported",
      "cutoffId": "contract",
      "policyId": "linear",
      "proofKey": "repeat|reported|contract",
      "asOf": "2026-05-15T23:59:59Z",
      "status": "complete",
      "summary": "Contract signed · purchase pending. Credit describes this qualified opportunity under the selected policy; it does not establish causal lift.",
      "timeline": [
        {
          "id": "prior-referral",
          "at": "2026-03-12T10:00:00Z",
          "recordedAt": "2026-03-12T10:00:00Z",
          "label": "Referral for an earlier acquisition attempt",
          "channelId": "referral",
          "channelLabel": "Referral",
          "evidenceType": "observed",
          "disposition": "excluded",
          "reason": "Belongs to a different property, opportunity or seller group.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "prior-referral"
        },
        {
          "id": "click-nonbrand",
          "at": "2026-04-03T10:00:00Z",
          "recordedAt": "2026-04-03T10:00:00Z",
          "label": "Nonbrand search ad clicked",
          "channelId": "search-nonbrand",
          "channelLabel": "Nonbrand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-nonbrand"
        },
        {
          "id": "click-brand",
          "at": "2026-04-08T11:00:00Z",
          "recordedAt": "2026-04-08T11:00:00Z",
          "label": "Brand search ad clicked",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-brand"
        },
        {
          "id": "call-1",
          "at": "2026-04-09T12:00:00Z",
          "recordedAt": "2026-04-09T12:00:00Z",
          "label": "Seller called the website number",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/call",
          "locator": "call-1"
        },
        {
          "id": "qualified-1",
          "at": "2026-04-09T15:00:00Z",
          "recordedAt": "2026-04-09T15:00:00Z",
          "label": "Seller-property opportunity qualified",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/qualified",
          "locator": "qualified-1"
        },
        {
          "id": "assessment-1",
          "at": "2026-04-18T14:00:00Z",
          "recordedAt": "2026-04-18T14:00:00Z",
          "label": "Property assessment completed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/assessment",
          "locator": "assessment-1"
        },
        {
          "id": "offer-1",
          "at": "2026-04-24T10:00:00Z",
          "recordedAt": "2026-04-24T10:00:00Z",
          "label": "Written purchase offer delivered",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/offer",
          "locator": "offer-1"
        },
        {
          "id": "contract-1",
          "at": "2026-05-02T12:00:00Z",
          "recordedAt": "2026-05-02T12:00:00Z",
          "label": "Acquisition contract signed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/contract",
          "locator": "contract-1"
        },
        {
          "id": "marketing-cost",
          "at": "2026-05-03T12:00:00Z",
          "recordedAt": "2026-05-03T12:00:00Z",
          "label": "Acquisition marketing cost allocated",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/cost",
          "locator": "marketing-cost"
        }
      ],
      "credit": [
        {
          "channelId": "search-nonbrand",
          "label": "Nonbrand paid search",
          "weight": 0.5,
          "percentage": 50,
          "touchIds": [
            "click-nonbrand"
          ]
        },
        {
          "channelId": "search-brand",
          "label": "Brand paid search",
          "weight": 0.5,
          "percentage": 50,
          "touchIds": [
            "click-brand"
          ]
        }
      ],
      "outcome": {
        "qualifiedOpportunities": 1,
        "contracts": 1,
        "acquisitions": 0,
        "resales": 0,
        "canceled": false,
        "stage": "contract",
        "label": "Contract signed · purchase pending",
        "capitalDeployed": null,
        "resaleProceeds": null,
        "contributionBeforeMarketing": null,
        "marketingAllocation": 3000,
        "contributionAfterMarketing": null,
        "missingCosts": [
          "renovation",
          "holdingAndTransaction"
        ],
        "contributionStatus": "pending",
        "currency": "USD",
        "sourceIds": [
          "qualified-1",
          "contract-1",
          "marketing-cost"
        ]
      },
      "issues": [],
      "creditOutcome": "qualified_seller_property_opportunity",
      "eligibleTouchIds": [
        "click-brand",
        "click-nonbrand"
      ],
      "allocationStatus": "computed",
      "policyVersion": "cash-homebuyer.linear.reported.v1",
      "propertyId": "property-104",
      "opportunityId": "acquisition-204",
      "sellerGroupId": "seller-group-14",
      "receiptHash": "7cf4283facbe47853e9600540b0c7c47575870b5d69e8a9f3c9197bf878a1f80"
    },
    {
      "key": "repeat|reported|acquired|first",
      "scenarioId": "repeat",
      "evidencePolicyId": "reported",
      "cutoffId": "acquired",
      "policyId": "first",
      "proofKey": "repeat|reported|acquired",
      "asOf": "2026-06-15T23:59:59Z",
      "status": "complete",
      "summary": "Purchase closed · resale pending. Credit describes this qualified opportunity under the selected policy; it does not establish causal lift.",
      "timeline": [
        {
          "id": "prior-referral",
          "at": "2026-03-12T10:00:00Z",
          "recordedAt": "2026-03-12T10:00:00Z",
          "label": "Referral for an earlier acquisition attempt",
          "channelId": "referral",
          "channelLabel": "Referral",
          "evidenceType": "observed",
          "disposition": "excluded",
          "reason": "Belongs to a different property, opportunity or seller group.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "prior-referral"
        },
        {
          "id": "click-nonbrand",
          "at": "2026-04-03T10:00:00Z",
          "recordedAt": "2026-04-03T10:00:00Z",
          "label": "Nonbrand search ad clicked",
          "channelId": "search-nonbrand",
          "channelLabel": "Nonbrand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-nonbrand"
        },
        {
          "id": "click-brand",
          "at": "2026-04-08T11:00:00Z",
          "recordedAt": "2026-04-08T11:00:00Z",
          "label": "Brand search ad clicked",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-brand"
        },
        {
          "id": "call-1",
          "at": "2026-04-09T12:00:00Z",
          "recordedAt": "2026-04-09T12:00:00Z",
          "label": "Seller called the website number",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/call",
          "locator": "call-1"
        },
        {
          "id": "qualified-1",
          "at": "2026-04-09T15:00:00Z",
          "recordedAt": "2026-04-09T15:00:00Z",
          "label": "Seller-property opportunity qualified",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/qualified",
          "locator": "qualified-1"
        },
        {
          "id": "assessment-1",
          "at": "2026-04-18T14:00:00Z",
          "recordedAt": "2026-04-18T14:00:00Z",
          "label": "Property assessment completed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/assessment",
          "locator": "assessment-1"
        },
        {
          "id": "offer-1",
          "at": "2026-04-24T10:00:00Z",
          "recordedAt": "2026-04-24T10:00:00Z",
          "label": "Written purchase offer delivered",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/offer",
          "locator": "offer-1"
        },
        {
          "id": "contract-1",
          "at": "2026-05-02T12:00:00Z",
          "recordedAt": "2026-05-02T12:00:00Z",
          "label": "Acquisition contract signed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/contract",
          "locator": "contract-1"
        },
        {
          "id": "marketing-cost",
          "at": "2026-05-03T12:00:00Z",
          "recordedAt": "2026-05-03T12:00:00Z",
          "label": "Acquisition marketing cost allocated",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/cost",
          "locator": "marketing-cost"
        },
        {
          "id": "closing-1",
          "at": "2026-06-02T12:00:00Z",
          "recordedAt": "2026-06-02T12:00:00Z",
          "label": "Property purchase closed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/acquisition",
          "locator": "closing-1"
        }
      ],
      "credit": [
        {
          "channelId": "search-nonbrand",
          "label": "Nonbrand paid search",
          "weight": 1,
          "percentage": 100,
          "touchIds": [
            "click-nonbrand"
          ]
        }
      ],
      "outcome": {
        "qualifiedOpportunities": 1,
        "contracts": 1,
        "acquisitions": 1,
        "resales": 0,
        "canceled": false,
        "stage": "acquired",
        "label": "Purchase closed · resale pending",
        "capitalDeployed": 210000,
        "resaleProceeds": null,
        "contributionBeforeMarketing": null,
        "marketingAllocation": 3000,
        "contributionAfterMarketing": null,
        "missingCosts": [
          "renovation",
          "holdingAndTransaction"
        ],
        "contributionStatus": "pending",
        "currency": "USD",
        "sourceIds": [
          "qualified-1",
          "contract-1",
          "marketing-cost",
          "closing-1"
        ]
      },
      "issues": [],
      "creditOutcome": "qualified_seller_property_opportunity",
      "eligibleTouchIds": [
        "click-brand",
        "click-nonbrand"
      ],
      "allocationStatus": "computed",
      "policyVersion": "cash-homebuyer.first.reported.v1",
      "propertyId": "property-104",
      "opportunityId": "acquisition-204",
      "sellerGroupId": "seller-group-14",
      "receiptHash": "bbb25f3c04c574d73e63e4b724e68b0a59e14c024cffb844da95311d97991c41"
    },
    {
      "key": "repeat|reported|acquired|last",
      "scenarioId": "repeat",
      "evidencePolicyId": "reported",
      "cutoffId": "acquired",
      "policyId": "last",
      "proofKey": "repeat|reported|acquired",
      "asOf": "2026-06-15T23:59:59Z",
      "status": "complete",
      "summary": "Purchase closed · resale pending. Credit describes this qualified opportunity under the selected policy; it does not establish causal lift.",
      "timeline": [
        {
          "id": "prior-referral",
          "at": "2026-03-12T10:00:00Z",
          "recordedAt": "2026-03-12T10:00:00Z",
          "label": "Referral for an earlier acquisition attempt",
          "channelId": "referral",
          "channelLabel": "Referral",
          "evidenceType": "observed",
          "disposition": "excluded",
          "reason": "Belongs to a different property, opportunity or seller group.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "prior-referral"
        },
        {
          "id": "click-nonbrand",
          "at": "2026-04-03T10:00:00Z",
          "recordedAt": "2026-04-03T10:00:00Z",
          "label": "Nonbrand search ad clicked",
          "channelId": "search-nonbrand",
          "channelLabel": "Nonbrand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-nonbrand"
        },
        {
          "id": "click-brand",
          "at": "2026-04-08T11:00:00Z",
          "recordedAt": "2026-04-08T11:00:00Z",
          "label": "Brand search ad clicked",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-brand"
        },
        {
          "id": "call-1",
          "at": "2026-04-09T12:00:00Z",
          "recordedAt": "2026-04-09T12:00:00Z",
          "label": "Seller called the website number",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/call",
          "locator": "call-1"
        },
        {
          "id": "qualified-1",
          "at": "2026-04-09T15:00:00Z",
          "recordedAt": "2026-04-09T15:00:00Z",
          "label": "Seller-property opportunity qualified",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/qualified",
          "locator": "qualified-1"
        },
        {
          "id": "assessment-1",
          "at": "2026-04-18T14:00:00Z",
          "recordedAt": "2026-04-18T14:00:00Z",
          "label": "Property assessment completed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/assessment",
          "locator": "assessment-1"
        },
        {
          "id": "offer-1",
          "at": "2026-04-24T10:00:00Z",
          "recordedAt": "2026-04-24T10:00:00Z",
          "label": "Written purchase offer delivered",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/offer",
          "locator": "offer-1"
        },
        {
          "id": "contract-1",
          "at": "2026-05-02T12:00:00Z",
          "recordedAt": "2026-05-02T12:00:00Z",
          "label": "Acquisition contract signed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/contract",
          "locator": "contract-1"
        },
        {
          "id": "marketing-cost",
          "at": "2026-05-03T12:00:00Z",
          "recordedAt": "2026-05-03T12:00:00Z",
          "label": "Acquisition marketing cost allocated",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/cost",
          "locator": "marketing-cost"
        },
        {
          "id": "closing-1",
          "at": "2026-06-02T12:00:00Z",
          "recordedAt": "2026-06-02T12:00:00Z",
          "label": "Property purchase closed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/acquisition",
          "locator": "closing-1"
        }
      ],
      "credit": [
        {
          "channelId": "search-brand",
          "label": "Brand paid search",
          "weight": 1,
          "percentage": 100,
          "touchIds": [
            "click-brand"
          ]
        }
      ],
      "outcome": {
        "qualifiedOpportunities": 1,
        "contracts": 1,
        "acquisitions": 1,
        "resales": 0,
        "canceled": false,
        "stage": "acquired",
        "label": "Purchase closed · resale pending",
        "capitalDeployed": 210000,
        "resaleProceeds": null,
        "contributionBeforeMarketing": null,
        "marketingAllocation": 3000,
        "contributionAfterMarketing": null,
        "missingCosts": [
          "renovation",
          "holdingAndTransaction"
        ],
        "contributionStatus": "pending",
        "currency": "USD",
        "sourceIds": [
          "qualified-1",
          "contract-1",
          "marketing-cost",
          "closing-1"
        ]
      },
      "issues": [],
      "creditOutcome": "qualified_seller_property_opportunity",
      "eligibleTouchIds": [
        "click-brand",
        "click-nonbrand"
      ],
      "allocationStatus": "computed",
      "policyVersion": "cash-homebuyer.last.reported.v1",
      "propertyId": "property-104",
      "opportunityId": "acquisition-204",
      "sellerGroupId": "seller-group-14",
      "receiptHash": "4d8cd0e9f7bfdcf959d4a7794108568594672cda52f6c4c046b5a0563287e8db"
    },
    {
      "key": "repeat|reported|acquired|linear",
      "scenarioId": "repeat",
      "evidencePolicyId": "reported",
      "cutoffId": "acquired",
      "policyId": "linear",
      "proofKey": "repeat|reported|acquired",
      "asOf": "2026-06-15T23:59:59Z",
      "status": "complete",
      "summary": "Purchase closed · resale pending. Credit describes this qualified opportunity under the selected policy; it does not establish causal lift.",
      "timeline": [
        {
          "id": "prior-referral",
          "at": "2026-03-12T10:00:00Z",
          "recordedAt": "2026-03-12T10:00:00Z",
          "label": "Referral for an earlier acquisition attempt",
          "channelId": "referral",
          "channelLabel": "Referral",
          "evidenceType": "observed",
          "disposition": "excluded",
          "reason": "Belongs to a different property, opportunity or seller group.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "prior-referral"
        },
        {
          "id": "click-nonbrand",
          "at": "2026-04-03T10:00:00Z",
          "recordedAt": "2026-04-03T10:00:00Z",
          "label": "Nonbrand search ad clicked",
          "channelId": "search-nonbrand",
          "channelLabel": "Nonbrand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-nonbrand"
        },
        {
          "id": "click-brand",
          "at": "2026-04-08T11:00:00Z",
          "recordedAt": "2026-04-08T11:00:00Z",
          "label": "Brand search ad clicked",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-brand"
        },
        {
          "id": "call-1",
          "at": "2026-04-09T12:00:00Z",
          "recordedAt": "2026-04-09T12:00:00Z",
          "label": "Seller called the website number",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/call",
          "locator": "call-1"
        },
        {
          "id": "qualified-1",
          "at": "2026-04-09T15:00:00Z",
          "recordedAt": "2026-04-09T15:00:00Z",
          "label": "Seller-property opportunity qualified",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/qualified",
          "locator": "qualified-1"
        },
        {
          "id": "assessment-1",
          "at": "2026-04-18T14:00:00Z",
          "recordedAt": "2026-04-18T14:00:00Z",
          "label": "Property assessment completed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/assessment",
          "locator": "assessment-1"
        },
        {
          "id": "offer-1",
          "at": "2026-04-24T10:00:00Z",
          "recordedAt": "2026-04-24T10:00:00Z",
          "label": "Written purchase offer delivered",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/offer",
          "locator": "offer-1"
        },
        {
          "id": "contract-1",
          "at": "2026-05-02T12:00:00Z",
          "recordedAt": "2026-05-02T12:00:00Z",
          "label": "Acquisition contract signed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/contract",
          "locator": "contract-1"
        },
        {
          "id": "marketing-cost",
          "at": "2026-05-03T12:00:00Z",
          "recordedAt": "2026-05-03T12:00:00Z",
          "label": "Acquisition marketing cost allocated",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/cost",
          "locator": "marketing-cost"
        },
        {
          "id": "closing-1",
          "at": "2026-06-02T12:00:00Z",
          "recordedAt": "2026-06-02T12:00:00Z",
          "label": "Property purchase closed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/acquisition",
          "locator": "closing-1"
        }
      ],
      "credit": [
        {
          "channelId": "search-nonbrand",
          "label": "Nonbrand paid search",
          "weight": 0.5,
          "percentage": 50,
          "touchIds": [
            "click-nonbrand"
          ]
        },
        {
          "channelId": "search-brand",
          "label": "Brand paid search",
          "weight": 0.5,
          "percentage": 50,
          "touchIds": [
            "click-brand"
          ]
        }
      ],
      "outcome": {
        "qualifiedOpportunities": 1,
        "contracts": 1,
        "acquisitions": 1,
        "resales": 0,
        "canceled": false,
        "stage": "acquired",
        "label": "Purchase closed · resale pending",
        "capitalDeployed": 210000,
        "resaleProceeds": null,
        "contributionBeforeMarketing": null,
        "marketingAllocation": 3000,
        "contributionAfterMarketing": null,
        "missingCosts": [
          "renovation",
          "holdingAndTransaction"
        ],
        "contributionStatus": "pending",
        "currency": "USD",
        "sourceIds": [
          "qualified-1",
          "contract-1",
          "marketing-cost",
          "closing-1"
        ]
      },
      "issues": [],
      "creditOutcome": "qualified_seller_property_opportunity",
      "eligibleTouchIds": [
        "click-brand",
        "click-nonbrand"
      ],
      "allocationStatus": "computed",
      "policyVersion": "cash-homebuyer.linear.reported.v1",
      "propertyId": "property-104",
      "opportunityId": "acquisition-204",
      "sellerGroupId": "seller-group-14",
      "receiptHash": "4b90abfbd0e78bbbf0015933e19ae8b4e28a12527d80d4e6b3c2bd599ca6138f"
    },
    {
      "key": "repeat|reported|resale|first",
      "scenarioId": "repeat",
      "evidencePolicyId": "reported",
      "cutoffId": "resale",
      "policyId": "first",
      "proofKey": "repeat|reported|resale",
      "asOf": "2026-09-15T23:59:59Z",
      "status": "complete",
      "summary": "Resale and costs reconciled. Credit describes this qualified opportunity under the selected policy; it does not establish causal lift.",
      "timeline": [
        {
          "id": "prior-referral",
          "at": "2026-03-12T10:00:00Z",
          "recordedAt": "2026-03-12T10:00:00Z",
          "label": "Referral for an earlier acquisition attempt",
          "channelId": "referral",
          "channelLabel": "Referral",
          "evidenceType": "observed",
          "disposition": "excluded",
          "reason": "Belongs to a different property, opportunity or seller group.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "prior-referral"
        },
        {
          "id": "click-nonbrand",
          "at": "2026-04-03T10:00:00Z",
          "recordedAt": "2026-04-03T10:00:00Z",
          "label": "Nonbrand search ad clicked",
          "channelId": "search-nonbrand",
          "channelLabel": "Nonbrand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-nonbrand"
        },
        {
          "id": "click-brand",
          "at": "2026-04-08T11:00:00Z",
          "recordedAt": "2026-04-08T11:00:00Z",
          "label": "Brand search ad clicked",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-brand"
        },
        {
          "id": "call-1",
          "at": "2026-04-09T12:00:00Z",
          "recordedAt": "2026-04-09T12:00:00Z",
          "label": "Seller called the website number",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/call",
          "locator": "call-1"
        },
        {
          "id": "qualified-1",
          "at": "2026-04-09T15:00:00Z",
          "recordedAt": "2026-04-09T15:00:00Z",
          "label": "Seller-property opportunity qualified",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/qualified",
          "locator": "qualified-1"
        },
        {
          "id": "assessment-1",
          "at": "2026-04-18T14:00:00Z",
          "recordedAt": "2026-04-18T14:00:00Z",
          "label": "Property assessment completed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/assessment",
          "locator": "assessment-1"
        },
        {
          "id": "offer-1",
          "at": "2026-04-24T10:00:00Z",
          "recordedAt": "2026-04-24T10:00:00Z",
          "label": "Written purchase offer delivered",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/offer",
          "locator": "offer-1"
        },
        {
          "id": "contract-1",
          "at": "2026-05-02T12:00:00Z",
          "recordedAt": "2026-05-02T12:00:00Z",
          "label": "Acquisition contract signed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/contract",
          "locator": "contract-1"
        },
        {
          "id": "marketing-cost",
          "at": "2026-05-03T12:00:00Z",
          "recordedAt": "2026-05-03T12:00:00Z",
          "label": "Acquisition marketing cost allocated",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/cost",
          "locator": "marketing-cost"
        },
        {
          "id": "closing-1",
          "at": "2026-06-02T12:00:00Z",
          "recordedAt": "2026-06-02T12:00:00Z",
          "label": "Property purchase closed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/acquisition",
          "locator": "closing-1"
        },
        {
          "id": "renovation-cost",
          "at": "2026-07-10T12:00:00Z",
          "recordedAt": "2026-07-10T12:00:00Z",
          "label": "Renovation costs reconciled",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/cost",
          "locator": "renovation-cost"
        },
        {
          "id": "resale-1",
          "at": "2026-09-03T12:00:00Z",
          "recordedAt": "2026-09-03T12:00:00Z",
          "label": "Resale proceeds recorded",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/resale",
          "locator": "resale-1"
        },
        {
          "id": "holding-cost",
          "at": "2026-09-05T12:00:00Z",
          "recordedAt": "2026-09-05T12:00:00Z",
          "label": "Holding, financing and transaction costs reconciled",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/cost",
          "locator": "holding-cost"
        }
      ],
      "credit": [
        {
          "channelId": "search-nonbrand",
          "label": "Nonbrand paid search",
          "weight": 1,
          "percentage": 100,
          "touchIds": [
            "click-nonbrand"
          ]
        }
      ],
      "outcome": {
        "qualifiedOpportunities": 1,
        "contracts": 1,
        "acquisitions": 1,
        "resales": 1,
        "canceled": false,
        "stage": "resold",
        "label": "Resale and costs reconciled",
        "capitalDeployed": 210000,
        "resaleProceeds": 295000,
        "contributionBeforeMarketing": 27000,
        "marketingAllocation": 3000,
        "contributionAfterMarketing": 24000,
        "missingCosts": [],
        "contributionStatus": "realized",
        "currency": "USD",
        "sourceIds": [
          "qualified-1",
          "contract-1",
          "marketing-cost",
          "closing-1",
          "renovation-cost",
          "resale-1",
          "holding-cost"
        ]
      },
      "issues": [],
      "creditOutcome": "qualified_seller_property_opportunity",
      "eligibleTouchIds": [
        "click-brand",
        "click-nonbrand"
      ],
      "allocationStatus": "computed",
      "policyVersion": "cash-homebuyer.first.reported.v1",
      "propertyId": "property-104",
      "opportunityId": "acquisition-204",
      "sellerGroupId": "seller-group-14",
      "receiptHash": "fc16b2f15640c3d506eb1058e4be87bbfd0b1c1d821cb5ffd1344c977c9ae9a3"
    },
    {
      "key": "repeat|reported|resale|last",
      "scenarioId": "repeat",
      "evidencePolicyId": "reported",
      "cutoffId": "resale",
      "policyId": "last",
      "proofKey": "repeat|reported|resale",
      "asOf": "2026-09-15T23:59:59Z",
      "status": "complete",
      "summary": "Resale and costs reconciled. Credit describes this qualified opportunity under the selected policy; it does not establish causal lift.",
      "timeline": [
        {
          "id": "prior-referral",
          "at": "2026-03-12T10:00:00Z",
          "recordedAt": "2026-03-12T10:00:00Z",
          "label": "Referral for an earlier acquisition attempt",
          "channelId": "referral",
          "channelLabel": "Referral",
          "evidenceType": "observed",
          "disposition": "excluded",
          "reason": "Belongs to a different property, opportunity or seller group.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "prior-referral"
        },
        {
          "id": "click-nonbrand",
          "at": "2026-04-03T10:00:00Z",
          "recordedAt": "2026-04-03T10:00:00Z",
          "label": "Nonbrand search ad clicked",
          "channelId": "search-nonbrand",
          "channelLabel": "Nonbrand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-nonbrand"
        },
        {
          "id": "click-brand",
          "at": "2026-04-08T11:00:00Z",
          "recordedAt": "2026-04-08T11:00:00Z",
          "label": "Brand search ad clicked",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-brand"
        },
        {
          "id": "call-1",
          "at": "2026-04-09T12:00:00Z",
          "recordedAt": "2026-04-09T12:00:00Z",
          "label": "Seller called the website number",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/call",
          "locator": "call-1"
        },
        {
          "id": "qualified-1",
          "at": "2026-04-09T15:00:00Z",
          "recordedAt": "2026-04-09T15:00:00Z",
          "label": "Seller-property opportunity qualified",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/qualified",
          "locator": "qualified-1"
        },
        {
          "id": "assessment-1",
          "at": "2026-04-18T14:00:00Z",
          "recordedAt": "2026-04-18T14:00:00Z",
          "label": "Property assessment completed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/assessment",
          "locator": "assessment-1"
        },
        {
          "id": "offer-1",
          "at": "2026-04-24T10:00:00Z",
          "recordedAt": "2026-04-24T10:00:00Z",
          "label": "Written purchase offer delivered",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/offer",
          "locator": "offer-1"
        },
        {
          "id": "contract-1",
          "at": "2026-05-02T12:00:00Z",
          "recordedAt": "2026-05-02T12:00:00Z",
          "label": "Acquisition contract signed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/contract",
          "locator": "contract-1"
        },
        {
          "id": "marketing-cost",
          "at": "2026-05-03T12:00:00Z",
          "recordedAt": "2026-05-03T12:00:00Z",
          "label": "Acquisition marketing cost allocated",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/cost",
          "locator": "marketing-cost"
        },
        {
          "id": "closing-1",
          "at": "2026-06-02T12:00:00Z",
          "recordedAt": "2026-06-02T12:00:00Z",
          "label": "Property purchase closed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/acquisition",
          "locator": "closing-1"
        },
        {
          "id": "renovation-cost",
          "at": "2026-07-10T12:00:00Z",
          "recordedAt": "2026-07-10T12:00:00Z",
          "label": "Renovation costs reconciled",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/cost",
          "locator": "renovation-cost"
        },
        {
          "id": "resale-1",
          "at": "2026-09-03T12:00:00Z",
          "recordedAt": "2026-09-03T12:00:00Z",
          "label": "Resale proceeds recorded",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/resale",
          "locator": "resale-1"
        },
        {
          "id": "holding-cost",
          "at": "2026-09-05T12:00:00Z",
          "recordedAt": "2026-09-05T12:00:00Z",
          "label": "Holding, financing and transaction costs reconciled",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/cost",
          "locator": "holding-cost"
        }
      ],
      "credit": [
        {
          "channelId": "search-brand",
          "label": "Brand paid search",
          "weight": 1,
          "percentage": 100,
          "touchIds": [
            "click-brand"
          ]
        }
      ],
      "outcome": {
        "qualifiedOpportunities": 1,
        "contracts": 1,
        "acquisitions": 1,
        "resales": 1,
        "canceled": false,
        "stage": "resold",
        "label": "Resale and costs reconciled",
        "capitalDeployed": 210000,
        "resaleProceeds": 295000,
        "contributionBeforeMarketing": 27000,
        "marketingAllocation": 3000,
        "contributionAfterMarketing": 24000,
        "missingCosts": [],
        "contributionStatus": "realized",
        "currency": "USD",
        "sourceIds": [
          "qualified-1",
          "contract-1",
          "marketing-cost",
          "closing-1",
          "renovation-cost",
          "resale-1",
          "holding-cost"
        ]
      },
      "issues": [],
      "creditOutcome": "qualified_seller_property_opportunity",
      "eligibleTouchIds": [
        "click-brand",
        "click-nonbrand"
      ],
      "allocationStatus": "computed",
      "policyVersion": "cash-homebuyer.last.reported.v1",
      "propertyId": "property-104",
      "opportunityId": "acquisition-204",
      "sellerGroupId": "seller-group-14",
      "receiptHash": "faa3a4b439b7223f2fa1604b032075a0005b0f2dfafcc1771867c88bc20021ad"
    },
    {
      "key": "repeat|reported|resale|linear",
      "scenarioId": "repeat",
      "evidencePolicyId": "reported",
      "cutoffId": "resale",
      "policyId": "linear",
      "proofKey": "repeat|reported|resale",
      "asOf": "2026-09-15T23:59:59Z",
      "status": "complete",
      "summary": "Resale and costs reconciled. Credit describes this qualified opportunity under the selected policy; it does not establish causal lift.",
      "timeline": [
        {
          "id": "prior-referral",
          "at": "2026-03-12T10:00:00Z",
          "recordedAt": "2026-03-12T10:00:00Z",
          "label": "Referral for an earlier acquisition attempt",
          "channelId": "referral",
          "channelLabel": "Referral",
          "evidenceType": "observed",
          "disposition": "excluded",
          "reason": "Belongs to a different property, opportunity or seller group.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "prior-referral"
        },
        {
          "id": "click-nonbrand",
          "at": "2026-04-03T10:00:00Z",
          "recordedAt": "2026-04-03T10:00:00Z",
          "label": "Nonbrand search ad clicked",
          "channelId": "search-nonbrand",
          "channelLabel": "Nonbrand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-nonbrand"
        },
        {
          "id": "click-brand",
          "at": "2026-04-08T11:00:00Z",
          "recordedAt": "2026-04-08T11:00:00Z",
          "label": "Brand search ad clicked",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-brand"
        },
        {
          "id": "call-1",
          "at": "2026-04-09T12:00:00Z",
          "recordedAt": "2026-04-09T12:00:00Z",
          "label": "Seller called the website number",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/call",
          "locator": "call-1"
        },
        {
          "id": "qualified-1",
          "at": "2026-04-09T15:00:00Z",
          "recordedAt": "2026-04-09T15:00:00Z",
          "label": "Seller-property opportunity qualified",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/qualified",
          "locator": "qualified-1"
        },
        {
          "id": "assessment-1",
          "at": "2026-04-18T14:00:00Z",
          "recordedAt": "2026-04-18T14:00:00Z",
          "label": "Property assessment completed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/assessment",
          "locator": "assessment-1"
        },
        {
          "id": "offer-1",
          "at": "2026-04-24T10:00:00Z",
          "recordedAt": "2026-04-24T10:00:00Z",
          "label": "Written purchase offer delivered",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/offer",
          "locator": "offer-1"
        },
        {
          "id": "contract-1",
          "at": "2026-05-02T12:00:00Z",
          "recordedAt": "2026-05-02T12:00:00Z",
          "label": "Acquisition contract signed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/contract",
          "locator": "contract-1"
        },
        {
          "id": "marketing-cost",
          "at": "2026-05-03T12:00:00Z",
          "recordedAt": "2026-05-03T12:00:00Z",
          "label": "Acquisition marketing cost allocated",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/cost",
          "locator": "marketing-cost"
        },
        {
          "id": "closing-1",
          "at": "2026-06-02T12:00:00Z",
          "recordedAt": "2026-06-02T12:00:00Z",
          "label": "Property purchase closed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/acquisition",
          "locator": "closing-1"
        },
        {
          "id": "renovation-cost",
          "at": "2026-07-10T12:00:00Z",
          "recordedAt": "2026-07-10T12:00:00Z",
          "label": "Renovation costs reconciled",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/cost",
          "locator": "renovation-cost"
        },
        {
          "id": "resale-1",
          "at": "2026-09-03T12:00:00Z",
          "recordedAt": "2026-09-03T12:00:00Z",
          "label": "Resale proceeds recorded",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/resale",
          "locator": "resale-1"
        },
        {
          "id": "holding-cost",
          "at": "2026-09-05T12:00:00Z",
          "recordedAt": "2026-09-05T12:00:00Z",
          "label": "Holding, financing and transaction costs reconciled",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/cost",
          "locator": "holding-cost"
        }
      ],
      "credit": [
        {
          "channelId": "search-nonbrand",
          "label": "Nonbrand paid search",
          "weight": 0.5,
          "percentage": 50,
          "touchIds": [
            "click-nonbrand"
          ]
        },
        {
          "channelId": "search-brand",
          "label": "Brand paid search",
          "weight": 0.5,
          "percentage": 50,
          "touchIds": [
            "click-brand"
          ]
        }
      ],
      "outcome": {
        "qualifiedOpportunities": 1,
        "contracts": 1,
        "acquisitions": 1,
        "resales": 1,
        "canceled": false,
        "stage": "resold",
        "label": "Resale and costs reconciled",
        "capitalDeployed": 210000,
        "resaleProceeds": 295000,
        "contributionBeforeMarketing": 27000,
        "marketingAllocation": 3000,
        "contributionAfterMarketing": 24000,
        "missingCosts": [],
        "contributionStatus": "realized",
        "currency": "USD",
        "sourceIds": [
          "qualified-1",
          "contract-1",
          "marketing-cost",
          "closing-1",
          "renovation-cost",
          "resale-1",
          "holding-cost"
        ]
      },
      "issues": [],
      "creditOutcome": "qualified_seller_property_opportunity",
      "eligibleTouchIds": [
        "click-brand",
        "click-nonbrand"
      ],
      "allocationStatus": "computed",
      "policyVersion": "cash-homebuyer.linear.reported.v1",
      "propertyId": "property-104",
      "opportunityId": "acquisition-204",
      "sellerGroupId": "seller-group-14",
      "receiptHash": "fed935b79f152e224eff2428d701ea1233f7185ddeb836239690f95cda95bda7"
    },
    {
      "key": "followup|observed|contract|first",
      "scenarioId": "followup",
      "evidencePolicyId": "observed",
      "cutoffId": "contract",
      "policyId": "first",
      "proofKey": "followup|observed|contract",
      "asOf": "2026-05-15T23:59:59Z",
      "status": "complete",
      "summary": "Contract signed · purchase pending. Credit describes this qualified opportunity under the selected policy; it does not establish causal lift.",
      "timeline": [
        {
          "id": "click-nonbrand",
          "at": "2026-04-03T10:00:00Z",
          "recordedAt": "2026-04-03T10:00:00Z",
          "label": "Nonbrand search ad clicked",
          "channelId": "search-nonbrand",
          "channelLabel": "Nonbrand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-nonbrand"
        },
        {
          "id": "click-brand",
          "at": "2026-04-08T11:00:00Z",
          "recordedAt": "2026-04-08T11:00:00Z",
          "label": "Brand search ad clicked",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-brand"
        },
        {
          "id": "call-1",
          "at": "2026-04-09T12:00:00Z",
          "recordedAt": "2026-04-09T12:00:00Z",
          "label": "Seller called the website number",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/call",
          "locator": "call-1"
        },
        {
          "id": "qualified-1",
          "at": "2026-04-09T15:00:00Z",
          "recordedAt": "2026-04-09T15:00:00Z",
          "label": "Seller-property opportunity qualified",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/qualified",
          "locator": "qualified-1"
        },
        {
          "id": "followup-11",
          "at": "2026-04-11T13:00:00Z",
          "recordedAt": "2026-04-11T13:00:00Z",
          "label": "Assessment appointment reminder",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "observed",
          "disposition": "excluded",
          "reason": "Sales follow-up after qualification; not a new acquisition source.",
          "sourceRef": "synthetic://cash-homebuyer/followup",
          "locator": "followup-11"
        },
        {
          "id": "followup-12",
          "at": "2026-04-12T13:00:00Z",
          "recordedAt": "2026-04-12T13:00:00Z",
          "label": "Acquisition team follow-up",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "observed",
          "disposition": "excluded",
          "reason": "Sales follow-up after qualification; not a new acquisition source.",
          "sourceRef": "synthetic://cash-homebuyer/followup",
          "locator": "followup-12"
        },
        {
          "id": "followup-13",
          "at": "2026-04-13T13:00:00Z",
          "recordedAt": "2026-04-13T13:00:00Z",
          "label": "Acquisition team follow-up",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "observed",
          "disposition": "excluded",
          "reason": "Sales follow-up after qualification; not a new acquisition source.",
          "sourceRef": "synthetic://cash-homebuyer/followup",
          "locator": "followup-13"
        },
        {
          "id": "followup-14",
          "at": "2026-04-14T13:00:00Z",
          "recordedAt": "2026-04-14T13:00:00Z",
          "label": "Acquisition team follow-up",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "observed",
          "disposition": "excluded",
          "reason": "Sales follow-up after qualification; not a new acquisition source.",
          "sourceRef": "synthetic://cash-homebuyer/followup",
          "locator": "followup-14"
        },
        {
          "id": "followup-15",
          "at": "2026-04-15T13:00:00Z",
          "recordedAt": "2026-04-15T13:00:00Z",
          "label": "Acquisition team follow-up",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "observed",
          "disposition": "excluded",
          "reason": "Sales follow-up after qualification; not a new acquisition source.",
          "sourceRef": "synthetic://cash-homebuyer/followup",
          "locator": "followup-15"
        },
        {
          "id": "followup-16",
          "at": "2026-04-16T13:00:00Z",
          "recordedAt": "2026-04-16T13:00:00Z",
          "label": "Acquisition team follow-up",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "observed",
          "disposition": "excluded",
          "reason": "Sales follow-up after qualification; not a new acquisition source.",
          "sourceRef": "synthetic://cash-homebuyer/followup",
          "locator": "followup-16"
        },
        {
          "id": "assessment-1",
          "at": "2026-04-18T14:00:00Z",
          "recordedAt": "2026-04-18T14:00:00Z",
          "label": "Property assessment completed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/assessment",
          "locator": "assessment-1"
        },
        {
          "id": "offer-1",
          "at": "2026-04-24T10:00:00Z",
          "recordedAt": "2026-04-24T10:00:00Z",
          "label": "Written purchase offer delivered",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/offer",
          "locator": "offer-1"
        },
        {
          "id": "contract-1",
          "at": "2026-05-02T12:00:00Z",
          "recordedAt": "2026-05-02T12:00:00Z",
          "label": "Acquisition contract signed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/contract",
          "locator": "contract-1"
        },
        {
          "id": "marketing-cost",
          "at": "2026-05-03T12:00:00Z",
          "recordedAt": "2026-05-03T12:00:00Z",
          "label": "Acquisition marketing cost allocated",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/cost",
          "locator": "marketing-cost"
        }
      ],
      "credit": [
        {
          "channelId": "search-nonbrand",
          "label": "Nonbrand paid search",
          "weight": 1,
          "percentage": 100,
          "touchIds": [
            "click-nonbrand"
          ]
        }
      ],
      "outcome": {
        "qualifiedOpportunities": 1,
        "contracts": 1,
        "acquisitions": 0,
        "resales": 0,
        "canceled": false,
        "stage": "contract",
        "label": "Contract signed · purchase pending",
        "capitalDeployed": null,
        "resaleProceeds": null,
        "contributionBeforeMarketing": null,
        "marketingAllocation": 3000,
        "contributionAfterMarketing": null,
        "missingCosts": [
          "renovation",
          "holdingAndTransaction"
        ],
        "contributionStatus": "pending",
        "currency": "USD",
        "sourceIds": [
          "qualified-1",
          "contract-1",
          "marketing-cost"
        ]
      },
      "issues": [],
      "creditOutcome": "qualified_seller_property_opportunity",
      "eligibleTouchIds": [
        "click-brand",
        "click-nonbrand"
      ],
      "allocationStatus": "computed",
      "policyVersion": "cash-homebuyer.first.observed.v1",
      "propertyId": "property-104",
      "opportunityId": "acquisition-204",
      "sellerGroupId": "seller-group-14",
      "receiptHash": "4154e64e34b69db37ae9c152b869c447bc943674bf91fc654fdc83516e8f0e57"
    },
    {
      "key": "followup|observed|contract|last",
      "scenarioId": "followup",
      "evidencePolicyId": "observed",
      "cutoffId": "contract",
      "policyId": "last",
      "proofKey": "followup|observed|contract",
      "asOf": "2026-05-15T23:59:59Z",
      "status": "complete",
      "summary": "Contract signed · purchase pending. Credit describes this qualified opportunity under the selected policy; it does not establish causal lift.",
      "timeline": [
        {
          "id": "click-nonbrand",
          "at": "2026-04-03T10:00:00Z",
          "recordedAt": "2026-04-03T10:00:00Z",
          "label": "Nonbrand search ad clicked",
          "channelId": "search-nonbrand",
          "channelLabel": "Nonbrand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-nonbrand"
        },
        {
          "id": "click-brand",
          "at": "2026-04-08T11:00:00Z",
          "recordedAt": "2026-04-08T11:00:00Z",
          "label": "Brand search ad clicked",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-brand"
        },
        {
          "id": "call-1",
          "at": "2026-04-09T12:00:00Z",
          "recordedAt": "2026-04-09T12:00:00Z",
          "label": "Seller called the website number",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/call",
          "locator": "call-1"
        },
        {
          "id": "qualified-1",
          "at": "2026-04-09T15:00:00Z",
          "recordedAt": "2026-04-09T15:00:00Z",
          "label": "Seller-property opportunity qualified",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/qualified",
          "locator": "qualified-1"
        },
        {
          "id": "followup-11",
          "at": "2026-04-11T13:00:00Z",
          "recordedAt": "2026-04-11T13:00:00Z",
          "label": "Assessment appointment reminder",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "observed",
          "disposition": "excluded",
          "reason": "Sales follow-up after qualification; not a new acquisition source.",
          "sourceRef": "synthetic://cash-homebuyer/followup",
          "locator": "followup-11"
        },
        {
          "id": "followup-12",
          "at": "2026-04-12T13:00:00Z",
          "recordedAt": "2026-04-12T13:00:00Z",
          "label": "Acquisition team follow-up",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "observed",
          "disposition": "excluded",
          "reason": "Sales follow-up after qualification; not a new acquisition source.",
          "sourceRef": "synthetic://cash-homebuyer/followup",
          "locator": "followup-12"
        },
        {
          "id": "followup-13",
          "at": "2026-04-13T13:00:00Z",
          "recordedAt": "2026-04-13T13:00:00Z",
          "label": "Acquisition team follow-up",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "observed",
          "disposition": "excluded",
          "reason": "Sales follow-up after qualification; not a new acquisition source.",
          "sourceRef": "synthetic://cash-homebuyer/followup",
          "locator": "followup-13"
        },
        {
          "id": "followup-14",
          "at": "2026-04-14T13:00:00Z",
          "recordedAt": "2026-04-14T13:00:00Z",
          "label": "Acquisition team follow-up",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "observed",
          "disposition": "excluded",
          "reason": "Sales follow-up after qualification; not a new acquisition source.",
          "sourceRef": "synthetic://cash-homebuyer/followup",
          "locator": "followup-14"
        },
        {
          "id": "followup-15",
          "at": "2026-04-15T13:00:00Z",
          "recordedAt": "2026-04-15T13:00:00Z",
          "label": "Acquisition team follow-up",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "observed",
          "disposition": "excluded",
          "reason": "Sales follow-up after qualification; not a new acquisition source.",
          "sourceRef": "synthetic://cash-homebuyer/followup",
          "locator": "followup-15"
        },
        {
          "id": "followup-16",
          "at": "2026-04-16T13:00:00Z",
          "recordedAt": "2026-04-16T13:00:00Z",
          "label": "Acquisition team follow-up",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "observed",
          "disposition": "excluded",
          "reason": "Sales follow-up after qualification; not a new acquisition source.",
          "sourceRef": "synthetic://cash-homebuyer/followup",
          "locator": "followup-16"
        },
        {
          "id": "assessment-1",
          "at": "2026-04-18T14:00:00Z",
          "recordedAt": "2026-04-18T14:00:00Z",
          "label": "Property assessment completed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/assessment",
          "locator": "assessment-1"
        },
        {
          "id": "offer-1",
          "at": "2026-04-24T10:00:00Z",
          "recordedAt": "2026-04-24T10:00:00Z",
          "label": "Written purchase offer delivered",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/offer",
          "locator": "offer-1"
        },
        {
          "id": "contract-1",
          "at": "2026-05-02T12:00:00Z",
          "recordedAt": "2026-05-02T12:00:00Z",
          "label": "Acquisition contract signed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/contract",
          "locator": "contract-1"
        },
        {
          "id": "marketing-cost",
          "at": "2026-05-03T12:00:00Z",
          "recordedAt": "2026-05-03T12:00:00Z",
          "label": "Acquisition marketing cost allocated",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/cost",
          "locator": "marketing-cost"
        }
      ],
      "credit": [
        {
          "channelId": "search-brand",
          "label": "Brand paid search",
          "weight": 1,
          "percentage": 100,
          "touchIds": [
            "click-brand"
          ]
        }
      ],
      "outcome": {
        "qualifiedOpportunities": 1,
        "contracts": 1,
        "acquisitions": 0,
        "resales": 0,
        "canceled": false,
        "stage": "contract",
        "label": "Contract signed · purchase pending",
        "capitalDeployed": null,
        "resaleProceeds": null,
        "contributionBeforeMarketing": null,
        "marketingAllocation": 3000,
        "contributionAfterMarketing": null,
        "missingCosts": [
          "renovation",
          "holdingAndTransaction"
        ],
        "contributionStatus": "pending",
        "currency": "USD",
        "sourceIds": [
          "qualified-1",
          "contract-1",
          "marketing-cost"
        ]
      },
      "issues": [],
      "creditOutcome": "qualified_seller_property_opportunity",
      "eligibleTouchIds": [
        "click-brand",
        "click-nonbrand"
      ],
      "allocationStatus": "computed",
      "policyVersion": "cash-homebuyer.last.observed.v1",
      "propertyId": "property-104",
      "opportunityId": "acquisition-204",
      "sellerGroupId": "seller-group-14",
      "receiptHash": "844cb7c0f5105b885a3eb9727ace9b2afadb73f8e3573a2410d51de4686e851a"
    },
    {
      "key": "followup|observed|contract|linear",
      "scenarioId": "followup",
      "evidencePolicyId": "observed",
      "cutoffId": "contract",
      "policyId": "linear",
      "proofKey": "followup|observed|contract",
      "asOf": "2026-05-15T23:59:59Z",
      "status": "complete",
      "summary": "Contract signed · purchase pending. Credit describes this qualified opportunity under the selected policy; it does not establish causal lift.",
      "timeline": [
        {
          "id": "click-nonbrand",
          "at": "2026-04-03T10:00:00Z",
          "recordedAt": "2026-04-03T10:00:00Z",
          "label": "Nonbrand search ad clicked",
          "channelId": "search-nonbrand",
          "channelLabel": "Nonbrand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-nonbrand"
        },
        {
          "id": "click-brand",
          "at": "2026-04-08T11:00:00Z",
          "recordedAt": "2026-04-08T11:00:00Z",
          "label": "Brand search ad clicked",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-brand"
        },
        {
          "id": "call-1",
          "at": "2026-04-09T12:00:00Z",
          "recordedAt": "2026-04-09T12:00:00Z",
          "label": "Seller called the website number",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/call",
          "locator": "call-1"
        },
        {
          "id": "qualified-1",
          "at": "2026-04-09T15:00:00Z",
          "recordedAt": "2026-04-09T15:00:00Z",
          "label": "Seller-property opportunity qualified",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/qualified",
          "locator": "qualified-1"
        },
        {
          "id": "followup-11",
          "at": "2026-04-11T13:00:00Z",
          "recordedAt": "2026-04-11T13:00:00Z",
          "label": "Assessment appointment reminder",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "observed",
          "disposition": "excluded",
          "reason": "Sales follow-up after qualification; not a new acquisition source.",
          "sourceRef": "synthetic://cash-homebuyer/followup",
          "locator": "followup-11"
        },
        {
          "id": "followup-12",
          "at": "2026-04-12T13:00:00Z",
          "recordedAt": "2026-04-12T13:00:00Z",
          "label": "Acquisition team follow-up",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "observed",
          "disposition": "excluded",
          "reason": "Sales follow-up after qualification; not a new acquisition source.",
          "sourceRef": "synthetic://cash-homebuyer/followup",
          "locator": "followup-12"
        },
        {
          "id": "followup-13",
          "at": "2026-04-13T13:00:00Z",
          "recordedAt": "2026-04-13T13:00:00Z",
          "label": "Acquisition team follow-up",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "observed",
          "disposition": "excluded",
          "reason": "Sales follow-up after qualification; not a new acquisition source.",
          "sourceRef": "synthetic://cash-homebuyer/followup",
          "locator": "followup-13"
        },
        {
          "id": "followup-14",
          "at": "2026-04-14T13:00:00Z",
          "recordedAt": "2026-04-14T13:00:00Z",
          "label": "Acquisition team follow-up",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "observed",
          "disposition": "excluded",
          "reason": "Sales follow-up after qualification; not a new acquisition source.",
          "sourceRef": "synthetic://cash-homebuyer/followup",
          "locator": "followup-14"
        },
        {
          "id": "followup-15",
          "at": "2026-04-15T13:00:00Z",
          "recordedAt": "2026-04-15T13:00:00Z",
          "label": "Acquisition team follow-up",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "observed",
          "disposition": "excluded",
          "reason": "Sales follow-up after qualification; not a new acquisition source.",
          "sourceRef": "synthetic://cash-homebuyer/followup",
          "locator": "followup-15"
        },
        {
          "id": "followup-16",
          "at": "2026-04-16T13:00:00Z",
          "recordedAt": "2026-04-16T13:00:00Z",
          "label": "Acquisition team follow-up",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "observed",
          "disposition": "excluded",
          "reason": "Sales follow-up after qualification; not a new acquisition source.",
          "sourceRef": "synthetic://cash-homebuyer/followup",
          "locator": "followup-16"
        },
        {
          "id": "assessment-1",
          "at": "2026-04-18T14:00:00Z",
          "recordedAt": "2026-04-18T14:00:00Z",
          "label": "Property assessment completed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/assessment",
          "locator": "assessment-1"
        },
        {
          "id": "offer-1",
          "at": "2026-04-24T10:00:00Z",
          "recordedAt": "2026-04-24T10:00:00Z",
          "label": "Written purchase offer delivered",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/offer",
          "locator": "offer-1"
        },
        {
          "id": "contract-1",
          "at": "2026-05-02T12:00:00Z",
          "recordedAt": "2026-05-02T12:00:00Z",
          "label": "Acquisition contract signed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/contract",
          "locator": "contract-1"
        },
        {
          "id": "marketing-cost",
          "at": "2026-05-03T12:00:00Z",
          "recordedAt": "2026-05-03T12:00:00Z",
          "label": "Acquisition marketing cost allocated",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/cost",
          "locator": "marketing-cost"
        }
      ],
      "credit": [
        {
          "channelId": "search-nonbrand",
          "label": "Nonbrand paid search",
          "weight": 0.5,
          "percentage": 50,
          "touchIds": [
            "click-nonbrand"
          ]
        },
        {
          "channelId": "search-brand",
          "label": "Brand paid search",
          "weight": 0.5,
          "percentage": 50,
          "touchIds": [
            "click-brand"
          ]
        }
      ],
      "outcome": {
        "qualifiedOpportunities": 1,
        "contracts": 1,
        "acquisitions": 0,
        "resales": 0,
        "canceled": false,
        "stage": "contract",
        "label": "Contract signed · purchase pending",
        "capitalDeployed": null,
        "resaleProceeds": null,
        "contributionBeforeMarketing": null,
        "marketingAllocation": 3000,
        "contributionAfterMarketing": null,
        "missingCosts": [
          "renovation",
          "holdingAndTransaction"
        ],
        "contributionStatus": "pending",
        "currency": "USD",
        "sourceIds": [
          "qualified-1",
          "contract-1",
          "marketing-cost"
        ]
      },
      "issues": [],
      "creditOutcome": "qualified_seller_property_opportunity",
      "eligibleTouchIds": [
        "click-brand",
        "click-nonbrand"
      ],
      "allocationStatus": "computed",
      "policyVersion": "cash-homebuyer.linear.observed.v1",
      "propertyId": "property-104",
      "opportunityId": "acquisition-204",
      "sellerGroupId": "seller-group-14",
      "receiptHash": "ea1fc6a79d66bfd131d9526b64e33093c200766d5c210c4dd0a62646909c5341"
    },
    {
      "key": "followup|observed|acquired|first",
      "scenarioId": "followup",
      "evidencePolicyId": "observed",
      "cutoffId": "acquired",
      "policyId": "first",
      "proofKey": "followup|observed|acquired",
      "asOf": "2026-06-15T23:59:59Z",
      "status": "complete",
      "summary": "Purchase closed · resale pending. Credit describes this qualified opportunity under the selected policy; it does not establish causal lift.",
      "timeline": [
        {
          "id": "click-nonbrand",
          "at": "2026-04-03T10:00:00Z",
          "recordedAt": "2026-04-03T10:00:00Z",
          "label": "Nonbrand search ad clicked",
          "channelId": "search-nonbrand",
          "channelLabel": "Nonbrand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-nonbrand"
        },
        {
          "id": "click-brand",
          "at": "2026-04-08T11:00:00Z",
          "recordedAt": "2026-04-08T11:00:00Z",
          "label": "Brand search ad clicked",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-brand"
        },
        {
          "id": "call-1",
          "at": "2026-04-09T12:00:00Z",
          "recordedAt": "2026-04-09T12:00:00Z",
          "label": "Seller called the website number",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/call",
          "locator": "call-1"
        },
        {
          "id": "qualified-1",
          "at": "2026-04-09T15:00:00Z",
          "recordedAt": "2026-04-09T15:00:00Z",
          "label": "Seller-property opportunity qualified",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/qualified",
          "locator": "qualified-1"
        },
        {
          "id": "followup-11",
          "at": "2026-04-11T13:00:00Z",
          "recordedAt": "2026-04-11T13:00:00Z",
          "label": "Assessment appointment reminder",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "observed",
          "disposition": "excluded",
          "reason": "Sales follow-up after qualification; not a new acquisition source.",
          "sourceRef": "synthetic://cash-homebuyer/followup",
          "locator": "followup-11"
        },
        {
          "id": "followup-12",
          "at": "2026-04-12T13:00:00Z",
          "recordedAt": "2026-04-12T13:00:00Z",
          "label": "Acquisition team follow-up",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "observed",
          "disposition": "excluded",
          "reason": "Sales follow-up after qualification; not a new acquisition source.",
          "sourceRef": "synthetic://cash-homebuyer/followup",
          "locator": "followup-12"
        },
        {
          "id": "followup-13",
          "at": "2026-04-13T13:00:00Z",
          "recordedAt": "2026-04-13T13:00:00Z",
          "label": "Acquisition team follow-up",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "observed",
          "disposition": "excluded",
          "reason": "Sales follow-up after qualification; not a new acquisition source.",
          "sourceRef": "synthetic://cash-homebuyer/followup",
          "locator": "followup-13"
        },
        {
          "id": "followup-14",
          "at": "2026-04-14T13:00:00Z",
          "recordedAt": "2026-04-14T13:00:00Z",
          "label": "Acquisition team follow-up",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "observed",
          "disposition": "excluded",
          "reason": "Sales follow-up after qualification; not a new acquisition source.",
          "sourceRef": "synthetic://cash-homebuyer/followup",
          "locator": "followup-14"
        },
        {
          "id": "followup-15",
          "at": "2026-04-15T13:00:00Z",
          "recordedAt": "2026-04-15T13:00:00Z",
          "label": "Acquisition team follow-up",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "observed",
          "disposition": "excluded",
          "reason": "Sales follow-up after qualification; not a new acquisition source.",
          "sourceRef": "synthetic://cash-homebuyer/followup",
          "locator": "followup-15"
        },
        {
          "id": "followup-16",
          "at": "2026-04-16T13:00:00Z",
          "recordedAt": "2026-04-16T13:00:00Z",
          "label": "Acquisition team follow-up",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "observed",
          "disposition": "excluded",
          "reason": "Sales follow-up after qualification; not a new acquisition source.",
          "sourceRef": "synthetic://cash-homebuyer/followup",
          "locator": "followup-16"
        },
        {
          "id": "assessment-1",
          "at": "2026-04-18T14:00:00Z",
          "recordedAt": "2026-04-18T14:00:00Z",
          "label": "Property assessment completed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/assessment",
          "locator": "assessment-1"
        },
        {
          "id": "offer-1",
          "at": "2026-04-24T10:00:00Z",
          "recordedAt": "2026-04-24T10:00:00Z",
          "label": "Written purchase offer delivered",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/offer",
          "locator": "offer-1"
        },
        {
          "id": "contract-1",
          "at": "2026-05-02T12:00:00Z",
          "recordedAt": "2026-05-02T12:00:00Z",
          "label": "Acquisition contract signed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/contract",
          "locator": "contract-1"
        },
        {
          "id": "marketing-cost",
          "at": "2026-05-03T12:00:00Z",
          "recordedAt": "2026-05-03T12:00:00Z",
          "label": "Acquisition marketing cost allocated",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/cost",
          "locator": "marketing-cost"
        },
        {
          "id": "closing-1",
          "at": "2026-06-02T12:00:00Z",
          "recordedAt": "2026-06-02T12:00:00Z",
          "label": "Property purchase closed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/acquisition",
          "locator": "closing-1"
        }
      ],
      "credit": [
        {
          "channelId": "search-nonbrand",
          "label": "Nonbrand paid search",
          "weight": 1,
          "percentage": 100,
          "touchIds": [
            "click-nonbrand"
          ]
        }
      ],
      "outcome": {
        "qualifiedOpportunities": 1,
        "contracts": 1,
        "acquisitions": 1,
        "resales": 0,
        "canceled": false,
        "stage": "acquired",
        "label": "Purchase closed · resale pending",
        "capitalDeployed": 210000,
        "resaleProceeds": null,
        "contributionBeforeMarketing": null,
        "marketingAllocation": 3000,
        "contributionAfterMarketing": null,
        "missingCosts": [
          "renovation",
          "holdingAndTransaction"
        ],
        "contributionStatus": "pending",
        "currency": "USD",
        "sourceIds": [
          "qualified-1",
          "contract-1",
          "marketing-cost",
          "closing-1"
        ]
      },
      "issues": [],
      "creditOutcome": "qualified_seller_property_opportunity",
      "eligibleTouchIds": [
        "click-brand",
        "click-nonbrand"
      ],
      "allocationStatus": "computed",
      "policyVersion": "cash-homebuyer.first.observed.v1",
      "propertyId": "property-104",
      "opportunityId": "acquisition-204",
      "sellerGroupId": "seller-group-14",
      "receiptHash": "ef1a6e1ef42a3c7d68bc75f191c63e8ed141cd891b8b59ad5a99715766f01a82"
    },
    {
      "key": "followup|observed|acquired|last",
      "scenarioId": "followup",
      "evidencePolicyId": "observed",
      "cutoffId": "acquired",
      "policyId": "last",
      "proofKey": "followup|observed|acquired",
      "asOf": "2026-06-15T23:59:59Z",
      "status": "complete",
      "summary": "Purchase closed · resale pending. Credit describes this qualified opportunity under the selected policy; it does not establish causal lift.",
      "timeline": [
        {
          "id": "click-nonbrand",
          "at": "2026-04-03T10:00:00Z",
          "recordedAt": "2026-04-03T10:00:00Z",
          "label": "Nonbrand search ad clicked",
          "channelId": "search-nonbrand",
          "channelLabel": "Nonbrand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-nonbrand"
        },
        {
          "id": "click-brand",
          "at": "2026-04-08T11:00:00Z",
          "recordedAt": "2026-04-08T11:00:00Z",
          "label": "Brand search ad clicked",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-brand"
        },
        {
          "id": "call-1",
          "at": "2026-04-09T12:00:00Z",
          "recordedAt": "2026-04-09T12:00:00Z",
          "label": "Seller called the website number",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/call",
          "locator": "call-1"
        },
        {
          "id": "qualified-1",
          "at": "2026-04-09T15:00:00Z",
          "recordedAt": "2026-04-09T15:00:00Z",
          "label": "Seller-property opportunity qualified",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/qualified",
          "locator": "qualified-1"
        },
        {
          "id": "followup-11",
          "at": "2026-04-11T13:00:00Z",
          "recordedAt": "2026-04-11T13:00:00Z",
          "label": "Assessment appointment reminder",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "observed",
          "disposition": "excluded",
          "reason": "Sales follow-up after qualification; not a new acquisition source.",
          "sourceRef": "synthetic://cash-homebuyer/followup",
          "locator": "followup-11"
        },
        {
          "id": "followup-12",
          "at": "2026-04-12T13:00:00Z",
          "recordedAt": "2026-04-12T13:00:00Z",
          "label": "Acquisition team follow-up",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "observed",
          "disposition": "excluded",
          "reason": "Sales follow-up after qualification; not a new acquisition source.",
          "sourceRef": "synthetic://cash-homebuyer/followup",
          "locator": "followup-12"
        },
        {
          "id": "followup-13",
          "at": "2026-04-13T13:00:00Z",
          "recordedAt": "2026-04-13T13:00:00Z",
          "label": "Acquisition team follow-up",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "observed",
          "disposition": "excluded",
          "reason": "Sales follow-up after qualification; not a new acquisition source.",
          "sourceRef": "synthetic://cash-homebuyer/followup",
          "locator": "followup-13"
        },
        {
          "id": "followup-14",
          "at": "2026-04-14T13:00:00Z",
          "recordedAt": "2026-04-14T13:00:00Z",
          "label": "Acquisition team follow-up",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "observed",
          "disposition": "excluded",
          "reason": "Sales follow-up after qualification; not a new acquisition source.",
          "sourceRef": "synthetic://cash-homebuyer/followup",
          "locator": "followup-14"
        },
        {
          "id": "followup-15",
          "at": "2026-04-15T13:00:00Z",
          "recordedAt": "2026-04-15T13:00:00Z",
          "label": "Acquisition team follow-up",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "observed",
          "disposition": "excluded",
          "reason": "Sales follow-up after qualification; not a new acquisition source.",
          "sourceRef": "synthetic://cash-homebuyer/followup",
          "locator": "followup-15"
        },
        {
          "id": "followup-16",
          "at": "2026-04-16T13:00:00Z",
          "recordedAt": "2026-04-16T13:00:00Z",
          "label": "Acquisition team follow-up",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "observed",
          "disposition": "excluded",
          "reason": "Sales follow-up after qualification; not a new acquisition source.",
          "sourceRef": "synthetic://cash-homebuyer/followup",
          "locator": "followup-16"
        },
        {
          "id": "assessment-1",
          "at": "2026-04-18T14:00:00Z",
          "recordedAt": "2026-04-18T14:00:00Z",
          "label": "Property assessment completed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/assessment",
          "locator": "assessment-1"
        },
        {
          "id": "offer-1",
          "at": "2026-04-24T10:00:00Z",
          "recordedAt": "2026-04-24T10:00:00Z",
          "label": "Written purchase offer delivered",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/offer",
          "locator": "offer-1"
        },
        {
          "id": "contract-1",
          "at": "2026-05-02T12:00:00Z",
          "recordedAt": "2026-05-02T12:00:00Z",
          "label": "Acquisition contract signed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/contract",
          "locator": "contract-1"
        },
        {
          "id": "marketing-cost",
          "at": "2026-05-03T12:00:00Z",
          "recordedAt": "2026-05-03T12:00:00Z",
          "label": "Acquisition marketing cost allocated",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/cost",
          "locator": "marketing-cost"
        },
        {
          "id": "closing-1",
          "at": "2026-06-02T12:00:00Z",
          "recordedAt": "2026-06-02T12:00:00Z",
          "label": "Property purchase closed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/acquisition",
          "locator": "closing-1"
        }
      ],
      "credit": [
        {
          "channelId": "search-brand",
          "label": "Brand paid search",
          "weight": 1,
          "percentage": 100,
          "touchIds": [
            "click-brand"
          ]
        }
      ],
      "outcome": {
        "qualifiedOpportunities": 1,
        "contracts": 1,
        "acquisitions": 1,
        "resales": 0,
        "canceled": false,
        "stage": "acquired",
        "label": "Purchase closed · resale pending",
        "capitalDeployed": 210000,
        "resaleProceeds": null,
        "contributionBeforeMarketing": null,
        "marketingAllocation": 3000,
        "contributionAfterMarketing": null,
        "missingCosts": [
          "renovation",
          "holdingAndTransaction"
        ],
        "contributionStatus": "pending",
        "currency": "USD",
        "sourceIds": [
          "qualified-1",
          "contract-1",
          "marketing-cost",
          "closing-1"
        ]
      },
      "issues": [],
      "creditOutcome": "qualified_seller_property_opportunity",
      "eligibleTouchIds": [
        "click-brand",
        "click-nonbrand"
      ],
      "allocationStatus": "computed",
      "policyVersion": "cash-homebuyer.last.observed.v1",
      "propertyId": "property-104",
      "opportunityId": "acquisition-204",
      "sellerGroupId": "seller-group-14",
      "receiptHash": "5a87f770a4166badf0082da36bbbeb7d214776424197e772b6b2fc81ea5dee2e"
    },
    {
      "key": "followup|observed|acquired|linear",
      "scenarioId": "followup",
      "evidencePolicyId": "observed",
      "cutoffId": "acquired",
      "policyId": "linear",
      "proofKey": "followup|observed|acquired",
      "asOf": "2026-06-15T23:59:59Z",
      "status": "complete",
      "summary": "Purchase closed · resale pending. Credit describes this qualified opportunity under the selected policy; it does not establish causal lift.",
      "timeline": [
        {
          "id": "click-nonbrand",
          "at": "2026-04-03T10:00:00Z",
          "recordedAt": "2026-04-03T10:00:00Z",
          "label": "Nonbrand search ad clicked",
          "channelId": "search-nonbrand",
          "channelLabel": "Nonbrand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-nonbrand"
        },
        {
          "id": "click-brand",
          "at": "2026-04-08T11:00:00Z",
          "recordedAt": "2026-04-08T11:00:00Z",
          "label": "Brand search ad clicked",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-brand"
        },
        {
          "id": "call-1",
          "at": "2026-04-09T12:00:00Z",
          "recordedAt": "2026-04-09T12:00:00Z",
          "label": "Seller called the website number",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/call",
          "locator": "call-1"
        },
        {
          "id": "qualified-1",
          "at": "2026-04-09T15:00:00Z",
          "recordedAt": "2026-04-09T15:00:00Z",
          "label": "Seller-property opportunity qualified",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/qualified",
          "locator": "qualified-1"
        },
        {
          "id": "followup-11",
          "at": "2026-04-11T13:00:00Z",
          "recordedAt": "2026-04-11T13:00:00Z",
          "label": "Assessment appointment reminder",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "observed",
          "disposition": "excluded",
          "reason": "Sales follow-up after qualification; not a new acquisition source.",
          "sourceRef": "synthetic://cash-homebuyer/followup",
          "locator": "followup-11"
        },
        {
          "id": "followup-12",
          "at": "2026-04-12T13:00:00Z",
          "recordedAt": "2026-04-12T13:00:00Z",
          "label": "Acquisition team follow-up",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "observed",
          "disposition": "excluded",
          "reason": "Sales follow-up after qualification; not a new acquisition source.",
          "sourceRef": "synthetic://cash-homebuyer/followup",
          "locator": "followup-12"
        },
        {
          "id": "followup-13",
          "at": "2026-04-13T13:00:00Z",
          "recordedAt": "2026-04-13T13:00:00Z",
          "label": "Acquisition team follow-up",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "observed",
          "disposition": "excluded",
          "reason": "Sales follow-up after qualification; not a new acquisition source.",
          "sourceRef": "synthetic://cash-homebuyer/followup",
          "locator": "followup-13"
        },
        {
          "id": "followup-14",
          "at": "2026-04-14T13:00:00Z",
          "recordedAt": "2026-04-14T13:00:00Z",
          "label": "Acquisition team follow-up",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "observed",
          "disposition": "excluded",
          "reason": "Sales follow-up after qualification; not a new acquisition source.",
          "sourceRef": "synthetic://cash-homebuyer/followup",
          "locator": "followup-14"
        },
        {
          "id": "followup-15",
          "at": "2026-04-15T13:00:00Z",
          "recordedAt": "2026-04-15T13:00:00Z",
          "label": "Acquisition team follow-up",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "observed",
          "disposition": "excluded",
          "reason": "Sales follow-up after qualification; not a new acquisition source.",
          "sourceRef": "synthetic://cash-homebuyer/followup",
          "locator": "followup-15"
        },
        {
          "id": "followup-16",
          "at": "2026-04-16T13:00:00Z",
          "recordedAt": "2026-04-16T13:00:00Z",
          "label": "Acquisition team follow-up",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "observed",
          "disposition": "excluded",
          "reason": "Sales follow-up after qualification; not a new acquisition source.",
          "sourceRef": "synthetic://cash-homebuyer/followup",
          "locator": "followup-16"
        },
        {
          "id": "assessment-1",
          "at": "2026-04-18T14:00:00Z",
          "recordedAt": "2026-04-18T14:00:00Z",
          "label": "Property assessment completed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/assessment",
          "locator": "assessment-1"
        },
        {
          "id": "offer-1",
          "at": "2026-04-24T10:00:00Z",
          "recordedAt": "2026-04-24T10:00:00Z",
          "label": "Written purchase offer delivered",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/offer",
          "locator": "offer-1"
        },
        {
          "id": "contract-1",
          "at": "2026-05-02T12:00:00Z",
          "recordedAt": "2026-05-02T12:00:00Z",
          "label": "Acquisition contract signed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/contract",
          "locator": "contract-1"
        },
        {
          "id": "marketing-cost",
          "at": "2026-05-03T12:00:00Z",
          "recordedAt": "2026-05-03T12:00:00Z",
          "label": "Acquisition marketing cost allocated",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/cost",
          "locator": "marketing-cost"
        },
        {
          "id": "closing-1",
          "at": "2026-06-02T12:00:00Z",
          "recordedAt": "2026-06-02T12:00:00Z",
          "label": "Property purchase closed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/acquisition",
          "locator": "closing-1"
        }
      ],
      "credit": [
        {
          "channelId": "search-nonbrand",
          "label": "Nonbrand paid search",
          "weight": 0.5,
          "percentage": 50,
          "touchIds": [
            "click-nonbrand"
          ]
        },
        {
          "channelId": "search-brand",
          "label": "Brand paid search",
          "weight": 0.5,
          "percentage": 50,
          "touchIds": [
            "click-brand"
          ]
        }
      ],
      "outcome": {
        "qualifiedOpportunities": 1,
        "contracts": 1,
        "acquisitions": 1,
        "resales": 0,
        "canceled": false,
        "stage": "acquired",
        "label": "Purchase closed · resale pending",
        "capitalDeployed": 210000,
        "resaleProceeds": null,
        "contributionBeforeMarketing": null,
        "marketingAllocation": 3000,
        "contributionAfterMarketing": null,
        "missingCosts": [
          "renovation",
          "holdingAndTransaction"
        ],
        "contributionStatus": "pending",
        "currency": "USD",
        "sourceIds": [
          "qualified-1",
          "contract-1",
          "marketing-cost",
          "closing-1"
        ]
      },
      "issues": [],
      "creditOutcome": "qualified_seller_property_opportunity",
      "eligibleTouchIds": [
        "click-brand",
        "click-nonbrand"
      ],
      "allocationStatus": "computed",
      "policyVersion": "cash-homebuyer.linear.observed.v1",
      "propertyId": "property-104",
      "opportunityId": "acquisition-204",
      "sellerGroupId": "seller-group-14",
      "receiptHash": "5c5cbced749174ce2362f94d29fb5e49c06149076fdc1f490ce063af2d9dde28"
    },
    {
      "key": "followup|observed|resale|first",
      "scenarioId": "followup",
      "evidencePolicyId": "observed",
      "cutoffId": "resale",
      "policyId": "first",
      "proofKey": "followup|observed|resale",
      "asOf": "2026-09-15T23:59:59Z",
      "status": "complete",
      "summary": "Resale and costs reconciled. Credit describes this qualified opportunity under the selected policy; it does not establish causal lift.",
      "timeline": [
        {
          "id": "click-nonbrand",
          "at": "2026-04-03T10:00:00Z",
          "recordedAt": "2026-04-03T10:00:00Z",
          "label": "Nonbrand search ad clicked",
          "channelId": "search-nonbrand",
          "channelLabel": "Nonbrand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-nonbrand"
        },
        {
          "id": "click-brand",
          "at": "2026-04-08T11:00:00Z",
          "recordedAt": "2026-04-08T11:00:00Z",
          "label": "Brand search ad clicked",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-brand"
        },
        {
          "id": "call-1",
          "at": "2026-04-09T12:00:00Z",
          "recordedAt": "2026-04-09T12:00:00Z",
          "label": "Seller called the website number",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/call",
          "locator": "call-1"
        },
        {
          "id": "qualified-1",
          "at": "2026-04-09T15:00:00Z",
          "recordedAt": "2026-04-09T15:00:00Z",
          "label": "Seller-property opportunity qualified",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/qualified",
          "locator": "qualified-1"
        },
        {
          "id": "followup-11",
          "at": "2026-04-11T13:00:00Z",
          "recordedAt": "2026-04-11T13:00:00Z",
          "label": "Assessment appointment reminder",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "observed",
          "disposition": "excluded",
          "reason": "Sales follow-up after qualification; not a new acquisition source.",
          "sourceRef": "synthetic://cash-homebuyer/followup",
          "locator": "followup-11"
        },
        {
          "id": "followup-12",
          "at": "2026-04-12T13:00:00Z",
          "recordedAt": "2026-04-12T13:00:00Z",
          "label": "Acquisition team follow-up",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "observed",
          "disposition": "excluded",
          "reason": "Sales follow-up after qualification; not a new acquisition source.",
          "sourceRef": "synthetic://cash-homebuyer/followup",
          "locator": "followup-12"
        },
        {
          "id": "followup-13",
          "at": "2026-04-13T13:00:00Z",
          "recordedAt": "2026-04-13T13:00:00Z",
          "label": "Acquisition team follow-up",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "observed",
          "disposition": "excluded",
          "reason": "Sales follow-up after qualification; not a new acquisition source.",
          "sourceRef": "synthetic://cash-homebuyer/followup",
          "locator": "followup-13"
        },
        {
          "id": "followup-14",
          "at": "2026-04-14T13:00:00Z",
          "recordedAt": "2026-04-14T13:00:00Z",
          "label": "Acquisition team follow-up",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "observed",
          "disposition": "excluded",
          "reason": "Sales follow-up after qualification; not a new acquisition source.",
          "sourceRef": "synthetic://cash-homebuyer/followup",
          "locator": "followup-14"
        },
        {
          "id": "followup-15",
          "at": "2026-04-15T13:00:00Z",
          "recordedAt": "2026-04-15T13:00:00Z",
          "label": "Acquisition team follow-up",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "observed",
          "disposition": "excluded",
          "reason": "Sales follow-up after qualification; not a new acquisition source.",
          "sourceRef": "synthetic://cash-homebuyer/followup",
          "locator": "followup-15"
        },
        {
          "id": "followup-16",
          "at": "2026-04-16T13:00:00Z",
          "recordedAt": "2026-04-16T13:00:00Z",
          "label": "Acquisition team follow-up",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "observed",
          "disposition": "excluded",
          "reason": "Sales follow-up after qualification; not a new acquisition source.",
          "sourceRef": "synthetic://cash-homebuyer/followup",
          "locator": "followup-16"
        },
        {
          "id": "assessment-1",
          "at": "2026-04-18T14:00:00Z",
          "recordedAt": "2026-04-18T14:00:00Z",
          "label": "Property assessment completed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/assessment",
          "locator": "assessment-1"
        },
        {
          "id": "offer-1",
          "at": "2026-04-24T10:00:00Z",
          "recordedAt": "2026-04-24T10:00:00Z",
          "label": "Written purchase offer delivered",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/offer",
          "locator": "offer-1"
        },
        {
          "id": "contract-1",
          "at": "2026-05-02T12:00:00Z",
          "recordedAt": "2026-05-02T12:00:00Z",
          "label": "Acquisition contract signed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/contract",
          "locator": "contract-1"
        },
        {
          "id": "marketing-cost",
          "at": "2026-05-03T12:00:00Z",
          "recordedAt": "2026-05-03T12:00:00Z",
          "label": "Acquisition marketing cost allocated",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/cost",
          "locator": "marketing-cost"
        },
        {
          "id": "closing-1",
          "at": "2026-06-02T12:00:00Z",
          "recordedAt": "2026-06-02T12:00:00Z",
          "label": "Property purchase closed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/acquisition",
          "locator": "closing-1"
        },
        {
          "id": "renovation-cost",
          "at": "2026-07-10T12:00:00Z",
          "recordedAt": "2026-07-10T12:00:00Z",
          "label": "Renovation costs reconciled",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/cost",
          "locator": "renovation-cost"
        },
        {
          "id": "resale-1",
          "at": "2026-09-03T12:00:00Z",
          "recordedAt": "2026-09-03T12:00:00Z",
          "label": "Resale proceeds recorded",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/resale",
          "locator": "resale-1"
        },
        {
          "id": "holding-cost",
          "at": "2026-09-05T12:00:00Z",
          "recordedAt": "2026-09-05T12:00:00Z",
          "label": "Holding, financing and transaction costs reconciled",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/cost",
          "locator": "holding-cost"
        }
      ],
      "credit": [
        {
          "channelId": "search-nonbrand",
          "label": "Nonbrand paid search",
          "weight": 1,
          "percentage": 100,
          "touchIds": [
            "click-nonbrand"
          ]
        }
      ],
      "outcome": {
        "qualifiedOpportunities": 1,
        "contracts": 1,
        "acquisitions": 1,
        "resales": 1,
        "canceled": false,
        "stage": "resold",
        "label": "Resale and costs reconciled",
        "capitalDeployed": 210000,
        "resaleProceeds": 295000,
        "contributionBeforeMarketing": 27000,
        "marketingAllocation": 3000,
        "contributionAfterMarketing": 24000,
        "missingCosts": [],
        "contributionStatus": "realized",
        "currency": "USD",
        "sourceIds": [
          "qualified-1",
          "contract-1",
          "marketing-cost",
          "closing-1",
          "renovation-cost",
          "resale-1",
          "holding-cost"
        ]
      },
      "issues": [],
      "creditOutcome": "qualified_seller_property_opportunity",
      "eligibleTouchIds": [
        "click-brand",
        "click-nonbrand"
      ],
      "allocationStatus": "computed",
      "policyVersion": "cash-homebuyer.first.observed.v1",
      "propertyId": "property-104",
      "opportunityId": "acquisition-204",
      "sellerGroupId": "seller-group-14",
      "receiptHash": "be09df9da8ba01ca086a7da6bc27e32cff6634d547f4b18db92fcfd98b471603"
    },
    {
      "key": "followup|observed|resale|last",
      "scenarioId": "followup",
      "evidencePolicyId": "observed",
      "cutoffId": "resale",
      "policyId": "last",
      "proofKey": "followup|observed|resale",
      "asOf": "2026-09-15T23:59:59Z",
      "status": "complete",
      "summary": "Resale and costs reconciled. Credit describes this qualified opportunity under the selected policy; it does not establish causal lift.",
      "timeline": [
        {
          "id": "click-nonbrand",
          "at": "2026-04-03T10:00:00Z",
          "recordedAt": "2026-04-03T10:00:00Z",
          "label": "Nonbrand search ad clicked",
          "channelId": "search-nonbrand",
          "channelLabel": "Nonbrand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-nonbrand"
        },
        {
          "id": "click-brand",
          "at": "2026-04-08T11:00:00Z",
          "recordedAt": "2026-04-08T11:00:00Z",
          "label": "Brand search ad clicked",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-brand"
        },
        {
          "id": "call-1",
          "at": "2026-04-09T12:00:00Z",
          "recordedAt": "2026-04-09T12:00:00Z",
          "label": "Seller called the website number",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/call",
          "locator": "call-1"
        },
        {
          "id": "qualified-1",
          "at": "2026-04-09T15:00:00Z",
          "recordedAt": "2026-04-09T15:00:00Z",
          "label": "Seller-property opportunity qualified",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/qualified",
          "locator": "qualified-1"
        },
        {
          "id": "followup-11",
          "at": "2026-04-11T13:00:00Z",
          "recordedAt": "2026-04-11T13:00:00Z",
          "label": "Assessment appointment reminder",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "observed",
          "disposition": "excluded",
          "reason": "Sales follow-up after qualification; not a new acquisition source.",
          "sourceRef": "synthetic://cash-homebuyer/followup",
          "locator": "followup-11"
        },
        {
          "id": "followup-12",
          "at": "2026-04-12T13:00:00Z",
          "recordedAt": "2026-04-12T13:00:00Z",
          "label": "Acquisition team follow-up",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "observed",
          "disposition": "excluded",
          "reason": "Sales follow-up after qualification; not a new acquisition source.",
          "sourceRef": "synthetic://cash-homebuyer/followup",
          "locator": "followup-12"
        },
        {
          "id": "followup-13",
          "at": "2026-04-13T13:00:00Z",
          "recordedAt": "2026-04-13T13:00:00Z",
          "label": "Acquisition team follow-up",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "observed",
          "disposition": "excluded",
          "reason": "Sales follow-up after qualification; not a new acquisition source.",
          "sourceRef": "synthetic://cash-homebuyer/followup",
          "locator": "followup-13"
        },
        {
          "id": "followup-14",
          "at": "2026-04-14T13:00:00Z",
          "recordedAt": "2026-04-14T13:00:00Z",
          "label": "Acquisition team follow-up",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "observed",
          "disposition": "excluded",
          "reason": "Sales follow-up after qualification; not a new acquisition source.",
          "sourceRef": "synthetic://cash-homebuyer/followup",
          "locator": "followup-14"
        },
        {
          "id": "followup-15",
          "at": "2026-04-15T13:00:00Z",
          "recordedAt": "2026-04-15T13:00:00Z",
          "label": "Acquisition team follow-up",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "observed",
          "disposition": "excluded",
          "reason": "Sales follow-up after qualification; not a new acquisition source.",
          "sourceRef": "synthetic://cash-homebuyer/followup",
          "locator": "followup-15"
        },
        {
          "id": "followup-16",
          "at": "2026-04-16T13:00:00Z",
          "recordedAt": "2026-04-16T13:00:00Z",
          "label": "Acquisition team follow-up",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "observed",
          "disposition": "excluded",
          "reason": "Sales follow-up after qualification; not a new acquisition source.",
          "sourceRef": "synthetic://cash-homebuyer/followup",
          "locator": "followup-16"
        },
        {
          "id": "assessment-1",
          "at": "2026-04-18T14:00:00Z",
          "recordedAt": "2026-04-18T14:00:00Z",
          "label": "Property assessment completed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/assessment",
          "locator": "assessment-1"
        },
        {
          "id": "offer-1",
          "at": "2026-04-24T10:00:00Z",
          "recordedAt": "2026-04-24T10:00:00Z",
          "label": "Written purchase offer delivered",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/offer",
          "locator": "offer-1"
        },
        {
          "id": "contract-1",
          "at": "2026-05-02T12:00:00Z",
          "recordedAt": "2026-05-02T12:00:00Z",
          "label": "Acquisition contract signed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/contract",
          "locator": "contract-1"
        },
        {
          "id": "marketing-cost",
          "at": "2026-05-03T12:00:00Z",
          "recordedAt": "2026-05-03T12:00:00Z",
          "label": "Acquisition marketing cost allocated",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/cost",
          "locator": "marketing-cost"
        },
        {
          "id": "closing-1",
          "at": "2026-06-02T12:00:00Z",
          "recordedAt": "2026-06-02T12:00:00Z",
          "label": "Property purchase closed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/acquisition",
          "locator": "closing-1"
        },
        {
          "id": "renovation-cost",
          "at": "2026-07-10T12:00:00Z",
          "recordedAt": "2026-07-10T12:00:00Z",
          "label": "Renovation costs reconciled",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/cost",
          "locator": "renovation-cost"
        },
        {
          "id": "resale-1",
          "at": "2026-09-03T12:00:00Z",
          "recordedAt": "2026-09-03T12:00:00Z",
          "label": "Resale proceeds recorded",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/resale",
          "locator": "resale-1"
        },
        {
          "id": "holding-cost",
          "at": "2026-09-05T12:00:00Z",
          "recordedAt": "2026-09-05T12:00:00Z",
          "label": "Holding, financing and transaction costs reconciled",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/cost",
          "locator": "holding-cost"
        }
      ],
      "credit": [
        {
          "channelId": "search-brand",
          "label": "Brand paid search",
          "weight": 1,
          "percentage": 100,
          "touchIds": [
            "click-brand"
          ]
        }
      ],
      "outcome": {
        "qualifiedOpportunities": 1,
        "contracts": 1,
        "acquisitions": 1,
        "resales": 1,
        "canceled": false,
        "stage": "resold",
        "label": "Resale and costs reconciled",
        "capitalDeployed": 210000,
        "resaleProceeds": 295000,
        "contributionBeforeMarketing": 27000,
        "marketingAllocation": 3000,
        "contributionAfterMarketing": 24000,
        "missingCosts": [],
        "contributionStatus": "realized",
        "currency": "USD",
        "sourceIds": [
          "qualified-1",
          "contract-1",
          "marketing-cost",
          "closing-1",
          "renovation-cost",
          "resale-1",
          "holding-cost"
        ]
      },
      "issues": [],
      "creditOutcome": "qualified_seller_property_opportunity",
      "eligibleTouchIds": [
        "click-brand",
        "click-nonbrand"
      ],
      "allocationStatus": "computed",
      "policyVersion": "cash-homebuyer.last.observed.v1",
      "propertyId": "property-104",
      "opportunityId": "acquisition-204",
      "sellerGroupId": "seller-group-14",
      "receiptHash": "302968ea200644f98748cc2e319dbd71217fa77953ef1ad34e4c87271c084b91"
    },
    {
      "key": "followup|observed|resale|linear",
      "scenarioId": "followup",
      "evidencePolicyId": "observed",
      "cutoffId": "resale",
      "policyId": "linear",
      "proofKey": "followup|observed|resale",
      "asOf": "2026-09-15T23:59:59Z",
      "status": "complete",
      "summary": "Resale and costs reconciled. Credit describes this qualified opportunity under the selected policy; it does not establish causal lift.",
      "timeline": [
        {
          "id": "click-nonbrand",
          "at": "2026-04-03T10:00:00Z",
          "recordedAt": "2026-04-03T10:00:00Z",
          "label": "Nonbrand search ad clicked",
          "channelId": "search-nonbrand",
          "channelLabel": "Nonbrand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-nonbrand"
        },
        {
          "id": "click-brand",
          "at": "2026-04-08T11:00:00Z",
          "recordedAt": "2026-04-08T11:00:00Z",
          "label": "Brand search ad clicked",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-brand"
        },
        {
          "id": "call-1",
          "at": "2026-04-09T12:00:00Z",
          "recordedAt": "2026-04-09T12:00:00Z",
          "label": "Seller called the website number",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/call",
          "locator": "call-1"
        },
        {
          "id": "qualified-1",
          "at": "2026-04-09T15:00:00Z",
          "recordedAt": "2026-04-09T15:00:00Z",
          "label": "Seller-property opportunity qualified",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/qualified",
          "locator": "qualified-1"
        },
        {
          "id": "followup-11",
          "at": "2026-04-11T13:00:00Z",
          "recordedAt": "2026-04-11T13:00:00Z",
          "label": "Assessment appointment reminder",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "observed",
          "disposition": "excluded",
          "reason": "Sales follow-up after qualification; not a new acquisition source.",
          "sourceRef": "synthetic://cash-homebuyer/followup",
          "locator": "followup-11"
        },
        {
          "id": "followup-12",
          "at": "2026-04-12T13:00:00Z",
          "recordedAt": "2026-04-12T13:00:00Z",
          "label": "Acquisition team follow-up",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "observed",
          "disposition": "excluded",
          "reason": "Sales follow-up after qualification; not a new acquisition source.",
          "sourceRef": "synthetic://cash-homebuyer/followup",
          "locator": "followup-12"
        },
        {
          "id": "followup-13",
          "at": "2026-04-13T13:00:00Z",
          "recordedAt": "2026-04-13T13:00:00Z",
          "label": "Acquisition team follow-up",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "observed",
          "disposition": "excluded",
          "reason": "Sales follow-up after qualification; not a new acquisition source.",
          "sourceRef": "synthetic://cash-homebuyer/followup",
          "locator": "followup-13"
        },
        {
          "id": "followup-14",
          "at": "2026-04-14T13:00:00Z",
          "recordedAt": "2026-04-14T13:00:00Z",
          "label": "Acquisition team follow-up",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "observed",
          "disposition": "excluded",
          "reason": "Sales follow-up after qualification; not a new acquisition source.",
          "sourceRef": "synthetic://cash-homebuyer/followup",
          "locator": "followup-14"
        },
        {
          "id": "followup-15",
          "at": "2026-04-15T13:00:00Z",
          "recordedAt": "2026-04-15T13:00:00Z",
          "label": "Acquisition team follow-up",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "observed",
          "disposition": "excluded",
          "reason": "Sales follow-up after qualification; not a new acquisition source.",
          "sourceRef": "synthetic://cash-homebuyer/followup",
          "locator": "followup-15"
        },
        {
          "id": "followup-16",
          "at": "2026-04-16T13:00:00Z",
          "recordedAt": "2026-04-16T13:00:00Z",
          "label": "Acquisition team follow-up",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "observed",
          "disposition": "excluded",
          "reason": "Sales follow-up after qualification; not a new acquisition source.",
          "sourceRef": "synthetic://cash-homebuyer/followup",
          "locator": "followup-16"
        },
        {
          "id": "assessment-1",
          "at": "2026-04-18T14:00:00Z",
          "recordedAt": "2026-04-18T14:00:00Z",
          "label": "Property assessment completed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/assessment",
          "locator": "assessment-1"
        },
        {
          "id": "offer-1",
          "at": "2026-04-24T10:00:00Z",
          "recordedAt": "2026-04-24T10:00:00Z",
          "label": "Written purchase offer delivered",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/offer",
          "locator": "offer-1"
        },
        {
          "id": "contract-1",
          "at": "2026-05-02T12:00:00Z",
          "recordedAt": "2026-05-02T12:00:00Z",
          "label": "Acquisition contract signed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/contract",
          "locator": "contract-1"
        },
        {
          "id": "marketing-cost",
          "at": "2026-05-03T12:00:00Z",
          "recordedAt": "2026-05-03T12:00:00Z",
          "label": "Acquisition marketing cost allocated",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/cost",
          "locator": "marketing-cost"
        },
        {
          "id": "closing-1",
          "at": "2026-06-02T12:00:00Z",
          "recordedAt": "2026-06-02T12:00:00Z",
          "label": "Property purchase closed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/acquisition",
          "locator": "closing-1"
        },
        {
          "id": "renovation-cost",
          "at": "2026-07-10T12:00:00Z",
          "recordedAt": "2026-07-10T12:00:00Z",
          "label": "Renovation costs reconciled",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/cost",
          "locator": "renovation-cost"
        },
        {
          "id": "resale-1",
          "at": "2026-09-03T12:00:00Z",
          "recordedAt": "2026-09-03T12:00:00Z",
          "label": "Resale proceeds recorded",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/resale",
          "locator": "resale-1"
        },
        {
          "id": "holding-cost",
          "at": "2026-09-05T12:00:00Z",
          "recordedAt": "2026-09-05T12:00:00Z",
          "label": "Holding, financing and transaction costs reconciled",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/cost",
          "locator": "holding-cost"
        }
      ],
      "credit": [
        {
          "channelId": "search-nonbrand",
          "label": "Nonbrand paid search",
          "weight": 0.5,
          "percentage": 50,
          "touchIds": [
            "click-nonbrand"
          ]
        },
        {
          "channelId": "search-brand",
          "label": "Brand paid search",
          "weight": 0.5,
          "percentage": 50,
          "touchIds": [
            "click-brand"
          ]
        }
      ],
      "outcome": {
        "qualifiedOpportunities": 1,
        "contracts": 1,
        "acquisitions": 1,
        "resales": 1,
        "canceled": false,
        "stage": "resold",
        "label": "Resale and costs reconciled",
        "capitalDeployed": 210000,
        "resaleProceeds": 295000,
        "contributionBeforeMarketing": 27000,
        "marketingAllocation": 3000,
        "contributionAfterMarketing": 24000,
        "missingCosts": [],
        "contributionStatus": "realized",
        "currency": "USD",
        "sourceIds": [
          "qualified-1",
          "contract-1",
          "marketing-cost",
          "closing-1",
          "renovation-cost",
          "resale-1",
          "holding-cost"
        ]
      },
      "issues": [],
      "creditOutcome": "qualified_seller_property_opportunity",
      "eligibleTouchIds": [
        "click-brand",
        "click-nonbrand"
      ],
      "allocationStatus": "computed",
      "policyVersion": "cash-homebuyer.linear.observed.v1",
      "propertyId": "property-104",
      "opportunityId": "acquisition-204",
      "sellerGroupId": "seller-group-14",
      "receiptHash": "70ff10d13c538c03170d0cb0a2739098ae083128e9ddc3091fffef3c252d1e70"
    },
    {
      "key": "followup|reported|contract|first",
      "scenarioId": "followup",
      "evidencePolicyId": "reported",
      "cutoffId": "contract",
      "policyId": "first",
      "proofKey": "followup|reported|contract",
      "asOf": "2026-05-15T23:59:59Z",
      "status": "complete",
      "summary": "Contract signed · purchase pending. Credit describes this qualified opportunity under the selected policy; it does not establish causal lift.",
      "timeline": [
        {
          "id": "click-nonbrand",
          "at": "2026-04-03T10:00:00Z",
          "recordedAt": "2026-04-03T10:00:00Z",
          "label": "Nonbrand search ad clicked",
          "channelId": "search-nonbrand",
          "channelLabel": "Nonbrand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-nonbrand"
        },
        {
          "id": "click-brand",
          "at": "2026-04-08T11:00:00Z",
          "recordedAt": "2026-04-08T11:00:00Z",
          "label": "Brand search ad clicked",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-brand"
        },
        {
          "id": "call-1",
          "at": "2026-04-09T12:00:00Z",
          "recordedAt": "2026-04-09T12:00:00Z",
          "label": "Seller called the website number",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/call",
          "locator": "call-1"
        },
        {
          "id": "qualified-1",
          "at": "2026-04-09T15:00:00Z",
          "recordedAt": "2026-04-09T15:00:00Z",
          "label": "Seller-property opportunity qualified",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/qualified",
          "locator": "qualified-1"
        },
        {
          "id": "followup-11",
          "at": "2026-04-11T13:00:00Z",
          "recordedAt": "2026-04-11T13:00:00Z",
          "label": "Assessment appointment reminder",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "observed",
          "disposition": "excluded",
          "reason": "Sales follow-up after qualification; not a new acquisition source.",
          "sourceRef": "synthetic://cash-homebuyer/followup",
          "locator": "followup-11"
        },
        {
          "id": "followup-12",
          "at": "2026-04-12T13:00:00Z",
          "recordedAt": "2026-04-12T13:00:00Z",
          "label": "Acquisition team follow-up",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "observed",
          "disposition": "excluded",
          "reason": "Sales follow-up after qualification; not a new acquisition source.",
          "sourceRef": "synthetic://cash-homebuyer/followup",
          "locator": "followup-12"
        },
        {
          "id": "followup-13",
          "at": "2026-04-13T13:00:00Z",
          "recordedAt": "2026-04-13T13:00:00Z",
          "label": "Acquisition team follow-up",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "observed",
          "disposition": "excluded",
          "reason": "Sales follow-up after qualification; not a new acquisition source.",
          "sourceRef": "synthetic://cash-homebuyer/followup",
          "locator": "followup-13"
        },
        {
          "id": "followup-14",
          "at": "2026-04-14T13:00:00Z",
          "recordedAt": "2026-04-14T13:00:00Z",
          "label": "Acquisition team follow-up",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "observed",
          "disposition": "excluded",
          "reason": "Sales follow-up after qualification; not a new acquisition source.",
          "sourceRef": "synthetic://cash-homebuyer/followup",
          "locator": "followup-14"
        },
        {
          "id": "followup-15",
          "at": "2026-04-15T13:00:00Z",
          "recordedAt": "2026-04-15T13:00:00Z",
          "label": "Acquisition team follow-up",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "observed",
          "disposition": "excluded",
          "reason": "Sales follow-up after qualification; not a new acquisition source.",
          "sourceRef": "synthetic://cash-homebuyer/followup",
          "locator": "followup-15"
        },
        {
          "id": "followup-16",
          "at": "2026-04-16T13:00:00Z",
          "recordedAt": "2026-04-16T13:00:00Z",
          "label": "Acquisition team follow-up",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "observed",
          "disposition": "excluded",
          "reason": "Sales follow-up after qualification; not a new acquisition source.",
          "sourceRef": "synthetic://cash-homebuyer/followup",
          "locator": "followup-16"
        },
        {
          "id": "assessment-1",
          "at": "2026-04-18T14:00:00Z",
          "recordedAt": "2026-04-18T14:00:00Z",
          "label": "Property assessment completed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/assessment",
          "locator": "assessment-1"
        },
        {
          "id": "offer-1",
          "at": "2026-04-24T10:00:00Z",
          "recordedAt": "2026-04-24T10:00:00Z",
          "label": "Written purchase offer delivered",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/offer",
          "locator": "offer-1"
        },
        {
          "id": "contract-1",
          "at": "2026-05-02T12:00:00Z",
          "recordedAt": "2026-05-02T12:00:00Z",
          "label": "Acquisition contract signed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/contract",
          "locator": "contract-1"
        },
        {
          "id": "marketing-cost",
          "at": "2026-05-03T12:00:00Z",
          "recordedAt": "2026-05-03T12:00:00Z",
          "label": "Acquisition marketing cost allocated",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/cost",
          "locator": "marketing-cost"
        }
      ],
      "credit": [
        {
          "channelId": "search-nonbrand",
          "label": "Nonbrand paid search",
          "weight": 1,
          "percentage": 100,
          "touchIds": [
            "click-nonbrand"
          ]
        }
      ],
      "outcome": {
        "qualifiedOpportunities": 1,
        "contracts": 1,
        "acquisitions": 0,
        "resales": 0,
        "canceled": false,
        "stage": "contract",
        "label": "Contract signed · purchase pending",
        "capitalDeployed": null,
        "resaleProceeds": null,
        "contributionBeforeMarketing": null,
        "marketingAllocation": 3000,
        "contributionAfterMarketing": null,
        "missingCosts": [
          "renovation",
          "holdingAndTransaction"
        ],
        "contributionStatus": "pending",
        "currency": "USD",
        "sourceIds": [
          "qualified-1",
          "contract-1",
          "marketing-cost"
        ]
      },
      "issues": [],
      "creditOutcome": "qualified_seller_property_opportunity",
      "eligibleTouchIds": [
        "click-brand",
        "click-nonbrand"
      ],
      "allocationStatus": "computed",
      "policyVersion": "cash-homebuyer.first.reported.v1",
      "propertyId": "property-104",
      "opportunityId": "acquisition-204",
      "sellerGroupId": "seller-group-14",
      "receiptHash": "62c862a54139dd0dca8e9e7ab4b148bfcfc876b9c8d79f21aec4d34acb02ab82"
    },
    {
      "key": "followup|reported|contract|last",
      "scenarioId": "followup",
      "evidencePolicyId": "reported",
      "cutoffId": "contract",
      "policyId": "last",
      "proofKey": "followup|reported|contract",
      "asOf": "2026-05-15T23:59:59Z",
      "status": "complete",
      "summary": "Contract signed · purchase pending. Credit describes this qualified opportunity under the selected policy; it does not establish causal lift.",
      "timeline": [
        {
          "id": "click-nonbrand",
          "at": "2026-04-03T10:00:00Z",
          "recordedAt": "2026-04-03T10:00:00Z",
          "label": "Nonbrand search ad clicked",
          "channelId": "search-nonbrand",
          "channelLabel": "Nonbrand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-nonbrand"
        },
        {
          "id": "click-brand",
          "at": "2026-04-08T11:00:00Z",
          "recordedAt": "2026-04-08T11:00:00Z",
          "label": "Brand search ad clicked",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-brand"
        },
        {
          "id": "call-1",
          "at": "2026-04-09T12:00:00Z",
          "recordedAt": "2026-04-09T12:00:00Z",
          "label": "Seller called the website number",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/call",
          "locator": "call-1"
        },
        {
          "id": "qualified-1",
          "at": "2026-04-09T15:00:00Z",
          "recordedAt": "2026-04-09T15:00:00Z",
          "label": "Seller-property opportunity qualified",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/qualified",
          "locator": "qualified-1"
        },
        {
          "id": "followup-11",
          "at": "2026-04-11T13:00:00Z",
          "recordedAt": "2026-04-11T13:00:00Z",
          "label": "Assessment appointment reminder",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "observed",
          "disposition": "excluded",
          "reason": "Sales follow-up after qualification; not a new acquisition source.",
          "sourceRef": "synthetic://cash-homebuyer/followup",
          "locator": "followup-11"
        },
        {
          "id": "followup-12",
          "at": "2026-04-12T13:00:00Z",
          "recordedAt": "2026-04-12T13:00:00Z",
          "label": "Acquisition team follow-up",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "observed",
          "disposition": "excluded",
          "reason": "Sales follow-up after qualification; not a new acquisition source.",
          "sourceRef": "synthetic://cash-homebuyer/followup",
          "locator": "followup-12"
        },
        {
          "id": "followup-13",
          "at": "2026-04-13T13:00:00Z",
          "recordedAt": "2026-04-13T13:00:00Z",
          "label": "Acquisition team follow-up",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "observed",
          "disposition": "excluded",
          "reason": "Sales follow-up after qualification; not a new acquisition source.",
          "sourceRef": "synthetic://cash-homebuyer/followup",
          "locator": "followup-13"
        },
        {
          "id": "followup-14",
          "at": "2026-04-14T13:00:00Z",
          "recordedAt": "2026-04-14T13:00:00Z",
          "label": "Acquisition team follow-up",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "observed",
          "disposition": "excluded",
          "reason": "Sales follow-up after qualification; not a new acquisition source.",
          "sourceRef": "synthetic://cash-homebuyer/followup",
          "locator": "followup-14"
        },
        {
          "id": "followup-15",
          "at": "2026-04-15T13:00:00Z",
          "recordedAt": "2026-04-15T13:00:00Z",
          "label": "Acquisition team follow-up",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "observed",
          "disposition": "excluded",
          "reason": "Sales follow-up after qualification; not a new acquisition source.",
          "sourceRef": "synthetic://cash-homebuyer/followup",
          "locator": "followup-15"
        },
        {
          "id": "followup-16",
          "at": "2026-04-16T13:00:00Z",
          "recordedAt": "2026-04-16T13:00:00Z",
          "label": "Acquisition team follow-up",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "observed",
          "disposition": "excluded",
          "reason": "Sales follow-up after qualification; not a new acquisition source.",
          "sourceRef": "synthetic://cash-homebuyer/followup",
          "locator": "followup-16"
        },
        {
          "id": "assessment-1",
          "at": "2026-04-18T14:00:00Z",
          "recordedAt": "2026-04-18T14:00:00Z",
          "label": "Property assessment completed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/assessment",
          "locator": "assessment-1"
        },
        {
          "id": "offer-1",
          "at": "2026-04-24T10:00:00Z",
          "recordedAt": "2026-04-24T10:00:00Z",
          "label": "Written purchase offer delivered",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/offer",
          "locator": "offer-1"
        },
        {
          "id": "contract-1",
          "at": "2026-05-02T12:00:00Z",
          "recordedAt": "2026-05-02T12:00:00Z",
          "label": "Acquisition contract signed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/contract",
          "locator": "contract-1"
        },
        {
          "id": "marketing-cost",
          "at": "2026-05-03T12:00:00Z",
          "recordedAt": "2026-05-03T12:00:00Z",
          "label": "Acquisition marketing cost allocated",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/cost",
          "locator": "marketing-cost"
        }
      ],
      "credit": [
        {
          "channelId": "search-brand",
          "label": "Brand paid search",
          "weight": 1,
          "percentage": 100,
          "touchIds": [
            "click-brand"
          ]
        }
      ],
      "outcome": {
        "qualifiedOpportunities": 1,
        "contracts": 1,
        "acquisitions": 0,
        "resales": 0,
        "canceled": false,
        "stage": "contract",
        "label": "Contract signed · purchase pending",
        "capitalDeployed": null,
        "resaleProceeds": null,
        "contributionBeforeMarketing": null,
        "marketingAllocation": 3000,
        "contributionAfterMarketing": null,
        "missingCosts": [
          "renovation",
          "holdingAndTransaction"
        ],
        "contributionStatus": "pending",
        "currency": "USD",
        "sourceIds": [
          "qualified-1",
          "contract-1",
          "marketing-cost"
        ]
      },
      "issues": [],
      "creditOutcome": "qualified_seller_property_opportunity",
      "eligibleTouchIds": [
        "click-brand",
        "click-nonbrand"
      ],
      "allocationStatus": "computed",
      "policyVersion": "cash-homebuyer.last.reported.v1",
      "propertyId": "property-104",
      "opportunityId": "acquisition-204",
      "sellerGroupId": "seller-group-14",
      "receiptHash": "f25d17dd511ba7c531f71e11beb67b850eadb2c777d564e1985613c75034825e"
    },
    {
      "key": "followup|reported|contract|linear",
      "scenarioId": "followup",
      "evidencePolicyId": "reported",
      "cutoffId": "contract",
      "policyId": "linear",
      "proofKey": "followup|reported|contract",
      "asOf": "2026-05-15T23:59:59Z",
      "status": "complete",
      "summary": "Contract signed · purchase pending. Credit describes this qualified opportunity under the selected policy; it does not establish causal lift.",
      "timeline": [
        {
          "id": "click-nonbrand",
          "at": "2026-04-03T10:00:00Z",
          "recordedAt": "2026-04-03T10:00:00Z",
          "label": "Nonbrand search ad clicked",
          "channelId": "search-nonbrand",
          "channelLabel": "Nonbrand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-nonbrand"
        },
        {
          "id": "click-brand",
          "at": "2026-04-08T11:00:00Z",
          "recordedAt": "2026-04-08T11:00:00Z",
          "label": "Brand search ad clicked",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-brand"
        },
        {
          "id": "call-1",
          "at": "2026-04-09T12:00:00Z",
          "recordedAt": "2026-04-09T12:00:00Z",
          "label": "Seller called the website number",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/call",
          "locator": "call-1"
        },
        {
          "id": "qualified-1",
          "at": "2026-04-09T15:00:00Z",
          "recordedAt": "2026-04-09T15:00:00Z",
          "label": "Seller-property opportunity qualified",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/qualified",
          "locator": "qualified-1"
        },
        {
          "id": "followup-11",
          "at": "2026-04-11T13:00:00Z",
          "recordedAt": "2026-04-11T13:00:00Z",
          "label": "Assessment appointment reminder",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "observed",
          "disposition": "excluded",
          "reason": "Sales follow-up after qualification; not a new acquisition source.",
          "sourceRef": "synthetic://cash-homebuyer/followup",
          "locator": "followup-11"
        },
        {
          "id": "followup-12",
          "at": "2026-04-12T13:00:00Z",
          "recordedAt": "2026-04-12T13:00:00Z",
          "label": "Acquisition team follow-up",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "observed",
          "disposition": "excluded",
          "reason": "Sales follow-up after qualification; not a new acquisition source.",
          "sourceRef": "synthetic://cash-homebuyer/followup",
          "locator": "followup-12"
        },
        {
          "id": "followup-13",
          "at": "2026-04-13T13:00:00Z",
          "recordedAt": "2026-04-13T13:00:00Z",
          "label": "Acquisition team follow-up",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "observed",
          "disposition": "excluded",
          "reason": "Sales follow-up after qualification; not a new acquisition source.",
          "sourceRef": "synthetic://cash-homebuyer/followup",
          "locator": "followup-13"
        },
        {
          "id": "followup-14",
          "at": "2026-04-14T13:00:00Z",
          "recordedAt": "2026-04-14T13:00:00Z",
          "label": "Acquisition team follow-up",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "observed",
          "disposition": "excluded",
          "reason": "Sales follow-up after qualification; not a new acquisition source.",
          "sourceRef": "synthetic://cash-homebuyer/followup",
          "locator": "followup-14"
        },
        {
          "id": "followup-15",
          "at": "2026-04-15T13:00:00Z",
          "recordedAt": "2026-04-15T13:00:00Z",
          "label": "Acquisition team follow-up",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "observed",
          "disposition": "excluded",
          "reason": "Sales follow-up after qualification; not a new acquisition source.",
          "sourceRef": "synthetic://cash-homebuyer/followup",
          "locator": "followup-15"
        },
        {
          "id": "followup-16",
          "at": "2026-04-16T13:00:00Z",
          "recordedAt": "2026-04-16T13:00:00Z",
          "label": "Acquisition team follow-up",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "observed",
          "disposition": "excluded",
          "reason": "Sales follow-up after qualification; not a new acquisition source.",
          "sourceRef": "synthetic://cash-homebuyer/followup",
          "locator": "followup-16"
        },
        {
          "id": "assessment-1",
          "at": "2026-04-18T14:00:00Z",
          "recordedAt": "2026-04-18T14:00:00Z",
          "label": "Property assessment completed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/assessment",
          "locator": "assessment-1"
        },
        {
          "id": "offer-1",
          "at": "2026-04-24T10:00:00Z",
          "recordedAt": "2026-04-24T10:00:00Z",
          "label": "Written purchase offer delivered",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/offer",
          "locator": "offer-1"
        },
        {
          "id": "contract-1",
          "at": "2026-05-02T12:00:00Z",
          "recordedAt": "2026-05-02T12:00:00Z",
          "label": "Acquisition contract signed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/contract",
          "locator": "contract-1"
        },
        {
          "id": "marketing-cost",
          "at": "2026-05-03T12:00:00Z",
          "recordedAt": "2026-05-03T12:00:00Z",
          "label": "Acquisition marketing cost allocated",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/cost",
          "locator": "marketing-cost"
        }
      ],
      "credit": [
        {
          "channelId": "search-nonbrand",
          "label": "Nonbrand paid search",
          "weight": 0.5,
          "percentage": 50,
          "touchIds": [
            "click-nonbrand"
          ]
        },
        {
          "channelId": "search-brand",
          "label": "Brand paid search",
          "weight": 0.5,
          "percentage": 50,
          "touchIds": [
            "click-brand"
          ]
        }
      ],
      "outcome": {
        "qualifiedOpportunities": 1,
        "contracts": 1,
        "acquisitions": 0,
        "resales": 0,
        "canceled": false,
        "stage": "contract",
        "label": "Contract signed · purchase pending",
        "capitalDeployed": null,
        "resaleProceeds": null,
        "contributionBeforeMarketing": null,
        "marketingAllocation": 3000,
        "contributionAfterMarketing": null,
        "missingCosts": [
          "renovation",
          "holdingAndTransaction"
        ],
        "contributionStatus": "pending",
        "currency": "USD",
        "sourceIds": [
          "qualified-1",
          "contract-1",
          "marketing-cost"
        ]
      },
      "issues": [],
      "creditOutcome": "qualified_seller_property_opportunity",
      "eligibleTouchIds": [
        "click-brand",
        "click-nonbrand"
      ],
      "allocationStatus": "computed",
      "policyVersion": "cash-homebuyer.linear.reported.v1",
      "propertyId": "property-104",
      "opportunityId": "acquisition-204",
      "sellerGroupId": "seller-group-14",
      "receiptHash": "be293b3f6ceed04028fba044454cf14208e6f392ccb633bdf3182571fe1bf0d3"
    },
    {
      "key": "followup|reported|acquired|first",
      "scenarioId": "followup",
      "evidencePolicyId": "reported",
      "cutoffId": "acquired",
      "policyId": "first",
      "proofKey": "followup|reported|acquired",
      "asOf": "2026-06-15T23:59:59Z",
      "status": "complete",
      "summary": "Purchase closed · resale pending. Credit describes this qualified opportunity under the selected policy; it does not establish causal lift.",
      "timeline": [
        {
          "id": "click-nonbrand",
          "at": "2026-04-03T10:00:00Z",
          "recordedAt": "2026-04-03T10:00:00Z",
          "label": "Nonbrand search ad clicked",
          "channelId": "search-nonbrand",
          "channelLabel": "Nonbrand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-nonbrand"
        },
        {
          "id": "click-brand",
          "at": "2026-04-08T11:00:00Z",
          "recordedAt": "2026-04-08T11:00:00Z",
          "label": "Brand search ad clicked",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-brand"
        },
        {
          "id": "call-1",
          "at": "2026-04-09T12:00:00Z",
          "recordedAt": "2026-04-09T12:00:00Z",
          "label": "Seller called the website number",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/call",
          "locator": "call-1"
        },
        {
          "id": "qualified-1",
          "at": "2026-04-09T15:00:00Z",
          "recordedAt": "2026-04-09T15:00:00Z",
          "label": "Seller-property opportunity qualified",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/qualified",
          "locator": "qualified-1"
        },
        {
          "id": "followup-11",
          "at": "2026-04-11T13:00:00Z",
          "recordedAt": "2026-04-11T13:00:00Z",
          "label": "Assessment appointment reminder",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "observed",
          "disposition": "excluded",
          "reason": "Sales follow-up after qualification; not a new acquisition source.",
          "sourceRef": "synthetic://cash-homebuyer/followup",
          "locator": "followup-11"
        },
        {
          "id": "followup-12",
          "at": "2026-04-12T13:00:00Z",
          "recordedAt": "2026-04-12T13:00:00Z",
          "label": "Acquisition team follow-up",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "observed",
          "disposition": "excluded",
          "reason": "Sales follow-up after qualification; not a new acquisition source.",
          "sourceRef": "synthetic://cash-homebuyer/followup",
          "locator": "followup-12"
        },
        {
          "id": "followup-13",
          "at": "2026-04-13T13:00:00Z",
          "recordedAt": "2026-04-13T13:00:00Z",
          "label": "Acquisition team follow-up",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "observed",
          "disposition": "excluded",
          "reason": "Sales follow-up after qualification; not a new acquisition source.",
          "sourceRef": "synthetic://cash-homebuyer/followup",
          "locator": "followup-13"
        },
        {
          "id": "followup-14",
          "at": "2026-04-14T13:00:00Z",
          "recordedAt": "2026-04-14T13:00:00Z",
          "label": "Acquisition team follow-up",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "observed",
          "disposition": "excluded",
          "reason": "Sales follow-up after qualification; not a new acquisition source.",
          "sourceRef": "synthetic://cash-homebuyer/followup",
          "locator": "followup-14"
        },
        {
          "id": "followup-15",
          "at": "2026-04-15T13:00:00Z",
          "recordedAt": "2026-04-15T13:00:00Z",
          "label": "Acquisition team follow-up",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "observed",
          "disposition": "excluded",
          "reason": "Sales follow-up after qualification; not a new acquisition source.",
          "sourceRef": "synthetic://cash-homebuyer/followup",
          "locator": "followup-15"
        },
        {
          "id": "followup-16",
          "at": "2026-04-16T13:00:00Z",
          "recordedAt": "2026-04-16T13:00:00Z",
          "label": "Acquisition team follow-up",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "observed",
          "disposition": "excluded",
          "reason": "Sales follow-up after qualification; not a new acquisition source.",
          "sourceRef": "synthetic://cash-homebuyer/followup",
          "locator": "followup-16"
        },
        {
          "id": "assessment-1",
          "at": "2026-04-18T14:00:00Z",
          "recordedAt": "2026-04-18T14:00:00Z",
          "label": "Property assessment completed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/assessment",
          "locator": "assessment-1"
        },
        {
          "id": "offer-1",
          "at": "2026-04-24T10:00:00Z",
          "recordedAt": "2026-04-24T10:00:00Z",
          "label": "Written purchase offer delivered",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/offer",
          "locator": "offer-1"
        },
        {
          "id": "contract-1",
          "at": "2026-05-02T12:00:00Z",
          "recordedAt": "2026-05-02T12:00:00Z",
          "label": "Acquisition contract signed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/contract",
          "locator": "contract-1"
        },
        {
          "id": "marketing-cost",
          "at": "2026-05-03T12:00:00Z",
          "recordedAt": "2026-05-03T12:00:00Z",
          "label": "Acquisition marketing cost allocated",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/cost",
          "locator": "marketing-cost"
        },
        {
          "id": "closing-1",
          "at": "2026-06-02T12:00:00Z",
          "recordedAt": "2026-06-02T12:00:00Z",
          "label": "Property purchase closed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/acquisition",
          "locator": "closing-1"
        }
      ],
      "credit": [
        {
          "channelId": "search-nonbrand",
          "label": "Nonbrand paid search",
          "weight": 1,
          "percentage": 100,
          "touchIds": [
            "click-nonbrand"
          ]
        }
      ],
      "outcome": {
        "qualifiedOpportunities": 1,
        "contracts": 1,
        "acquisitions": 1,
        "resales": 0,
        "canceled": false,
        "stage": "acquired",
        "label": "Purchase closed · resale pending",
        "capitalDeployed": 210000,
        "resaleProceeds": null,
        "contributionBeforeMarketing": null,
        "marketingAllocation": 3000,
        "contributionAfterMarketing": null,
        "missingCosts": [
          "renovation",
          "holdingAndTransaction"
        ],
        "contributionStatus": "pending",
        "currency": "USD",
        "sourceIds": [
          "qualified-1",
          "contract-1",
          "marketing-cost",
          "closing-1"
        ]
      },
      "issues": [],
      "creditOutcome": "qualified_seller_property_opportunity",
      "eligibleTouchIds": [
        "click-brand",
        "click-nonbrand"
      ],
      "allocationStatus": "computed",
      "policyVersion": "cash-homebuyer.first.reported.v1",
      "propertyId": "property-104",
      "opportunityId": "acquisition-204",
      "sellerGroupId": "seller-group-14",
      "receiptHash": "1f300464124378b3a7509fa3d4aaff1d55509d1dd735afeb44f9aca371753fcd"
    },
    {
      "key": "followup|reported|acquired|last",
      "scenarioId": "followup",
      "evidencePolicyId": "reported",
      "cutoffId": "acquired",
      "policyId": "last",
      "proofKey": "followup|reported|acquired",
      "asOf": "2026-06-15T23:59:59Z",
      "status": "complete",
      "summary": "Purchase closed · resale pending. Credit describes this qualified opportunity under the selected policy; it does not establish causal lift.",
      "timeline": [
        {
          "id": "click-nonbrand",
          "at": "2026-04-03T10:00:00Z",
          "recordedAt": "2026-04-03T10:00:00Z",
          "label": "Nonbrand search ad clicked",
          "channelId": "search-nonbrand",
          "channelLabel": "Nonbrand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-nonbrand"
        },
        {
          "id": "click-brand",
          "at": "2026-04-08T11:00:00Z",
          "recordedAt": "2026-04-08T11:00:00Z",
          "label": "Brand search ad clicked",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-brand"
        },
        {
          "id": "call-1",
          "at": "2026-04-09T12:00:00Z",
          "recordedAt": "2026-04-09T12:00:00Z",
          "label": "Seller called the website number",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/call",
          "locator": "call-1"
        },
        {
          "id": "qualified-1",
          "at": "2026-04-09T15:00:00Z",
          "recordedAt": "2026-04-09T15:00:00Z",
          "label": "Seller-property opportunity qualified",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/qualified",
          "locator": "qualified-1"
        },
        {
          "id": "followup-11",
          "at": "2026-04-11T13:00:00Z",
          "recordedAt": "2026-04-11T13:00:00Z",
          "label": "Assessment appointment reminder",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "observed",
          "disposition": "excluded",
          "reason": "Sales follow-up after qualification; not a new acquisition source.",
          "sourceRef": "synthetic://cash-homebuyer/followup",
          "locator": "followup-11"
        },
        {
          "id": "followup-12",
          "at": "2026-04-12T13:00:00Z",
          "recordedAt": "2026-04-12T13:00:00Z",
          "label": "Acquisition team follow-up",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "observed",
          "disposition": "excluded",
          "reason": "Sales follow-up after qualification; not a new acquisition source.",
          "sourceRef": "synthetic://cash-homebuyer/followup",
          "locator": "followup-12"
        },
        {
          "id": "followup-13",
          "at": "2026-04-13T13:00:00Z",
          "recordedAt": "2026-04-13T13:00:00Z",
          "label": "Acquisition team follow-up",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "observed",
          "disposition": "excluded",
          "reason": "Sales follow-up after qualification; not a new acquisition source.",
          "sourceRef": "synthetic://cash-homebuyer/followup",
          "locator": "followup-13"
        },
        {
          "id": "followup-14",
          "at": "2026-04-14T13:00:00Z",
          "recordedAt": "2026-04-14T13:00:00Z",
          "label": "Acquisition team follow-up",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "observed",
          "disposition": "excluded",
          "reason": "Sales follow-up after qualification; not a new acquisition source.",
          "sourceRef": "synthetic://cash-homebuyer/followup",
          "locator": "followup-14"
        },
        {
          "id": "followup-15",
          "at": "2026-04-15T13:00:00Z",
          "recordedAt": "2026-04-15T13:00:00Z",
          "label": "Acquisition team follow-up",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "observed",
          "disposition": "excluded",
          "reason": "Sales follow-up after qualification; not a new acquisition source.",
          "sourceRef": "synthetic://cash-homebuyer/followup",
          "locator": "followup-15"
        },
        {
          "id": "followup-16",
          "at": "2026-04-16T13:00:00Z",
          "recordedAt": "2026-04-16T13:00:00Z",
          "label": "Acquisition team follow-up",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "observed",
          "disposition": "excluded",
          "reason": "Sales follow-up after qualification; not a new acquisition source.",
          "sourceRef": "synthetic://cash-homebuyer/followup",
          "locator": "followup-16"
        },
        {
          "id": "assessment-1",
          "at": "2026-04-18T14:00:00Z",
          "recordedAt": "2026-04-18T14:00:00Z",
          "label": "Property assessment completed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/assessment",
          "locator": "assessment-1"
        },
        {
          "id": "offer-1",
          "at": "2026-04-24T10:00:00Z",
          "recordedAt": "2026-04-24T10:00:00Z",
          "label": "Written purchase offer delivered",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/offer",
          "locator": "offer-1"
        },
        {
          "id": "contract-1",
          "at": "2026-05-02T12:00:00Z",
          "recordedAt": "2026-05-02T12:00:00Z",
          "label": "Acquisition contract signed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/contract",
          "locator": "contract-1"
        },
        {
          "id": "marketing-cost",
          "at": "2026-05-03T12:00:00Z",
          "recordedAt": "2026-05-03T12:00:00Z",
          "label": "Acquisition marketing cost allocated",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/cost",
          "locator": "marketing-cost"
        },
        {
          "id": "closing-1",
          "at": "2026-06-02T12:00:00Z",
          "recordedAt": "2026-06-02T12:00:00Z",
          "label": "Property purchase closed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/acquisition",
          "locator": "closing-1"
        }
      ],
      "credit": [
        {
          "channelId": "search-brand",
          "label": "Brand paid search",
          "weight": 1,
          "percentage": 100,
          "touchIds": [
            "click-brand"
          ]
        }
      ],
      "outcome": {
        "qualifiedOpportunities": 1,
        "contracts": 1,
        "acquisitions": 1,
        "resales": 0,
        "canceled": false,
        "stage": "acquired",
        "label": "Purchase closed · resale pending",
        "capitalDeployed": 210000,
        "resaleProceeds": null,
        "contributionBeforeMarketing": null,
        "marketingAllocation": 3000,
        "contributionAfterMarketing": null,
        "missingCosts": [
          "renovation",
          "holdingAndTransaction"
        ],
        "contributionStatus": "pending",
        "currency": "USD",
        "sourceIds": [
          "qualified-1",
          "contract-1",
          "marketing-cost",
          "closing-1"
        ]
      },
      "issues": [],
      "creditOutcome": "qualified_seller_property_opportunity",
      "eligibleTouchIds": [
        "click-brand",
        "click-nonbrand"
      ],
      "allocationStatus": "computed",
      "policyVersion": "cash-homebuyer.last.reported.v1",
      "propertyId": "property-104",
      "opportunityId": "acquisition-204",
      "sellerGroupId": "seller-group-14",
      "receiptHash": "44a6c4434bf3fcb76bdedd36a21df3e96dcd51a88a3777314e6050549c4ce418"
    },
    {
      "key": "followup|reported|acquired|linear",
      "scenarioId": "followup",
      "evidencePolicyId": "reported",
      "cutoffId": "acquired",
      "policyId": "linear",
      "proofKey": "followup|reported|acquired",
      "asOf": "2026-06-15T23:59:59Z",
      "status": "complete",
      "summary": "Purchase closed · resale pending. Credit describes this qualified opportunity under the selected policy; it does not establish causal lift.",
      "timeline": [
        {
          "id": "click-nonbrand",
          "at": "2026-04-03T10:00:00Z",
          "recordedAt": "2026-04-03T10:00:00Z",
          "label": "Nonbrand search ad clicked",
          "channelId": "search-nonbrand",
          "channelLabel": "Nonbrand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-nonbrand"
        },
        {
          "id": "click-brand",
          "at": "2026-04-08T11:00:00Z",
          "recordedAt": "2026-04-08T11:00:00Z",
          "label": "Brand search ad clicked",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-brand"
        },
        {
          "id": "call-1",
          "at": "2026-04-09T12:00:00Z",
          "recordedAt": "2026-04-09T12:00:00Z",
          "label": "Seller called the website number",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/call",
          "locator": "call-1"
        },
        {
          "id": "qualified-1",
          "at": "2026-04-09T15:00:00Z",
          "recordedAt": "2026-04-09T15:00:00Z",
          "label": "Seller-property opportunity qualified",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/qualified",
          "locator": "qualified-1"
        },
        {
          "id": "followup-11",
          "at": "2026-04-11T13:00:00Z",
          "recordedAt": "2026-04-11T13:00:00Z",
          "label": "Assessment appointment reminder",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "observed",
          "disposition": "excluded",
          "reason": "Sales follow-up after qualification; not a new acquisition source.",
          "sourceRef": "synthetic://cash-homebuyer/followup",
          "locator": "followup-11"
        },
        {
          "id": "followup-12",
          "at": "2026-04-12T13:00:00Z",
          "recordedAt": "2026-04-12T13:00:00Z",
          "label": "Acquisition team follow-up",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "observed",
          "disposition": "excluded",
          "reason": "Sales follow-up after qualification; not a new acquisition source.",
          "sourceRef": "synthetic://cash-homebuyer/followup",
          "locator": "followup-12"
        },
        {
          "id": "followup-13",
          "at": "2026-04-13T13:00:00Z",
          "recordedAt": "2026-04-13T13:00:00Z",
          "label": "Acquisition team follow-up",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "observed",
          "disposition": "excluded",
          "reason": "Sales follow-up after qualification; not a new acquisition source.",
          "sourceRef": "synthetic://cash-homebuyer/followup",
          "locator": "followup-13"
        },
        {
          "id": "followup-14",
          "at": "2026-04-14T13:00:00Z",
          "recordedAt": "2026-04-14T13:00:00Z",
          "label": "Acquisition team follow-up",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "observed",
          "disposition": "excluded",
          "reason": "Sales follow-up after qualification; not a new acquisition source.",
          "sourceRef": "synthetic://cash-homebuyer/followup",
          "locator": "followup-14"
        },
        {
          "id": "followup-15",
          "at": "2026-04-15T13:00:00Z",
          "recordedAt": "2026-04-15T13:00:00Z",
          "label": "Acquisition team follow-up",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "observed",
          "disposition": "excluded",
          "reason": "Sales follow-up after qualification; not a new acquisition source.",
          "sourceRef": "synthetic://cash-homebuyer/followup",
          "locator": "followup-15"
        },
        {
          "id": "followup-16",
          "at": "2026-04-16T13:00:00Z",
          "recordedAt": "2026-04-16T13:00:00Z",
          "label": "Acquisition team follow-up",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "observed",
          "disposition": "excluded",
          "reason": "Sales follow-up after qualification; not a new acquisition source.",
          "sourceRef": "synthetic://cash-homebuyer/followup",
          "locator": "followup-16"
        },
        {
          "id": "assessment-1",
          "at": "2026-04-18T14:00:00Z",
          "recordedAt": "2026-04-18T14:00:00Z",
          "label": "Property assessment completed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/assessment",
          "locator": "assessment-1"
        },
        {
          "id": "offer-1",
          "at": "2026-04-24T10:00:00Z",
          "recordedAt": "2026-04-24T10:00:00Z",
          "label": "Written purchase offer delivered",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/offer",
          "locator": "offer-1"
        },
        {
          "id": "contract-1",
          "at": "2026-05-02T12:00:00Z",
          "recordedAt": "2026-05-02T12:00:00Z",
          "label": "Acquisition contract signed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/contract",
          "locator": "contract-1"
        },
        {
          "id": "marketing-cost",
          "at": "2026-05-03T12:00:00Z",
          "recordedAt": "2026-05-03T12:00:00Z",
          "label": "Acquisition marketing cost allocated",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/cost",
          "locator": "marketing-cost"
        },
        {
          "id": "closing-1",
          "at": "2026-06-02T12:00:00Z",
          "recordedAt": "2026-06-02T12:00:00Z",
          "label": "Property purchase closed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/acquisition",
          "locator": "closing-1"
        }
      ],
      "credit": [
        {
          "channelId": "search-nonbrand",
          "label": "Nonbrand paid search",
          "weight": 0.5,
          "percentage": 50,
          "touchIds": [
            "click-nonbrand"
          ]
        },
        {
          "channelId": "search-brand",
          "label": "Brand paid search",
          "weight": 0.5,
          "percentage": 50,
          "touchIds": [
            "click-brand"
          ]
        }
      ],
      "outcome": {
        "qualifiedOpportunities": 1,
        "contracts": 1,
        "acquisitions": 1,
        "resales": 0,
        "canceled": false,
        "stage": "acquired",
        "label": "Purchase closed · resale pending",
        "capitalDeployed": 210000,
        "resaleProceeds": null,
        "contributionBeforeMarketing": null,
        "marketingAllocation": 3000,
        "contributionAfterMarketing": null,
        "missingCosts": [
          "renovation",
          "holdingAndTransaction"
        ],
        "contributionStatus": "pending",
        "currency": "USD",
        "sourceIds": [
          "qualified-1",
          "contract-1",
          "marketing-cost",
          "closing-1"
        ]
      },
      "issues": [],
      "creditOutcome": "qualified_seller_property_opportunity",
      "eligibleTouchIds": [
        "click-brand",
        "click-nonbrand"
      ],
      "allocationStatus": "computed",
      "policyVersion": "cash-homebuyer.linear.reported.v1",
      "propertyId": "property-104",
      "opportunityId": "acquisition-204",
      "sellerGroupId": "seller-group-14",
      "receiptHash": "180c8aa20fb15b5fb1940776d322d47750c6288ae94b0e46c54babfed91700e1"
    },
    {
      "key": "followup|reported|resale|first",
      "scenarioId": "followup",
      "evidencePolicyId": "reported",
      "cutoffId": "resale",
      "policyId": "first",
      "proofKey": "followup|reported|resale",
      "asOf": "2026-09-15T23:59:59Z",
      "status": "complete",
      "summary": "Resale and costs reconciled. Credit describes this qualified opportunity under the selected policy; it does not establish causal lift.",
      "timeline": [
        {
          "id": "click-nonbrand",
          "at": "2026-04-03T10:00:00Z",
          "recordedAt": "2026-04-03T10:00:00Z",
          "label": "Nonbrand search ad clicked",
          "channelId": "search-nonbrand",
          "channelLabel": "Nonbrand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-nonbrand"
        },
        {
          "id": "click-brand",
          "at": "2026-04-08T11:00:00Z",
          "recordedAt": "2026-04-08T11:00:00Z",
          "label": "Brand search ad clicked",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-brand"
        },
        {
          "id": "call-1",
          "at": "2026-04-09T12:00:00Z",
          "recordedAt": "2026-04-09T12:00:00Z",
          "label": "Seller called the website number",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/call",
          "locator": "call-1"
        },
        {
          "id": "qualified-1",
          "at": "2026-04-09T15:00:00Z",
          "recordedAt": "2026-04-09T15:00:00Z",
          "label": "Seller-property opportunity qualified",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/qualified",
          "locator": "qualified-1"
        },
        {
          "id": "followup-11",
          "at": "2026-04-11T13:00:00Z",
          "recordedAt": "2026-04-11T13:00:00Z",
          "label": "Assessment appointment reminder",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "observed",
          "disposition": "excluded",
          "reason": "Sales follow-up after qualification; not a new acquisition source.",
          "sourceRef": "synthetic://cash-homebuyer/followup",
          "locator": "followup-11"
        },
        {
          "id": "followup-12",
          "at": "2026-04-12T13:00:00Z",
          "recordedAt": "2026-04-12T13:00:00Z",
          "label": "Acquisition team follow-up",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "observed",
          "disposition": "excluded",
          "reason": "Sales follow-up after qualification; not a new acquisition source.",
          "sourceRef": "synthetic://cash-homebuyer/followup",
          "locator": "followup-12"
        },
        {
          "id": "followup-13",
          "at": "2026-04-13T13:00:00Z",
          "recordedAt": "2026-04-13T13:00:00Z",
          "label": "Acquisition team follow-up",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "observed",
          "disposition": "excluded",
          "reason": "Sales follow-up after qualification; not a new acquisition source.",
          "sourceRef": "synthetic://cash-homebuyer/followup",
          "locator": "followup-13"
        },
        {
          "id": "followup-14",
          "at": "2026-04-14T13:00:00Z",
          "recordedAt": "2026-04-14T13:00:00Z",
          "label": "Acquisition team follow-up",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "observed",
          "disposition": "excluded",
          "reason": "Sales follow-up after qualification; not a new acquisition source.",
          "sourceRef": "synthetic://cash-homebuyer/followup",
          "locator": "followup-14"
        },
        {
          "id": "followup-15",
          "at": "2026-04-15T13:00:00Z",
          "recordedAt": "2026-04-15T13:00:00Z",
          "label": "Acquisition team follow-up",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "observed",
          "disposition": "excluded",
          "reason": "Sales follow-up after qualification; not a new acquisition source.",
          "sourceRef": "synthetic://cash-homebuyer/followup",
          "locator": "followup-15"
        },
        {
          "id": "followup-16",
          "at": "2026-04-16T13:00:00Z",
          "recordedAt": "2026-04-16T13:00:00Z",
          "label": "Acquisition team follow-up",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "observed",
          "disposition": "excluded",
          "reason": "Sales follow-up after qualification; not a new acquisition source.",
          "sourceRef": "synthetic://cash-homebuyer/followup",
          "locator": "followup-16"
        },
        {
          "id": "assessment-1",
          "at": "2026-04-18T14:00:00Z",
          "recordedAt": "2026-04-18T14:00:00Z",
          "label": "Property assessment completed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/assessment",
          "locator": "assessment-1"
        },
        {
          "id": "offer-1",
          "at": "2026-04-24T10:00:00Z",
          "recordedAt": "2026-04-24T10:00:00Z",
          "label": "Written purchase offer delivered",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/offer",
          "locator": "offer-1"
        },
        {
          "id": "contract-1",
          "at": "2026-05-02T12:00:00Z",
          "recordedAt": "2026-05-02T12:00:00Z",
          "label": "Acquisition contract signed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/contract",
          "locator": "contract-1"
        },
        {
          "id": "marketing-cost",
          "at": "2026-05-03T12:00:00Z",
          "recordedAt": "2026-05-03T12:00:00Z",
          "label": "Acquisition marketing cost allocated",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/cost",
          "locator": "marketing-cost"
        },
        {
          "id": "closing-1",
          "at": "2026-06-02T12:00:00Z",
          "recordedAt": "2026-06-02T12:00:00Z",
          "label": "Property purchase closed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/acquisition",
          "locator": "closing-1"
        },
        {
          "id": "renovation-cost",
          "at": "2026-07-10T12:00:00Z",
          "recordedAt": "2026-07-10T12:00:00Z",
          "label": "Renovation costs reconciled",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/cost",
          "locator": "renovation-cost"
        },
        {
          "id": "resale-1",
          "at": "2026-09-03T12:00:00Z",
          "recordedAt": "2026-09-03T12:00:00Z",
          "label": "Resale proceeds recorded",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/resale",
          "locator": "resale-1"
        },
        {
          "id": "holding-cost",
          "at": "2026-09-05T12:00:00Z",
          "recordedAt": "2026-09-05T12:00:00Z",
          "label": "Holding, financing and transaction costs reconciled",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/cost",
          "locator": "holding-cost"
        }
      ],
      "credit": [
        {
          "channelId": "search-nonbrand",
          "label": "Nonbrand paid search",
          "weight": 1,
          "percentage": 100,
          "touchIds": [
            "click-nonbrand"
          ]
        }
      ],
      "outcome": {
        "qualifiedOpportunities": 1,
        "contracts": 1,
        "acquisitions": 1,
        "resales": 1,
        "canceled": false,
        "stage": "resold",
        "label": "Resale and costs reconciled",
        "capitalDeployed": 210000,
        "resaleProceeds": 295000,
        "contributionBeforeMarketing": 27000,
        "marketingAllocation": 3000,
        "contributionAfterMarketing": 24000,
        "missingCosts": [],
        "contributionStatus": "realized",
        "currency": "USD",
        "sourceIds": [
          "qualified-1",
          "contract-1",
          "marketing-cost",
          "closing-1",
          "renovation-cost",
          "resale-1",
          "holding-cost"
        ]
      },
      "issues": [],
      "creditOutcome": "qualified_seller_property_opportunity",
      "eligibleTouchIds": [
        "click-brand",
        "click-nonbrand"
      ],
      "allocationStatus": "computed",
      "policyVersion": "cash-homebuyer.first.reported.v1",
      "propertyId": "property-104",
      "opportunityId": "acquisition-204",
      "sellerGroupId": "seller-group-14",
      "receiptHash": "67c18a115d7e319f8301190a10dab55bdc46c9004ababac59b21f5dd134c300f"
    },
    {
      "key": "followup|reported|resale|last",
      "scenarioId": "followup",
      "evidencePolicyId": "reported",
      "cutoffId": "resale",
      "policyId": "last",
      "proofKey": "followup|reported|resale",
      "asOf": "2026-09-15T23:59:59Z",
      "status": "complete",
      "summary": "Resale and costs reconciled. Credit describes this qualified opportunity under the selected policy; it does not establish causal lift.",
      "timeline": [
        {
          "id": "click-nonbrand",
          "at": "2026-04-03T10:00:00Z",
          "recordedAt": "2026-04-03T10:00:00Z",
          "label": "Nonbrand search ad clicked",
          "channelId": "search-nonbrand",
          "channelLabel": "Nonbrand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-nonbrand"
        },
        {
          "id": "click-brand",
          "at": "2026-04-08T11:00:00Z",
          "recordedAt": "2026-04-08T11:00:00Z",
          "label": "Brand search ad clicked",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-brand"
        },
        {
          "id": "call-1",
          "at": "2026-04-09T12:00:00Z",
          "recordedAt": "2026-04-09T12:00:00Z",
          "label": "Seller called the website number",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/call",
          "locator": "call-1"
        },
        {
          "id": "qualified-1",
          "at": "2026-04-09T15:00:00Z",
          "recordedAt": "2026-04-09T15:00:00Z",
          "label": "Seller-property opportunity qualified",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/qualified",
          "locator": "qualified-1"
        },
        {
          "id": "followup-11",
          "at": "2026-04-11T13:00:00Z",
          "recordedAt": "2026-04-11T13:00:00Z",
          "label": "Assessment appointment reminder",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "observed",
          "disposition": "excluded",
          "reason": "Sales follow-up after qualification; not a new acquisition source.",
          "sourceRef": "synthetic://cash-homebuyer/followup",
          "locator": "followup-11"
        },
        {
          "id": "followup-12",
          "at": "2026-04-12T13:00:00Z",
          "recordedAt": "2026-04-12T13:00:00Z",
          "label": "Acquisition team follow-up",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "observed",
          "disposition": "excluded",
          "reason": "Sales follow-up after qualification; not a new acquisition source.",
          "sourceRef": "synthetic://cash-homebuyer/followup",
          "locator": "followup-12"
        },
        {
          "id": "followup-13",
          "at": "2026-04-13T13:00:00Z",
          "recordedAt": "2026-04-13T13:00:00Z",
          "label": "Acquisition team follow-up",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "observed",
          "disposition": "excluded",
          "reason": "Sales follow-up after qualification; not a new acquisition source.",
          "sourceRef": "synthetic://cash-homebuyer/followup",
          "locator": "followup-13"
        },
        {
          "id": "followup-14",
          "at": "2026-04-14T13:00:00Z",
          "recordedAt": "2026-04-14T13:00:00Z",
          "label": "Acquisition team follow-up",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "observed",
          "disposition": "excluded",
          "reason": "Sales follow-up after qualification; not a new acquisition source.",
          "sourceRef": "synthetic://cash-homebuyer/followup",
          "locator": "followup-14"
        },
        {
          "id": "followup-15",
          "at": "2026-04-15T13:00:00Z",
          "recordedAt": "2026-04-15T13:00:00Z",
          "label": "Acquisition team follow-up",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "observed",
          "disposition": "excluded",
          "reason": "Sales follow-up after qualification; not a new acquisition source.",
          "sourceRef": "synthetic://cash-homebuyer/followup",
          "locator": "followup-15"
        },
        {
          "id": "followup-16",
          "at": "2026-04-16T13:00:00Z",
          "recordedAt": "2026-04-16T13:00:00Z",
          "label": "Acquisition team follow-up",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "observed",
          "disposition": "excluded",
          "reason": "Sales follow-up after qualification; not a new acquisition source.",
          "sourceRef": "synthetic://cash-homebuyer/followup",
          "locator": "followup-16"
        },
        {
          "id": "assessment-1",
          "at": "2026-04-18T14:00:00Z",
          "recordedAt": "2026-04-18T14:00:00Z",
          "label": "Property assessment completed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/assessment",
          "locator": "assessment-1"
        },
        {
          "id": "offer-1",
          "at": "2026-04-24T10:00:00Z",
          "recordedAt": "2026-04-24T10:00:00Z",
          "label": "Written purchase offer delivered",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/offer",
          "locator": "offer-1"
        },
        {
          "id": "contract-1",
          "at": "2026-05-02T12:00:00Z",
          "recordedAt": "2026-05-02T12:00:00Z",
          "label": "Acquisition contract signed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/contract",
          "locator": "contract-1"
        },
        {
          "id": "marketing-cost",
          "at": "2026-05-03T12:00:00Z",
          "recordedAt": "2026-05-03T12:00:00Z",
          "label": "Acquisition marketing cost allocated",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/cost",
          "locator": "marketing-cost"
        },
        {
          "id": "closing-1",
          "at": "2026-06-02T12:00:00Z",
          "recordedAt": "2026-06-02T12:00:00Z",
          "label": "Property purchase closed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/acquisition",
          "locator": "closing-1"
        },
        {
          "id": "renovation-cost",
          "at": "2026-07-10T12:00:00Z",
          "recordedAt": "2026-07-10T12:00:00Z",
          "label": "Renovation costs reconciled",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/cost",
          "locator": "renovation-cost"
        },
        {
          "id": "resale-1",
          "at": "2026-09-03T12:00:00Z",
          "recordedAt": "2026-09-03T12:00:00Z",
          "label": "Resale proceeds recorded",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/resale",
          "locator": "resale-1"
        },
        {
          "id": "holding-cost",
          "at": "2026-09-05T12:00:00Z",
          "recordedAt": "2026-09-05T12:00:00Z",
          "label": "Holding, financing and transaction costs reconciled",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/cost",
          "locator": "holding-cost"
        }
      ],
      "credit": [
        {
          "channelId": "search-brand",
          "label": "Brand paid search",
          "weight": 1,
          "percentage": 100,
          "touchIds": [
            "click-brand"
          ]
        }
      ],
      "outcome": {
        "qualifiedOpportunities": 1,
        "contracts": 1,
        "acquisitions": 1,
        "resales": 1,
        "canceled": false,
        "stage": "resold",
        "label": "Resale and costs reconciled",
        "capitalDeployed": 210000,
        "resaleProceeds": 295000,
        "contributionBeforeMarketing": 27000,
        "marketingAllocation": 3000,
        "contributionAfterMarketing": 24000,
        "missingCosts": [],
        "contributionStatus": "realized",
        "currency": "USD",
        "sourceIds": [
          "qualified-1",
          "contract-1",
          "marketing-cost",
          "closing-1",
          "renovation-cost",
          "resale-1",
          "holding-cost"
        ]
      },
      "issues": [],
      "creditOutcome": "qualified_seller_property_opportunity",
      "eligibleTouchIds": [
        "click-brand",
        "click-nonbrand"
      ],
      "allocationStatus": "computed",
      "policyVersion": "cash-homebuyer.last.reported.v1",
      "propertyId": "property-104",
      "opportunityId": "acquisition-204",
      "sellerGroupId": "seller-group-14",
      "receiptHash": "9ad95e445a1c0a757b4311896fd437382c8c53131da0091307efaa6f2c4b504e"
    },
    {
      "key": "followup|reported|resale|linear",
      "scenarioId": "followup",
      "evidencePolicyId": "reported",
      "cutoffId": "resale",
      "policyId": "linear",
      "proofKey": "followup|reported|resale",
      "asOf": "2026-09-15T23:59:59Z",
      "status": "complete",
      "summary": "Resale and costs reconciled. Credit describes this qualified opportunity under the selected policy; it does not establish causal lift.",
      "timeline": [
        {
          "id": "click-nonbrand",
          "at": "2026-04-03T10:00:00Z",
          "recordedAt": "2026-04-03T10:00:00Z",
          "label": "Nonbrand search ad clicked",
          "channelId": "search-nonbrand",
          "channelLabel": "Nonbrand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-nonbrand"
        },
        {
          "id": "click-brand",
          "at": "2026-04-08T11:00:00Z",
          "recordedAt": "2026-04-08T11:00:00Z",
          "label": "Brand search ad clicked",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-brand"
        },
        {
          "id": "call-1",
          "at": "2026-04-09T12:00:00Z",
          "recordedAt": "2026-04-09T12:00:00Z",
          "label": "Seller called the website number",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/call",
          "locator": "call-1"
        },
        {
          "id": "qualified-1",
          "at": "2026-04-09T15:00:00Z",
          "recordedAt": "2026-04-09T15:00:00Z",
          "label": "Seller-property opportunity qualified",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/qualified",
          "locator": "qualified-1"
        },
        {
          "id": "followup-11",
          "at": "2026-04-11T13:00:00Z",
          "recordedAt": "2026-04-11T13:00:00Z",
          "label": "Assessment appointment reminder",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "observed",
          "disposition": "excluded",
          "reason": "Sales follow-up after qualification; not a new acquisition source.",
          "sourceRef": "synthetic://cash-homebuyer/followup",
          "locator": "followup-11"
        },
        {
          "id": "followup-12",
          "at": "2026-04-12T13:00:00Z",
          "recordedAt": "2026-04-12T13:00:00Z",
          "label": "Acquisition team follow-up",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "observed",
          "disposition": "excluded",
          "reason": "Sales follow-up after qualification; not a new acquisition source.",
          "sourceRef": "synthetic://cash-homebuyer/followup",
          "locator": "followup-12"
        },
        {
          "id": "followup-13",
          "at": "2026-04-13T13:00:00Z",
          "recordedAt": "2026-04-13T13:00:00Z",
          "label": "Acquisition team follow-up",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "observed",
          "disposition": "excluded",
          "reason": "Sales follow-up after qualification; not a new acquisition source.",
          "sourceRef": "synthetic://cash-homebuyer/followup",
          "locator": "followup-13"
        },
        {
          "id": "followup-14",
          "at": "2026-04-14T13:00:00Z",
          "recordedAt": "2026-04-14T13:00:00Z",
          "label": "Acquisition team follow-up",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "observed",
          "disposition": "excluded",
          "reason": "Sales follow-up after qualification; not a new acquisition source.",
          "sourceRef": "synthetic://cash-homebuyer/followup",
          "locator": "followup-14"
        },
        {
          "id": "followup-15",
          "at": "2026-04-15T13:00:00Z",
          "recordedAt": "2026-04-15T13:00:00Z",
          "label": "Acquisition team follow-up",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "observed",
          "disposition": "excluded",
          "reason": "Sales follow-up after qualification; not a new acquisition source.",
          "sourceRef": "synthetic://cash-homebuyer/followup",
          "locator": "followup-15"
        },
        {
          "id": "followup-16",
          "at": "2026-04-16T13:00:00Z",
          "recordedAt": "2026-04-16T13:00:00Z",
          "label": "Acquisition team follow-up",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "observed",
          "disposition": "excluded",
          "reason": "Sales follow-up after qualification; not a new acquisition source.",
          "sourceRef": "synthetic://cash-homebuyer/followup",
          "locator": "followup-16"
        },
        {
          "id": "assessment-1",
          "at": "2026-04-18T14:00:00Z",
          "recordedAt": "2026-04-18T14:00:00Z",
          "label": "Property assessment completed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/assessment",
          "locator": "assessment-1"
        },
        {
          "id": "offer-1",
          "at": "2026-04-24T10:00:00Z",
          "recordedAt": "2026-04-24T10:00:00Z",
          "label": "Written purchase offer delivered",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/offer",
          "locator": "offer-1"
        },
        {
          "id": "contract-1",
          "at": "2026-05-02T12:00:00Z",
          "recordedAt": "2026-05-02T12:00:00Z",
          "label": "Acquisition contract signed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/contract",
          "locator": "contract-1"
        },
        {
          "id": "marketing-cost",
          "at": "2026-05-03T12:00:00Z",
          "recordedAt": "2026-05-03T12:00:00Z",
          "label": "Acquisition marketing cost allocated",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/cost",
          "locator": "marketing-cost"
        },
        {
          "id": "closing-1",
          "at": "2026-06-02T12:00:00Z",
          "recordedAt": "2026-06-02T12:00:00Z",
          "label": "Property purchase closed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/acquisition",
          "locator": "closing-1"
        },
        {
          "id": "renovation-cost",
          "at": "2026-07-10T12:00:00Z",
          "recordedAt": "2026-07-10T12:00:00Z",
          "label": "Renovation costs reconciled",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/cost",
          "locator": "renovation-cost"
        },
        {
          "id": "resale-1",
          "at": "2026-09-03T12:00:00Z",
          "recordedAt": "2026-09-03T12:00:00Z",
          "label": "Resale proceeds recorded",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/resale",
          "locator": "resale-1"
        },
        {
          "id": "holding-cost",
          "at": "2026-09-05T12:00:00Z",
          "recordedAt": "2026-09-05T12:00:00Z",
          "label": "Holding, financing and transaction costs reconciled",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/cost",
          "locator": "holding-cost"
        }
      ],
      "credit": [
        {
          "channelId": "search-nonbrand",
          "label": "Nonbrand paid search",
          "weight": 0.5,
          "percentage": 50,
          "touchIds": [
            "click-nonbrand"
          ]
        },
        {
          "channelId": "search-brand",
          "label": "Brand paid search",
          "weight": 0.5,
          "percentage": 50,
          "touchIds": [
            "click-brand"
          ]
        }
      ],
      "outcome": {
        "qualifiedOpportunities": 1,
        "contracts": 1,
        "acquisitions": 1,
        "resales": 1,
        "canceled": false,
        "stage": "resold",
        "label": "Resale and costs reconciled",
        "capitalDeployed": 210000,
        "resaleProceeds": 295000,
        "contributionBeforeMarketing": 27000,
        "marketingAllocation": 3000,
        "contributionAfterMarketing": 24000,
        "missingCosts": [],
        "contributionStatus": "realized",
        "currency": "USD",
        "sourceIds": [
          "qualified-1",
          "contract-1",
          "marketing-cost",
          "closing-1",
          "renovation-cost",
          "resale-1",
          "holding-cost"
        ]
      },
      "issues": [],
      "creditOutcome": "qualified_seller_property_opportunity",
      "eligibleTouchIds": [
        "click-brand",
        "click-nonbrand"
      ],
      "allocationStatus": "computed",
      "policyVersion": "cash-homebuyer.linear.reported.v1",
      "propertyId": "property-104",
      "opportunityId": "acquisition-204",
      "sellerGroupId": "seller-group-14",
      "receiptHash": "9b646aca4a0c78b6a67d35d2ab1d4326e487436d2a671fbe0e79f689009dccb0"
    },
    {
      "key": "canceled|observed|contract|first",
      "scenarioId": "canceled",
      "evidencePolicyId": "observed",
      "cutoffId": "contract",
      "policyId": "first",
      "proofKey": "canceled|observed|contract",
      "asOf": "2026-05-15T23:59:59Z",
      "status": "complete",
      "summary": "Contract signed · purchase pending. Credit describes this qualified opportunity under the selected policy; it does not establish causal lift.",
      "timeline": [
        {
          "id": "click-nonbrand",
          "at": "2026-04-03T10:00:00Z",
          "recordedAt": "2026-04-03T10:00:00Z",
          "label": "Nonbrand search ad clicked",
          "channelId": "search-nonbrand",
          "channelLabel": "Nonbrand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-nonbrand"
        },
        {
          "id": "click-brand",
          "at": "2026-04-08T11:00:00Z",
          "recordedAt": "2026-04-08T11:00:00Z",
          "label": "Brand search ad clicked",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-brand"
        },
        {
          "id": "call-1",
          "at": "2026-04-09T12:00:00Z",
          "recordedAt": "2026-04-09T12:00:00Z",
          "label": "Seller called the website number",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/call",
          "locator": "call-1"
        },
        {
          "id": "qualified-1",
          "at": "2026-04-09T15:00:00Z",
          "recordedAt": "2026-04-09T15:00:00Z",
          "label": "Seller-property opportunity qualified",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/qualified",
          "locator": "qualified-1"
        },
        {
          "id": "assessment-1",
          "at": "2026-04-18T14:00:00Z",
          "recordedAt": "2026-04-18T14:00:00Z",
          "label": "Property assessment completed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/assessment",
          "locator": "assessment-1"
        },
        {
          "id": "offer-1",
          "at": "2026-04-24T10:00:00Z",
          "recordedAt": "2026-04-24T10:00:00Z",
          "label": "Written purchase offer delivered",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/offer",
          "locator": "offer-1"
        },
        {
          "id": "contract-1",
          "at": "2026-05-02T12:00:00Z",
          "recordedAt": "2026-05-02T12:00:00Z",
          "label": "Acquisition contract signed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/contract",
          "locator": "contract-1"
        },
        {
          "id": "marketing-cost",
          "at": "2026-05-03T12:00:00Z",
          "recordedAt": "2026-05-03T12:00:00Z",
          "label": "Acquisition marketing cost allocated",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/cost",
          "locator": "marketing-cost"
        }
      ],
      "credit": [
        {
          "channelId": "search-nonbrand",
          "label": "Nonbrand paid search",
          "weight": 1,
          "percentage": 100,
          "touchIds": [
            "click-nonbrand"
          ]
        }
      ],
      "outcome": {
        "qualifiedOpportunities": 1,
        "contracts": 1,
        "acquisitions": 0,
        "resales": 0,
        "canceled": false,
        "stage": "contract",
        "label": "Contract signed · purchase pending",
        "capitalDeployed": null,
        "resaleProceeds": null,
        "contributionBeforeMarketing": null,
        "marketingAllocation": 3000,
        "contributionAfterMarketing": null,
        "missingCosts": [
          "renovation",
          "holdingAndTransaction"
        ],
        "contributionStatus": "pending",
        "currency": "USD",
        "sourceIds": [
          "qualified-1",
          "contract-1",
          "marketing-cost"
        ]
      },
      "issues": [],
      "creditOutcome": "qualified_seller_property_opportunity",
      "eligibleTouchIds": [
        "click-brand",
        "click-nonbrand"
      ],
      "allocationStatus": "computed",
      "policyVersion": "cash-homebuyer.first.observed.v1",
      "propertyId": "property-104",
      "opportunityId": "acquisition-204",
      "sellerGroupId": "seller-group-14",
      "receiptHash": "93f7e094f13a05580047d0224d2d1dc6d98e88393cb72be5f5bc82668080fd5d"
    },
    {
      "key": "canceled|observed|contract|last",
      "scenarioId": "canceled",
      "evidencePolicyId": "observed",
      "cutoffId": "contract",
      "policyId": "last",
      "proofKey": "canceled|observed|contract",
      "asOf": "2026-05-15T23:59:59Z",
      "status": "complete",
      "summary": "Contract signed · purchase pending. Credit describes this qualified opportunity under the selected policy; it does not establish causal lift.",
      "timeline": [
        {
          "id": "click-nonbrand",
          "at": "2026-04-03T10:00:00Z",
          "recordedAt": "2026-04-03T10:00:00Z",
          "label": "Nonbrand search ad clicked",
          "channelId": "search-nonbrand",
          "channelLabel": "Nonbrand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-nonbrand"
        },
        {
          "id": "click-brand",
          "at": "2026-04-08T11:00:00Z",
          "recordedAt": "2026-04-08T11:00:00Z",
          "label": "Brand search ad clicked",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-brand"
        },
        {
          "id": "call-1",
          "at": "2026-04-09T12:00:00Z",
          "recordedAt": "2026-04-09T12:00:00Z",
          "label": "Seller called the website number",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/call",
          "locator": "call-1"
        },
        {
          "id": "qualified-1",
          "at": "2026-04-09T15:00:00Z",
          "recordedAt": "2026-04-09T15:00:00Z",
          "label": "Seller-property opportunity qualified",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/qualified",
          "locator": "qualified-1"
        },
        {
          "id": "assessment-1",
          "at": "2026-04-18T14:00:00Z",
          "recordedAt": "2026-04-18T14:00:00Z",
          "label": "Property assessment completed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/assessment",
          "locator": "assessment-1"
        },
        {
          "id": "offer-1",
          "at": "2026-04-24T10:00:00Z",
          "recordedAt": "2026-04-24T10:00:00Z",
          "label": "Written purchase offer delivered",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/offer",
          "locator": "offer-1"
        },
        {
          "id": "contract-1",
          "at": "2026-05-02T12:00:00Z",
          "recordedAt": "2026-05-02T12:00:00Z",
          "label": "Acquisition contract signed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/contract",
          "locator": "contract-1"
        },
        {
          "id": "marketing-cost",
          "at": "2026-05-03T12:00:00Z",
          "recordedAt": "2026-05-03T12:00:00Z",
          "label": "Acquisition marketing cost allocated",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/cost",
          "locator": "marketing-cost"
        }
      ],
      "credit": [
        {
          "channelId": "search-brand",
          "label": "Brand paid search",
          "weight": 1,
          "percentage": 100,
          "touchIds": [
            "click-brand"
          ]
        }
      ],
      "outcome": {
        "qualifiedOpportunities": 1,
        "contracts": 1,
        "acquisitions": 0,
        "resales": 0,
        "canceled": false,
        "stage": "contract",
        "label": "Contract signed · purchase pending",
        "capitalDeployed": null,
        "resaleProceeds": null,
        "contributionBeforeMarketing": null,
        "marketingAllocation": 3000,
        "contributionAfterMarketing": null,
        "missingCosts": [
          "renovation",
          "holdingAndTransaction"
        ],
        "contributionStatus": "pending",
        "currency": "USD",
        "sourceIds": [
          "qualified-1",
          "contract-1",
          "marketing-cost"
        ]
      },
      "issues": [],
      "creditOutcome": "qualified_seller_property_opportunity",
      "eligibleTouchIds": [
        "click-brand",
        "click-nonbrand"
      ],
      "allocationStatus": "computed",
      "policyVersion": "cash-homebuyer.last.observed.v1",
      "propertyId": "property-104",
      "opportunityId": "acquisition-204",
      "sellerGroupId": "seller-group-14",
      "receiptHash": "d348fb7c93686226a111f1cad59b29b6d235279ff70d17580009005d005791fc"
    },
    {
      "key": "canceled|observed|contract|linear",
      "scenarioId": "canceled",
      "evidencePolicyId": "observed",
      "cutoffId": "contract",
      "policyId": "linear",
      "proofKey": "canceled|observed|contract",
      "asOf": "2026-05-15T23:59:59Z",
      "status": "complete",
      "summary": "Contract signed · purchase pending. Credit describes this qualified opportunity under the selected policy; it does not establish causal lift.",
      "timeline": [
        {
          "id": "click-nonbrand",
          "at": "2026-04-03T10:00:00Z",
          "recordedAt": "2026-04-03T10:00:00Z",
          "label": "Nonbrand search ad clicked",
          "channelId": "search-nonbrand",
          "channelLabel": "Nonbrand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-nonbrand"
        },
        {
          "id": "click-brand",
          "at": "2026-04-08T11:00:00Z",
          "recordedAt": "2026-04-08T11:00:00Z",
          "label": "Brand search ad clicked",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-brand"
        },
        {
          "id": "call-1",
          "at": "2026-04-09T12:00:00Z",
          "recordedAt": "2026-04-09T12:00:00Z",
          "label": "Seller called the website number",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/call",
          "locator": "call-1"
        },
        {
          "id": "qualified-1",
          "at": "2026-04-09T15:00:00Z",
          "recordedAt": "2026-04-09T15:00:00Z",
          "label": "Seller-property opportunity qualified",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/qualified",
          "locator": "qualified-1"
        },
        {
          "id": "assessment-1",
          "at": "2026-04-18T14:00:00Z",
          "recordedAt": "2026-04-18T14:00:00Z",
          "label": "Property assessment completed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/assessment",
          "locator": "assessment-1"
        },
        {
          "id": "offer-1",
          "at": "2026-04-24T10:00:00Z",
          "recordedAt": "2026-04-24T10:00:00Z",
          "label": "Written purchase offer delivered",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/offer",
          "locator": "offer-1"
        },
        {
          "id": "contract-1",
          "at": "2026-05-02T12:00:00Z",
          "recordedAt": "2026-05-02T12:00:00Z",
          "label": "Acquisition contract signed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/contract",
          "locator": "contract-1"
        },
        {
          "id": "marketing-cost",
          "at": "2026-05-03T12:00:00Z",
          "recordedAt": "2026-05-03T12:00:00Z",
          "label": "Acquisition marketing cost allocated",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/cost",
          "locator": "marketing-cost"
        }
      ],
      "credit": [
        {
          "channelId": "search-nonbrand",
          "label": "Nonbrand paid search",
          "weight": 0.5,
          "percentage": 50,
          "touchIds": [
            "click-nonbrand"
          ]
        },
        {
          "channelId": "search-brand",
          "label": "Brand paid search",
          "weight": 0.5,
          "percentage": 50,
          "touchIds": [
            "click-brand"
          ]
        }
      ],
      "outcome": {
        "qualifiedOpportunities": 1,
        "contracts": 1,
        "acquisitions": 0,
        "resales": 0,
        "canceled": false,
        "stage": "contract",
        "label": "Contract signed · purchase pending",
        "capitalDeployed": null,
        "resaleProceeds": null,
        "contributionBeforeMarketing": null,
        "marketingAllocation": 3000,
        "contributionAfterMarketing": null,
        "missingCosts": [
          "renovation",
          "holdingAndTransaction"
        ],
        "contributionStatus": "pending",
        "currency": "USD",
        "sourceIds": [
          "qualified-1",
          "contract-1",
          "marketing-cost"
        ]
      },
      "issues": [],
      "creditOutcome": "qualified_seller_property_opportunity",
      "eligibleTouchIds": [
        "click-brand",
        "click-nonbrand"
      ],
      "allocationStatus": "computed",
      "policyVersion": "cash-homebuyer.linear.observed.v1",
      "propertyId": "property-104",
      "opportunityId": "acquisition-204",
      "sellerGroupId": "seller-group-14",
      "receiptHash": "25e286de2e7a0b0f2d01949fbb5a4cb293938373aa892b74ffddef12c556d1a9"
    },
    {
      "key": "canceled|observed|acquired|first",
      "scenarioId": "canceled",
      "evidencePolicyId": "observed",
      "cutoffId": "acquired",
      "policyId": "first",
      "proofKey": "canceled|observed|acquired",
      "asOf": "2026-06-15T23:59:59Z",
      "status": "complete",
      "summary": "Contract canceled · no purchase. Credit describes this qualified opportunity under the selected policy; it does not establish causal lift.",
      "timeline": [
        {
          "id": "click-nonbrand",
          "at": "2026-04-03T10:00:00Z",
          "recordedAt": "2026-04-03T10:00:00Z",
          "label": "Nonbrand search ad clicked",
          "channelId": "search-nonbrand",
          "channelLabel": "Nonbrand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-nonbrand"
        },
        {
          "id": "click-brand",
          "at": "2026-04-08T11:00:00Z",
          "recordedAt": "2026-04-08T11:00:00Z",
          "label": "Brand search ad clicked",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-brand"
        },
        {
          "id": "call-1",
          "at": "2026-04-09T12:00:00Z",
          "recordedAt": "2026-04-09T12:00:00Z",
          "label": "Seller called the website number",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/call",
          "locator": "call-1"
        },
        {
          "id": "qualified-1",
          "at": "2026-04-09T15:00:00Z",
          "recordedAt": "2026-04-09T15:00:00Z",
          "label": "Seller-property opportunity qualified",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/qualified",
          "locator": "qualified-1"
        },
        {
          "id": "assessment-1",
          "at": "2026-04-18T14:00:00Z",
          "recordedAt": "2026-04-18T14:00:00Z",
          "label": "Property assessment completed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/assessment",
          "locator": "assessment-1"
        },
        {
          "id": "offer-1",
          "at": "2026-04-24T10:00:00Z",
          "recordedAt": "2026-04-24T10:00:00Z",
          "label": "Written purchase offer delivered",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/offer",
          "locator": "offer-1"
        },
        {
          "id": "contract-1",
          "at": "2026-05-02T12:00:00Z",
          "recordedAt": "2026-05-02T12:00:00Z",
          "label": "Acquisition contract signed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/contract",
          "locator": "contract-1"
        },
        {
          "id": "marketing-cost",
          "at": "2026-05-03T12:00:00Z",
          "recordedAt": "2026-05-03T12:00:00Z",
          "label": "Acquisition marketing cost allocated",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/cost",
          "locator": "marketing-cost"
        },
        {
          "id": "cancellation-1",
          "at": "2026-05-20T12:00:00Z",
          "recordedAt": "2026-05-20T12:00:00Z",
          "label": "Acquisition contract canceled",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/cancellation",
          "locator": "cancellation-1"
        }
      ],
      "credit": [
        {
          "channelId": "search-nonbrand",
          "label": "Nonbrand paid search",
          "weight": 1,
          "percentage": 100,
          "touchIds": [
            "click-nonbrand"
          ]
        }
      ],
      "outcome": {
        "qualifiedOpportunities": 1,
        "contracts": 1,
        "acquisitions": 0,
        "resales": 0,
        "canceled": true,
        "stage": "canceled",
        "label": "Contract canceled · no purchase",
        "capitalDeployed": null,
        "resaleProceeds": null,
        "contributionBeforeMarketing": null,
        "marketingAllocation": 3000,
        "contributionAfterMarketing": null,
        "missingCosts": [
          "renovation",
          "holdingAndTransaction"
        ],
        "contributionStatus": "pending",
        "currency": "USD",
        "sourceIds": [
          "qualified-1",
          "contract-1",
          "marketing-cost",
          "cancellation-1"
        ]
      },
      "issues": [],
      "creditOutcome": "qualified_seller_property_opportunity",
      "eligibleTouchIds": [
        "click-brand",
        "click-nonbrand"
      ],
      "allocationStatus": "computed",
      "policyVersion": "cash-homebuyer.first.observed.v1",
      "propertyId": "property-104",
      "opportunityId": "acquisition-204",
      "sellerGroupId": "seller-group-14",
      "receiptHash": "bbac8413a230dfb2ccd952f22609fb21a45a61df8c059e1ae6726eb735440f94"
    },
    {
      "key": "canceled|observed|acquired|last",
      "scenarioId": "canceled",
      "evidencePolicyId": "observed",
      "cutoffId": "acquired",
      "policyId": "last",
      "proofKey": "canceled|observed|acquired",
      "asOf": "2026-06-15T23:59:59Z",
      "status": "complete",
      "summary": "Contract canceled · no purchase. Credit describes this qualified opportunity under the selected policy; it does not establish causal lift.",
      "timeline": [
        {
          "id": "click-nonbrand",
          "at": "2026-04-03T10:00:00Z",
          "recordedAt": "2026-04-03T10:00:00Z",
          "label": "Nonbrand search ad clicked",
          "channelId": "search-nonbrand",
          "channelLabel": "Nonbrand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-nonbrand"
        },
        {
          "id": "click-brand",
          "at": "2026-04-08T11:00:00Z",
          "recordedAt": "2026-04-08T11:00:00Z",
          "label": "Brand search ad clicked",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-brand"
        },
        {
          "id": "call-1",
          "at": "2026-04-09T12:00:00Z",
          "recordedAt": "2026-04-09T12:00:00Z",
          "label": "Seller called the website number",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/call",
          "locator": "call-1"
        },
        {
          "id": "qualified-1",
          "at": "2026-04-09T15:00:00Z",
          "recordedAt": "2026-04-09T15:00:00Z",
          "label": "Seller-property opportunity qualified",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/qualified",
          "locator": "qualified-1"
        },
        {
          "id": "assessment-1",
          "at": "2026-04-18T14:00:00Z",
          "recordedAt": "2026-04-18T14:00:00Z",
          "label": "Property assessment completed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/assessment",
          "locator": "assessment-1"
        },
        {
          "id": "offer-1",
          "at": "2026-04-24T10:00:00Z",
          "recordedAt": "2026-04-24T10:00:00Z",
          "label": "Written purchase offer delivered",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/offer",
          "locator": "offer-1"
        },
        {
          "id": "contract-1",
          "at": "2026-05-02T12:00:00Z",
          "recordedAt": "2026-05-02T12:00:00Z",
          "label": "Acquisition contract signed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/contract",
          "locator": "contract-1"
        },
        {
          "id": "marketing-cost",
          "at": "2026-05-03T12:00:00Z",
          "recordedAt": "2026-05-03T12:00:00Z",
          "label": "Acquisition marketing cost allocated",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/cost",
          "locator": "marketing-cost"
        },
        {
          "id": "cancellation-1",
          "at": "2026-05-20T12:00:00Z",
          "recordedAt": "2026-05-20T12:00:00Z",
          "label": "Acquisition contract canceled",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/cancellation",
          "locator": "cancellation-1"
        }
      ],
      "credit": [
        {
          "channelId": "search-brand",
          "label": "Brand paid search",
          "weight": 1,
          "percentage": 100,
          "touchIds": [
            "click-brand"
          ]
        }
      ],
      "outcome": {
        "qualifiedOpportunities": 1,
        "contracts": 1,
        "acquisitions": 0,
        "resales": 0,
        "canceled": true,
        "stage": "canceled",
        "label": "Contract canceled · no purchase",
        "capitalDeployed": null,
        "resaleProceeds": null,
        "contributionBeforeMarketing": null,
        "marketingAllocation": 3000,
        "contributionAfterMarketing": null,
        "missingCosts": [
          "renovation",
          "holdingAndTransaction"
        ],
        "contributionStatus": "pending",
        "currency": "USD",
        "sourceIds": [
          "qualified-1",
          "contract-1",
          "marketing-cost",
          "cancellation-1"
        ]
      },
      "issues": [],
      "creditOutcome": "qualified_seller_property_opportunity",
      "eligibleTouchIds": [
        "click-brand",
        "click-nonbrand"
      ],
      "allocationStatus": "computed",
      "policyVersion": "cash-homebuyer.last.observed.v1",
      "propertyId": "property-104",
      "opportunityId": "acquisition-204",
      "sellerGroupId": "seller-group-14",
      "receiptHash": "0c42e3bce928cae36a1e1a4f2a6408aaf449dd629508d3376fd93f42ed9b9593"
    },
    {
      "key": "canceled|observed|acquired|linear",
      "scenarioId": "canceled",
      "evidencePolicyId": "observed",
      "cutoffId": "acquired",
      "policyId": "linear",
      "proofKey": "canceled|observed|acquired",
      "asOf": "2026-06-15T23:59:59Z",
      "status": "complete",
      "summary": "Contract canceled · no purchase. Credit describes this qualified opportunity under the selected policy; it does not establish causal lift.",
      "timeline": [
        {
          "id": "click-nonbrand",
          "at": "2026-04-03T10:00:00Z",
          "recordedAt": "2026-04-03T10:00:00Z",
          "label": "Nonbrand search ad clicked",
          "channelId": "search-nonbrand",
          "channelLabel": "Nonbrand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-nonbrand"
        },
        {
          "id": "click-brand",
          "at": "2026-04-08T11:00:00Z",
          "recordedAt": "2026-04-08T11:00:00Z",
          "label": "Brand search ad clicked",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-brand"
        },
        {
          "id": "call-1",
          "at": "2026-04-09T12:00:00Z",
          "recordedAt": "2026-04-09T12:00:00Z",
          "label": "Seller called the website number",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/call",
          "locator": "call-1"
        },
        {
          "id": "qualified-1",
          "at": "2026-04-09T15:00:00Z",
          "recordedAt": "2026-04-09T15:00:00Z",
          "label": "Seller-property opportunity qualified",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/qualified",
          "locator": "qualified-1"
        },
        {
          "id": "assessment-1",
          "at": "2026-04-18T14:00:00Z",
          "recordedAt": "2026-04-18T14:00:00Z",
          "label": "Property assessment completed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/assessment",
          "locator": "assessment-1"
        },
        {
          "id": "offer-1",
          "at": "2026-04-24T10:00:00Z",
          "recordedAt": "2026-04-24T10:00:00Z",
          "label": "Written purchase offer delivered",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/offer",
          "locator": "offer-1"
        },
        {
          "id": "contract-1",
          "at": "2026-05-02T12:00:00Z",
          "recordedAt": "2026-05-02T12:00:00Z",
          "label": "Acquisition contract signed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/contract",
          "locator": "contract-1"
        },
        {
          "id": "marketing-cost",
          "at": "2026-05-03T12:00:00Z",
          "recordedAt": "2026-05-03T12:00:00Z",
          "label": "Acquisition marketing cost allocated",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/cost",
          "locator": "marketing-cost"
        },
        {
          "id": "cancellation-1",
          "at": "2026-05-20T12:00:00Z",
          "recordedAt": "2026-05-20T12:00:00Z",
          "label": "Acquisition contract canceled",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/cancellation",
          "locator": "cancellation-1"
        }
      ],
      "credit": [
        {
          "channelId": "search-nonbrand",
          "label": "Nonbrand paid search",
          "weight": 0.5,
          "percentage": 50,
          "touchIds": [
            "click-nonbrand"
          ]
        },
        {
          "channelId": "search-brand",
          "label": "Brand paid search",
          "weight": 0.5,
          "percentage": 50,
          "touchIds": [
            "click-brand"
          ]
        }
      ],
      "outcome": {
        "qualifiedOpportunities": 1,
        "contracts": 1,
        "acquisitions": 0,
        "resales": 0,
        "canceled": true,
        "stage": "canceled",
        "label": "Contract canceled · no purchase",
        "capitalDeployed": null,
        "resaleProceeds": null,
        "contributionBeforeMarketing": null,
        "marketingAllocation": 3000,
        "contributionAfterMarketing": null,
        "missingCosts": [
          "renovation",
          "holdingAndTransaction"
        ],
        "contributionStatus": "pending",
        "currency": "USD",
        "sourceIds": [
          "qualified-1",
          "contract-1",
          "marketing-cost",
          "cancellation-1"
        ]
      },
      "issues": [],
      "creditOutcome": "qualified_seller_property_opportunity",
      "eligibleTouchIds": [
        "click-brand",
        "click-nonbrand"
      ],
      "allocationStatus": "computed",
      "policyVersion": "cash-homebuyer.linear.observed.v1",
      "propertyId": "property-104",
      "opportunityId": "acquisition-204",
      "sellerGroupId": "seller-group-14",
      "receiptHash": "4bbc5be9bd21ff57327b896c6253e536a5bc0ae892e87ced152909fec271ed3b"
    },
    {
      "key": "canceled|observed|resale|first",
      "scenarioId": "canceled",
      "evidencePolicyId": "observed",
      "cutoffId": "resale",
      "policyId": "first",
      "proofKey": "canceled|observed|resale",
      "asOf": "2026-09-15T23:59:59Z",
      "status": "complete",
      "summary": "Contract canceled · no purchase. Credit describes this qualified opportunity under the selected policy; it does not establish causal lift.",
      "timeline": [
        {
          "id": "click-nonbrand",
          "at": "2026-04-03T10:00:00Z",
          "recordedAt": "2026-04-03T10:00:00Z",
          "label": "Nonbrand search ad clicked",
          "channelId": "search-nonbrand",
          "channelLabel": "Nonbrand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-nonbrand"
        },
        {
          "id": "click-brand",
          "at": "2026-04-08T11:00:00Z",
          "recordedAt": "2026-04-08T11:00:00Z",
          "label": "Brand search ad clicked",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-brand"
        },
        {
          "id": "call-1",
          "at": "2026-04-09T12:00:00Z",
          "recordedAt": "2026-04-09T12:00:00Z",
          "label": "Seller called the website number",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/call",
          "locator": "call-1"
        },
        {
          "id": "qualified-1",
          "at": "2026-04-09T15:00:00Z",
          "recordedAt": "2026-04-09T15:00:00Z",
          "label": "Seller-property opportunity qualified",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/qualified",
          "locator": "qualified-1"
        },
        {
          "id": "assessment-1",
          "at": "2026-04-18T14:00:00Z",
          "recordedAt": "2026-04-18T14:00:00Z",
          "label": "Property assessment completed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/assessment",
          "locator": "assessment-1"
        },
        {
          "id": "offer-1",
          "at": "2026-04-24T10:00:00Z",
          "recordedAt": "2026-04-24T10:00:00Z",
          "label": "Written purchase offer delivered",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/offer",
          "locator": "offer-1"
        },
        {
          "id": "contract-1",
          "at": "2026-05-02T12:00:00Z",
          "recordedAt": "2026-05-02T12:00:00Z",
          "label": "Acquisition contract signed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/contract",
          "locator": "contract-1"
        },
        {
          "id": "marketing-cost",
          "at": "2026-05-03T12:00:00Z",
          "recordedAt": "2026-05-03T12:00:00Z",
          "label": "Acquisition marketing cost allocated",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/cost",
          "locator": "marketing-cost"
        },
        {
          "id": "cancellation-1",
          "at": "2026-05-20T12:00:00Z",
          "recordedAt": "2026-05-20T12:00:00Z",
          "label": "Acquisition contract canceled",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/cancellation",
          "locator": "cancellation-1"
        }
      ],
      "credit": [
        {
          "channelId": "search-nonbrand",
          "label": "Nonbrand paid search",
          "weight": 1,
          "percentage": 100,
          "touchIds": [
            "click-nonbrand"
          ]
        }
      ],
      "outcome": {
        "qualifiedOpportunities": 1,
        "contracts": 1,
        "acquisitions": 0,
        "resales": 0,
        "canceled": true,
        "stage": "canceled",
        "label": "Contract canceled · no purchase",
        "capitalDeployed": null,
        "resaleProceeds": null,
        "contributionBeforeMarketing": null,
        "marketingAllocation": 3000,
        "contributionAfterMarketing": null,
        "missingCosts": [
          "renovation",
          "holdingAndTransaction"
        ],
        "contributionStatus": "pending",
        "currency": "USD",
        "sourceIds": [
          "qualified-1",
          "contract-1",
          "marketing-cost",
          "cancellation-1"
        ]
      },
      "issues": [],
      "creditOutcome": "qualified_seller_property_opportunity",
      "eligibleTouchIds": [
        "click-brand",
        "click-nonbrand"
      ],
      "allocationStatus": "computed",
      "policyVersion": "cash-homebuyer.first.observed.v1",
      "propertyId": "property-104",
      "opportunityId": "acquisition-204",
      "sellerGroupId": "seller-group-14",
      "receiptHash": "267c5060fc0c380237ef3eca9034ee82d90595b06cc7eafe1e0dad91612d7fb0"
    },
    {
      "key": "canceled|observed|resale|last",
      "scenarioId": "canceled",
      "evidencePolicyId": "observed",
      "cutoffId": "resale",
      "policyId": "last",
      "proofKey": "canceled|observed|resale",
      "asOf": "2026-09-15T23:59:59Z",
      "status": "complete",
      "summary": "Contract canceled · no purchase. Credit describes this qualified opportunity under the selected policy; it does not establish causal lift.",
      "timeline": [
        {
          "id": "click-nonbrand",
          "at": "2026-04-03T10:00:00Z",
          "recordedAt": "2026-04-03T10:00:00Z",
          "label": "Nonbrand search ad clicked",
          "channelId": "search-nonbrand",
          "channelLabel": "Nonbrand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-nonbrand"
        },
        {
          "id": "click-brand",
          "at": "2026-04-08T11:00:00Z",
          "recordedAt": "2026-04-08T11:00:00Z",
          "label": "Brand search ad clicked",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-brand"
        },
        {
          "id": "call-1",
          "at": "2026-04-09T12:00:00Z",
          "recordedAt": "2026-04-09T12:00:00Z",
          "label": "Seller called the website number",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/call",
          "locator": "call-1"
        },
        {
          "id": "qualified-1",
          "at": "2026-04-09T15:00:00Z",
          "recordedAt": "2026-04-09T15:00:00Z",
          "label": "Seller-property opportunity qualified",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/qualified",
          "locator": "qualified-1"
        },
        {
          "id": "assessment-1",
          "at": "2026-04-18T14:00:00Z",
          "recordedAt": "2026-04-18T14:00:00Z",
          "label": "Property assessment completed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/assessment",
          "locator": "assessment-1"
        },
        {
          "id": "offer-1",
          "at": "2026-04-24T10:00:00Z",
          "recordedAt": "2026-04-24T10:00:00Z",
          "label": "Written purchase offer delivered",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/offer",
          "locator": "offer-1"
        },
        {
          "id": "contract-1",
          "at": "2026-05-02T12:00:00Z",
          "recordedAt": "2026-05-02T12:00:00Z",
          "label": "Acquisition contract signed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/contract",
          "locator": "contract-1"
        },
        {
          "id": "marketing-cost",
          "at": "2026-05-03T12:00:00Z",
          "recordedAt": "2026-05-03T12:00:00Z",
          "label": "Acquisition marketing cost allocated",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/cost",
          "locator": "marketing-cost"
        },
        {
          "id": "cancellation-1",
          "at": "2026-05-20T12:00:00Z",
          "recordedAt": "2026-05-20T12:00:00Z",
          "label": "Acquisition contract canceled",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/cancellation",
          "locator": "cancellation-1"
        }
      ],
      "credit": [
        {
          "channelId": "search-brand",
          "label": "Brand paid search",
          "weight": 1,
          "percentage": 100,
          "touchIds": [
            "click-brand"
          ]
        }
      ],
      "outcome": {
        "qualifiedOpportunities": 1,
        "contracts": 1,
        "acquisitions": 0,
        "resales": 0,
        "canceled": true,
        "stage": "canceled",
        "label": "Contract canceled · no purchase",
        "capitalDeployed": null,
        "resaleProceeds": null,
        "contributionBeforeMarketing": null,
        "marketingAllocation": 3000,
        "contributionAfterMarketing": null,
        "missingCosts": [
          "renovation",
          "holdingAndTransaction"
        ],
        "contributionStatus": "pending",
        "currency": "USD",
        "sourceIds": [
          "qualified-1",
          "contract-1",
          "marketing-cost",
          "cancellation-1"
        ]
      },
      "issues": [],
      "creditOutcome": "qualified_seller_property_opportunity",
      "eligibleTouchIds": [
        "click-brand",
        "click-nonbrand"
      ],
      "allocationStatus": "computed",
      "policyVersion": "cash-homebuyer.last.observed.v1",
      "propertyId": "property-104",
      "opportunityId": "acquisition-204",
      "sellerGroupId": "seller-group-14",
      "receiptHash": "83d662c92b0c57a4c8176654eb020bfc47e819f0e32016da25f50a1600f10286"
    },
    {
      "key": "canceled|observed|resale|linear",
      "scenarioId": "canceled",
      "evidencePolicyId": "observed",
      "cutoffId": "resale",
      "policyId": "linear",
      "proofKey": "canceled|observed|resale",
      "asOf": "2026-09-15T23:59:59Z",
      "status": "complete",
      "summary": "Contract canceled · no purchase. Credit describes this qualified opportunity under the selected policy; it does not establish causal lift.",
      "timeline": [
        {
          "id": "click-nonbrand",
          "at": "2026-04-03T10:00:00Z",
          "recordedAt": "2026-04-03T10:00:00Z",
          "label": "Nonbrand search ad clicked",
          "channelId": "search-nonbrand",
          "channelLabel": "Nonbrand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-nonbrand"
        },
        {
          "id": "click-brand",
          "at": "2026-04-08T11:00:00Z",
          "recordedAt": "2026-04-08T11:00:00Z",
          "label": "Brand search ad clicked",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-brand"
        },
        {
          "id": "call-1",
          "at": "2026-04-09T12:00:00Z",
          "recordedAt": "2026-04-09T12:00:00Z",
          "label": "Seller called the website number",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/call",
          "locator": "call-1"
        },
        {
          "id": "qualified-1",
          "at": "2026-04-09T15:00:00Z",
          "recordedAt": "2026-04-09T15:00:00Z",
          "label": "Seller-property opportunity qualified",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/qualified",
          "locator": "qualified-1"
        },
        {
          "id": "assessment-1",
          "at": "2026-04-18T14:00:00Z",
          "recordedAt": "2026-04-18T14:00:00Z",
          "label": "Property assessment completed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/assessment",
          "locator": "assessment-1"
        },
        {
          "id": "offer-1",
          "at": "2026-04-24T10:00:00Z",
          "recordedAt": "2026-04-24T10:00:00Z",
          "label": "Written purchase offer delivered",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/offer",
          "locator": "offer-1"
        },
        {
          "id": "contract-1",
          "at": "2026-05-02T12:00:00Z",
          "recordedAt": "2026-05-02T12:00:00Z",
          "label": "Acquisition contract signed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/contract",
          "locator": "contract-1"
        },
        {
          "id": "marketing-cost",
          "at": "2026-05-03T12:00:00Z",
          "recordedAt": "2026-05-03T12:00:00Z",
          "label": "Acquisition marketing cost allocated",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/cost",
          "locator": "marketing-cost"
        },
        {
          "id": "cancellation-1",
          "at": "2026-05-20T12:00:00Z",
          "recordedAt": "2026-05-20T12:00:00Z",
          "label": "Acquisition contract canceled",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/cancellation",
          "locator": "cancellation-1"
        }
      ],
      "credit": [
        {
          "channelId": "search-nonbrand",
          "label": "Nonbrand paid search",
          "weight": 0.5,
          "percentage": 50,
          "touchIds": [
            "click-nonbrand"
          ]
        },
        {
          "channelId": "search-brand",
          "label": "Brand paid search",
          "weight": 0.5,
          "percentage": 50,
          "touchIds": [
            "click-brand"
          ]
        }
      ],
      "outcome": {
        "qualifiedOpportunities": 1,
        "contracts": 1,
        "acquisitions": 0,
        "resales": 0,
        "canceled": true,
        "stage": "canceled",
        "label": "Contract canceled · no purchase",
        "capitalDeployed": null,
        "resaleProceeds": null,
        "contributionBeforeMarketing": null,
        "marketingAllocation": 3000,
        "contributionAfterMarketing": null,
        "missingCosts": [
          "renovation",
          "holdingAndTransaction"
        ],
        "contributionStatus": "pending",
        "currency": "USD",
        "sourceIds": [
          "qualified-1",
          "contract-1",
          "marketing-cost",
          "cancellation-1"
        ]
      },
      "issues": [],
      "creditOutcome": "qualified_seller_property_opportunity",
      "eligibleTouchIds": [
        "click-brand",
        "click-nonbrand"
      ],
      "allocationStatus": "computed",
      "policyVersion": "cash-homebuyer.linear.observed.v1",
      "propertyId": "property-104",
      "opportunityId": "acquisition-204",
      "sellerGroupId": "seller-group-14",
      "receiptHash": "ac4008782a3347714f625b42535d4336009d9f46b1264eea1af10603861f3a0a"
    },
    {
      "key": "canceled|reported|contract|first",
      "scenarioId": "canceled",
      "evidencePolicyId": "reported",
      "cutoffId": "contract",
      "policyId": "first",
      "proofKey": "canceled|reported|contract",
      "asOf": "2026-05-15T23:59:59Z",
      "status": "complete",
      "summary": "Contract signed · purchase pending. Credit describes this qualified opportunity under the selected policy; it does not establish causal lift.",
      "timeline": [
        {
          "id": "click-nonbrand",
          "at": "2026-04-03T10:00:00Z",
          "recordedAt": "2026-04-03T10:00:00Z",
          "label": "Nonbrand search ad clicked",
          "channelId": "search-nonbrand",
          "channelLabel": "Nonbrand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-nonbrand"
        },
        {
          "id": "click-brand",
          "at": "2026-04-08T11:00:00Z",
          "recordedAt": "2026-04-08T11:00:00Z",
          "label": "Brand search ad clicked",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-brand"
        },
        {
          "id": "call-1",
          "at": "2026-04-09T12:00:00Z",
          "recordedAt": "2026-04-09T12:00:00Z",
          "label": "Seller called the website number",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/call",
          "locator": "call-1"
        },
        {
          "id": "qualified-1",
          "at": "2026-04-09T15:00:00Z",
          "recordedAt": "2026-04-09T15:00:00Z",
          "label": "Seller-property opportunity qualified",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/qualified",
          "locator": "qualified-1"
        },
        {
          "id": "assessment-1",
          "at": "2026-04-18T14:00:00Z",
          "recordedAt": "2026-04-18T14:00:00Z",
          "label": "Property assessment completed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/assessment",
          "locator": "assessment-1"
        },
        {
          "id": "offer-1",
          "at": "2026-04-24T10:00:00Z",
          "recordedAt": "2026-04-24T10:00:00Z",
          "label": "Written purchase offer delivered",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/offer",
          "locator": "offer-1"
        },
        {
          "id": "contract-1",
          "at": "2026-05-02T12:00:00Z",
          "recordedAt": "2026-05-02T12:00:00Z",
          "label": "Acquisition contract signed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/contract",
          "locator": "contract-1"
        },
        {
          "id": "marketing-cost",
          "at": "2026-05-03T12:00:00Z",
          "recordedAt": "2026-05-03T12:00:00Z",
          "label": "Acquisition marketing cost allocated",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/cost",
          "locator": "marketing-cost"
        }
      ],
      "credit": [
        {
          "channelId": "search-nonbrand",
          "label": "Nonbrand paid search",
          "weight": 1,
          "percentage": 100,
          "touchIds": [
            "click-nonbrand"
          ]
        }
      ],
      "outcome": {
        "qualifiedOpportunities": 1,
        "contracts": 1,
        "acquisitions": 0,
        "resales": 0,
        "canceled": false,
        "stage": "contract",
        "label": "Contract signed · purchase pending",
        "capitalDeployed": null,
        "resaleProceeds": null,
        "contributionBeforeMarketing": null,
        "marketingAllocation": 3000,
        "contributionAfterMarketing": null,
        "missingCosts": [
          "renovation",
          "holdingAndTransaction"
        ],
        "contributionStatus": "pending",
        "currency": "USD",
        "sourceIds": [
          "qualified-1",
          "contract-1",
          "marketing-cost"
        ]
      },
      "issues": [],
      "creditOutcome": "qualified_seller_property_opportunity",
      "eligibleTouchIds": [
        "click-brand",
        "click-nonbrand"
      ],
      "allocationStatus": "computed",
      "policyVersion": "cash-homebuyer.first.reported.v1",
      "propertyId": "property-104",
      "opportunityId": "acquisition-204",
      "sellerGroupId": "seller-group-14",
      "receiptHash": "4a5cb0113a023f6aac658ada967ec26ae2dad69f6e536bc3d63a9401bd72bce9"
    },
    {
      "key": "canceled|reported|contract|last",
      "scenarioId": "canceled",
      "evidencePolicyId": "reported",
      "cutoffId": "contract",
      "policyId": "last",
      "proofKey": "canceled|reported|contract",
      "asOf": "2026-05-15T23:59:59Z",
      "status": "complete",
      "summary": "Contract signed · purchase pending. Credit describes this qualified opportunity under the selected policy; it does not establish causal lift.",
      "timeline": [
        {
          "id": "click-nonbrand",
          "at": "2026-04-03T10:00:00Z",
          "recordedAt": "2026-04-03T10:00:00Z",
          "label": "Nonbrand search ad clicked",
          "channelId": "search-nonbrand",
          "channelLabel": "Nonbrand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-nonbrand"
        },
        {
          "id": "click-brand",
          "at": "2026-04-08T11:00:00Z",
          "recordedAt": "2026-04-08T11:00:00Z",
          "label": "Brand search ad clicked",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-brand"
        },
        {
          "id": "call-1",
          "at": "2026-04-09T12:00:00Z",
          "recordedAt": "2026-04-09T12:00:00Z",
          "label": "Seller called the website number",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/call",
          "locator": "call-1"
        },
        {
          "id": "qualified-1",
          "at": "2026-04-09T15:00:00Z",
          "recordedAt": "2026-04-09T15:00:00Z",
          "label": "Seller-property opportunity qualified",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/qualified",
          "locator": "qualified-1"
        },
        {
          "id": "assessment-1",
          "at": "2026-04-18T14:00:00Z",
          "recordedAt": "2026-04-18T14:00:00Z",
          "label": "Property assessment completed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/assessment",
          "locator": "assessment-1"
        },
        {
          "id": "offer-1",
          "at": "2026-04-24T10:00:00Z",
          "recordedAt": "2026-04-24T10:00:00Z",
          "label": "Written purchase offer delivered",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/offer",
          "locator": "offer-1"
        },
        {
          "id": "contract-1",
          "at": "2026-05-02T12:00:00Z",
          "recordedAt": "2026-05-02T12:00:00Z",
          "label": "Acquisition contract signed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/contract",
          "locator": "contract-1"
        },
        {
          "id": "marketing-cost",
          "at": "2026-05-03T12:00:00Z",
          "recordedAt": "2026-05-03T12:00:00Z",
          "label": "Acquisition marketing cost allocated",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/cost",
          "locator": "marketing-cost"
        }
      ],
      "credit": [
        {
          "channelId": "search-brand",
          "label": "Brand paid search",
          "weight": 1,
          "percentage": 100,
          "touchIds": [
            "click-brand"
          ]
        }
      ],
      "outcome": {
        "qualifiedOpportunities": 1,
        "contracts": 1,
        "acquisitions": 0,
        "resales": 0,
        "canceled": false,
        "stage": "contract",
        "label": "Contract signed · purchase pending",
        "capitalDeployed": null,
        "resaleProceeds": null,
        "contributionBeforeMarketing": null,
        "marketingAllocation": 3000,
        "contributionAfterMarketing": null,
        "missingCosts": [
          "renovation",
          "holdingAndTransaction"
        ],
        "contributionStatus": "pending",
        "currency": "USD",
        "sourceIds": [
          "qualified-1",
          "contract-1",
          "marketing-cost"
        ]
      },
      "issues": [],
      "creditOutcome": "qualified_seller_property_opportunity",
      "eligibleTouchIds": [
        "click-brand",
        "click-nonbrand"
      ],
      "allocationStatus": "computed",
      "policyVersion": "cash-homebuyer.last.reported.v1",
      "propertyId": "property-104",
      "opportunityId": "acquisition-204",
      "sellerGroupId": "seller-group-14",
      "receiptHash": "eedd5e0d72ec15a5f83589efeecd6fcb02e63a5288bfa61b6093c95f23118d5d"
    },
    {
      "key": "canceled|reported|contract|linear",
      "scenarioId": "canceled",
      "evidencePolicyId": "reported",
      "cutoffId": "contract",
      "policyId": "linear",
      "proofKey": "canceled|reported|contract",
      "asOf": "2026-05-15T23:59:59Z",
      "status": "complete",
      "summary": "Contract signed · purchase pending. Credit describes this qualified opportunity under the selected policy; it does not establish causal lift.",
      "timeline": [
        {
          "id": "click-nonbrand",
          "at": "2026-04-03T10:00:00Z",
          "recordedAt": "2026-04-03T10:00:00Z",
          "label": "Nonbrand search ad clicked",
          "channelId": "search-nonbrand",
          "channelLabel": "Nonbrand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-nonbrand"
        },
        {
          "id": "click-brand",
          "at": "2026-04-08T11:00:00Z",
          "recordedAt": "2026-04-08T11:00:00Z",
          "label": "Brand search ad clicked",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-brand"
        },
        {
          "id": "call-1",
          "at": "2026-04-09T12:00:00Z",
          "recordedAt": "2026-04-09T12:00:00Z",
          "label": "Seller called the website number",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/call",
          "locator": "call-1"
        },
        {
          "id": "qualified-1",
          "at": "2026-04-09T15:00:00Z",
          "recordedAt": "2026-04-09T15:00:00Z",
          "label": "Seller-property opportunity qualified",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/qualified",
          "locator": "qualified-1"
        },
        {
          "id": "assessment-1",
          "at": "2026-04-18T14:00:00Z",
          "recordedAt": "2026-04-18T14:00:00Z",
          "label": "Property assessment completed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/assessment",
          "locator": "assessment-1"
        },
        {
          "id": "offer-1",
          "at": "2026-04-24T10:00:00Z",
          "recordedAt": "2026-04-24T10:00:00Z",
          "label": "Written purchase offer delivered",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/offer",
          "locator": "offer-1"
        },
        {
          "id": "contract-1",
          "at": "2026-05-02T12:00:00Z",
          "recordedAt": "2026-05-02T12:00:00Z",
          "label": "Acquisition contract signed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/contract",
          "locator": "contract-1"
        },
        {
          "id": "marketing-cost",
          "at": "2026-05-03T12:00:00Z",
          "recordedAt": "2026-05-03T12:00:00Z",
          "label": "Acquisition marketing cost allocated",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/cost",
          "locator": "marketing-cost"
        }
      ],
      "credit": [
        {
          "channelId": "search-nonbrand",
          "label": "Nonbrand paid search",
          "weight": 0.5,
          "percentage": 50,
          "touchIds": [
            "click-nonbrand"
          ]
        },
        {
          "channelId": "search-brand",
          "label": "Brand paid search",
          "weight": 0.5,
          "percentage": 50,
          "touchIds": [
            "click-brand"
          ]
        }
      ],
      "outcome": {
        "qualifiedOpportunities": 1,
        "contracts": 1,
        "acquisitions": 0,
        "resales": 0,
        "canceled": false,
        "stage": "contract",
        "label": "Contract signed · purchase pending",
        "capitalDeployed": null,
        "resaleProceeds": null,
        "contributionBeforeMarketing": null,
        "marketingAllocation": 3000,
        "contributionAfterMarketing": null,
        "missingCosts": [
          "renovation",
          "holdingAndTransaction"
        ],
        "contributionStatus": "pending",
        "currency": "USD",
        "sourceIds": [
          "qualified-1",
          "contract-1",
          "marketing-cost"
        ]
      },
      "issues": [],
      "creditOutcome": "qualified_seller_property_opportunity",
      "eligibleTouchIds": [
        "click-brand",
        "click-nonbrand"
      ],
      "allocationStatus": "computed",
      "policyVersion": "cash-homebuyer.linear.reported.v1",
      "propertyId": "property-104",
      "opportunityId": "acquisition-204",
      "sellerGroupId": "seller-group-14",
      "receiptHash": "7c0c4cdb14679cbf4c6842885215b4415fb9bb0b694dca8efc08789c83584e97"
    },
    {
      "key": "canceled|reported|acquired|first",
      "scenarioId": "canceled",
      "evidencePolicyId": "reported",
      "cutoffId": "acquired",
      "policyId": "first",
      "proofKey": "canceled|reported|acquired",
      "asOf": "2026-06-15T23:59:59Z",
      "status": "complete",
      "summary": "Contract canceled · no purchase. Credit describes this qualified opportunity under the selected policy; it does not establish causal lift.",
      "timeline": [
        {
          "id": "click-nonbrand",
          "at": "2026-04-03T10:00:00Z",
          "recordedAt": "2026-04-03T10:00:00Z",
          "label": "Nonbrand search ad clicked",
          "channelId": "search-nonbrand",
          "channelLabel": "Nonbrand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-nonbrand"
        },
        {
          "id": "click-brand",
          "at": "2026-04-08T11:00:00Z",
          "recordedAt": "2026-04-08T11:00:00Z",
          "label": "Brand search ad clicked",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-brand"
        },
        {
          "id": "call-1",
          "at": "2026-04-09T12:00:00Z",
          "recordedAt": "2026-04-09T12:00:00Z",
          "label": "Seller called the website number",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/call",
          "locator": "call-1"
        },
        {
          "id": "qualified-1",
          "at": "2026-04-09T15:00:00Z",
          "recordedAt": "2026-04-09T15:00:00Z",
          "label": "Seller-property opportunity qualified",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/qualified",
          "locator": "qualified-1"
        },
        {
          "id": "assessment-1",
          "at": "2026-04-18T14:00:00Z",
          "recordedAt": "2026-04-18T14:00:00Z",
          "label": "Property assessment completed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/assessment",
          "locator": "assessment-1"
        },
        {
          "id": "offer-1",
          "at": "2026-04-24T10:00:00Z",
          "recordedAt": "2026-04-24T10:00:00Z",
          "label": "Written purchase offer delivered",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/offer",
          "locator": "offer-1"
        },
        {
          "id": "contract-1",
          "at": "2026-05-02T12:00:00Z",
          "recordedAt": "2026-05-02T12:00:00Z",
          "label": "Acquisition contract signed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/contract",
          "locator": "contract-1"
        },
        {
          "id": "marketing-cost",
          "at": "2026-05-03T12:00:00Z",
          "recordedAt": "2026-05-03T12:00:00Z",
          "label": "Acquisition marketing cost allocated",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/cost",
          "locator": "marketing-cost"
        },
        {
          "id": "cancellation-1",
          "at": "2026-05-20T12:00:00Z",
          "recordedAt": "2026-05-20T12:00:00Z",
          "label": "Acquisition contract canceled",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/cancellation",
          "locator": "cancellation-1"
        }
      ],
      "credit": [
        {
          "channelId": "search-nonbrand",
          "label": "Nonbrand paid search",
          "weight": 1,
          "percentage": 100,
          "touchIds": [
            "click-nonbrand"
          ]
        }
      ],
      "outcome": {
        "qualifiedOpportunities": 1,
        "contracts": 1,
        "acquisitions": 0,
        "resales": 0,
        "canceled": true,
        "stage": "canceled",
        "label": "Contract canceled · no purchase",
        "capitalDeployed": null,
        "resaleProceeds": null,
        "contributionBeforeMarketing": null,
        "marketingAllocation": 3000,
        "contributionAfterMarketing": null,
        "missingCosts": [
          "renovation",
          "holdingAndTransaction"
        ],
        "contributionStatus": "pending",
        "currency": "USD",
        "sourceIds": [
          "qualified-1",
          "contract-1",
          "marketing-cost",
          "cancellation-1"
        ]
      },
      "issues": [],
      "creditOutcome": "qualified_seller_property_opportunity",
      "eligibleTouchIds": [
        "click-brand",
        "click-nonbrand"
      ],
      "allocationStatus": "computed",
      "policyVersion": "cash-homebuyer.first.reported.v1",
      "propertyId": "property-104",
      "opportunityId": "acquisition-204",
      "sellerGroupId": "seller-group-14",
      "receiptHash": "9d34bce827e5f823ac6bbecfc3859274624ff1e2a6bdbccb36cac26dec8aa232"
    },
    {
      "key": "canceled|reported|acquired|last",
      "scenarioId": "canceled",
      "evidencePolicyId": "reported",
      "cutoffId": "acquired",
      "policyId": "last",
      "proofKey": "canceled|reported|acquired",
      "asOf": "2026-06-15T23:59:59Z",
      "status": "complete",
      "summary": "Contract canceled · no purchase. Credit describes this qualified opportunity under the selected policy; it does not establish causal lift.",
      "timeline": [
        {
          "id": "click-nonbrand",
          "at": "2026-04-03T10:00:00Z",
          "recordedAt": "2026-04-03T10:00:00Z",
          "label": "Nonbrand search ad clicked",
          "channelId": "search-nonbrand",
          "channelLabel": "Nonbrand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-nonbrand"
        },
        {
          "id": "click-brand",
          "at": "2026-04-08T11:00:00Z",
          "recordedAt": "2026-04-08T11:00:00Z",
          "label": "Brand search ad clicked",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-brand"
        },
        {
          "id": "call-1",
          "at": "2026-04-09T12:00:00Z",
          "recordedAt": "2026-04-09T12:00:00Z",
          "label": "Seller called the website number",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/call",
          "locator": "call-1"
        },
        {
          "id": "qualified-1",
          "at": "2026-04-09T15:00:00Z",
          "recordedAt": "2026-04-09T15:00:00Z",
          "label": "Seller-property opportunity qualified",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/qualified",
          "locator": "qualified-1"
        },
        {
          "id": "assessment-1",
          "at": "2026-04-18T14:00:00Z",
          "recordedAt": "2026-04-18T14:00:00Z",
          "label": "Property assessment completed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/assessment",
          "locator": "assessment-1"
        },
        {
          "id": "offer-1",
          "at": "2026-04-24T10:00:00Z",
          "recordedAt": "2026-04-24T10:00:00Z",
          "label": "Written purchase offer delivered",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/offer",
          "locator": "offer-1"
        },
        {
          "id": "contract-1",
          "at": "2026-05-02T12:00:00Z",
          "recordedAt": "2026-05-02T12:00:00Z",
          "label": "Acquisition contract signed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/contract",
          "locator": "contract-1"
        },
        {
          "id": "marketing-cost",
          "at": "2026-05-03T12:00:00Z",
          "recordedAt": "2026-05-03T12:00:00Z",
          "label": "Acquisition marketing cost allocated",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/cost",
          "locator": "marketing-cost"
        },
        {
          "id": "cancellation-1",
          "at": "2026-05-20T12:00:00Z",
          "recordedAt": "2026-05-20T12:00:00Z",
          "label": "Acquisition contract canceled",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/cancellation",
          "locator": "cancellation-1"
        }
      ],
      "credit": [
        {
          "channelId": "search-brand",
          "label": "Brand paid search",
          "weight": 1,
          "percentage": 100,
          "touchIds": [
            "click-brand"
          ]
        }
      ],
      "outcome": {
        "qualifiedOpportunities": 1,
        "contracts": 1,
        "acquisitions": 0,
        "resales": 0,
        "canceled": true,
        "stage": "canceled",
        "label": "Contract canceled · no purchase",
        "capitalDeployed": null,
        "resaleProceeds": null,
        "contributionBeforeMarketing": null,
        "marketingAllocation": 3000,
        "contributionAfterMarketing": null,
        "missingCosts": [
          "renovation",
          "holdingAndTransaction"
        ],
        "contributionStatus": "pending",
        "currency": "USD",
        "sourceIds": [
          "qualified-1",
          "contract-1",
          "marketing-cost",
          "cancellation-1"
        ]
      },
      "issues": [],
      "creditOutcome": "qualified_seller_property_opportunity",
      "eligibleTouchIds": [
        "click-brand",
        "click-nonbrand"
      ],
      "allocationStatus": "computed",
      "policyVersion": "cash-homebuyer.last.reported.v1",
      "propertyId": "property-104",
      "opportunityId": "acquisition-204",
      "sellerGroupId": "seller-group-14",
      "receiptHash": "6eecff6d4d3e94f6770c8f0f1369c075776af35113d46ff2e53cdf7f15c35a78"
    },
    {
      "key": "canceled|reported|acquired|linear",
      "scenarioId": "canceled",
      "evidencePolicyId": "reported",
      "cutoffId": "acquired",
      "policyId": "linear",
      "proofKey": "canceled|reported|acquired",
      "asOf": "2026-06-15T23:59:59Z",
      "status": "complete",
      "summary": "Contract canceled · no purchase. Credit describes this qualified opportunity under the selected policy; it does not establish causal lift.",
      "timeline": [
        {
          "id": "click-nonbrand",
          "at": "2026-04-03T10:00:00Z",
          "recordedAt": "2026-04-03T10:00:00Z",
          "label": "Nonbrand search ad clicked",
          "channelId": "search-nonbrand",
          "channelLabel": "Nonbrand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-nonbrand"
        },
        {
          "id": "click-brand",
          "at": "2026-04-08T11:00:00Z",
          "recordedAt": "2026-04-08T11:00:00Z",
          "label": "Brand search ad clicked",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-brand"
        },
        {
          "id": "call-1",
          "at": "2026-04-09T12:00:00Z",
          "recordedAt": "2026-04-09T12:00:00Z",
          "label": "Seller called the website number",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/call",
          "locator": "call-1"
        },
        {
          "id": "qualified-1",
          "at": "2026-04-09T15:00:00Z",
          "recordedAt": "2026-04-09T15:00:00Z",
          "label": "Seller-property opportunity qualified",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/qualified",
          "locator": "qualified-1"
        },
        {
          "id": "assessment-1",
          "at": "2026-04-18T14:00:00Z",
          "recordedAt": "2026-04-18T14:00:00Z",
          "label": "Property assessment completed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/assessment",
          "locator": "assessment-1"
        },
        {
          "id": "offer-1",
          "at": "2026-04-24T10:00:00Z",
          "recordedAt": "2026-04-24T10:00:00Z",
          "label": "Written purchase offer delivered",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/offer",
          "locator": "offer-1"
        },
        {
          "id": "contract-1",
          "at": "2026-05-02T12:00:00Z",
          "recordedAt": "2026-05-02T12:00:00Z",
          "label": "Acquisition contract signed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/contract",
          "locator": "contract-1"
        },
        {
          "id": "marketing-cost",
          "at": "2026-05-03T12:00:00Z",
          "recordedAt": "2026-05-03T12:00:00Z",
          "label": "Acquisition marketing cost allocated",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/cost",
          "locator": "marketing-cost"
        },
        {
          "id": "cancellation-1",
          "at": "2026-05-20T12:00:00Z",
          "recordedAt": "2026-05-20T12:00:00Z",
          "label": "Acquisition contract canceled",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/cancellation",
          "locator": "cancellation-1"
        }
      ],
      "credit": [
        {
          "channelId": "search-nonbrand",
          "label": "Nonbrand paid search",
          "weight": 0.5,
          "percentage": 50,
          "touchIds": [
            "click-nonbrand"
          ]
        },
        {
          "channelId": "search-brand",
          "label": "Brand paid search",
          "weight": 0.5,
          "percentage": 50,
          "touchIds": [
            "click-brand"
          ]
        }
      ],
      "outcome": {
        "qualifiedOpportunities": 1,
        "contracts": 1,
        "acquisitions": 0,
        "resales": 0,
        "canceled": true,
        "stage": "canceled",
        "label": "Contract canceled · no purchase",
        "capitalDeployed": null,
        "resaleProceeds": null,
        "contributionBeforeMarketing": null,
        "marketingAllocation": 3000,
        "contributionAfterMarketing": null,
        "missingCosts": [
          "renovation",
          "holdingAndTransaction"
        ],
        "contributionStatus": "pending",
        "currency": "USD",
        "sourceIds": [
          "qualified-1",
          "contract-1",
          "marketing-cost",
          "cancellation-1"
        ]
      },
      "issues": [],
      "creditOutcome": "qualified_seller_property_opportunity",
      "eligibleTouchIds": [
        "click-brand",
        "click-nonbrand"
      ],
      "allocationStatus": "computed",
      "policyVersion": "cash-homebuyer.linear.reported.v1",
      "propertyId": "property-104",
      "opportunityId": "acquisition-204",
      "sellerGroupId": "seller-group-14",
      "receiptHash": "8d52e3fd5dfbb2dca2b623be71ab91e978b2c8dbe450825c9f9fdb5df95ba448"
    },
    {
      "key": "canceled|reported|resale|first",
      "scenarioId": "canceled",
      "evidencePolicyId": "reported",
      "cutoffId": "resale",
      "policyId": "first",
      "proofKey": "canceled|reported|resale",
      "asOf": "2026-09-15T23:59:59Z",
      "status": "complete",
      "summary": "Contract canceled · no purchase. Credit describes this qualified opportunity under the selected policy; it does not establish causal lift.",
      "timeline": [
        {
          "id": "click-nonbrand",
          "at": "2026-04-03T10:00:00Z",
          "recordedAt": "2026-04-03T10:00:00Z",
          "label": "Nonbrand search ad clicked",
          "channelId": "search-nonbrand",
          "channelLabel": "Nonbrand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-nonbrand"
        },
        {
          "id": "click-brand",
          "at": "2026-04-08T11:00:00Z",
          "recordedAt": "2026-04-08T11:00:00Z",
          "label": "Brand search ad clicked",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-brand"
        },
        {
          "id": "call-1",
          "at": "2026-04-09T12:00:00Z",
          "recordedAt": "2026-04-09T12:00:00Z",
          "label": "Seller called the website number",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/call",
          "locator": "call-1"
        },
        {
          "id": "qualified-1",
          "at": "2026-04-09T15:00:00Z",
          "recordedAt": "2026-04-09T15:00:00Z",
          "label": "Seller-property opportunity qualified",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/qualified",
          "locator": "qualified-1"
        },
        {
          "id": "assessment-1",
          "at": "2026-04-18T14:00:00Z",
          "recordedAt": "2026-04-18T14:00:00Z",
          "label": "Property assessment completed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/assessment",
          "locator": "assessment-1"
        },
        {
          "id": "offer-1",
          "at": "2026-04-24T10:00:00Z",
          "recordedAt": "2026-04-24T10:00:00Z",
          "label": "Written purchase offer delivered",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/offer",
          "locator": "offer-1"
        },
        {
          "id": "contract-1",
          "at": "2026-05-02T12:00:00Z",
          "recordedAt": "2026-05-02T12:00:00Z",
          "label": "Acquisition contract signed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/contract",
          "locator": "contract-1"
        },
        {
          "id": "marketing-cost",
          "at": "2026-05-03T12:00:00Z",
          "recordedAt": "2026-05-03T12:00:00Z",
          "label": "Acquisition marketing cost allocated",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/cost",
          "locator": "marketing-cost"
        },
        {
          "id": "cancellation-1",
          "at": "2026-05-20T12:00:00Z",
          "recordedAt": "2026-05-20T12:00:00Z",
          "label": "Acquisition contract canceled",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/cancellation",
          "locator": "cancellation-1"
        }
      ],
      "credit": [
        {
          "channelId": "search-nonbrand",
          "label": "Nonbrand paid search",
          "weight": 1,
          "percentage": 100,
          "touchIds": [
            "click-nonbrand"
          ]
        }
      ],
      "outcome": {
        "qualifiedOpportunities": 1,
        "contracts": 1,
        "acquisitions": 0,
        "resales": 0,
        "canceled": true,
        "stage": "canceled",
        "label": "Contract canceled · no purchase",
        "capitalDeployed": null,
        "resaleProceeds": null,
        "contributionBeforeMarketing": null,
        "marketingAllocation": 3000,
        "contributionAfterMarketing": null,
        "missingCosts": [
          "renovation",
          "holdingAndTransaction"
        ],
        "contributionStatus": "pending",
        "currency": "USD",
        "sourceIds": [
          "qualified-1",
          "contract-1",
          "marketing-cost",
          "cancellation-1"
        ]
      },
      "issues": [],
      "creditOutcome": "qualified_seller_property_opportunity",
      "eligibleTouchIds": [
        "click-brand",
        "click-nonbrand"
      ],
      "allocationStatus": "computed",
      "policyVersion": "cash-homebuyer.first.reported.v1",
      "propertyId": "property-104",
      "opportunityId": "acquisition-204",
      "sellerGroupId": "seller-group-14",
      "receiptHash": "861bd4cc0c88664e7867e0a44662c3191c7846ac71e9521f4d5e1da0e83ec8fa"
    },
    {
      "key": "canceled|reported|resale|last",
      "scenarioId": "canceled",
      "evidencePolicyId": "reported",
      "cutoffId": "resale",
      "policyId": "last",
      "proofKey": "canceled|reported|resale",
      "asOf": "2026-09-15T23:59:59Z",
      "status": "complete",
      "summary": "Contract canceled · no purchase. Credit describes this qualified opportunity under the selected policy; it does not establish causal lift.",
      "timeline": [
        {
          "id": "click-nonbrand",
          "at": "2026-04-03T10:00:00Z",
          "recordedAt": "2026-04-03T10:00:00Z",
          "label": "Nonbrand search ad clicked",
          "channelId": "search-nonbrand",
          "channelLabel": "Nonbrand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-nonbrand"
        },
        {
          "id": "click-brand",
          "at": "2026-04-08T11:00:00Z",
          "recordedAt": "2026-04-08T11:00:00Z",
          "label": "Brand search ad clicked",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-brand"
        },
        {
          "id": "call-1",
          "at": "2026-04-09T12:00:00Z",
          "recordedAt": "2026-04-09T12:00:00Z",
          "label": "Seller called the website number",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/call",
          "locator": "call-1"
        },
        {
          "id": "qualified-1",
          "at": "2026-04-09T15:00:00Z",
          "recordedAt": "2026-04-09T15:00:00Z",
          "label": "Seller-property opportunity qualified",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/qualified",
          "locator": "qualified-1"
        },
        {
          "id": "assessment-1",
          "at": "2026-04-18T14:00:00Z",
          "recordedAt": "2026-04-18T14:00:00Z",
          "label": "Property assessment completed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/assessment",
          "locator": "assessment-1"
        },
        {
          "id": "offer-1",
          "at": "2026-04-24T10:00:00Z",
          "recordedAt": "2026-04-24T10:00:00Z",
          "label": "Written purchase offer delivered",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/offer",
          "locator": "offer-1"
        },
        {
          "id": "contract-1",
          "at": "2026-05-02T12:00:00Z",
          "recordedAt": "2026-05-02T12:00:00Z",
          "label": "Acquisition contract signed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/contract",
          "locator": "contract-1"
        },
        {
          "id": "marketing-cost",
          "at": "2026-05-03T12:00:00Z",
          "recordedAt": "2026-05-03T12:00:00Z",
          "label": "Acquisition marketing cost allocated",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/cost",
          "locator": "marketing-cost"
        },
        {
          "id": "cancellation-1",
          "at": "2026-05-20T12:00:00Z",
          "recordedAt": "2026-05-20T12:00:00Z",
          "label": "Acquisition contract canceled",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/cancellation",
          "locator": "cancellation-1"
        }
      ],
      "credit": [
        {
          "channelId": "search-brand",
          "label": "Brand paid search",
          "weight": 1,
          "percentage": 100,
          "touchIds": [
            "click-brand"
          ]
        }
      ],
      "outcome": {
        "qualifiedOpportunities": 1,
        "contracts": 1,
        "acquisitions": 0,
        "resales": 0,
        "canceled": true,
        "stage": "canceled",
        "label": "Contract canceled · no purchase",
        "capitalDeployed": null,
        "resaleProceeds": null,
        "contributionBeforeMarketing": null,
        "marketingAllocation": 3000,
        "contributionAfterMarketing": null,
        "missingCosts": [
          "renovation",
          "holdingAndTransaction"
        ],
        "contributionStatus": "pending",
        "currency": "USD",
        "sourceIds": [
          "qualified-1",
          "contract-1",
          "marketing-cost",
          "cancellation-1"
        ]
      },
      "issues": [],
      "creditOutcome": "qualified_seller_property_opportunity",
      "eligibleTouchIds": [
        "click-brand",
        "click-nonbrand"
      ],
      "allocationStatus": "computed",
      "policyVersion": "cash-homebuyer.last.reported.v1",
      "propertyId": "property-104",
      "opportunityId": "acquisition-204",
      "sellerGroupId": "seller-group-14",
      "receiptHash": "e40bec13715064a73c5a20deca8a46975f3e6531d3edef82bff41057f4d86c10"
    },
    {
      "key": "canceled|reported|resale|linear",
      "scenarioId": "canceled",
      "evidencePolicyId": "reported",
      "cutoffId": "resale",
      "policyId": "linear",
      "proofKey": "canceled|reported|resale",
      "asOf": "2026-09-15T23:59:59Z",
      "status": "complete",
      "summary": "Contract canceled · no purchase. Credit describes this qualified opportunity under the selected policy; it does not establish causal lift.",
      "timeline": [
        {
          "id": "click-nonbrand",
          "at": "2026-04-03T10:00:00Z",
          "recordedAt": "2026-04-03T10:00:00Z",
          "label": "Nonbrand search ad clicked",
          "channelId": "search-nonbrand",
          "channelLabel": "Nonbrand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-nonbrand"
        },
        {
          "id": "click-brand",
          "at": "2026-04-08T11:00:00Z",
          "recordedAt": "2026-04-08T11:00:00Z",
          "label": "Brand search ad clicked",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-brand"
        },
        {
          "id": "call-1",
          "at": "2026-04-09T12:00:00Z",
          "recordedAt": "2026-04-09T12:00:00Z",
          "label": "Seller called the website number",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/call",
          "locator": "call-1"
        },
        {
          "id": "qualified-1",
          "at": "2026-04-09T15:00:00Z",
          "recordedAt": "2026-04-09T15:00:00Z",
          "label": "Seller-property opportunity qualified",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/qualified",
          "locator": "qualified-1"
        },
        {
          "id": "assessment-1",
          "at": "2026-04-18T14:00:00Z",
          "recordedAt": "2026-04-18T14:00:00Z",
          "label": "Property assessment completed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/assessment",
          "locator": "assessment-1"
        },
        {
          "id": "offer-1",
          "at": "2026-04-24T10:00:00Z",
          "recordedAt": "2026-04-24T10:00:00Z",
          "label": "Written purchase offer delivered",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/offer",
          "locator": "offer-1"
        },
        {
          "id": "contract-1",
          "at": "2026-05-02T12:00:00Z",
          "recordedAt": "2026-05-02T12:00:00Z",
          "label": "Acquisition contract signed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/contract",
          "locator": "contract-1"
        },
        {
          "id": "marketing-cost",
          "at": "2026-05-03T12:00:00Z",
          "recordedAt": "2026-05-03T12:00:00Z",
          "label": "Acquisition marketing cost allocated",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/cost",
          "locator": "marketing-cost"
        },
        {
          "id": "cancellation-1",
          "at": "2026-05-20T12:00:00Z",
          "recordedAt": "2026-05-20T12:00:00Z",
          "label": "Acquisition contract canceled",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/cancellation",
          "locator": "cancellation-1"
        }
      ],
      "credit": [
        {
          "channelId": "search-nonbrand",
          "label": "Nonbrand paid search",
          "weight": 0.5,
          "percentage": 50,
          "touchIds": [
            "click-nonbrand"
          ]
        },
        {
          "channelId": "search-brand",
          "label": "Brand paid search",
          "weight": 0.5,
          "percentage": 50,
          "touchIds": [
            "click-brand"
          ]
        }
      ],
      "outcome": {
        "qualifiedOpportunities": 1,
        "contracts": 1,
        "acquisitions": 0,
        "resales": 0,
        "canceled": true,
        "stage": "canceled",
        "label": "Contract canceled · no purchase",
        "capitalDeployed": null,
        "resaleProceeds": null,
        "contributionBeforeMarketing": null,
        "marketingAllocation": 3000,
        "contributionAfterMarketing": null,
        "missingCosts": [
          "renovation",
          "holdingAndTransaction"
        ],
        "contributionStatus": "pending",
        "currency": "USD",
        "sourceIds": [
          "qualified-1",
          "contract-1",
          "marketing-cost",
          "cancellation-1"
        ]
      },
      "issues": [],
      "creditOutcome": "qualified_seller_property_opportunity",
      "eligibleTouchIds": [
        "click-brand",
        "click-nonbrand"
      ],
      "allocationStatus": "computed",
      "policyVersion": "cash-homebuyer.linear.reported.v1",
      "propertyId": "property-104",
      "opportunityId": "acquisition-204",
      "sellerGroupId": "seller-group-14",
      "receiptHash": "a618cf045a86434b0fcc2101e93f89ff245a2d245f7fa4376a25058c8a01e51a"
    },
    {
      "key": "missing-costs|observed|contract|first",
      "scenarioId": "missing-costs",
      "evidencePolicyId": "observed",
      "cutoffId": "contract",
      "policyId": "first",
      "proofKey": "missing-costs|observed|contract",
      "asOf": "2026-05-15T23:59:59Z",
      "status": "complete",
      "summary": "Contract signed · purchase pending. Credit describes this qualified opportunity under the selected policy; it does not establish causal lift.",
      "timeline": [
        {
          "id": "click-nonbrand",
          "at": "2026-04-03T10:00:00Z",
          "recordedAt": "2026-04-03T10:00:00Z",
          "label": "Nonbrand search ad clicked",
          "channelId": "search-nonbrand",
          "channelLabel": "Nonbrand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-nonbrand"
        },
        {
          "id": "click-brand",
          "at": "2026-04-08T11:00:00Z",
          "recordedAt": "2026-04-08T11:00:00Z",
          "label": "Brand search ad clicked",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-brand"
        },
        {
          "id": "call-1",
          "at": "2026-04-09T12:00:00Z",
          "recordedAt": "2026-04-09T12:00:00Z",
          "label": "Seller called the website number",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/call",
          "locator": "call-1"
        },
        {
          "id": "qualified-1",
          "at": "2026-04-09T15:00:00Z",
          "recordedAt": "2026-04-09T15:00:00Z",
          "label": "Seller-property opportunity qualified",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/qualified",
          "locator": "qualified-1"
        },
        {
          "id": "assessment-1",
          "at": "2026-04-18T14:00:00Z",
          "recordedAt": "2026-04-18T14:00:00Z",
          "label": "Property assessment completed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/assessment",
          "locator": "assessment-1"
        },
        {
          "id": "offer-1",
          "at": "2026-04-24T10:00:00Z",
          "recordedAt": "2026-04-24T10:00:00Z",
          "label": "Written purchase offer delivered",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/offer",
          "locator": "offer-1"
        },
        {
          "id": "contract-1",
          "at": "2026-05-02T12:00:00Z",
          "recordedAt": "2026-05-02T12:00:00Z",
          "label": "Acquisition contract signed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/contract",
          "locator": "contract-1"
        },
        {
          "id": "marketing-cost",
          "at": "2026-05-03T12:00:00Z",
          "recordedAt": "2026-05-03T12:00:00Z",
          "label": "Acquisition marketing cost allocated",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/cost",
          "locator": "marketing-cost"
        }
      ],
      "credit": [
        {
          "channelId": "search-nonbrand",
          "label": "Nonbrand paid search",
          "weight": 1,
          "percentage": 100,
          "touchIds": [
            "click-nonbrand"
          ]
        }
      ],
      "outcome": {
        "qualifiedOpportunities": 1,
        "contracts": 1,
        "acquisitions": 0,
        "resales": 0,
        "canceled": false,
        "stage": "contract",
        "label": "Contract signed · purchase pending",
        "capitalDeployed": null,
        "resaleProceeds": null,
        "contributionBeforeMarketing": null,
        "marketingAllocation": 3000,
        "contributionAfterMarketing": null,
        "missingCosts": [
          "renovation",
          "holdingAndTransaction"
        ],
        "contributionStatus": "pending",
        "currency": "USD",
        "sourceIds": [
          "qualified-1",
          "contract-1",
          "marketing-cost"
        ]
      },
      "issues": [],
      "creditOutcome": "qualified_seller_property_opportunity",
      "eligibleTouchIds": [
        "click-brand",
        "click-nonbrand"
      ],
      "allocationStatus": "computed",
      "policyVersion": "cash-homebuyer.first.observed.v1",
      "propertyId": "property-104",
      "opportunityId": "acquisition-204",
      "sellerGroupId": "seller-group-14",
      "receiptHash": "82ad9fe44107779e0345bf1ba304f06708a9be74db8aa67870cea12745d76095"
    },
    {
      "key": "missing-costs|observed|contract|last",
      "scenarioId": "missing-costs",
      "evidencePolicyId": "observed",
      "cutoffId": "contract",
      "policyId": "last",
      "proofKey": "missing-costs|observed|contract",
      "asOf": "2026-05-15T23:59:59Z",
      "status": "complete",
      "summary": "Contract signed · purchase pending. Credit describes this qualified opportunity under the selected policy; it does not establish causal lift.",
      "timeline": [
        {
          "id": "click-nonbrand",
          "at": "2026-04-03T10:00:00Z",
          "recordedAt": "2026-04-03T10:00:00Z",
          "label": "Nonbrand search ad clicked",
          "channelId": "search-nonbrand",
          "channelLabel": "Nonbrand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-nonbrand"
        },
        {
          "id": "click-brand",
          "at": "2026-04-08T11:00:00Z",
          "recordedAt": "2026-04-08T11:00:00Z",
          "label": "Brand search ad clicked",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-brand"
        },
        {
          "id": "call-1",
          "at": "2026-04-09T12:00:00Z",
          "recordedAt": "2026-04-09T12:00:00Z",
          "label": "Seller called the website number",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/call",
          "locator": "call-1"
        },
        {
          "id": "qualified-1",
          "at": "2026-04-09T15:00:00Z",
          "recordedAt": "2026-04-09T15:00:00Z",
          "label": "Seller-property opportunity qualified",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/qualified",
          "locator": "qualified-1"
        },
        {
          "id": "assessment-1",
          "at": "2026-04-18T14:00:00Z",
          "recordedAt": "2026-04-18T14:00:00Z",
          "label": "Property assessment completed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/assessment",
          "locator": "assessment-1"
        },
        {
          "id": "offer-1",
          "at": "2026-04-24T10:00:00Z",
          "recordedAt": "2026-04-24T10:00:00Z",
          "label": "Written purchase offer delivered",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/offer",
          "locator": "offer-1"
        },
        {
          "id": "contract-1",
          "at": "2026-05-02T12:00:00Z",
          "recordedAt": "2026-05-02T12:00:00Z",
          "label": "Acquisition contract signed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/contract",
          "locator": "contract-1"
        },
        {
          "id": "marketing-cost",
          "at": "2026-05-03T12:00:00Z",
          "recordedAt": "2026-05-03T12:00:00Z",
          "label": "Acquisition marketing cost allocated",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/cost",
          "locator": "marketing-cost"
        }
      ],
      "credit": [
        {
          "channelId": "search-brand",
          "label": "Brand paid search",
          "weight": 1,
          "percentage": 100,
          "touchIds": [
            "click-brand"
          ]
        }
      ],
      "outcome": {
        "qualifiedOpportunities": 1,
        "contracts": 1,
        "acquisitions": 0,
        "resales": 0,
        "canceled": false,
        "stage": "contract",
        "label": "Contract signed · purchase pending",
        "capitalDeployed": null,
        "resaleProceeds": null,
        "contributionBeforeMarketing": null,
        "marketingAllocation": 3000,
        "contributionAfterMarketing": null,
        "missingCosts": [
          "renovation",
          "holdingAndTransaction"
        ],
        "contributionStatus": "pending",
        "currency": "USD",
        "sourceIds": [
          "qualified-1",
          "contract-1",
          "marketing-cost"
        ]
      },
      "issues": [],
      "creditOutcome": "qualified_seller_property_opportunity",
      "eligibleTouchIds": [
        "click-brand",
        "click-nonbrand"
      ],
      "allocationStatus": "computed",
      "policyVersion": "cash-homebuyer.last.observed.v1",
      "propertyId": "property-104",
      "opportunityId": "acquisition-204",
      "sellerGroupId": "seller-group-14",
      "receiptHash": "ba8ae48d86c61170dda177ccb211132b107bbc7ed9ac7be3ba99dc0c7565c33c"
    },
    {
      "key": "missing-costs|observed|contract|linear",
      "scenarioId": "missing-costs",
      "evidencePolicyId": "observed",
      "cutoffId": "contract",
      "policyId": "linear",
      "proofKey": "missing-costs|observed|contract",
      "asOf": "2026-05-15T23:59:59Z",
      "status": "complete",
      "summary": "Contract signed · purchase pending. Credit describes this qualified opportunity under the selected policy; it does not establish causal lift.",
      "timeline": [
        {
          "id": "click-nonbrand",
          "at": "2026-04-03T10:00:00Z",
          "recordedAt": "2026-04-03T10:00:00Z",
          "label": "Nonbrand search ad clicked",
          "channelId": "search-nonbrand",
          "channelLabel": "Nonbrand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-nonbrand"
        },
        {
          "id": "click-brand",
          "at": "2026-04-08T11:00:00Z",
          "recordedAt": "2026-04-08T11:00:00Z",
          "label": "Brand search ad clicked",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-brand"
        },
        {
          "id": "call-1",
          "at": "2026-04-09T12:00:00Z",
          "recordedAt": "2026-04-09T12:00:00Z",
          "label": "Seller called the website number",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/call",
          "locator": "call-1"
        },
        {
          "id": "qualified-1",
          "at": "2026-04-09T15:00:00Z",
          "recordedAt": "2026-04-09T15:00:00Z",
          "label": "Seller-property opportunity qualified",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/qualified",
          "locator": "qualified-1"
        },
        {
          "id": "assessment-1",
          "at": "2026-04-18T14:00:00Z",
          "recordedAt": "2026-04-18T14:00:00Z",
          "label": "Property assessment completed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/assessment",
          "locator": "assessment-1"
        },
        {
          "id": "offer-1",
          "at": "2026-04-24T10:00:00Z",
          "recordedAt": "2026-04-24T10:00:00Z",
          "label": "Written purchase offer delivered",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/offer",
          "locator": "offer-1"
        },
        {
          "id": "contract-1",
          "at": "2026-05-02T12:00:00Z",
          "recordedAt": "2026-05-02T12:00:00Z",
          "label": "Acquisition contract signed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/contract",
          "locator": "contract-1"
        },
        {
          "id": "marketing-cost",
          "at": "2026-05-03T12:00:00Z",
          "recordedAt": "2026-05-03T12:00:00Z",
          "label": "Acquisition marketing cost allocated",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/cost",
          "locator": "marketing-cost"
        }
      ],
      "credit": [
        {
          "channelId": "search-nonbrand",
          "label": "Nonbrand paid search",
          "weight": 0.5,
          "percentage": 50,
          "touchIds": [
            "click-nonbrand"
          ]
        },
        {
          "channelId": "search-brand",
          "label": "Brand paid search",
          "weight": 0.5,
          "percentage": 50,
          "touchIds": [
            "click-brand"
          ]
        }
      ],
      "outcome": {
        "qualifiedOpportunities": 1,
        "contracts": 1,
        "acquisitions": 0,
        "resales": 0,
        "canceled": false,
        "stage": "contract",
        "label": "Contract signed · purchase pending",
        "capitalDeployed": null,
        "resaleProceeds": null,
        "contributionBeforeMarketing": null,
        "marketingAllocation": 3000,
        "contributionAfterMarketing": null,
        "missingCosts": [
          "renovation",
          "holdingAndTransaction"
        ],
        "contributionStatus": "pending",
        "currency": "USD",
        "sourceIds": [
          "qualified-1",
          "contract-1",
          "marketing-cost"
        ]
      },
      "issues": [],
      "creditOutcome": "qualified_seller_property_opportunity",
      "eligibleTouchIds": [
        "click-brand",
        "click-nonbrand"
      ],
      "allocationStatus": "computed",
      "policyVersion": "cash-homebuyer.linear.observed.v1",
      "propertyId": "property-104",
      "opportunityId": "acquisition-204",
      "sellerGroupId": "seller-group-14",
      "receiptHash": "7a79e1e8e4c0ad26b3949c093a1ffd525352a71bf7d4fab8cf236542e38a4644"
    },
    {
      "key": "missing-costs|observed|acquired|first",
      "scenarioId": "missing-costs",
      "evidencePolicyId": "observed",
      "cutoffId": "acquired",
      "policyId": "first",
      "proofKey": "missing-costs|observed|acquired",
      "asOf": "2026-06-15T23:59:59Z",
      "status": "complete",
      "summary": "Purchase closed · resale pending. Credit describes this qualified opportunity under the selected policy; it does not establish causal lift.",
      "timeline": [
        {
          "id": "click-nonbrand",
          "at": "2026-04-03T10:00:00Z",
          "recordedAt": "2026-04-03T10:00:00Z",
          "label": "Nonbrand search ad clicked",
          "channelId": "search-nonbrand",
          "channelLabel": "Nonbrand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-nonbrand"
        },
        {
          "id": "click-brand",
          "at": "2026-04-08T11:00:00Z",
          "recordedAt": "2026-04-08T11:00:00Z",
          "label": "Brand search ad clicked",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-brand"
        },
        {
          "id": "call-1",
          "at": "2026-04-09T12:00:00Z",
          "recordedAt": "2026-04-09T12:00:00Z",
          "label": "Seller called the website number",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/call",
          "locator": "call-1"
        },
        {
          "id": "qualified-1",
          "at": "2026-04-09T15:00:00Z",
          "recordedAt": "2026-04-09T15:00:00Z",
          "label": "Seller-property opportunity qualified",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/qualified",
          "locator": "qualified-1"
        },
        {
          "id": "assessment-1",
          "at": "2026-04-18T14:00:00Z",
          "recordedAt": "2026-04-18T14:00:00Z",
          "label": "Property assessment completed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/assessment",
          "locator": "assessment-1"
        },
        {
          "id": "offer-1",
          "at": "2026-04-24T10:00:00Z",
          "recordedAt": "2026-04-24T10:00:00Z",
          "label": "Written purchase offer delivered",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/offer",
          "locator": "offer-1"
        },
        {
          "id": "contract-1",
          "at": "2026-05-02T12:00:00Z",
          "recordedAt": "2026-05-02T12:00:00Z",
          "label": "Acquisition contract signed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/contract",
          "locator": "contract-1"
        },
        {
          "id": "marketing-cost",
          "at": "2026-05-03T12:00:00Z",
          "recordedAt": "2026-05-03T12:00:00Z",
          "label": "Acquisition marketing cost allocated",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/cost",
          "locator": "marketing-cost"
        },
        {
          "id": "closing-1",
          "at": "2026-06-02T12:00:00Z",
          "recordedAt": "2026-06-02T12:00:00Z",
          "label": "Property purchase closed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/acquisition",
          "locator": "closing-1"
        }
      ],
      "credit": [
        {
          "channelId": "search-nonbrand",
          "label": "Nonbrand paid search",
          "weight": 1,
          "percentage": 100,
          "touchIds": [
            "click-nonbrand"
          ]
        }
      ],
      "outcome": {
        "qualifiedOpportunities": 1,
        "contracts": 1,
        "acquisitions": 1,
        "resales": 0,
        "canceled": false,
        "stage": "acquired",
        "label": "Purchase closed · resale pending",
        "capitalDeployed": 210000,
        "resaleProceeds": null,
        "contributionBeforeMarketing": null,
        "marketingAllocation": 3000,
        "contributionAfterMarketing": null,
        "missingCosts": [
          "renovation",
          "holdingAndTransaction"
        ],
        "contributionStatus": "pending",
        "currency": "USD",
        "sourceIds": [
          "qualified-1",
          "contract-1",
          "marketing-cost",
          "closing-1"
        ]
      },
      "issues": [],
      "creditOutcome": "qualified_seller_property_opportunity",
      "eligibleTouchIds": [
        "click-brand",
        "click-nonbrand"
      ],
      "allocationStatus": "computed",
      "policyVersion": "cash-homebuyer.first.observed.v1",
      "propertyId": "property-104",
      "opportunityId": "acquisition-204",
      "sellerGroupId": "seller-group-14",
      "receiptHash": "1f813750f55af2b8cb0b1a80ed9aa09e6bf9066a7713c4a3e92e5f64484db4dc"
    },
    {
      "key": "missing-costs|observed|acquired|last",
      "scenarioId": "missing-costs",
      "evidencePolicyId": "observed",
      "cutoffId": "acquired",
      "policyId": "last",
      "proofKey": "missing-costs|observed|acquired",
      "asOf": "2026-06-15T23:59:59Z",
      "status": "complete",
      "summary": "Purchase closed · resale pending. Credit describes this qualified opportunity under the selected policy; it does not establish causal lift.",
      "timeline": [
        {
          "id": "click-nonbrand",
          "at": "2026-04-03T10:00:00Z",
          "recordedAt": "2026-04-03T10:00:00Z",
          "label": "Nonbrand search ad clicked",
          "channelId": "search-nonbrand",
          "channelLabel": "Nonbrand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-nonbrand"
        },
        {
          "id": "click-brand",
          "at": "2026-04-08T11:00:00Z",
          "recordedAt": "2026-04-08T11:00:00Z",
          "label": "Brand search ad clicked",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-brand"
        },
        {
          "id": "call-1",
          "at": "2026-04-09T12:00:00Z",
          "recordedAt": "2026-04-09T12:00:00Z",
          "label": "Seller called the website number",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/call",
          "locator": "call-1"
        },
        {
          "id": "qualified-1",
          "at": "2026-04-09T15:00:00Z",
          "recordedAt": "2026-04-09T15:00:00Z",
          "label": "Seller-property opportunity qualified",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/qualified",
          "locator": "qualified-1"
        },
        {
          "id": "assessment-1",
          "at": "2026-04-18T14:00:00Z",
          "recordedAt": "2026-04-18T14:00:00Z",
          "label": "Property assessment completed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/assessment",
          "locator": "assessment-1"
        },
        {
          "id": "offer-1",
          "at": "2026-04-24T10:00:00Z",
          "recordedAt": "2026-04-24T10:00:00Z",
          "label": "Written purchase offer delivered",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/offer",
          "locator": "offer-1"
        },
        {
          "id": "contract-1",
          "at": "2026-05-02T12:00:00Z",
          "recordedAt": "2026-05-02T12:00:00Z",
          "label": "Acquisition contract signed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/contract",
          "locator": "contract-1"
        },
        {
          "id": "marketing-cost",
          "at": "2026-05-03T12:00:00Z",
          "recordedAt": "2026-05-03T12:00:00Z",
          "label": "Acquisition marketing cost allocated",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/cost",
          "locator": "marketing-cost"
        },
        {
          "id": "closing-1",
          "at": "2026-06-02T12:00:00Z",
          "recordedAt": "2026-06-02T12:00:00Z",
          "label": "Property purchase closed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/acquisition",
          "locator": "closing-1"
        }
      ],
      "credit": [
        {
          "channelId": "search-brand",
          "label": "Brand paid search",
          "weight": 1,
          "percentage": 100,
          "touchIds": [
            "click-brand"
          ]
        }
      ],
      "outcome": {
        "qualifiedOpportunities": 1,
        "contracts": 1,
        "acquisitions": 1,
        "resales": 0,
        "canceled": false,
        "stage": "acquired",
        "label": "Purchase closed · resale pending",
        "capitalDeployed": 210000,
        "resaleProceeds": null,
        "contributionBeforeMarketing": null,
        "marketingAllocation": 3000,
        "contributionAfterMarketing": null,
        "missingCosts": [
          "renovation",
          "holdingAndTransaction"
        ],
        "contributionStatus": "pending",
        "currency": "USD",
        "sourceIds": [
          "qualified-1",
          "contract-1",
          "marketing-cost",
          "closing-1"
        ]
      },
      "issues": [],
      "creditOutcome": "qualified_seller_property_opportunity",
      "eligibleTouchIds": [
        "click-brand",
        "click-nonbrand"
      ],
      "allocationStatus": "computed",
      "policyVersion": "cash-homebuyer.last.observed.v1",
      "propertyId": "property-104",
      "opportunityId": "acquisition-204",
      "sellerGroupId": "seller-group-14",
      "receiptHash": "023fa4f1bfba7c3b27dfafda8655389a20e3608146ce58471496e8fe153551bf"
    },
    {
      "key": "missing-costs|observed|acquired|linear",
      "scenarioId": "missing-costs",
      "evidencePolicyId": "observed",
      "cutoffId": "acquired",
      "policyId": "linear",
      "proofKey": "missing-costs|observed|acquired",
      "asOf": "2026-06-15T23:59:59Z",
      "status": "complete",
      "summary": "Purchase closed · resale pending. Credit describes this qualified opportunity under the selected policy; it does not establish causal lift.",
      "timeline": [
        {
          "id": "click-nonbrand",
          "at": "2026-04-03T10:00:00Z",
          "recordedAt": "2026-04-03T10:00:00Z",
          "label": "Nonbrand search ad clicked",
          "channelId": "search-nonbrand",
          "channelLabel": "Nonbrand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-nonbrand"
        },
        {
          "id": "click-brand",
          "at": "2026-04-08T11:00:00Z",
          "recordedAt": "2026-04-08T11:00:00Z",
          "label": "Brand search ad clicked",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-brand"
        },
        {
          "id": "call-1",
          "at": "2026-04-09T12:00:00Z",
          "recordedAt": "2026-04-09T12:00:00Z",
          "label": "Seller called the website number",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/call",
          "locator": "call-1"
        },
        {
          "id": "qualified-1",
          "at": "2026-04-09T15:00:00Z",
          "recordedAt": "2026-04-09T15:00:00Z",
          "label": "Seller-property opportunity qualified",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/qualified",
          "locator": "qualified-1"
        },
        {
          "id": "assessment-1",
          "at": "2026-04-18T14:00:00Z",
          "recordedAt": "2026-04-18T14:00:00Z",
          "label": "Property assessment completed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/assessment",
          "locator": "assessment-1"
        },
        {
          "id": "offer-1",
          "at": "2026-04-24T10:00:00Z",
          "recordedAt": "2026-04-24T10:00:00Z",
          "label": "Written purchase offer delivered",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/offer",
          "locator": "offer-1"
        },
        {
          "id": "contract-1",
          "at": "2026-05-02T12:00:00Z",
          "recordedAt": "2026-05-02T12:00:00Z",
          "label": "Acquisition contract signed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/contract",
          "locator": "contract-1"
        },
        {
          "id": "marketing-cost",
          "at": "2026-05-03T12:00:00Z",
          "recordedAt": "2026-05-03T12:00:00Z",
          "label": "Acquisition marketing cost allocated",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/cost",
          "locator": "marketing-cost"
        },
        {
          "id": "closing-1",
          "at": "2026-06-02T12:00:00Z",
          "recordedAt": "2026-06-02T12:00:00Z",
          "label": "Property purchase closed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/acquisition",
          "locator": "closing-1"
        }
      ],
      "credit": [
        {
          "channelId": "search-nonbrand",
          "label": "Nonbrand paid search",
          "weight": 0.5,
          "percentage": 50,
          "touchIds": [
            "click-nonbrand"
          ]
        },
        {
          "channelId": "search-brand",
          "label": "Brand paid search",
          "weight": 0.5,
          "percentage": 50,
          "touchIds": [
            "click-brand"
          ]
        }
      ],
      "outcome": {
        "qualifiedOpportunities": 1,
        "contracts": 1,
        "acquisitions": 1,
        "resales": 0,
        "canceled": false,
        "stage": "acquired",
        "label": "Purchase closed · resale pending",
        "capitalDeployed": 210000,
        "resaleProceeds": null,
        "contributionBeforeMarketing": null,
        "marketingAllocation": 3000,
        "contributionAfterMarketing": null,
        "missingCosts": [
          "renovation",
          "holdingAndTransaction"
        ],
        "contributionStatus": "pending",
        "currency": "USD",
        "sourceIds": [
          "qualified-1",
          "contract-1",
          "marketing-cost",
          "closing-1"
        ]
      },
      "issues": [],
      "creditOutcome": "qualified_seller_property_opportunity",
      "eligibleTouchIds": [
        "click-brand",
        "click-nonbrand"
      ],
      "allocationStatus": "computed",
      "policyVersion": "cash-homebuyer.linear.observed.v1",
      "propertyId": "property-104",
      "opportunityId": "acquisition-204",
      "sellerGroupId": "seller-group-14",
      "receiptHash": "6f184d5f245f10efa8fb9bc232d05c0f1c4e352f2d8b8492a6411129cfef4645"
    },
    {
      "key": "missing-costs|observed|resale|first",
      "scenarioId": "missing-costs",
      "evidencePolicyId": "observed",
      "cutoffId": "resale",
      "policyId": "first",
      "proofKey": "missing-costs|observed|resale",
      "asOf": "2026-09-15T23:59:59Z",
      "status": "needs_review",
      "summary": "Resale closed · costs incomplete. Credit describes this qualified opportunity under the selected policy; it does not establish causal lift.",
      "timeline": [
        {
          "id": "click-nonbrand",
          "at": "2026-04-03T10:00:00Z",
          "recordedAt": "2026-04-03T10:00:00Z",
          "label": "Nonbrand search ad clicked",
          "channelId": "search-nonbrand",
          "channelLabel": "Nonbrand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-nonbrand"
        },
        {
          "id": "click-brand",
          "at": "2026-04-08T11:00:00Z",
          "recordedAt": "2026-04-08T11:00:00Z",
          "label": "Brand search ad clicked",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-brand"
        },
        {
          "id": "call-1",
          "at": "2026-04-09T12:00:00Z",
          "recordedAt": "2026-04-09T12:00:00Z",
          "label": "Seller called the website number",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/call",
          "locator": "call-1"
        },
        {
          "id": "qualified-1",
          "at": "2026-04-09T15:00:00Z",
          "recordedAt": "2026-04-09T15:00:00Z",
          "label": "Seller-property opportunity qualified",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/qualified",
          "locator": "qualified-1"
        },
        {
          "id": "assessment-1",
          "at": "2026-04-18T14:00:00Z",
          "recordedAt": "2026-04-18T14:00:00Z",
          "label": "Property assessment completed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/assessment",
          "locator": "assessment-1"
        },
        {
          "id": "offer-1",
          "at": "2026-04-24T10:00:00Z",
          "recordedAt": "2026-04-24T10:00:00Z",
          "label": "Written purchase offer delivered",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/offer",
          "locator": "offer-1"
        },
        {
          "id": "contract-1",
          "at": "2026-05-02T12:00:00Z",
          "recordedAt": "2026-05-02T12:00:00Z",
          "label": "Acquisition contract signed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/contract",
          "locator": "contract-1"
        },
        {
          "id": "marketing-cost",
          "at": "2026-05-03T12:00:00Z",
          "recordedAt": "2026-05-03T12:00:00Z",
          "label": "Acquisition marketing cost allocated",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/cost",
          "locator": "marketing-cost"
        },
        {
          "id": "closing-1",
          "at": "2026-06-02T12:00:00Z",
          "recordedAt": "2026-06-02T12:00:00Z",
          "label": "Property purchase closed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/acquisition",
          "locator": "closing-1"
        },
        {
          "id": "renovation-cost",
          "at": "2026-07-10T12:00:00Z",
          "recordedAt": "2026-07-10T12:00:00Z",
          "label": "Renovation costs reconciled",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/cost",
          "locator": "renovation-cost"
        },
        {
          "id": "resale-1",
          "at": "2026-09-03T12:00:00Z",
          "recordedAt": "2026-09-03T12:00:00Z",
          "label": "Resale proceeds recorded",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/resale",
          "locator": "resale-1"
        }
      ],
      "credit": [
        {
          "channelId": "search-nonbrand",
          "label": "Nonbrand paid search",
          "weight": 1,
          "percentage": 100,
          "touchIds": [
            "click-nonbrand"
          ]
        }
      ],
      "outcome": {
        "qualifiedOpportunities": 1,
        "contracts": 1,
        "acquisitions": 1,
        "resales": 1,
        "canceled": false,
        "stage": "resold",
        "label": "Resale closed · costs incomplete",
        "capitalDeployed": 210000,
        "resaleProceeds": 295000,
        "contributionBeforeMarketing": null,
        "marketingAllocation": 3000,
        "contributionAfterMarketing": null,
        "missingCosts": [
          "holdingAndTransaction"
        ],
        "contributionStatus": "incomplete",
        "currency": "USD",
        "sourceIds": [
          "qualified-1",
          "contract-1",
          "marketing-cost",
          "closing-1",
          "renovation-cost",
          "resale-1"
        ]
      },
      "issues": [
        {
          "code": "incomplete_costs",
          "message": "Required cost evidence is unavailable at this cutoff: holdingAndTransaction. The affected contribution remains unknown."
        }
      ],
      "creditOutcome": "qualified_seller_property_opportunity",
      "eligibleTouchIds": [
        "click-brand",
        "click-nonbrand"
      ],
      "allocationStatus": "computed",
      "policyVersion": "cash-homebuyer.first.observed.v1",
      "propertyId": "property-104",
      "opportunityId": "acquisition-204",
      "sellerGroupId": "seller-group-14",
      "receiptHash": "6d959db71f67ac8f12384b00e6ab9098dbb226577da2170ec3217af37f500932"
    },
    {
      "key": "missing-costs|observed|resale|last",
      "scenarioId": "missing-costs",
      "evidencePolicyId": "observed",
      "cutoffId": "resale",
      "policyId": "last",
      "proofKey": "missing-costs|observed|resale",
      "asOf": "2026-09-15T23:59:59Z",
      "status": "needs_review",
      "summary": "Resale closed · costs incomplete. Credit describes this qualified opportunity under the selected policy; it does not establish causal lift.",
      "timeline": [
        {
          "id": "click-nonbrand",
          "at": "2026-04-03T10:00:00Z",
          "recordedAt": "2026-04-03T10:00:00Z",
          "label": "Nonbrand search ad clicked",
          "channelId": "search-nonbrand",
          "channelLabel": "Nonbrand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-nonbrand"
        },
        {
          "id": "click-brand",
          "at": "2026-04-08T11:00:00Z",
          "recordedAt": "2026-04-08T11:00:00Z",
          "label": "Brand search ad clicked",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-brand"
        },
        {
          "id": "call-1",
          "at": "2026-04-09T12:00:00Z",
          "recordedAt": "2026-04-09T12:00:00Z",
          "label": "Seller called the website number",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/call",
          "locator": "call-1"
        },
        {
          "id": "qualified-1",
          "at": "2026-04-09T15:00:00Z",
          "recordedAt": "2026-04-09T15:00:00Z",
          "label": "Seller-property opportunity qualified",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/qualified",
          "locator": "qualified-1"
        },
        {
          "id": "assessment-1",
          "at": "2026-04-18T14:00:00Z",
          "recordedAt": "2026-04-18T14:00:00Z",
          "label": "Property assessment completed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/assessment",
          "locator": "assessment-1"
        },
        {
          "id": "offer-1",
          "at": "2026-04-24T10:00:00Z",
          "recordedAt": "2026-04-24T10:00:00Z",
          "label": "Written purchase offer delivered",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/offer",
          "locator": "offer-1"
        },
        {
          "id": "contract-1",
          "at": "2026-05-02T12:00:00Z",
          "recordedAt": "2026-05-02T12:00:00Z",
          "label": "Acquisition contract signed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/contract",
          "locator": "contract-1"
        },
        {
          "id": "marketing-cost",
          "at": "2026-05-03T12:00:00Z",
          "recordedAt": "2026-05-03T12:00:00Z",
          "label": "Acquisition marketing cost allocated",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/cost",
          "locator": "marketing-cost"
        },
        {
          "id": "closing-1",
          "at": "2026-06-02T12:00:00Z",
          "recordedAt": "2026-06-02T12:00:00Z",
          "label": "Property purchase closed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/acquisition",
          "locator": "closing-1"
        },
        {
          "id": "renovation-cost",
          "at": "2026-07-10T12:00:00Z",
          "recordedAt": "2026-07-10T12:00:00Z",
          "label": "Renovation costs reconciled",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/cost",
          "locator": "renovation-cost"
        },
        {
          "id": "resale-1",
          "at": "2026-09-03T12:00:00Z",
          "recordedAt": "2026-09-03T12:00:00Z",
          "label": "Resale proceeds recorded",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/resale",
          "locator": "resale-1"
        }
      ],
      "credit": [
        {
          "channelId": "search-brand",
          "label": "Brand paid search",
          "weight": 1,
          "percentage": 100,
          "touchIds": [
            "click-brand"
          ]
        }
      ],
      "outcome": {
        "qualifiedOpportunities": 1,
        "contracts": 1,
        "acquisitions": 1,
        "resales": 1,
        "canceled": false,
        "stage": "resold",
        "label": "Resale closed · costs incomplete",
        "capitalDeployed": 210000,
        "resaleProceeds": 295000,
        "contributionBeforeMarketing": null,
        "marketingAllocation": 3000,
        "contributionAfterMarketing": null,
        "missingCosts": [
          "holdingAndTransaction"
        ],
        "contributionStatus": "incomplete",
        "currency": "USD",
        "sourceIds": [
          "qualified-1",
          "contract-1",
          "marketing-cost",
          "closing-1",
          "renovation-cost",
          "resale-1"
        ]
      },
      "issues": [
        {
          "code": "incomplete_costs",
          "message": "Required cost evidence is unavailable at this cutoff: holdingAndTransaction. The affected contribution remains unknown."
        }
      ],
      "creditOutcome": "qualified_seller_property_opportunity",
      "eligibleTouchIds": [
        "click-brand",
        "click-nonbrand"
      ],
      "allocationStatus": "computed",
      "policyVersion": "cash-homebuyer.last.observed.v1",
      "propertyId": "property-104",
      "opportunityId": "acquisition-204",
      "sellerGroupId": "seller-group-14",
      "receiptHash": "f232a133dc1cf0c5486c5fc84ab598f71ede4d2fdefa24c46728772a22bd5686"
    },
    {
      "key": "missing-costs|observed|resale|linear",
      "scenarioId": "missing-costs",
      "evidencePolicyId": "observed",
      "cutoffId": "resale",
      "policyId": "linear",
      "proofKey": "missing-costs|observed|resale",
      "asOf": "2026-09-15T23:59:59Z",
      "status": "needs_review",
      "summary": "Resale closed · costs incomplete. Credit describes this qualified opportunity under the selected policy; it does not establish causal lift.",
      "timeline": [
        {
          "id": "click-nonbrand",
          "at": "2026-04-03T10:00:00Z",
          "recordedAt": "2026-04-03T10:00:00Z",
          "label": "Nonbrand search ad clicked",
          "channelId": "search-nonbrand",
          "channelLabel": "Nonbrand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-nonbrand"
        },
        {
          "id": "click-brand",
          "at": "2026-04-08T11:00:00Z",
          "recordedAt": "2026-04-08T11:00:00Z",
          "label": "Brand search ad clicked",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-brand"
        },
        {
          "id": "call-1",
          "at": "2026-04-09T12:00:00Z",
          "recordedAt": "2026-04-09T12:00:00Z",
          "label": "Seller called the website number",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/call",
          "locator": "call-1"
        },
        {
          "id": "qualified-1",
          "at": "2026-04-09T15:00:00Z",
          "recordedAt": "2026-04-09T15:00:00Z",
          "label": "Seller-property opportunity qualified",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/qualified",
          "locator": "qualified-1"
        },
        {
          "id": "assessment-1",
          "at": "2026-04-18T14:00:00Z",
          "recordedAt": "2026-04-18T14:00:00Z",
          "label": "Property assessment completed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/assessment",
          "locator": "assessment-1"
        },
        {
          "id": "offer-1",
          "at": "2026-04-24T10:00:00Z",
          "recordedAt": "2026-04-24T10:00:00Z",
          "label": "Written purchase offer delivered",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/offer",
          "locator": "offer-1"
        },
        {
          "id": "contract-1",
          "at": "2026-05-02T12:00:00Z",
          "recordedAt": "2026-05-02T12:00:00Z",
          "label": "Acquisition contract signed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/contract",
          "locator": "contract-1"
        },
        {
          "id": "marketing-cost",
          "at": "2026-05-03T12:00:00Z",
          "recordedAt": "2026-05-03T12:00:00Z",
          "label": "Acquisition marketing cost allocated",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/cost",
          "locator": "marketing-cost"
        },
        {
          "id": "closing-1",
          "at": "2026-06-02T12:00:00Z",
          "recordedAt": "2026-06-02T12:00:00Z",
          "label": "Property purchase closed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/acquisition",
          "locator": "closing-1"
        },
        {
          "id": "renovation-cost",
          "at": "2026-07-10T12:00:00Z",
          "recordedAt": "2026-07-10T12:00:00Z",
          "label": "Renovation costs reconciled",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/cost",
          "locator": "renovation-cost"
        },
        {
          "id": "resale-1",
          "at": "2026-09-03T12:00:00Z",
          "recordedAt": "2026-09-03T12:00:00Z",
          "label": "Resale proceeds recorded",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/resale",
          "locator": "resale-1"
        }
      ],
      "credit": [
        {
          "channelId": "search-nonbrand",
          "label": "Nonbrand paid search",
          "weight": 0.5,
          "percentage": 50,
          "touchIds": [
            "click-nonbrand"
          ]
        },
        {
          "channelId": "search-brand",
          "label": "Brand paid search",
          "weight": 0.5,
          "percentage": 50,
          "touchIds": [
            "click-brand"
          ]
        }
      ],
      "outcome": {
        "qualifiedOpportunities": 1,
        "contracts": 1,
        "acquisitions": 1,
        "resales": 1,
        "canceled": false,
        "stage": "resold",
        "label": "Resale closed · costs incomplete",
        "capitalDeployed": 210000,
        "resaleProceeds": 295000,
        "contributionBeforeMarketing": null,
        "marketingAllocation": 3000,
        "contributionAfterMarketing": null,
        "missingCosts": [
          "holdingAndTransaction"
        ],
        "contributionStatus": "incomplete",
        "currency": "USD",
        "sourceIds": [
          "qualified-1",
          "contract-1",
          "marketing-cost",
          "closing-1",
          "renovation-cost",
          "resale-1"
        ]
      },
      "issues": [
        {
          "code": "incomplete_costs",
          "message": "Required cost evidence is unavailable at this cutoff: holdingAndTransaction. The affected contribution remains unknown."
        }
      ],
      "creditOutcome": "qualified_seller_property_opportunity",
      "eligibleTouchIds": [
        "click-brand",
        "click-nonbrand"
      ],
      "allocationStatus": "computed",
      "policyVersion": "cash-homebuyer.linear.observed.v1",
      "propertyId": "property-104",
      "opportunityId": "acquisition-204",
      "sellerGroupId": "seller-group-14",
      "receiptHash": "dcf264ba12e4384c7030593accaa5b1fee3d7286c72852daa05d01fcc606aaa8"
    },
    {
      "key": "missing-costs|reported|contract|first",
      "scenarioId": "missing-costs",
      "evidencePolicyId": "reported",
      "cutoffId": "contract",
      "policyId": "first",
      "proofKey": "missing-costs|reported|contract",
      "asOf": "2026-05-15T23:59:59Z",
      "status": "complete",
      "summary": "Contract signed · purchase pending. Credit describes this qualified opportunity under the selected policy; it does not establish causal lift.",
      "timeline": [
        {
          "id": "click-nonbrand",
          "at": "2026-04-03T10:00:00Z",
          "recordedAt": "2026-04-03T10:00:00Z",
          "label": "Nonbrand search ad clicked",
          "channelId": "search-nonbrand",
          "channelLabel": "Nonbrand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-nonbrand"
        },
        {
          "id": "click-brand",
          "at": "2026-04-08T11:00:00Z",
          "recordedAt": "2026-04-08T11:00:00Z",
          "label": "Brand search ad clicked",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-brand"
        },
        {
          "id": "call-1",
          "at": "2026-04-09T12:00:00Z",
          "recordedAt": "2026-04-09T12:00:00Z",
          "label": "Seller called the website number",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/call",
          "locator": "call-1"
        },
        {
          "id": "qualified-1",
          "at": "2026-04-09T15:00:00Z",
          "recordedAt": "2026-04-09T15:00:00Z",
          "label": "Seller-property opportunity qualified",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/qualified",
          "locator": "qualified-1"
        },
        {
          "id": "assessment-1",
          "at": "2026-04-18T14:00:00Z",
          "recordedAt": "2026-04-18T14:00:00Z",
          "label": "Property assessment completed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/assessment",
          "locator": "assessment-1"
        },
        {
          "id": "offer-1",
          "at": "2026-04-24T10:00:00Z",
          "recordedAt": "2026-04-24T10:00:00Z",
          "label": "Written purchase offer delivered",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/offer",
          "locator": "offer-1"
        },
        {
          "id": "contract-1",
          "at": "2026-05-02T12:00:00Z",
          "recordedAt": "2026-05-02T12:00:00Z",
          "label": "Acquisition contract signed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/contract",
          "locator": "contract-1"
        },
        {
          "id": "marketing-cost",
          "at": "2026-05-03T12:00:00Z",
          "recordedAt": "2026-05-03T12:00:00Z",
          "label": "Acquisition marketing cost allocated",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/cost",
          "locator": "marketing-cost"
        }
      ],
      "credit": [
        {
          "channelId": "search-nonbrand",
          "label": "Nonbrand paid search",
          "weight": 1,
          "percentage": 100,
          "touchIds": [
            "click-nonbrand"
          ]
        }
      ],
      "outcome": {
        "qualifiedOpportunities": 1,
        "contracts": 1,
        "acquisitions": 0,
        "resales": 0,
        "canceled": false,
        "stage": "contract",
        "label": "Contract signed · purchase pending",
        "capitalDeployed": null,
        "resaleProceeds": null,
        "contributionBeforeMarketing": null,
        "marketingAllocation": 3000,
        "contributionAfterMarketing": null,
        "missingCosts": [
          "renovation",
          "holdingAndTransaction"
        ],
        "contributionStatus": "pending",
        "currency": "USD",
        "sourceIds": [
          "qualified-1",
          "contract-1",
          "marketing-cost"
        ]
      },
      "issues": [],
      "creditOutcome": "qualified_seller_property_opportunity",
      "eligibleTouchIds": [
        "click-brand",
        "click-nonbrand"
      ],
      "allocationStatus": "computed",
      "policyVersion": "cash-homebuyer.first.reported.v1",
      "propertyId": "property-104",
      "opportunityId": "acquisition-204",
      "sellerGroupId": "seller-group-14",
      "receiptHash": "fbd64b352d37a0e91ad1c8b6edae05da2ca9f5a32846b202867f9660d642d659"
    },
    {
      "key": "missing-costs|reported|contract|last",
      "scenarioId": "missing-costs",
      "evidencePolicyId": "reported",
      "cutoffId": "contract",
      "policyId": "last",
      "proofKey": "missing-costs|reported|contract",
      "asOf": "2026-05-15T23:59:59Z",
      "status": "complete",
      "summary": "Contract signed · purchase pending. Credit describes this qualified opportunity under the selected policy; it does not establish causal lift.",
      "timeline": [
        {
          "id": "click-nonbrand",
          "at": "2026-04-03T10:00:00Z",
          "recordedAt": "2026-04-03T10:00:00Z",
          "label": "Nonbrand search ad clicked",
          "channelId": "search-nonbrand",
          "channelLabel": "Nonbrand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-nonbrand"
        },
        {
          "id": "click-brand",
          "at": "2026-04-08T11:00:00Z",
          "recordedAt": "2026-04-08T11:00:00Z",
          "label": "Brand search ad clicked",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-brand"
        },
        {
          "id": "call-1",
          "at": "2026-04-09T12:00:00Z",
          "recordedAt": "2026-04-09T12:00:00Z",
          "label": "Seller called the website number",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/call",
          "locator": "call-1"
        },
        {
          "id": "qualified-1",
          "at": "2026-04-09T15:00:00Z",
          "recordedAt": "2026-04-09T15:00:00Z",
          "label": "Seller-property opportunity qualified",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/qualified",
          "locator": "qualified-1"
        },
        {
          "id": "assessment-1",
          "at": "2026-04-18T14:00:00Z",
          "recordedAt": "2026-04-18T14:00:00Z",
          "label": "Property assessment completed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/assessment",
          "locator": "assessment-1"
        },
        {
          "id": "offer-1",
          "at": "2026-04-24T10:00:00Z",
          "recordedAt": "2026-04-24T10:00:00Z",
          "label": "Written purchase offer delivered",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/offer",
          "locator": "offer-1"
        },
        {
          "id": "contract-1",
          "at": "2026-05-02T12:00:00Z",
          "recordedAt": "2026-05-02T12:00:00Z",
          "label": "Acquisition contract signed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/contract",
          "locator": "contract-1"
        },
        {
          "id": "marketing-cost",
          "at": "2026-05-03T12:00:00Z",
          "recordedAt": "2026-05-03T12:00:00Z",
          "label": "Acquisition marketing cost allocated",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/cost",
          "locator": "marketing-cost"
        }
      ],
      "credit": [
        {
          "channelId": "search-brand",
          "label": "Brand paid search",
          "weight": 1,
          "percentage": 100,
          "touchIds": [
            "click-brand"
          ]
        }
      ],
      "outcome": {
        "qualifiedOpportunities": 1,
        "contracts": 1,
        "acquisitions": 0,
        "resales": 0,
        "canceled": false,
        "stage": "contract",
        "label": "Contract signed · purchase pending",
        "capitalDeployed": null,
        "resaleProceeds": null,
        "contributionBeforeMarketing": null,
        "marketingAllocation": 3000,
        "contributionAfterMarketing": null,
        "missingCosts": [
          "renovation",
          "holdingAndTransaction"
        ],
        "contributionStatus": "pending",
        "currency": "USD",
        "sourceIds": [
          "qualified-1",
          "contract-1",
          "marketing-cost"
        ]
      },
      "issues": [],
      "creditOutcome": "qualified_seller_property_opportunity",
      "eligibleTouchIds": [
        "click-brand",
        "click-nonbrand"
      ],
      "allocationStatus": "computed",
      "policyVersion": "cash-homebuyer.last.reported.v1",
      "propertyId": "property-104",
      "opportunityId": "acquisition-204",
      "sellerGroupId": "seller-group-14",
      "receiptHash": "e9839a2982fc56ea01a53ef68603f294dbd00e9dea7beabd9a7ab61c2c4bb5fa"
    },
    {
      "key": "missing-costs|reported|contract|linear",
      "scenarioId": "missing-costs",
      "evidencePolicyId": "reported",
      "cutoffId": "contract",
      "policyId": "linear",
      "proofKey": "missing-costs|reported|contract",
      "asOf": "2026-05-15T23:59:59Z",
      "status": "complete",
      "summary": "Contract signed · purchase pending. Credit describes this qualified opportunity under the selected policy; it does not establish causal lift.",
      "timeline": [
        {
          "id": "click-nonbrand",
          "at": "2026-04-03T10:00:00Z",
          "recordedAt": "2026-04-03T10:00:00Z",
          "label": "Nonbrand search ad clicked",
          "channelId": "search-nonbrand",
          "channelLabel": "Nonbrand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-nonbrand"
        },
        {
          "id": "click-brand",
          "at": "2026-04-08T11:00:00Z",
          "recordedAt": "2026-04-08T11:00:00Z",
          "label": "Brand search ad clicked",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-brand"
        },
        {
          "id": "call-1",
          "at": "2026-04-09T12:00:00Z",
          "recordedAt": "2026-04-09T12:00:00Z",
          "label": "Seller called the website number",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/call",
          "locator": "call-1"
        },
        {
          "id": "qualified-1",
          "at": "2026-04-09T15:00:00Z",
          "recordedAt": "2026-04-09T15:00:00Z",
          "label": "Seller-property opportunity qualified",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/qualified",
          "locator": "qualified-1"
        },
        {
          "id": "assessment-1",
          "at": "2026-04-18T14:00:00Z",
          "recordedAt": "2026-04-18T14:00:00Z",
          "label": "Property assessment completed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/assessment",
          "locator": "assessment-1"
        },
        {
          "id": "offer-1",
          "at": "2026-04-24T10:00:00Z",
          "recordedAt": "2026-04-24T10:00:00Z",
          "label": "Written purchase offer delivered",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/offer",
          "locator": "offer-1"
        },
        {
          "id": "contract-1",
          "at": "2026-05-02T12:00:00Z",
          "recordedAt": "2026-05-02T12:00:00Z",
          "label": "Acquisition contract signed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/contract",
          "locator": "contract-1"
        },
        {
          "id": "marketing-cost",
          "at": "2026-05-03T12:00:00Z",
          "recordedAt": "2026-05-03T12:00:00Z",
          "label": "Acquisition marketing cost allocated",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/cost",
          "locator": "marketing-cost"
        }
      ],
      "credit": [
        {
          "channelId": "search-nonbrand",
          "label": "Nonbrand paid search",
          "weight": 0.5,
          "percentage": 50,
          "touchIds": [
            "click-nonbrand"
          ]
        },
        {
          "channelId": "search-brand",
          "label": "Brand paid search",
          "weight": 0.5,
          "percentage": 50,
          "touchIds": [
            "click-brand"
          ]
        }
      ],
      "outcome": {
        "qualifiedOpportunities": 1,
        "contracts": 1,
        "acquisitions": 0,
        "resales": 0,
        "canceled": false,
        "stage": "contract",
        "label": "Contract signed · purchase pending",
        "capitalDeployed": null,
        "resaleProceeds": null,
        "contributionBeforeMarketing": null,
        "marketingAllocation": 3000,
        "contributionAfterMarketing": null,
        "missingCosts": [
          "renovation",
          "holdingAndTransaction"
        ],
        "contributionStatus": "pending",
        "currency": "USD",
        "sourceIds": [
          "qualified-1",
          "contract-1",
          "marketing-cost"
        ]
      },
      "issues": [],
      "creditOutcome": "qualified_seller_property_opportunity",
      "eligibleTouchIds": [
        "click-brand",
        "click-nonbrand"
      ],
      "allocationStatus": "computed",
      "policyVersion": "cash-homebuyer.linear.reported.v1",
      "propertyId": "property-104",
      "opportunityId": "acquisition-204",
      "sellerGroupId": "seller-group-14",
      "receiptHash": "94a7da9da3716709f3ec56fa94cc622c9871ba58a7dcbab6f93bf5e01fdc416e"
    },
    {
      "key": "missing-costs|reported|acquired|first",
      "scenarioId": "missing-costs",
      "evidencePolicyId": "reported",
      "cutoffId": "acquired",
      "policyId": "first",
      "proofKey": "missing-costs|reported|acquired",
      "asOf": "2026-06-15T23:59:59Z",
      "status": "complete",
      "summary": "Purchase closed · resale pending. Credit describes this qualified opportunity under the selected policy; it does not establish causal lift.",
      "timeline": [
        {
          "id": "click-nonbrand",
          "at": "2026-04-03T10:00:00Z",
          "recordedAt": "2026-04-03T10:00:00Z",
          "label": "Nonbrand search ad clicked",
          "channelId": "search-nonbrand",
          "channelLabel": "Nonbrand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-nonbrand"
        },
        {
          "id": "click-brand",
          "at": "2026-04-08T11:00:00Z",
          "recordedAt": "2026-04-08T11:00:00Z",
          "label": "Brand search ad clicked",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-brand"
        },
        {
          "id": "call-1",
          "at": "2026-04-09T12:00:00Z",
          "recordedAt": "2026-04-09T12:00:00Z",
          "label": "Seller called the website number",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/call",
          "locator": "call-1"
        },
        {
          "id": "qualified-1",
          "at": "2026-04-09T15:00:00Z",
          "recordedAt": "2026-04-09T15:00:00Z",
          "label": "Seller-property opportunity qualified",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/qualified",
          "locator": "qualified-1"
        },
        {
          "id": "assessment-1",
          "at": "2026-04-18T14:00:00Z",
          "recordedAt": "2026-04-18T14:00:00Z",
          "label": "Property assessment completed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/assessment",
          "locator": "assessment-1"
        },
        {
          "id": "offer-1",
          "at": "2026-04-24T10:00:00Z",
          "recordedAt": "2026-04-24T10:00:00Z",
          "label": "Written purchase offer delivered",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/offer",
          "locator": "offer-1"
        },
        {
          "id": "contract-1",
          "at": "2026-05-02T12:00:00Z",
          "recordedAt": "2026-05-02T12:00:00Z",
          "label": "Acquisition contract signed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/contract",
          "locator": "contract-1"
        },
        {
          "id": "marketing-cost",
          "at": "2026-05-03T12:00:00Z",
          "recordedAt": "2026-05-03T12:00:00Z",
          "label": "Acquisition marketing cost allocated",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/cost",
          "locator": "marketing-cost"
        },
        {
          "id": "closing-1",
          "at": "2026-06-02T12:00:00Z",
          "recordedAt": "2026-06-02T12:00:00Z",
          "label": "Property purchase closed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/acquisition",
          "locator": "closing-1"
        }
      ],
      "credit": [
        {
          "channelId": "search-nonbrand",
          "label": "Nonbrand paid search",
          "weight": 1,
          "percentage": 100,
          "touchIds": [
            "click-nonbrand"
          ]
        }
      ],
      "outcome": {
        "qualifiedOpportunities": 1,
        "contracts": 1,
        "acquisitions": 1,
        "resales": 0,
        "canceled": false,
        "stage": "acquired",
        "label": "Purchase closed · resale pending",
        "capitalDeployed": 210000,
        "resaleProceeds": null,
        "contributionBeforeMarketing": null,
        "marketingAllocation": 3000,
        "contributionAfterMarketing": null,
        "missingCosts": [
          "renovation",
          "holdingAndTransaction"
        ],
        "contributionStatus": "pending",
        "currency": "USD",
        "sourceIds": [
          "qualified-1",
          "contract-1",
          "marketing-cost",
          "closing-1"
        ]
      },
      "issues": [],
      "creditOutcome": "qualified_seller_property_opportunity",
      "eligibleTouchIds": [
        "click-brand",
        "click-nonbrand"
      ],
      "allocationStatus": "computed",
      "policyVersion": "cash-homebuyer.first.reported.v1",
      "propertyId": "property-104",
      "opportunityId": "acquisition-204",
      "sellerGroupId": "seller-group-14",
      "receiptHash": "fb82fd6713acb1c13401153312a355b313b82bbe3de263c259c447e6e610443e"
    },
    {
      "key": "missing-costs|reported|acquired|last",
      "scenarioId": "missing-costs",
      "evidencePolicyId": "reported",
      "cutoffId": "acquired",
      "policyId": "last",
      "proofKey": "missing-costs|reported|acquired",
      "asOf": "2026-06-15T23:59:59Z",
      "status": "complete",
      "summary": "Purchase closed · resale pending. Credit describes this qualified opportunity under the selected policy; it does not establish causal lift.",
      "timeline": [
        {
          "id": "click-nonbrand",
          "at": "2026-04-03T10:00:00Z",
          "recordedAt": "2026-04-03T10:00:00Z",
          "label": "Nonbrand search ad clicked",
          "channelId": "search-nonbrand",
          "channelLabel": "Nonbrand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-nonbrand"
        },
        {
          "id": "click-brand",
          "at": "2026-04-08T11:00:00Z",
          "recordedAt": "2026-04-08T11:00:00Z",
          "label": "Brand search ad clicked",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-brand"
        },
        {
          "id": "call-1",
          "at": "2026-04-09T12:00:00Z",
          "recordedAt": "2026-04-09T12:00:00Z",
          "label": "Seller called the website number",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/call",
          "locator": "call-1"
        },
        {
          "id": "qualified-1",
          "at": "2026-04-09T15:00:00Z",
          "recordedAt": "2026-04-09T15:00:00Z",
          "label": "Seller-property opportunity qualified",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/qualified",
          "locator": "qualified-1"
        },
        {
          "id": "assessment-1",
          "at": "2026-04-18T14:00:00Z",
          "recordedAt": "2026-04-18T14:00:00Z",
          "label": "Property assessment completed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/assessment",
          "locator": "assessment-1"
        },
        {
          "id": "offer-1",
          "at": "2026-04-24T10:00:00Z",
          "recordedAt": "2026-04-24T10:00:00Z",
          "label": "Written purchase offer delivered",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/offer",
          "locator": "offer-1"
        },
        {
          "id": "contract-1",
          "at": "2026-05-02T12:00:00Z",
          "recordedAt": "2026-05-02T12:00:00Z",
          "label": "Acquisition contract signed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/contract",
          "locator": "contract-1"
        },
        {
          "id": "marketing-cost",
          "at": "2026-05-03T12:00:00Z",
          "recordedAt": "2026-05-03T12:00:00Z",
          "label": "Acquisition marketing cost allocated",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/cost",
          "locator": "marketing-cost"
        },
        {
          "id": "closing-1",
          "at": "2026-06-02T12:00:00Z",
          "recordedAt": "2026-06-02T12:00:00Z",
          "label": "Property purchase closed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/acquisition",
          "locator": "closing-1"
        }
      ],
      "credit": [
        {
          "channelId": "search-brand",
          "label": "Brand paid search",
          "weight": 1,
          "percentage": 100,
          "touchIds": [
            "click-brand"
          ]
        }
      ],
      "outcome": {
        "qualifiedOpportunities": 1,
        "contracts": 1,
        "acquisitions": 1,
        "resales": 0,
        "canceled": false,
        "stage": "acquired",
        "label": "Purchase closed · resale pending",
        "capitalDeployed": 210000,
        "resaleProceeds": null,
        "contributionBeforeMarketing": null,
        "marketingAllocation": 3000,
        "contributionAfterMarketing": null,
        "missingCosts": [
          "renovation",
          "holdingAndTransaction"
        ],
        "contributionStatus": "pending",
        "currency": "USD",
        "sourceIds": [
          "qualified-1",
          "contract-1",
          "marketing-cost",
          "closing-1"
        ]
      },
      "issues": [],
      "creditOutcome": "qualified_seller_property_opportunity",
      "eligibleTouchIds": [
        "click-brand",
        "click-nonbrand"
      ],
      "allocationStatus": "computed",
      "policyVersion": "cash-homebuyer.last.reported.v1",
      "propertyId": "property-104",
      "opportunityId": "acquisition-204",
      "sellerGroupId": "seller-group-14",
      "receiptHash": "aa499290a070c9597af37ac61d1ae7fff8788298cfaacbff0373df27d14351d2"
    },
    {
      "key": "missing-costs|reported|acquired|linear",
      "scenarioId": "missing-costs",
      "evidencePolicyId": "reported",
      "cutoffId": "acquired",
      "policyId": "linear",
      "proofKey": "missing-costs|reported|acquired",
      "asOf": "2026-06-15T23:59:59Z",
      "status": "complete",
      "summary": "Purchase closed · resale pending. Credit describes this qualified opportunity under the selected policy; it does not establish causal lift.",
      "timeline": [
        {
          "id": "click-nonbrand",
          "at": "2026-04-03T10:00:00Z",
          "recordedAt": "2026-04-03T10:00:00Z",
          "label": "Nonbrand search ad clicked",
          "channelId": "search-nonbrand",
          "channelLabel": "Nonbrand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-nonbrand"
        },
        {
          "id": "click-brand",
          "at": "2026-04-08T11:00:00Z",
          "recordedAt": "2026-04-08T11:00:00Z",
          "label": "Brand search ad clicked",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-brand"
        },
        {
          "id": "call-1",
          "at": "2026-04-09T12:00:00Z",
          "recordedAt": "2026-04-09T12:00:00Z",
          "label": "Seller called the website number",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/call",
          "locator": "call-1"
        },
        {
          "id": "qualified-1",
          "at": "2026-04-09T15:00:00Z",
          "recordedAt": "2026-04-09T15:00:00Z",
          "label": "Seller-property opportunity qualified",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/qualified",
          "locator": "qualified-1"
        },
        {
          "id": "assessment-1",
          "at": "2026-04-18T14:00:00Z",
          "recordedAt": "2026-04-18T14:00:00Z",
          "label": "Property assessment completed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/assessment",
          "locator": "assessment-1"
        },
        {
          "id": "offer-1",
          "at": "2026-04-24T10:00:00Z",
          "recordedAt": "2026-04-24T10:00:00Z",
          "label": "Written purchase offer delivered",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/offer",
          "locator": "offer-1"
        },
        {
          "id": "contract-1",
          "at": "2026-05-02T12:00:00Z",
          "recordedAt": "2026-05-02T12:00:00Z",
          "label": "Acquisition contract signed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/contract",
          "locator": "contract-1"
        },
        {
          "id": "marketing-cost",
          "at": "2026-05-03T12:00:00Z",
          "recordedAt": "2026-05-03T12:00:00Z",
          "label": "Acquisition marketing cost allocated",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/cost",
          "locator": "marketing-cost"
        },
        {
          "id": "closing-1",
          "at": "2026-06-02T12:00:00Z",
          "recordedAt": "2026-06-02T12:00:00Z",
          "label": "Property purchase closed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/acquisition",
          "locator": "closing-1"
        }
      ],
      "credit": [
        {
          "channelId": "search-nonbrand",
          "label": "Nonbrand paid search",
          "weight": 0.5,
          "percentage": 50,
          "touchIds": [
            "click-nonbrand"
          ]
        },
        {
          "channelId": "search-brand",
          "label": "Brand paid search",
          "weight": 0.5,
          "percentage": 50,
          "touchIds": [
            "click-brand"
          ]
        }
      ],
      "outcome": {
        "qualifiedOpportunities": 1,
        "contracts": 1,
        "acquisitions": 1,
        "resales": 0,
        "canceled": false,
        "stage": "acquired",
        "label": "Purchase closed · resale pending",
        "capitalDeployed": 210000,
        "resaleProceeds": null,
        "contributionBeforeMarketing": null,
        "marketingAllocation": 3000,
        "contributionAfterMarketing": null,
        "missingCosts": [
          "renovation",
          "holdingAndTransaction"
        ],
        "contributionStatus": "pending",
        "currency": "USD",
        "sourceIds": [
          "qualified-1",
          "contract-1",
          "marketing-cost",
          "closing-1"
        ]
      },
      "issues": [],
      "creditOutcome": "qualified_seller_property_opportunity",
      "eligibleTouchIds": [
        "click-brand",
        "click-nonbrand"
      ],
      "allocationStatus": "computed",
      "policyVersion": "cash-homebuyer.linear.reported.v1",
      "propertyId": "property-104",
      "opportunityId": "acquisition-204",
      "sellerGroupId": "seller-group-14",
      "receiptHash": "086d796951ab60b3b91fdddb2746eef84d9f2bd44e7281b172e9cb8566becbec"
    },
    {
      "key": "missing-costs|reported|resale|first",
      "scenarioId": "missing-costs",
      "evidencePolicyId": "reported",
      "cutoffId": "resale",
      "policyId": "first",
      "proofKey": "missing-costs|reported|resale",
      "asOf": "2026-09-15T23:59:59Z",
      "status": "needs_review",
      "summary": "Resale closed · costs incomplete. Credit describes this qualified opportunity under the selected policy; it does not establish causal lift.",
      "timeline": [
        {
          "id": "click-nonbrand",
          "at": "2026-04-03T10:00:00Z",
          "recordedAt": "2026-04-03T10:00:00Z",
          "label": "Nonbrand search ad clicked",
          "channelId": "search-nonbrand",
          "channelLabel": "Nonbrand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-nonbrand"
        },
        {
          "id": "click-brand",
          "at": "2026-04-08T11:00:00Z",
          "recordedAt": "2026-04-08T11:00:00Z",
          "label": "Brand search ad clicked",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-brand"
        },
        {
          "id": "call-1",
          "at": "2026-04-09T12:00:00Z",
          "recordedAt": "2026-04-09T12:00:00Z",
          "label": "Seller called the website number",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/call",
          "locator": "call-1"
        },
        {
          "id": "qualified-1",
          "at": "2026-04-09T15:00:00Z",
          "recordedAt": "2026-04-09T15:00:00Z",
          "label": "Seller-property opportunity qualified",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/qualified",
          "locator": "qualified-1"
        },
        {
          "id": "assessment-1",
          "at": "2026-04-18T14:00:00Z",
          "recordedAt": "2026-04-18T14:00:00Z",
          "label": "Property assessment completed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/assessment",
          "locator": "assessment-1"
        },
        {
          "id": "offer-1",
          "at": "2026-04-24T10:00:00Z",
          "recordedAt": "2026-04-24T10:00:00Z",
          "label": "Written purchase offer delivered",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/offer",
          "locator": "offer-1"
        },
        {
          "id": "contract-1",
          "at": "2026-05-02T12:00:00Z",
          "recordedAt": "2026-05-02T12:00:00Z",
          "label": "Acquisition contract signed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/contract",
          "locator": "contract-1"
        },
        {
          "id": "marketing-cost",
          "at": "2026-05-03T12:00:00Z",
          "recordedAt": "2026-05-03T12:00:00Z",
          "label": "Acquisition marketing cost allocated",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/cost",
          "locator": "marketing-cost"
        },
        {
          "id": "closing-1",
          "at": "2026-06-02T12:00:00Z",
          "recordedAt": "2026-06-02T12:00:00Z",
          "label": "Property purchase closed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/acquisition",
          "locator": "closing-1"
        },
        {
          "id": "renovation-cost",
          "at": "2026-07-10T12:00:00Z",
          "recordedAt": "2026-07-10T12:00:00Z",
          "label": "Renovation costs reconciled",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/cost",
          "locator": "renovation-cost"
        },
        {
          "id": "resale-1",
          "at": "2026-09-03T12:00:00Z",
          "recordedAt": "2026-09-03T12:00:00Z",
          "label": "Resale proceeds recorded",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/resale",
          "locator": "resale-1"
        }
      ],
      "credit": [
        {
          "channelId": "search-nonbrand",
          "label": "Nonbrand paid search",
          "weight": 1,
          "percentage": 100,
          "touchIds": [
            "click-nonbrand"
          ]
        }
      ],
      "outcome": {
        "qualifiedOpportunities": 1,
        "contracts": 1,
        "acquisitions": 1,
        "resales": 1,
        "canceled": false,
        "stage": "resold",
        "label": "Resale closed · costs incomplete",
        "capitalDeployed": 210000,
        "resaleProceeds": 295000,
        "contributionBeforeMarketing": null,
        "marketingAllocation": 3000,
        "contributionAfterMarketing": null,
        "missingCosts": [
          "holdingAndTransaction"
        ],
        "contributionStatus": "incomplete",
        "currency": "USD",
        "sourceIds": [
          "qualified-1",
          "contract-1",
          "marketing-cost",
          "closing-1",
          "renovation-cost",
          "resale-1"
        ]
      },
      "issues": [
        {
          "code": "incomplete_costs",
          "message": "Required cost evidence is unavailable at this cutoff: holdingAndTransaction. The affected contribution remains unknown."
        }
      ],
      "creditOutcome": "qualified_seller_property_opportunity",
      "eligibleTouchIds": [
        "click-brand",
        "click-nonbrand"
      ],
      "allocationStatus": "computed",
      "policyVersion": "cash-homebuyer.first.reported.v1",
      "propertyId": "property-104",
      "opportunityId": "acquisition-204",
      "sellerGroupId": "seller-group-14",
      "receiptHash": "bab24ec7ba6052fb19b8bd3698729e14cd4477936d3ecc2ddc147288192f94c8"
    },
    {
      "key": "missing-costs|reported|resale|last",
      "scenarioId": "missing-costs",
      "evidencePolicyId": "reported",
      "cutoffId": "resale",
      "policyId": "last",
      "proofKey": "missing-costs|reported|resale",
      "asOf": "2026-09-15T23:59:59Z",
      "status": "needs_review",
      "summary": "Resale closed · costs incomplete. Credit describes this qualified opportunity under the selected policy; it does not establish causal lift.",
      "timeline": [
        {
          "id": "click-nonbrand",
          "at": "2026-04-03T10:00:00Z",
          "recordedAt": "2026-04-03T10:00:00Z",
          "label": "Nonbrand search ad clicked",
          "channelId": "search-nonbrand",
          "channelLabel": "Nonbrand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-nonbrand"
        },
        {
          "id": "click-brand",
          "at": "2026-04-08T11:00:00Z",
          "recordedAt": "2026-04-08T11:00:00Z",
          "label": "Brand search ad clicked",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-brand"
        },
        {
          "id": "call-1",
          "at": "2026-04-09T12:00:00Z",
          "recordedAt": "2026-04-09T12:00:00Z",
          "label": "Seller called the website number",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/call",
          "locator": "call-1"
        },
        {
          "id": "qualified-1",
          "at": "2026-04-09T15:00:00Z",
          "recordedAt": "2026-04-09T15:00:00Z",
          "label": "Seller-property opportunity qualified",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/qualified",
          "locator": "qualified-1"
        },
        {
          "id": "assessment-1",
          "at": "2026-04-18T14:00:00Z",
          "recordedAt": "2026-04-18T14:00:00Z",
          "label": "Property assessment completed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/assessment",
          "locator": "assessment-1"
        },
        {
          "id": "offer-1",
          "at": "2026-04-24T10:00:00Z",
          "recordedAt": "2026-04-24T10:00:00Z",
          "label": "Written purchase offer delivered",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/offer",
          "locator": "offer-1"
        },
        {
          "id": "contract-1",
          "at": "2026-05-02T12:00:00Z",
          "recordedAt": "2026-05-02T12:00:00Z",
          "label": "Acquisition contract signed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/contract",
          "locator": "contract-1"
        },
        {
          "id": "marketing-cost",
          "at": "2026-05-03T12:00:00Z",
          "recordedAt": "2026-05-03T12:00:00Z",
          "label": "Acquisition marketing cost allocated",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/cost",
          "locator": "marketing-cost"
        },
        {
          "id": "closing-1",
          "at": "2026-06-02T12:00:00Z",
          "recordedAt": "2026-06-02T12:00:00Z",
          "label": "Property purchase closed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/acquisition",
          "locator": "closing-1"
        },
        {
          "id": "renovation-cost",
          "at": "2026-07-10T12:00:00Z",
          "recordedAt": "2026-07-10T12:00:00Z",
          "label": "Renovation costs reconciled",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/cost",
          "locator": "renovation-cost"
        },
        {
          "id": "resale-1",
          "at": "2026-09-03T12:00:00Z",
          "recordedAt": "2026-09-03T12:00:00Z",
          "label": "Resale proceeds recorded",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/resale",
          "locator": "resale-1"
        }
      ],
      "credit": [
        {
          "channelId": "search-brand",
          "label": "Brand paid search",
          "weight": 1,
          "percentage": 100,
          "touchIds": [
            "click-brand"
          ]
        }
      ],
      "outcome": {
        "qualifiedOpportunities": 1,
        "contracts": 1,
        "acquisitions": 1,
        "resales": 1,
        "canceled": false,
        "stage": "resold",
        "label": "Resale closed · costs incomplete",
        "capitalDeployed": 210000,
        "resaleProceeds": 295000,
        "contributionBeforeMarketing": null,
        "marketingAllocation": 3000,
        "contributionAfterMarketing": null,
        "missingCosts": [
          "holdingAndTransaction"
        ],
        "contributionStatus": "incomplete",
        "currency": "USD",
        "sourceIds": [
          "qualified-1",
          "contract-1",
          "marketing-cost",
          "closing-1",
          "renovation-cost",
          "resale-1"
        ]
      },
      "issues": [
        {
          "code": "incomplete_costs",
          "message": "Required cost evidence is unavailable at this cutoff: holdingAndTransaction. The affected contribution remains unknown."
        }
      ],
      "creditOutcome": "qualified_seller_property_opportunity",
      "eligibleTouchIds": [
        "click-brand",
        "click-nonbrand"
      ],
      "allocationStatus": "computed",
      "policyVersion": "cash-homebuyer.last.reported.v1",
      "propertyId": "property-104",
      "opportunityId": "acquisition-204",
      "sellerGroupId": "seller-group-14",
      "receiptHash": "13fc9bc37071c4b24031e1fb3c5495a2a6bdc185e64eaa041f7f15de0888d330"
    },
    {
      "key": "missing-costs|reported|resale|linear",
      "scenarioId": "missing-costs",
      "evidencePolicyId": "reported",
      "cutoffId": "resale",
      "policyId": "linear",
      "proofKey": "missing-costs|reported|resale",
      "asOf": "2026-09-15T23:59:59Z",
      "status": "needs_review",
      "summary": "Resale closed · costs incomplete. Credit describes this qualified opportunity under the selected policy; it does not establish causal lift.",
      "timeline": [
        {
          "id": "click-nonbrand",
          "at": "2026-04-03T10:00:00Z",
          "recordedAt": "2026-04-03T10:00:00Z",
          "label": "Nonbrand search ad clicked",
          "channelId": "search-nonbrand",
          "channelLabel": "Nonbrand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-nonbrand"
        },
        {
          "id": "click-brand",
          "at": "2026-04-08T11:00:00Z",
          "recordedAt": "2026-04-08T11:00:00Z",
          "label": "Brand search ad clicked",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "eligible",
          "reason": "Observed touch meets opportunity, seller-group, timing, and evidence rules.",
          "sourceRef": "synthetic://cash-homebuyer/touch",
          "locator": "click-brand"
        },
        {
          "id": "call-1",
          "at": "2026-04-09T12:00:00Z",
          "recordedAt": "2026-04-09T12:00:00Z",
          "label": "Seller called the website number",
          "channelId": "search-brand",
          "channelLabel": "Brand paid search",
          "evidenceType": "observed",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/call",
          "locator": "call-1"
        },
        {
          "id": "qualified-1",
          "at": "2026-04-09T15:00:00Z",
          "recordedAt": "2026-04-09T15:00:00Z",
          "label": "Seller-property opportunity qualified",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/qualified",
          "locator": "qualified-1"
        },
        {
          "id": "assessment-1",
          "at": "2026-04-18T14:00:00Z",
          "recordedAt": "2026-04-18T14:00:00Z",
          "label": "Property assessment completed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/assessment",
          "locator": "assessment-1"
        },
        {
          "id": "offer-1",
          "at": "2026-04-24T10:00:00Z",
          "recordedAt": "2026-04-24T10:00:00Z",
          "label": "Written purchase offer delivered",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/offer",
          "locator": "offer-1"
        },
        {
          "id": "contract-1",
          "at": "2026-05-02T12:00:00Z",
          "recordedAt": "2026-05-02T12:00:00Z",
          "label": "Acquisition contract signed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/contract",
          "locator": "contract-1"
        },
        {
          "id": "marketing-cost",
          "at": "2026-05-03T12:00:00Z",
          "recordedAt": "2026-05-03T12:00:00Z",
          "label": "Acquisition marketing cost allocated",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/cost",
          "locator": "marketing-cost"
        },
        {
          "id": "closing-1",
          "at": "2026-06-02T12:00:00Z",
          "recordedAt": "2026-06-02T12:00:00Z",
          "label": "Property purchase closed",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/acquisition",
          "locator": "closing-1"
        },
        {
          "id": "renovation-cost",
          "at": "2026-07-10T12:00:00Z",
          "recordedAt": "2026-07-10T12:00:00Z",
          "label": "Renovation costs reconciled",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/cost",
          "locator": "renovation-cost"
        },
        {
          "id": "resale-1",
          "at": "2026-09-03T12:00:00Z",
          "recordedAt": "2026-09-03T12:00:00Z",
          "label": "Resale proceeds recorded",
          "channelId": null,
          "channelLabel": "—",
          "evidenceType": "operational",
          "disposition": "outcome",
          "reason": "Operational record; no additional marketing credit.",
          "sourceRef": "synthetic://cash-homebuyer/resale",
          "locator": "resale-1"
        }
      ],
      "credit": [
        {
          "channelId": "search-nonbrand",
          "label": "Nonbrand paid search",
          "weight": 0.5,
          "percentage": 50,
          "touchIds": [
            "click-nonbrand"
          ]
        },
        {
          "channelId": "search-brand",
          "label": "Brand paid search",
          "weight": 0.5,
          "percentage": 50,
          "touchIds": [
            "click-brand"
          ]
        }
      ],
      "outcome": {
        "qualifiedOpportunities": 1,
        "contracts": 1,
        "acquisitions": 1,
        "resales": 1,
        "canceled": false,
        "stage": "resold",
        "label": "Resale closed · costs incomplete",
        "capitalDeployed": 210000,
        "resaleProceeds": 295000,
        "contributionBeforeMarketing": null,
        "marketingAllocation": 3000,
        "contributionAfterMarketing": null,
        "missingCosts": [
          "holdingAndTransaction"
        ],
        "contributionStatus": "incomplete",
        "currency": "USD",
        "sourceIds": [
          "qualified-1",
          "contract-1",
          "marketing-cost",
          "closing-1",
          "renovation-cost",
          "resale-1"
        ]
      },
      "issues": [
        {
          "code": "incomplete_costs",
          "message": "Required cost evidence is unavailable at this cutoff: holdingAndTransaction. The affected contribution remains unknown."
        }
      ],
      "creditOutcome": "qualified_seller_property_opportunity",
      "eligibleTouchIds": [
        "click-brand",
        "click-nonbrand"
      ],
      "allocationStatus": "computed",
      "policyVersion": "cash-homebuyer.linear.reported.v1",
      "propertyId": "property-104",
      "opportunityId": "acquisition-204",
      "sellerGroupId": "seller-group-14",
      "receiptHash": "afecea3274eba656ac425144b69545c573d55f6887738b0a0d2b67675c9ceefb"
    }
  ],
  "proofs": {
    "supported|observed|contract": {
      "graph": {
        "snapshotVersion": "t2k.reasoning-graph.v1",
        "graphKey": "demo.cash-homebuyer",
        "asOf": "2026-05-15T23:59:59Z",
        "ontologyResolutionHash": "c1f42aba94b41cc81e2ba87abe71a6263a91a15226cc24ee279c2183f576533f",
        "coverage": "complete",
        "entities": [
          {
            "entityId": "click-nonbrand",
            "typeRef": "demo.cash-homebuyer:touchpoint"
          },
          {
            "entityId": "click-brand",
            "typeRef": "demo.cash-homebuyer:touchpoint"
          }
        ],
        "claims": [
          {
            "claimId": "click-nonbrand.property_id",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.property_id",
            "value": "property-104",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.property_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.opportunity_id",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.opportunity_id",
            "value": "acquisition-204",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.opportunity_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.seller_group_id",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.seller_group_id",
            "value": "seller-group-14",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.seller_group_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.channel_id",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.channel_id",
            "value": "search-nonbrand",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.channel_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.event_at_ms",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.event_at_ms",
            "value": 1775210400000,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.event_at_ms"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.evidence_rank",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.evidence_rank",
            "value": 0,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.evidence_rank"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.marketing_touch",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.marketing_touch",
            "value": true,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.marketing_touch"
              }
            ]
          },
          {
            "claimId": "click-brand.property_id",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.property_id",
            "value": "property-104",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.property_id"
              }
            ]
          },
          {
            "claimId": "click-brand.opportunity_id",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.opportunity_id",
            "value": "acquisition-204",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.opportunity_id"
              }
            ]
          },
          {
            "claimId": "click-brand.seller_group_id",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.seller_group_id",
            "value": "seller-group-14",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.seller_group_id"
              }
            ]
          },
          {
            "claimId": "click-brand.channel_id",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.channel_id",
            "value": "search-brand",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.channel_id"
              }
            ]
          },
          {
            "claimId": "click-brand.event_at_ms",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.event_at_ms",
            "value": 1775646000000,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.event_at_ms"
              }
            ]
          },
          {
            "claimId": "click-brand.evidence_rank",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.evidence_rank",
            "value": 0,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.evidence_rank"
              }
            ]
          },
          {
            "claimId": "click-brand.marketing_touch",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.marketing_touch",
            "value": true,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.marketing_touch"
              }
            ]
          }
        ]
      },
      "arguments": {
        "property": "property-104",
        "opportunity": "acquisition-204",
        "sellerGroup": "seller-group-14",
        "windowStart": 1772323200000,
        "qualificationAt": 1775746800000,
        "admittedRank": 0
      },
      "receipt": {
        "resultVersion": "t2k.graph-result.v1",
        "status": "complete",
        "value": [
          {
            "touchId": "click-brand",
            "channelId": "search-brand",
            "eventAtMs": 1775646000000,
            "evidenceRank": 0
          },
          {
            "touchId": "click-nonbrand",
            "channelId": "search-nonbrand",
            "eventAtMs": 1775210400000,
            "evidenceRank": 0
          }
        ],
        "authorization": "not_authorized",
        "binding": {
          "runtimeVersion": "t2k.graph-runtime.v1",
          "functionHash": "c0aa7b713a989a49764860e270b776fcbd76416e07891e48a43920029a6aa40d",
          "ontologyResolutionHash": "c1f42aba94b41cc81e2ba87abe71a6263a91a15226cc24ee279c2183f576533f",
          "graphKey": "demo.cash-homebuyer",
          "asOf": "2026-05-15T23:59:59.000Z",
          "snapshotHash": "ce0d1ea1084615732b662e32ce6b69ae77ea2a75405f6d796be27a207e8b6267",
          "argumentsHash": "42e0e7d41d126edcc85e8694a0a6c610ab82f2484d117738872465ddbc3c08ac"
        },
        "evidence": [
          {
            "claimId": "click-brand.channel_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.channel_id"
              }
            ]
          },
          {
            "claimId": "click-brand.event_at_ms",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.event_at_ms"
              }
            ]
          },
          {
            "claimId": "click-brand.evidence_rank",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.evidence_rank"
              }
            ]
          },
          {
            "claimId": "click-brand.marketing_touch",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.marketing_touch"
              }
            ]
          },
          {
            "claimId": "click-brand.opportunity_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.opportunity_id"
              }
            ]
          },
          {
            "claimId": "click-brand.property_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.property_id"
              }
            ]
          },
          {
            "claimId": "click-brand.seller_group_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.seller_group_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.channel_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.channel_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.event_at_ms",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.event_at_ms"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.evidence_rank",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.evidence_rank"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.marketing_touch",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.marketing_touch"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.opportunity_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.opportunity_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.property_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.property_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.seller_group_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.seller_group_id"
              }
            ]
          }
        ],
        "supportingClaimIds": [
          "click-brand.channel_id",
          "click-brand.event_at_ms",
          "click-brand.evidence_rank",
          "click-brand.marketing_touch",
          "click-brand.opportunity_id",
          "click-brand.property_id",
          "click-brand.seller_group_id",
          "click-nonbrand.channel_id",
          "click-nonbrand.event_at_ms",
          "click-nonbrand.evidence_rank",
          "click-nonbrand.marketing_touch",
          "click-nonbrand.opportunity_id",
          "click-nonbrand.property_id",
          "click-nonbrand.seller_group_id"
        ],
        "derivations": [
          {
            "rowHash": "694a95e1c5a20b2c4181a07122a2a687fc67128c10a258b2430fa33c69ae9712",
            "claimIds": [
              "click-brand.channel_id",
              "click-brand.event_at_ms",
              "click-brand.evidence_rank",
              "click-brand.marketing_touch",
              "click-brand.opportunity_id",
              "click-brand.property_id",
              "click-brand.seller_group_id"
            ]
          },
          {
            "rowHash": "8a86502664d35468a58d6eb7e6e5c9be4dfb70904e624e59abad3daa6bd71e31",
            "claimIds": [
              "click-nonbrand.channel_id",
              "click-nonbrand.event_at_ms",
              "click-nonbrand.evidence_rank",
              "click-nonbrand.marketing_touch",
              "click-nonbrand.opportunity_id",
              "click-nonbrand.property_id",
              "click-nonbrand.seller_group_id"
            ]
          }
        ],
        "exclusions": [],
        "issues": [],
        "trace": [
          {
            "stepId": "touches",
            "operator": "lookup",
            "inputRows": 0,
            "outputRows": 2,
            "claimIds": [],
            "outputHash": "b5e54beeeb9e33347b6c6703bc8db26cc46e26ee22225bf368b569bf7d8f21c2"
          },
          {
            "stepId": "eligible",
            "operator": "filter",
            "inputRows": 2,
            "outputRows": 2,
            "claimIds": [
              "click-brand.event_at_ms",
              "click-brand.evidence_rank",
              "click-brand.marketing_touch",
              "click-brand.opportunity_id",
              "click-brand.property_id",
              "click-brand.seller_group_id",
              "click-nonbrand.event_at_ms",
              "click-nonbrand.evidence_rank",
              "click-nonbrand.marketing_touch",
              "click-nonbrand.opportunity_id",
              "click-nonbrand.property_id",
              "click-nonbrand.seller_group_id"
            ],
            "outputHash": "8864bff38933853cc1e817ba21ea80f93b0b754a138347c03d066fddef7ec24b"
          },
          {
            "stepId": "rows",
            "operator": "project",
            "inputRows": 2,
            "outputRows": 2,
            "claimIds": [
              "click-brand.channel_id",
              "click-brand.event_at_ms",
              "click-brand.evidence_rank",
              "click-nonbrand.channel_id",
              "click-nonbrand.event_at_ms",
              "click-nonbrand.evidence_rank"
            ],
            "outputHash": "078dbc75a2ac1b1ea6e98b028bdb1c2655ebf9eac5681b4b98c9e64ac4242bac"
          }
        ],
        "work": 87,
        "resultHash": "37ad81418ecafaad100396e0fa2dfa2e2d6edb6daf02b903eaa808e00e17ec09"
      }
    },
    "supported|observed|acquired": {
      "graph": {
        "snapshotVersion": "t2k.reasoning-graph.v1",
        "graphKey": "demo.cash-homebuyer",
        "asOf": "2026-06-15T23:59:59Z",
        "ontologyResolutionHash": "c1f42aba94b41cc81e2ba87abe71a6263a91a15226cc24ee279c2183f576533f",
        "coverage": "complete",
        "entities": [
          {
            "entityId": "click-nonbrand",
            "typeRef": "demo.cash-homebuyer:touchpoint"
          },
          {
            "entityId": "click-brand",
            "typeRef": "demo.cash-homebuyer:touchpoint"
          }
        ],
        "claims": [
          {
            "claimId": "click-nonbrand.property_id",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.property_id",
            "value": "property-104",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.property_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.opportunity_id",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.opportunity_id",
            "value": "acquisition-204",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.opportunity_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.seller_group_id",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.seller_group_id",
            "value": "seller-group-14",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.seller_group_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.channel_id",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.channel_id",
            "value": "search-nonbrand",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.channel_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.event_at_ms",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.event_at_ms",
            "value": 1775210400000,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.event_at_ms"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.evidence_rank",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.evidence_rank",
            "value": 0,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.evidence_rank"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.marketing_touch",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.marketing_touch",
            "value": true,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.marketing_touch"
              }
            ]
          },
          {
            "claimId": "click-brand.property_id",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.property_id",
            "value": "property-104",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.property_id"
              }
            ]
          },
          {
            "claimId": "click-brand.opportunity_id",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.opportunity_id",
            "value": "acquisition-204",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.opportunity_id"
              }
            ]
          },
          {
            "claimId": "click-brand.seller_group_id",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.seller_group_id",
            "value": "seller-group-14",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.seller_group_id"
              }
            ]
          },
          {
            "claimId": "click-brand.channel_id",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.channel_id",
            "value": "search-brand",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.channel_id"
              }
            ]
          },
          {
            "claimId": "click-brand.event_at_ms",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.event_at_ms",
            "value": 1775646000000,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.event_at_ms"
              }
            ]
          },
          {
            "claimId": "click-brand.evidence_rank",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.evidence_rank",
            "value": 0,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.evidence_rank"
              }
            ]
          },
          {
            "claimId": "click-brand.marketing_touch",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.marketing_touch",
            "value": true,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.marketing_touch"
              }
            ]
          }
        ]
      },
      "arguments": {
        "property": "property-104",
        "opportunity": "acquisition-204",
        "sellerGroup": "seller-group-14",
        "windowStart": 1772323200000,
        "qualificationAt": 1775746800000,
        "admittedRank": 0
      },
      "receipt": {
        "resultVersion": "t2k.graph-result.v1",
        "status": "complete",
        "value": [
          {
            "touchId": "click-brand",
            "channelId": "search-brand",
            "eventAtMs": 1775646000000,
            "evidenceRank": 0
          },
          {
            "touchId": "click-nonbrand",
            "channelId": "search-nonbrand",
            "eventAtMs": 1775210400000,
            "evidenceRank": 0
          }
        ],
        "authorization": "not_authorized",
        "binding": {
          "runtimeVersion": "t2k.graph-runtime.v1",
          "functionHash": "c0aa7b713a989a49764860e270b776fcbd76416e07891e48a43920029a6aa40d",
          "ontologyResolutionHash": "c1f42aba94b41cc81e2ba87abe71a6263a91a15226cc24ee279c2183f576533f",
          "graphKey": "demo.cash-homebuyer",
          "asOf": "2026-06-15T23:59:59.000Z",
          "snapshotHash": "8614b18e51d70dfc8c55b9f4989358baf3b75ba545043f35d1ca34aab74403ae",
          "argumentsHash": "42e0e7d41d126edcc85e8694a0a6c610ab82f2484d117738872465ddbc3c08ac"
        },
        "evidence": [
          {
            "claimId": "click-brand.channel_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.channel_id"
              }
            ]
          },
          {
            "claimId": "click-brand.event_at_ms",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.event_at_ms"
              }
            ]
          },
          {
            "claimId": "click-brand.evidence_rank",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.evidence_rank"
              }
            ]
          },
          {
            "claimId": "click-brand.marketing_touch",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.marketing_touch"
              }
            ]
          },
          {
            "claimId": "click-brand.opportunity_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.opportunity_id"
              }
            ]
          },
          {
            "claimId": "click-brand.property_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.property_id"
              }
            ]
          },
          {
            "claimId": "click-brand.seller_group_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.seller_group_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.channel_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.channel_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.event_at_ms",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.event_at_ms"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.evidence_rank",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.evidence_rank"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.marketing_touch",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.marketing_touch"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.opportunity_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.opportunity_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.property_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.property_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.seller_group_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.seller_group_id"
              }
            ]
          }
        ],
        "supportingClaimIds": [
          "click-brand.channel_id",
          "click-brand.event_at_ms",
          "click-brand.evidence_rank",
          "click-brand.marketing_touch",
          "click-brand.opportunity_id",
          "click-brand.property_id",
          "click-brand.seller_group_id",
          "click-nonbrand.channel_id",
          "click-nonbrand.event_at_ms",
          "click-nonbrand.evidence_rank",
          "click-nonbrand.marketing_touch",
          "click-nonbrand.opportunity_id",
          "click-nonbrand.property_id",
          "click-nonbrand.seller_group_id"
        ],
        "derivations": [
          {
            "rowHash": "694a95e1c5a20b2c4181a07122a2a687fc67128c10a258b2430fa33c69ae9712",
            "claimIds": [
              "click-brand.channel_id",
              "click-brand.event_at_ms",
              "click-brand.evidence_rank",
              "click-brand.marketing_touch",
              "click-brand.opportunity_id",
              "click-brand.property_id",
              "click-brand.seller_group_id"
            ]
          },
          {
            "rowHash": "8a86502664d35468a58d6eb7e6e5c9be4dfb70904e624e59abad3daa6bd71e31",
            "claimIds": [
              "click-nonbrand.channel_id",
              "click-nonbrand.event_at_ms",
              "click-nonbrand.evidence_rank",
              "click-nonbrand.marketing_touch",
              "click-nonbrand.opportunity_id",
              "click-nonbrand.property_id",
              "click-nonbrand.seller_group_id"
            ]
          }
        ],
        "exclusions": [],
        "issues": [],
        "trace": [
          {
            "stepId": "touches",
            "operator": "lookup",
            "inputRows": 0,
            "outputRows": 2,
            "claimIds": [],
            "outputHash": "b5e54beeeb9e33347b6c6703bc8db26cc46e26ee22225bf368b569bf7d8f21c2"
          },
          {
            "stepId": "eligible",
            "operator": "filter",
            "inputRows": 2,
            "outputRows": 2,
            "claimIds": [
              "click-brand.event_at_ms",
              "click-brand.evidence_rank",
              "click-brand.marketing_touch",
              "click-brand.opportunity_id",
              "click-brand.property_id",
              "click-brand.seller_group_id",
              "click-nonbrand.event_at_ms",
              "click-nonbrand.evidence_rank",
              "click-nonbrand.marketing_touch",
              "click-nonbrand.opportunity_id",
              "click-nonbrand.property_id",
              "click-nonbrand.seller_group_id"
            ],
            "outputHash": "8864bff38933853cc1e817ba21ea80f93b0b754a138347c03d066fddef7ec24b"
          },
          {
            "stepId": "rows",
            "operator": "project",
            "inputRows": 2,
            "outputRows": 2,
            "claimIds": [
              "click-brand.channel_id",
              "click-brand.event_at_ms",
              "click-brand.evidence_rank",
              "click-nonbrand.channel_id",
              "click-nonbrand.event_at_ms",
              "click-nonbrand.evidence_rank"
            ],
            "outputHash": "078dbc75a2ac1b1ea6e98b028bdb1c2655ebf9eac5681b4b98c9e64ac4242bac"
          }
        ],
        "work": 87,
        "resultHash": "af68bdca86f0c3b18dd21c7273bee72ce5087dafd94f15466f5c99eacb111798"
      }
    },
    "supported|observed|resale": {
      "graph": {
        "snapshotVersion": "t2k.reasoning-graph.v1",
        "graphKey": "demo.cash-homebuyer",
        "asOf": "2026-09-15T23:59:59Z",
        "ontologyResolutionHash": "c1f42aba94b41cc81e2ba87abe71a6263a91a15226cc24ee279c2183f576533f",
        "coverage": "complete",
        "entities": [
          {
            "entityId": "click-nonbrand",
            "typeRef": "demo.cash-homebuyer:touchpoint"
          },
          {
            "entityId": "click-brand",
            "typeRef": "demo.cash-homebuyer:touchpoint"
          }
        ],
        "claims": [
          {
            "claimId": "click-nonbrand.property_id",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.property_id",
            "value": "property-104",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.property_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.opportunity_id",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.opportunity_id",
            "value": "acquisition-204",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.opportunity_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.seller_group_id",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.seller_group_id",
            "value": "seller-group-14",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.seller_group_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.channel_id",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.channel_id",
            "value": "search-nonbrand",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.channel_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.event_at_ms",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.event_at_ms",
            "value": 1775210400000,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.event_at_ms"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.evidence_rank",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.evidence_rank",
            "value": 0,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.evidence_rank"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.marketing_touch",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.marketing_touch",
            "value": true,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.marketing_touch"
              }
            ]
          },
          {
            "claimId": "click-brand.property_id",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.property_id",
            "value": "property-104",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.property_id"
              }
            ]
          },
          {
            "claimId": "click-brand.opportunity_id",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.opportunity_id",
            "value": "acquisition-204",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.opportunity_id"
              }
            ]
          },
          {
            "claimId": "click-brand.seller_group_id",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.seller_group_id",
            "value": "seller-group-14",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.seller_group_id"
              }
            ]
          },
          {
            "claimId": "click-brand.channel_id",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.channel_id",
            "value": "search-brand",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.channel_id"
              }
            ]
          },
          {
            "claimId": "click-brand.event_at_ms",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.event_at_ms",
            "value": 1775646000000,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.event_at_ms"
              }
            ]
          },
          {
            "claimId": "click-brand.evidence_rank",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.evidence_rank",
            "value": 0,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.evidence_rank"
              }
            ]
          },
          {
            "claimId": "click-brand.marketing_touch",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.marketing_touch",
            "value": true,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.marketing_touch"
              }
            ]
          }
        ]
      },
      "arguments": {
        "property": "property-104",
        "opportunity": "acquisition-204",
        "sellerGroup": "seller-group-14",
        "windowStart": 1772323200000,
        "qualificationAt": 1775746800000,
        "admittedRank": 0
      },
      "receipt": {
        "resultVersion": "t2k.graph-result.v1",
        "status": "complete",
        "value": [
          {
            "touchId": "click-brand",
            "channelId": "search-brand",
            "eventAtMs": 1775646000000,
            "evidenceRank": 0
          },
          {
            "touchId": "click-nonbrand",
            "channelId": "search-nonbrand",
            "eventAtMs": 1775210400000,
            "evidenceRank": 0
          }
        ],
        "authorization": "not_authorized",
        "binding": {
          "runtimeVersion": "t2k.graph-runtime.v1",
          "functionHash": "c0aa7b713a989a49764860e270b776fcbd76416e07891e48a43920029a6aa40d",
          "ontologyResolutionHash": "c1f42aba94b41cc81e2ba87abe71a6263a91a15226cc24ee279c2183f576533f",
          "graphKey": "demo.cash-homebuyer",
          "asOf": "2026-09-15T23:59:59.000Z",
          "snapshotHash": "1812bf10a3af3876d044992b2c96a4b9d6abfe5b128ffff513334ce269884dc8",
          "argumentsHash": "42e0e7d41d126edcc85e8694a0a6c610ab82f2484d117738872465ddbc3c08ac"
        },
        "evidence": [
          {
            "claimId": "click-brand.channel_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.channel_id"
              }
            ]
          },
          {
            "claimId": "click-brand.event_at_ms",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.event_at_ms"
              }
            ]
          },
          {
            "claimId": "click-brand.evidence_rank",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.evidence_rank"
              }
            ]
          },
          {
            "claimId": "click-brand.marketing_touch",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.marketing_touch"
              }
            ]
          },
          {
            "claimId": "click-brand.opportunity_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.opportunity_id"
              }
            ]
          },
          {
            "claimId": "click-brand.property_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.property_id"
              }
            ]
          },
          {
            "claimId": "click-brand.seller_group_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.seller_group_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.channel_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.channel_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.event_at_ms",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.event_at_ms"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.evidence_rank",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.evidence_rank"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.marketing_touch",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.marketing_touch"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.opportunity_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.opportunity_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.property_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.property_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.seller_group_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.seller_group_id"
              }
            ]
          }
        ],
        "supportingClaimIds": [
          "click-brand.channel_id",
          "click-brand.event_at_ms",
          "click-brand.evidence_rank",
          "click-brand.marketing_touch",
          "click-brand.opportunity_id",
          "click-brand.property_id",
          "click-brand.seller_group_id",
          "click-nonbrand.channel_id",
          "click-nonbrand.event_at_ms",
          "click-nonbrand.evidence_rank",
          "click-nonbrand.marketing_touch",
          "click-nonbrand.opportunity_id",
          "click-nonbrand.property_id",
          "click-nonbrand.seller_group_id"
        ],
        "derivations": [
          {
            "rowHash": "694a95e1c5a20b2c4181a07122a2a687fc67128c10a258b2430fa33c69ae9712",
            "claimIds": [
              "click-brand.channel_id",
              "click-brand.event_at_ms",
              "click-brand.evidence_rank",
              "click-brand.marketing_touch",
              "click-brand.opportunity_id",
              "click-brand.property_id",
              "click-brand.seller_group_id"
            ]
          },
          {
            "rowHash": "8a86502664d35468a58d6eb7e6e5c9be4dfb70904e624e59abad3daa6bd71e31",
            "claimIds": [
              "click-nonbrand.channel_id",
              "click-nonbrand.event_at_ms",
              "click-nonbrand.evidence_rank",
              "click-nonbrand.marketing_touch",
              "click-nonbrand.opportunity_id",
              "click-nonbrand.property_id",
              "click-nonbrand.seller_group_id"
            ]
          }
        ],
        "exclusions": [],
        "issues": [],
        "trace": [
          {
            "stepId": "touches",
            "operator": "lookup",
            "inputRows": 0,
            "outputRows": 2,
            "claimIds": [],
            "outputHash": "b5e54beeeb9e33347b6c6703bc8db26cc46e26ee22225bf368b569bf7d8f21c2"
          },
          {
            "stepId": "eligible",
            "operator": "filter",
            "inputRows": 2,
            "outputRows": 2,
            "claimIds": [
              "click-brand.event_at_ms",
              "click-brand.evidence_rank",
              "click-brand.marketing_touch",
              "click-brand.opportunity_id",
              "click-brand.property_id",
              "click-brand.seller_group_id",
              "click-nonbrand.event_at_ms",
              "click-nonbrand.evidence_rank",
              "click-nonbrand.marketing_touch",
              "click-nonbrand.opportunity_id",
              "click-nonbrand.property_id",
              "click-nonbrand.seller_group_id"
            ],
            "outputHash": "8864bff38933853cc1e817ba21ea80f93b0b754a138347c03d066fddef7ec24b"
          },
          {
            "stepId": "rows",
            "operator": "project",
            "inputRows": 2,
            "outputRows": 2,
            "claimIds": [
              "click-brand.channel_id",
              "click-brand.event_at_ms",
              "click-brand.evidence_rank",
              "click-nonbrand.channel_id",
              "click-nonbrand.event_at_ms",
              "click-nonbrand.evidence_rank"
            ],
            "outputHash": "078dbc75a2ac1b1ea6e98b028bdb1c2655ebf9eac5681b4b98c9e64ac4242bac"
          }
        ],
        "work": 87,
        "resultHash": "44d4b2ab8d7210697eec584a39463625ba5208270192afda2c234c9dc57afdd8"
      }
    },
    "supported|reported|contract": {
      "graph": {
        "snapshotVersion": "t2k.reasoning-graph.v1",
        "graphKey": "demo.cash-homebuyer",
        "asOf": "2026-05-15T23:59:59Z",
        "ontologyResolutionHash": "c1f42aba94b41cc81e2ba87abe71a6263a91a15226cc24ee279c2183f576533f",
        "coverage": "complete",
        "entities": [
          {
            "entityId": "click-nonbrand",
            "typeRef": "demo.cash-homebuyer:touchpoint"
          },
          {
            "entityId": "click-brand",
            "typeRef": "demo.cash-homebuyer:touchpoint"
          }
        ],
        "claims": [
          {
            "claimId": "click-nonbrand.property_id",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.property_id",
            "value": "property-104",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.property_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.opportunity_id",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.opportunity_id",
            "value": "acquisition-204",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.opportunity_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.seller_group_id",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.seller_group_id",
            "value": "seller-group-14",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.seller_group_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.channel_id",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.channel_id",
            "value": "search-nonbrand",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.channel_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.event_at_ms",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.event_at_ms",
            "value": 1775210400000,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.event_at_ms"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.evidence_rank",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.evidence_rank",
            "value": 0,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.evidence_rank"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.marketing_touch",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.marketing_touch",
            "value": true,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.marketing_touch"
              }
            ]
          },
          {
            "claimId": "click-brand.property_id",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.property_id",
            "value": "property-104",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.property_id"
              }
            ]
          },
          {
            "claimId": "click-brand.opportunity_id",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.opportunity_id",
            "value": "acquisition-204",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.opportunity_id"
              }
            ]
          },
          {
            "claimId": "click-brand.seller_group_id",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.seller_group_id",
            "value": "seller-group-14",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.seller_group_id"
              }
            ]
          },
          {
            "claimId": "click-brand.channel_id",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.channel_id",
            "value": "search-brand",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.channel_id"
              }
            ]
          },
          {
            "claimId": "click-brand.event_at_ms",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.event_at_ms",
            "value": 1775646000000,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.event_at_ms"
              }
            ]
          },
          {
            "claimId": "click-brand.evidence_rank",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.evidence_rank",
            "value": 0,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.evidence_rank"
              }
            ]
          },
          {
            "claimId": "click-brand.marketing_touch",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.marketing_touch",
            "value": true,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.marketing_touch"
              }
            ]
          }
        ]
      },
      "arguments": {
        "property": "property-104",
        "opportunity": "acquisition-204",
        "sellerGroup": "seller-group-14",
        "windowStart": 1772323200000,
        "qualificationAt": 1775746800000,
        "admittedRank": 1
      },
      "receipt": {
        "resultVersion": "t2k.graph-result.v1",
        "status": "complete",
        "value": [
          {
            "touchId": "click-brand",
            "channelId": "search-brand",
            "eventAtMs": 1775646000000,
            "evidenceRank": 0
          },
          {
            "touchId": "click-nonbrand",
            "channelId": "search-nonbrand",
            "eventAtMs": 1775210400000,
            "evidenceRank": 0
          }
        ],
        "authorization": "not_authorized",
        "binding": {
          "runtimeVersion": "t2k.graph-runtime.v1",
          "functionHash": "c0aa7b713a989a49764860e270b776fcbd76416e07891e48a43920029a6aa40d",
          "ontologyResolutionHash": "c1f42aba94b41cc81e2ba87abe71a6263a91a15226cc24ee279c2183f576533f",
          "graphKey": "demo.cash-homebuyer",
          "asOf": "2026-05-15T23:59:59.000Z",
          "snapshotHash": "ce0d1ea1084615732b662e32ce6b69ae77ea2a75405f6d796be27a207e8b6267",
          "argumentsHash": "cd8690f832630034ecce3c948890d1e8f4ac84aebf4d3b80bcff6e7dcae3c8ab"
        },
        "evidence": [
          {
            "claimId": "click-brand.channel_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.channel_id"
              }
            ]
          },
          {
            "claimId": "click-brand.event_at_ms",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.event_at_ms"
              }
            ]
          },
          {
            "claimId": "click-brand.evidence_rank",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.evidence_rank"
              }
            ]
          },
          {
            "claimId": "click-brand.marketing_touch",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.marketing_touch"
              }
            ]
          },
          {
            "claimId": "click-brand.opportunity_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.opportunity_id"
              }
            ]
          },
          {
            "claimId": "click-brand.property_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.property_id"
              }
            ]
          },
          {
            "claimId": "click-brand.seller_group_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.seller_group_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.channel_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.channel_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.event_at_ms",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.event_at_ms"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.evidence_rank",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.evidence_rank"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.marketing_touch",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.marketing_touch"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.opportunity_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.opportunity_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.property_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.property_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.seller_group_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.seller_group_id"
              }
            ]
          }
        ],
        "supportingClaimIds": [
          "click-brand.channel_id",
          "click-brand.event_at_ms",
          "click-brand.evidence_rank",
          "click-brand.marketing_touch",
          "click-brand.opportunity_id",
          "click-brand.property_id",
          "click-brand.seller_group_id",
          "click-nonbrand.channel_id",
          "click-nonbrand.event_at_ms",
          "click-nonbrand.evidence_rank",
          "click-nonbrand.marketing_touch",
          "click-nonbrand.opportunity_id",
          "click-nonbrand.property_id",
          "click-nonbrand.seller_group_id"
        ],
        "derivations": [
          {
            "rowHash": "694a95e1c5a20b2c4181a07122a2a687fc67128c10a258b2430fa33c69ae9712",
            "claimIds": [
              "click-brand.channel_id",
              "click-brand.event_at_ms",
              "click-brand.evidence_rank",
              "click-brand.marketing_touch",
              "click-brand.opportunity_id",
              "click-brand.property_id",
              "click-brand.seller_group_id"
            ]
          },
          {
            "rowHash": "8a86502664d35468a58d6eb7e6e5c9be4dfb70904e624e59abad3daa6bd71e31",
            "claimIds": [
              "click-nonbrand.channel_id",
              "click-nonbrand.event_at_ms",
              "click-nonbrand.evidence_rank",
              "click-nonbrand.marketing_touch",
              "click-nonbrand.opportunity_id",
              "click-nonbrand.property_id",
              "click-nonbrand.seller_group_id"
            ]
          }
        ],
        "exclusions": [],
        "issues": [],
        "trace": [
          {
            "stepId": "touches",
            "operator": "lookup",
            "inputRows": 0,
            "outputRows": 2,
            "claimIds": [],
            "outputHash": "b5e54beeeb9e33347b6c6703bc8db26cc46e26ee22225bf368b569bf7d8f21c2"
          },
          {
            "stepId": "eligible",
            "operator": "filter",
            "inputRows": 2,
            "outputRows": 2,
            "claimIds": [
              "click-brand.event_at_ms",
              "click-brand.evidence_rank",
              "click-brand.marketing_touch",
              "click-brand.opportunity_id",
              "click-brand.property_id",
              "click-brand.seller_group_id",
              "click-nonbrand.event_at_ms",
              "click-nonbrand.evidence_rank",
              "click-nonbrand.marketing_touch",
              "click-nonbrand.opportunity_id",
              "click-nonbrand.property_id",
              "click-nonbrand.seller_group_id"
            ],
            "outputHash": "8864bff38933853cc1e817ba21ea80f93b0b754a138347c03d066fddef7ec24b"
          },
          {
            "stepId": "rows",
            "operator": "project",
            "inputRows": 2,
            "outputRows": 2,
            "claimIds": [
              "click-brand.channel_id",
              "click-brand.event_at_ms",
              "click-brand.evidence_rank",
              "click-nonbrand.channel_id",
              "click-nonbrand.event_at_ms",
              "click-nonbrand.evidence_rank"
            ],
            "outputHash": "078dbc75a2ac1b1ea6e98b028bdb1c2655ebf9eac5681b4b98c9e64ac4242bac"
          }
        ],
        "work": 87,
        "resultHash": "b983200dfc08bf82074c9ac66084fd86f7510dc80fc4faf80802c24dc44512c9"
      }
    },
    "supported|reported|acquired": {
      "graph": {
        "snapshotVersion": "t2k.reasoning-graph.v1",
        "graphKey": "demo.cash-homebuyer",
        "asOf": "2026-06-15T23:59:59Z",
        "ontologyResolutionHash": "c1f42aba94b41cc81e2ba87abe71a6263a91a15226cc24ee279c2183f576533f",
        "coverage": "complete",
        "entities": [
          {
            "entityId": "click-nonbrand",
            "typeRef": "demo.cash-homebuyer:touchpoint"
          },
          {
            "entityId": "click-brand",
            "typeRef": "demo.cash-homebuyer:touchpoint"
          }
        ],
        "claims": [
          {
            "claimId": "click-nonbrand.property_id",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.property_id",
            "value": "property-104",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.property_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.opportunity_id",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.opportunity_id",
            "value": "acquisition-204",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.opportunity_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.seller_group_id",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.seller_group_id",
            "value": "seller-group-14",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.seller_group_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.channel_id",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.channel_id",
            "value": "search-nonbrand",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.channel_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.event_at_ms",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.event_at_ms",
            "value": 1775210400000,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.event_at_ms"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.evidence_rank",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.evidence_rank",
            "value": 0,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.evidence_rank"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.marketing_touch",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.marketing_touch",
            "value": true,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.marketing_touch"
              }
            ]
          },
          {
            "claimId": "click-brand.property_id",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.property_id",
            "value": "property-104",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.property_id"
              }
            ]
          },
          {
            "claimId": "click-brand.opportunity_id",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.opportunity_id",
            "value": "acquisition-204",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.opportunity_id"
              }
            ]
          },
          {
            "claimId": "click-brand.seller_group_id",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.seller_group_id",
            "value": "seller-group-14",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.seller_group_id"
              }
            ]
          },
          {
            "claimId": "click-brand.channel_id",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.channel_id",
            "value": "search-brand",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.channel_id"
              }
            ]
          },
          {
            "claimId": "click-brand.event_at_ms",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.event_at_ms",
            "value": 1775646000000,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.event_at_ms"
              }
            ]
          },
          {
            "claimId": "click-brand.evidence_rank",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.evidence_rank",
            "value": 0,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.evidence_rank"
              }
            ]
          },
          {
            "claimId": "click-brand.marketing_touch",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.marketing_touch",
            "value": true,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.marketing_touch"
              }
            ]
          }
        ]
      },
      "arguments": {
        "property": "property-104",
        "opportunity": "acquisition-204",
        "sellerGroup": "seller-group-14",
        "windowStart": 1772323200000,
        "qualificationAt": 1775746800000,
        "admittedRank": 1
      },
      "receipt": {
        "resultVersion": "t2k.graph-result.v1",
        "status": "complete",
        "value": [
          {
            "touchId": "click-brand",
            "channelId": "search-brand",
            "eventAtMs": 1775646000000,
            "evidenceRank": 0
          },
          {
            "touchId": "click-nonbrand",
            "channelId": "search-nonbrand",
            "eventAtMs": 1775210400000,
            "evidenceRank": 0
          }
        ],
        "authorization": "not_authorized",
        "binding": {
          "runtimeVersion": "t2k.graph-runtime.v1",
          "functionHash": "c0aa7b713a989a49764860e270b776fcbd76416e07891e48a43920029a6aa40d",
          "ontologyResolutionHash": "c1f42aba94b41cc81e2ba87abe71a6263a91a15226cc24ee279c2183f576533f",
          "graphKey": "demo.cash-homebuyer",
          "asOf": "2026-06-15T23:59:59.000Z",
          "snapshotHash": "8614b18e51d70dfc8c55b9f4989358baf3b75ba545043f35d1ca34aab74403ae",
          "argumentsHash": "cd8690f832630034ecce3c948890d1e8f4ac84aebf4d3b80bcff6e7dcae3c8ab"
        },
        "evidence": [
          {
            "claimId": "click-brand.channel_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.channel_id"
              }
            ]
          },
          {
            "claimId": "click-brand.event_at_ms",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.event_at_ms"
              }
            ]
          },
          {
            "claimId": "click-brand.evidence_rank",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.evidence_rank"
              }
            ]
          },
          {
            "claimId": "click-brand.marketing_touch",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.marketing_touch"
              }
            ]
          },
          {
            "claimId": "click-brand.opportunity_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.opportunity_id"
              }
            ]
          },
          {
            "claimId": "click-brand.property_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.property_id"
              }
            ]
          },
          {
            "claimId": "click-brand.seller_group_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.seller_group_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.channel_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.channel_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.event_at_ms",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.event_at_ms"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.evidence_rank",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.evidence_rank"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.marketing_touch",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.marketing_touch"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.opportunity_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.opportunity_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.property_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.property_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.seller_group_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.seller_group_id"
              }
            ]
          }
        ],
        "supportingClaimIds": [
          "click-brand.channel_id",
          "click-brand.event_at_ms",
          "click-brand.evidence_rank",
          "click-brand.marketing_touch",
          "click-brand.opportunity_id",
          "click-brand.property_id",
          "click-brand.seller_group_id",
          "click-nonbrand.channel_id",
          "click-nonbrand.event_at_ms",
          "click-nonbrand.evidence_rank",
          "click-nonbrand.marketing_touch",
          "click-nonbrand.opportunity_id",
          "click-nonbrand.property_id",
          "click-nonbrand.seller_group_id"
        ],
        "derivations": [
          {
            "rowHash": "694a95e1c5a20b2c4181a07122a2a687fc67128c10a258b2430fa33c69ae9712",
            "claimIds": [
              "click-brand.channel_id",
              "click-brand.event_at_ms",
              "click-brand.evidence_rank",
              "click-brand.marketing_touch",
              "click-brand.opportunity_id",
              "click-brand.property_id",
              "click-brand.seller_group_id"
            ]
          },
          {
            "rowHash": "8a86502664d35468a58d6eb7e6e5c9be4dfb70904e624e59abad3daa6bd71e31",
            "claimIds": [
              "click-nonbrand.channel_id",
              "click-nonbrand.event_at_ms",
              "click-nonbrand.evidence_rank",
              "click-nonbrand.marketing_touch",
              "click-nonbrand.opportunity_id",
              "click-nonbrand.property_id",
              "click-nonbrand.seller_group_id"
            ]
          }
        ],
        "exclusions": [],
        "issues": [],
        "trace": [
          {
            "stepId": "touches",
            "operator": "lookup",
            "inputRows": 0,
            "outputRows": 2,
            "claimIds": [],
            "outputHash": "b5e54beeeb9e33347b6c6703bc8db26cc46e26ee22225bf368b569bf7d8f21c2"
          },
          {
            "stepId": "eligible",
            "operator": "filter",
            "inputRows": 2,
            "outputRows": 2,
            "claimIds": [
              "click-brand.event_at_ms",
              "click-brand.evidence_rank",
              "click-brand.marketing_touch",
              "click-brand.opportunity_id",
              "click-brand.property_id",
              "click-brand.seller_group_id",
              "click-nonbrand.event_at_ms",
              "click-nonbrand.evidence_rank",
              "click-nonbrand.marketing_touch",
              "click-nonbrand.opportunity_id",
              "click-nonbrand.property_id",
              "click-nonbrand.seller_group_id"
            ],
            "outputHash": "8864bff38933853cc1e817ba21ea80f93b0b754a138347c03d066fddef7ec24b"
          },
          {
            "stepId": "rows",
            "operator": "project",
            "inputRows": 2,
            "outputRows": 2,
            "claimIds": [
              "click-brand.channel_id",
              "click-brand.event_at_ms",
              "click-brand.evidence_rank",
              "click-nonbrand.channel_id",
              "click-nonbrand.event_at_ms",
              "click-nonbrand.evidence_rank"
            ],
            "outputHash": "078dbc75a2ac1b1ea6e98b028bdb1c2655ebf9eac5681b4b98c9e64ac4242bac"
          }
        ],
        "work": 87,
        "resultHash": "c88fa17158addb166c0645767874f7d9130c2a7a3f76308ab7586b0a4ac23dc7"
      }
    },
    "supported|reported|resale": {
      "graph": {
        "snapshotVersion": "t2k.reasoning-graph.v1",
        "graphKey": "demo.cash-homebuyer",
        "asOf": "2026-09-15T23:59:59Z",
        "ontologyResolutionHash": "c1f42aba94b41cc81e2ba87abe71a6263a91a15226cc24ee279c2183f576533f",
        "coverage": "complete",
        "entities": [
          {
            "entityId": "click-nonbrand",
            "typeRef": "demo.cash-homebuyer:touchpoint"
          },
          {
            "entityId": "click-brand",
            "typeRef": "demo.cash-homebuyer:touchpoint"
          }
        ],
        "claims": [
          {
            "claimId": "click-nonbrand.property_id",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.property_id",
            "value": "property-104",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.property_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.opportunity_id",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.opportunity_id",
            "value": "acquisition-204",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.opportunity_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.seller_group_id",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.seller_group_id",
            "value": "seller-group-14",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.seller_group_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.channel_id",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.channel_id",
            "value": "search-nonbrand",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.channel_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.event_at_ms",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.event_at_ms",
            "value": 1775210400000,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.event_at_ms"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.evidence_rank",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.evidence_rank",
            "value": 0,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.evidence_rank"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.marketing_touch",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.marketing_touch",
            "value": true,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.marketing_touch"
              }
            ]
          },
          {
            "claimId": "click-brand.property_id",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.property_id",
            "value": "property-104",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.property_id"
              }
            ]
          },
          {
            "claimId": "click-brand.opportunity_id",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.opportunity_id",
            "value": "acquisition-204",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.opportunity_id"
              }
            ]
          },
          {
            "claimId": "click-brand.seller_group_id",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.seller_group_id",
            "value": "seller-group-14",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.seller_group_id"
              }
            ]
          },
          {
            "claimId": "click-brand.channel_id",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.channel_id",
            "value": "search-brand",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.channel_id"
              }
            ]
          },
          {
            "claimId": "click-brand.event_at_ms",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.event_at_ms",
            "value": 1775646000000,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.event_at_ms"
              }
            ]
          },
          {
            "claimId": "click-brand.evidence_rank",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.evidence_rank",
            "value": 0,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.evidence_rank"
              }
            ]
          },
          {
            "claimId": "click-brand.marketing_touch",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.marketing_touch",
            "value": true,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.marketing_touch"
              }
            ]
          }
        ]
      },
      "arguments": {
        "property": "property-104",
        "opportunity": "acquisition-204",
        "sellerGroup": "seller-group-14",
        "windowStart": 1772323200000,
        "qualificationAt": 1775746800000,
        "admittedRank": 1
      },
      "receipt": {
        "resultVersion": "t2k.graph-result.v1",
        "status": "complete",
        "value": [
          {
            "touchId": "click-brand",
            "channelId": "search-brand",
            "eventAtMs": 1775646000000,
            "evidenceRank": 0
          },
          {
            "touchId": "click-nonbrand",
            "channelId": "search-nonbrand",
            "eventAtMs": 1775210400000,
            "evidenceRank": 0
          }
        ],
        "authorization": "not_authorized",
        "binding": {
          "runtimeVersion": "t2k.graph-runtime.v1",
          "functionHash": "c0aa7b713a989a49764860e270b776fcbd76416e07891e48a43920029a6aa40d",
          "ontologyResolutionHash": "c1f42aba94b41cc81e2ba87abe71a6263a91a15226cc24ee279c2183f576533f",
          "graphKey": "demo.cash-homebuyer",
          "asOf": "2026-09-15T23:59:59.000Z",
          "snapshotHash": "1812bf10a3af3876d044992b2c96a4b9d6abfe5b128ffff513334ce269884dc8",
          "argumentsHash": "cd8690f832630034ecce3c948890d1e8f4ac84aebf4d3b80bcff6e7dcae3c8ab"
        },
        "evidence": [
          {
            "claimId": "click-brand.channel_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.channel_id"
              }
            ]
          },
          {
            "claimId": "click-brand.event_at_ms",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.event_at_ms"
              }
            ]
          },
          {
            "claimId": "click-brand.evidence_rank",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.evidence_rank"
              }
            ]
          },
          {
            "claimId": "click-brand.marketing_touch",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.marketing_touch"
              }
            ]
          },
          {
            "claimId": "click-brand.opportunity_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.opportunity_id"
              }
            ]
          },
          {
            "claimId": "click-brand.property_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.property_id"
              }
            ]
          },
          {
            "claimId": "click-brand.seller_group_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.seller_group_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.channel_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.channel_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.event_at_ms",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.event_at_ms"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.evidence_rank",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.evidence_rank"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.marketing_touch",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.marketing_touch"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.opportunity_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.opportunity_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.property_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.property_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.seller_group_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.seller_group_id"
              }
            ]
          }
        ],
        "supportingClaimIds": [
          "click-brand.channel_id",
          "click-brand.event_at_ms",
          "click-brand.evidence_rank",
          "click-brand.marketing_touch",
          "click-brand.opportunity_id",
          "click-brand.property_id",
          "click-brand.seller_group_id",
          "click-nonbrand.channel_id",
          "click-nonbrand.event_at_ms",
          "click-nonbrand.evidence_rank",
          "click-nonbrand.marketing_touch",
          "click-nonbrand.opportunity_id",
          "click-nonbrand.property_id",
          "click-nonbrand.seller_group_id"
        ],
        "derivations": [
          {
            "rowHash": "694a95e1c5a20b2c4181a07122a2a687fc67128c10a258b2430fa33c69ae9712",
            "claimIds": [
              "click-brand.channel_id",
              "click-brand.event_at_ms",
              "click-brand.evidence_rank",
              "click-brand.marketing_touch",
              "click-brand.opportunity_id",
              "click-brand.property_id",
              "click-brand.seller_group_id"
            ]
          },
          {
            "rowHash": "8a86502664d35468a58d6eb7e6e5c9be4dfb70904e624e59abad3daa6bd71e31",
            "claimIds": [
              "click-nonbrand.channel_id",
              "click-nonbrand.event_at_ms",
              "click-nonbrand.evidence_rank",
              "click-nonbrand.marketing_touch",
              "click-nonbrand.opportunity_id",
              "click-nonbrand.property_id",
              "click-nonbrand.seller_group_id"
            ]
          }
        ],
        "exclusions": [],
        "issues": [],
        "trace": [
          {
            "stepId": "touches",
            "operator": "lookup",
            "inputRows": 0,
            "outputRows": 2,
            "claimIds": [],
            "outputHash": "b5e54beeeb9e33347b6c6703bc8db26cc46e26ee22225bf368b569bf7d8f21c2"
          },
          {
            "stepId": "eligible",
            "operator": "filter",
            "inputRows": 2,
            "outputRows": 2,
            "claimIds": [
              "click-brand.event_at_ms",
              "click-brand.evidence_rank",
              "click-brand.marketing_touch",
              "click-brand.opportunity_id",
              "click-brand.property_id",
              "click-brand.seller_group_id",
              "click-nonbrand.event_at_ms",
              "click-nonbrand.evidence_rank",
              "click-nonbrand.marketing_touch",
              "click-nonbrand.opportunity_id",
              "click-nonbrand.property_id",
              "click-nonbrand.seller_group_id"
            ],
            "outputHash": "8864bff38933853cc1e817ba21ea80f93b0b754a138347c03d066fddef7ec24b"
          },
          {
            "stepId": "rows",
            "operator": "project",
            "inputRows": 2,
            "outputRows": 2,
            "claimIds": [
              "click-brand.channel_id",
              "click-brand.event_at_ms",
              "click-brand.evidence_rank",
              "click-nonbrand.channel_id",
              "click-nonbrand.event_at_ms",
              "click-nonbrand.evidence_rank"
            ],
            "outputHash": "078dbc75a2ac1b1ea6e98b028bdb1c2655ebf9eac5681b4b98c9e64ac4242bac"
          }
        ],
        "work": 87,
        "resultHash": "565816838d126cc6cfee981c62bf01fb0947e7451f9b8344ce47b57c7f14d05f"
      }
    },
    "mail|observed|contract": {
      "graph": {
        "snapshotVersion": "t2k.reasoning-graph.v1",
        "graphKey": "demo.cash-homebuyer",
        "asOf": "2026-05-15T23:59:59Z",
        "ontologyResolutionHash": "c1f42aba94b41cc81e2ba87abe71a6263a91a15226cc24ee279c2183f576533f",
        "coverage": "complete",
        "entities": [
          {
            "entityId": "mail-dispatch",
            "typeRef": "demo.cash-homebuyer:touchpoint"
          },
          {
            "entityId": "click-nonbrand",
            "typeRef": "demo.cash-homebuyer:touchpoint"
          },
          {
            "entityId": "click-brand",
            "typeRef": "demo.cash-homebuyer:touchpoint"
          },
          {
            "entityId": "seller-report",
            "typeRef": "demo.cash-homebuyer:touchpoint"
          }
        ],
        "claims": [
          {
            "claimId": "mail-dispatch.property_id",
            "revision": "1",
            "subjectId": "mail-dispatch",
            "predicateRef": "demo.cash-homebuyer:touchpoint.property_id",
            "value": "property-104",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-03-25T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/dispatch",
                "locator": "mail-dispatch.property_id"
              }
            ]
          },
          {
            "claimId": "mail-dispatch.opportunity_id",
            "revision": "1",
            "subjectId": "mail-dispatch",
            "predicateRef": "demo.cash-homebuyer:touchpoint.opportunity_id",
            "value": "acquisition-204",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-03-25T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/dispatch",
                "locator": "mail-dispatch.opportunity_id"
              }
            ]
          },
          {
            "claimId": "mail-dispatch.seller_group_id",
            "revision": "1",
            "subjectId": "mail-dispatch",
            "predicateRef": "demo.cash-homebuyer:touchpoint.seller_group_id",
            "value": "seller-group-14",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-03-25T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/dispatch",
                "locator": "mail-dispatch.seller_group_id"
              }
            ]
          },
          {
            "claimId": "mail-dispatch.channel_id",
            "revision": "1",
            "subjectId": "mail-dispatch",
            "predicateRef": "demo.cash-homebuyer:touchpoint.channel_id",
            "value": "mail",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-03-25T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/dispatch",
                "locator": "mail-dispatch.channel_id"
              }
            ]
          },
          {
            "claimId": "mail-dispatch.event_at_ms",
            "revision": "1",
            "subjectId": "mail-dispatch",
            "predicateRef": "demo.cash-homebuyer:touchpoint.event_at_ms",
            "value": 1774432800000,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-03-25T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/dispatch",
                "locator": "mail-dispatch.event_at_ms"
              }
            ]
          },
          {
            "claimId": "mail-dispatch.evidence_rank",
            "revision": "1",
            "subjectId": "mail-dispatch",
            "predicateRef": "demo.cash-homebuyer:touchpoint.evidence_rank",
            "value": 2,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-03-25T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/dispatch",
                "locator": "mail-dispatch.evidence_rank"
              }
            ]
          },
          {
            "claimId": "mail-dispatch.marketing_touch",
            "revision": "1",
            "subjectId": "mail-dispatch",
            "predicateRef": "demo.cash-homebuyer:touchpoint.marketing_touch",
            "value": false,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-03-25T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/dispatch",
                "locator": "mail-dispatch.marketing_touch"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.property_id",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.property_id",
            "value": "property-104",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.property_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.opportunity_id",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.opportunity_id",
            "value": "acquisition-204",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.opportunity_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.seller_group_id",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.seller_group_id",
            "value": "seller-group-14",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.seller_group_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.channel_id",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.channel_id",
            "value": "search-nonbrand",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.channel_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.event_at_ms",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.event_at_ms",
            "value": 1775210400000,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.event_at_ms"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.evidence_rank",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.evidence_rank",
            "value": 0,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.evidence_rank"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.marketing_touch",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.marketing_touch",
            "value": true,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.marketing_touch"
              }
            ]
          },
          {
            "claimId": "click-brand.property_id",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.property_id",
            "value": "property-104",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.property_id"
              }
            ]
          },
          {
            "claimId": "click-brand.opportunity_id",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.opportunity_id",
            "value": "acquisition-204",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.opportunity_id"
              }
            ]
          },
          {
            "claimId": "click-brand.seller_group_id",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.seller_group_id",
            "value": "seller-group-14",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.seller_group_id"
              }
            ]
          },
          {
            "claimId": "click-brand.channel_id",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.channel_id",
            "value": "search-brand",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.channel_id"
              }
            ]
          },
          {
            "claimId": "click-brand.event_at_ms",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.event_at_ms",
            "value": 1775646000000,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.event_at_ms"
              }
            ]
          },
          {
            "claimId": "click-brand.evidence_rank",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.evidence_rank",
            "value": 0,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.evidence_rank"
              }
            ]
          },
          {
            "claimId": "click-brand.marketing_touch",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.marketing_touch",
            "value": true,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.marketing_touch"
              }
            ]
          },
          {
            "claimId": "seller-report.property_id",
            "revision": "1",
            "subjectId": "seller-report",
            "predicateRef": "demo.cash-homebuyer:touchpoint.property_id",
            "value": "property-104",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-10T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "seller-report.property_id"
              }
            ]
          },
          {
            "claimId": "seller-report.opportunity_id",
            "revision": "1",
            "subjectId": "seller-report",
            "predicateRef": "demo.cash-homebuyer:touchpoint.opportunity_id",
            "value": "acquisition-204",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-10T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "seller-report.opportunity_id"
              }
            ]
          },
          {
            "claimId": "seller-report.seller_group_id",
            "revision": "1",
            "subjectId": "seller-report",
            "predicateRef": "demo.cash-homebuyer:touchpoint.seller_group_id",
            "value": "seller-group-14",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-10T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "seller-report.seller_group_id"
              }
            ]
          },
          {
            "claimId": "seller-report.channel_id",
            "revision": "1",
            "subjectId": "seller-report",
            "predicateRef": "demo.cash-homebuyer:touchpoint.channel_id",
            "value": "mail",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-10T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "seller-report.channel_id"
              }
            ]
          },
          {
            "claimId": "seller-report.event_at_ms",
            "revision": "1",
            "subjectId": "seller-report",
            "predicateRef": "demo.cash-homebuyer:touchpoint.event_at_ms",
            "value": 1774519200000,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-10T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "seller-report.event_at_ms"
              }
            ]
          },
          {
            "claimId": "seller-report.evidence_rank",
            "revision": "1",
            "subjectId": "seller-report",
            "predicateRef": "demo.cash-homebuyer:touchpoint.evidence_rank",
            "value": 1,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-10T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "seller-report.evidence_rank"
              },
              {
                "sourceRef": "synthetic://cash-homebuyer/review",
                "locator": "review-report-14"
              }
            ]
          },
          {
            "claimId": "seller-report.marketing_touch",
            "revision": "1",
            "subjectId": "seller-report",
            "predicateRef": "demo.cash-homebuyer:touchpoint.marketing_touch",
            "value": true,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-10T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "seller-report.marketing_touch"
              }
            ]
          }
        ]
      },
      "arguments": {
        "property": "property-104",
        "opportunity": "acquisition-204",
        "sellerGroup": "seller-group-14",
        "windowStart": 1772323200000,
        "qualificationAt": 1775746800000,
        "admittedRank": 0
      },
      "receipt": {
        "resultVersion": "t2k.graph-result.v1",
        "status": "complete",
        "value": [
          {
            "touchId": "click-brand",
            "channelId": "search-brand",
            "eventAtMs": 1775646000000,
            "evidenceRank": 0
          },
          {
            "touchId": "click-nonbrand",
            "channelId": "search-nonbrand",
            "eventAtMs": 1775210400000,
            "evidenceRank": 0
          }
        ],
        "authorization": "not_authorized",
        "binding": {
          "runtimeVersion": "t2k.graph-runtime.v1",
          "functionHash": "c0aa7b713a989a49764860e270b776fcbd76416e07891e48a43920029a6aa40d",
          "ontologyResolutionHash": "c1f42aba94b41cc81e2ba87abe71a6263a91a15226cc24ee279c2183f576533f",
          "graphKey": "demo.cash-homebuyer",
          "asOf": "2026-05-15T23:59:59.000Z",
          "snapshotHash": "60a65208a9bdd2305d703fbcee073f9d3501e24b75e22045d6874ca9b0b8d994",
          "argumentsHash": "42e0e7d41d126edcc85e8694a0a6c610ab82f2484d117738872465ddbc3c08ac"
        },
        "evidence": [
          {
            "claimId": "click-brand.channel_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.channel_id"
              }
            ]
          },
          {
            "claimId": "click-brand.event_at_ms",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.event_at_ms"
              }
            ]
          },
          {
            "claimId": "click-brand.evidence_rank",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.evidence_rank"
              }
            ]
          },
          {
            "claimId": "click-brand.marketing_touch",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.marketing_touch"
              }
            ]
          },
          {
            "claimId": "click-brand.opportunity_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.opportunity_id"
              }
            ]
          },
          {
            "claimId": "click-brand.property_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.property_id"
              }
            ]
          },
          {
            "claimId": "click-brand.seller_group_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.seller_group_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.channel_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.channel_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.event_at_ms",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.event_at_ms"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.evidence_rank",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.evidence_rank"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.marketing_touch",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.marketing_touch"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.opportunity_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.opportunity_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.property_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.property_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.seller_group_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.seller_group_id"
              }
            ]
          },
          {
            "claimId": "mail-dispatch.event_at_ms",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/dispatch",
                "locator": "mail-dispatch.event_at_ms"
              }
            ]
          },
          {
            "claimId": "mail-dispatch.evidence_rank",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/dispatch",
                "locator": "mail-dispatch.evidence_rank"
              }
            ]
          },
          {
            "claimId": "mail-dispatch.marketing_touch",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/dispatch",
                "locator": "mail-dispatch.marketing_touch"
              }
            ]
          },
          {
            "claimId": "mail-dispatch.opportunity_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/dispatch",
                "locator": "mail-dispatch.opportunity_id"
              }
            ]
          },
          {
            "claimId": "mail-dispatch.property_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/dispatch",
                "locator": "mail-dispatch.property_id"
              }
            ]
          },
          {
            "claimId": "mail-dispatch.seller_group_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/dispatch",
                "locator": "mail-dispatch.seller_group_id"
              }
            ]
          },
          {
            "claimId": "seller-report.event_at_ms",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "seller-report.event_at_ms"
              }
            ]
          },
          {
            "claimId": "seller-report.evidence_rank",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/review",
                "locator": "review-report-14"
              },
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "seller-report.evidence_rank"
              }
            ]
          },
          {
            "claimId": "seller-report.marketing_touch",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "seller-report.marketing_touch"
              }
            ]
          },
          {
            "claimId": "seller-report.opportunity_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "seller-report.opportunity_id"
              }
            ]
          },
          {
            "claimId": "seller-report.property_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "seller-report.property_id"
              }
            ]
          },
          {
            "claimId": "seller-report.seller_group_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "seller-report.seller_group_id"
              }
            ]
          }
        ],
        "supportingClaimIds": [
          "click-brand.channel_id",
          "click-brand.event_at_ms",
          "click-brand.evidence_rank",
          "click-brand.marketing_touch",
          "click-brand.opportunity_id",
          "click-brand.property_id",
          "click-brand.seller_group_id",
          "click-nonbrand.channel_id",
          "click-nonbrand.event_at_ms",
          "click-nonbrand.evidence_rank",
          "click-nonbrand.marketing_touch",
          "click-nonbrand.opportunity_id",
          "click-nonbrand.property_id",
          "click-nonbrand.seller_group_id"
        ],
        "derivations": [
          {
            "rowHash": "694a95e1c5a20b2c4181a07122a2a687fc67128c10a258b2430fa33c69ae9712",
            "claimIds": [
              "click-brand.channel_id",
              "click-brand.event_at_ms",
              "click-brand.evidence_rank",
              "click-brand.marketing_touch",
              "click-brand.opportunity_id",
              "click-brand.property_id",
              "click-brand.seller_group_id"
            ]
          },
          {
            "rowHash": "8a86502664d35468a58d6eb7e6e5c9be4dfb70904e624e59abad3daa6bd71e31",
            "claimIds": [
              "click-nonbrand.channel_id",
              "click-nonbrand.event_at_ms",
              "click-nonbrand.evidence_rank",
              "click-nonbrand.marketing_touch",
              "click-nonbrand.opportunity_id",
              "click-nonbrand.property_id",
              "click-nonbrand.seller_group_id"
            ]
          }
        ],
        "exclusions": [
          {
            "stepId": "eligible",
            "bindings": {
              "touch": "mail-dispatch"
            },
            "reason": "Failed filter conditions: 3, 4",
            "claimIds": [
              "mail-dispatch.event_at_ms",
              "mail-dispatch.evidence_rank",
              "mail-dispatch.marketing_touch",
              "mail-dispatch.opportunity_id",
              "mail-dispatch.property_id",
              "mail-dispatch.seller_group_id"
            ]
          },
          {
            "stepId": "eligible",
            "bindings": {
              "touch": "seller-report"
            },
            "reason": "Failed filter conditions: 4",
            "claimIds": [
              "seller-report.event_at_ms",
              "seller-report.evidence_rank",
              "seller-report.marketing_touch",
              "seller-report.opportunity_id",
              "seller-report.property_id",
              "seller-report.seller_group_id"
            ]
          }
        ],
        "issues": [],
        "trace": [
          {
            "stepId": "touches",
            "operator": "lookup",
            "inputRows": 0,
            "outputRows": 4,
            "claimIds": [],
            "outputHash": "18bf8210a8c6e3f6d911da0a84661748727d8c00655a7acd42b8f46ee64c9577"
          },
          {
            "stepId": "eligible",
            "operator": "filter",
            "inputRows": 4,
            "outputRows": 2,
            "claimIds": [
              "click-brand.event_at_ms",
              "click-brand.evidence_rank",
              "click-brand.marketing_touch",
              "click-brand.opportunity_id",
              "click-brand.property_id",
              "click-brand.seller_group_id",
              "click-nonbrand.event_at_ms",
              "click-nonbrand.evidence_rank",
              "click-nonbrand.marketing_touch",
              "click-nonbrand.opportunity_id",
              "click-nonbrand.property_id",
              "click-nonbrand.seller_group_id",
              "mail-dispatch.event_at_ms",
              "mail-dispatch.evidence_rank",
              "mail-dispatch.marketing_touch",
              "mail-dispatch.opportunity_id",
              "mail-dispatch.property_id",
              "mail-dispatch.seller_group_id",
              "seller-report.event_at_ms",
              "seller-report.evidence_rank",
              "seller-report.marketing_touch",
              "seller-report.opportunity_id",
              "seller-report.property_id",
              "seller-report.seller_group_id"
            ],
            "outputHash": "8864bff38933853cc1e817ba21ea80f93b0b754a138347c03d066fddef7ec24b"
          },
          {
            "stepId": "rows",
            "operator": "project",
            "inputRows": 2,
            "outputRows": 2,
            "claimIds": [
              "click-brand.channel_id",
              "click-brand.event_at_ms",
              "click-brand.evidence_rank",
              "click-nonbrand.channel_id",
              "click-nonbrand.event_at_ms",
              "click-nonbrand.evidence_rank"
            ],
            "outputHash": "078dbc75a2ac1b1ea6e98b028bdb1c2655ebf9eac5681b4b98c9e64ac4242bac"
          }
        ],
        "work": 157,
        "resultHash": "b7a5e5f5c2099ec999bfdfc41cc094c0e63fc71ca2386da24d6dade1fa787a54"
      }
    },
    "mail|observed|acquired": {
      "graph": {
        "snapshotVersion": "t2k.reasoning-graph.v1",
        "graphKey": "demo.cash-homebuyer",
        "asOf": "2026-06-15T23:59:59Z",
        "ontologyResolutionHash": "c1f42aba94b41cc81e2ba87abe71a6263a91a15226cc24ee279c2183f576533f",
        "coverage": "complete",
        "entities": [
          {
            "entityId": "mail-dispatch",
            "typeRef": "demo.cash-homebuyer:touchpoint"
          },
          {
            "entityId": "click-nonbrand",
            "typeRef": "demo.cash-homebuyer:touchpoint"
          },
          {
            "entityId": "click-brand",
            "typeRef": "demo.cash-homebuyer:touchpoint"
          },
          {
            "entityId": "seller-report",
            "typeRef": "demo.cash-homebuyer:touchpoint"
          }
        ],
        "claims": [
          {
            "claimId": "mail-dispatch.property_id",
            "revision": "1",
            "subjectId": "mail-dispatch",
            "predicateRef": "demo.cash-homebuyer:touchpoint.property_id",
            "value": "property-104",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-03-25T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/dispatch",
                "locator": "mail-dispatch.property_id"
              }
            ]
          },
          {
            "claimId": "mail-dispatch.opportunity_id",
            "revision": "1",
            "subjectId": "mail-dispatch",
            "predicateRef": "demo.cash-homebuyer:touchpoint.opportunity_id",
            "value": "acquisition-204",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-03-25T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/dispatch",
                "locator": "mail-dispatch.opportunity_id"
              }
            ]
          },
          {
            "claimId": "mail-dispatch.seller_group_id",
            "revision": "1",
            "subjectId": "mail-dispatch",
            "predicateRef": "demo.cash-homebuyer:touchpoint.seller_group_id",
            "value": "seller-group-14",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-03-25T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/dispatch",
                "locator": "mail-dispatch.seller_group_id"
              }
            ]
          },
          {
            "claimId": "mail-dispatch.channel_id",
            "revision": "1",
            "subjectId": "mail-dispatch",
            "predicateRef": "demo.cash-homebuyer:touchpoint.channel_id",
            "value": "mail",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-03-25T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/dispatch",
                "locator": "mail-dispatch.channel_id"
              }
            ]
          },
          {
            "claimId": "mail-dispatch.event_at_ms",
            "revision": "1",
            "subjectId": "mail-dispatch",
            "predicateRef": "demo.cash-homebuyer:touchpoint.event_at_ms",
            "value": 1774432800000,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-03-25T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/dispatch",
                "locator": "mail-dispatch.event_at_ms"
              }
            ]
          },
          {
            "claimId": "mail-dispatch.evidence_rank",
            "revision": "1",
            "subjectId": "mail-dispatch",
            "predicateRef": "demo.cash-homebuyer:touchpoint.evidence_rank",
            "value": 2,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-03-25T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/dispatch",
                "locator": "mail-dispatch.evidence_rank"
              }
            ]
          },
          {
            "claimId": "mail-dispatch.marketing_touch",
            "revision": "1",
            "subjectId": "mail-dispatch",
            "predicateRef": "demo.cash-homebuyer:touchpoint.marketing_touch",
            "value": false,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-03-25T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/dispatch",
                "locator": "mail-dispatch.marketing_touch"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.property_id",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.property_id",
            "value": "property-104",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.property_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.opportunity_id",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.opportunity_id",
            "value": "acquisition-204",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.opportunity_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.seller_group_id",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.seller_group_id",
            "value": "seller-group-14",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.seller_group_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.channel_id",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.channel_id",
            "value": "search-nonbrand",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.channel_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.event_at_ms",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.event_at_ms",
            "value": 1775210400000,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.event_at_ms"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.evidence_rank",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.evidence_rank",
            "value": 0,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.evidence_rank"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.marketing_touch",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.marketing_touch",
            "value": true,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.marketing_touch"
              }
            ]
          },
          {
            "claimId": "click-brand.property_id",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.property_id",
            "value": "property-104",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.property_id"
              }
            ]
          },
          {
            "claimId": "click-brand.opportunity_id",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.opportunity_id",
            "value": "acquisition-204",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.opportunity_id"
              }
            ]
          },
          {
            "claimId": "click-brand.seller_group_id",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.seller_group_id",
            "value": "seller-group-14",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.seller_group_id"
              }
            ]
          },
          {
            "claimId": "click-brand.channel_id",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.channel_id",
            "value": "search-brand",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.channel_id"
              }
            ]
          },
          {
            "claimId": "click-brand.event_at_ms",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.event_at_ms",
            "value": 1775646000000,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.event_at_ms"
              }
            ]
          },
          {
            "claimId": "click-brand.evidence_rank",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.evidence_rank",
            "value": 0,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.evidence_rank"
              }
            ]
          },
          {
            "claimId": "click-brand.marketing_touch",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.marketing_touch",
            "value": true,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.marketing_touch"
              }
            ]
          },
          {
            "claimId": "seller-report.property_id",
            "revision": "1",
            "subjectId": "seller-report",
            "predicateRef": "demo.cash-homebuyer:touchpoint.property_id",
            "value": "property-104",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-10T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "seller-report.property_id"
              }
            ]
          },
          {
            "claimId": "seller-report.opportunity_id",
            "revision": "1",
            "subjectId": "seller-report",
            "predicateRef": "demo.cash-homebuyer:touchpoint.opportunity_id",
            "value": "acquisition-204",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-10T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "seller-report.opportunity_id"
              }
            ]
          },
          {
            "claimId": "seller-report.seller_group_id",
            "revision": "1",
            "subjectId": "seller-report",
            "predicateRef": "demo.cash-homebuyer:touchpoint.seller_group_id",
            "value": "seller-group-14",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-10T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "seller-report.seller_group_id"
              }
            ]
          },
          {
            "claimId": "seller-report.channel_id",
            "revision": "1",
            "subjectId": "seller-report",
            "predicateRef": "demo.cash-homebuyer:touchpoint.channel_id",
            "value": "mail",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-10T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "seller-report.channel_id"
              }
            ]
          },
          {
            "claimId": "seller-report.event_at_ms",
            "revision": "1",
            "subjectId": "seller-report",
            "predicateRef": "demo.cash-homebuyer:touchpoint.event_at_ms",
            "value": 1774519200000,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-10T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "seller-report.event_at_ms"
              }
            ]
          },
          {
            "claimId": "seller-report.evidence_rank",
            "revision": "1",
            "subjectId": "seller-report",
            "predicateRef": "demo.cash-homebuyer:touchpoint.evidence_rank",
            "value": 1,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-10T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "seller-report.evidence_rank"
              },
              {
                "sourceRef": "synthetic://cash-homebuyer/review",
                "locator": "review-report-14"
              }
            ]
          },
          {
            "claimId": "seller-report.marketing_touch",
            "revision": "1",
            "subjectId": "seller-report",
            "predicateRef": "demo.cash-homebuyer:touchpoint.marketing_touch",
            "value": true,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-10T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "seller-report.marketing_touch"
              }
            ]
          }
        ]
      },
      "arguments": {
        "property": "property-104",
        "opportunity": "acquisition-204",
        "sellerGroup": "seller-group-14",
        "windowStart": 1772323200000,
        "qualificationAt": 1775746800000,
        "admittedRank": 0
      },
      "receipt": {
        "resultVersion": "t2k.graph-result.v1",
        "status": "complete",
        "value": [
          {
            "touchId": "click-brand",
            "channelId": "search-brand",
            "eventAtMs": 1775646000000,
            "evidenceRank": 0
          },
          {
            "touchId": "click-nonbrand",
            "channelId": "search-nonbrand",
            "eventAtMs": 1775210400000,
            "evidenceRank": 0
          }
        ],
        "authorization": "not_authorized",
        "binding": {
          "runtimeVersion": "t2k.graph-runtime.v1",
          "functionHash": "c0aa7b713a989a49764860e270b776fcbd76416e07891e48a43920029a6aa40d",
          "ontologyResolutionHash": "c1f42aba94b41cc81e2ba87abe71a6263a91a15226cc24ee279c2183f576533f",
          "graphKey": "demo.cash-homebuyer",
          "asOf": "2026-06-15T23:59:59.000Z",
          "snapshotHash": "bc6b1f52aa2e00d3c398470e563577661c1fbb021d224d289bf61fc23cd6a9ae",
          "argumentsHash": "42e0e7d41d126edcc85e8694a0a6c610ab82f2484d117738872465ddbc3c08ac"
        },
        "evidence": [
          {
            "claimId": "click-brand.channel_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.channel_id"
              }
            ]
          },
          {
            "claimId": "click-brand.event_at_ms",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.event_at_ms"
              }
            ]
          },
          {
            "claimId": "click-brand.evidence_rank",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.evidence_rank"
              }
            ]
          },
          {
            "claimId": "click-brand.marketing_touch",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.marketing_touch"
              }
            ]
          },
          {
            "claimId": "click-brand.opportunity_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.opportunity_id"
              }
            ]
          },
          {
            "claimId": "click-brand.property_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.property_id"
              }
            ]
          },
          {
            "claimId": "click-brand.seller_group_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.seller_group_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.channel_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.channel_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.event_at_ms",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.event_at_ms"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.evidence_rank",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.evidence_rank"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.marketing_touch",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.marketing_touch"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.opportunity_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.opportunity_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.property_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.property_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.seller_group_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.seller_group_id"
              }
            ]
          },
          {
            "claimId": "mail-dispatch.event_at_ms",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/dispatch",
                "locator": "mail-dispatch.event_at_ms"
              }
            ]
          },
          {
            "claimId": "mail-dispatch.evidence_rank",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/dispatch",
                "locator": "mail-dispatch.evidence_rank"
              }
            ]
          },
          {
            "claimId": "mail-dispatch.marketing_touch",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/dispatch",
                "locator": "mail-dispatch.marketing_touch"
              }
            ]
          },
          {
            "claimId": "mail-dispatch.opportunity_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/dispatch",
                "locator": "mail-dispatch.opportunity_id"
              }
            ]
          },
          {
            "claimId": "mail-dispatch.property_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/dispatch",
                "locator": "mail-dispatch.property_id"
              }
            ]
          },
          {
            "claimId": "mail-dispatch.seller_group_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/dispatch",
                "locator": "mail-dispatch.seller_group_id"
              }
            ]
          },
          {
            "claimId": "seller-report.event_at_ms",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "seller-report.event_at_ms"
              }
            ]
          },
          {
            "claimId": "seller-report.evidence_rank",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/review",
                "locator": "review-report-14"
              },
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "seller-report.evidence_rank"
              }
            ]
          },
          {
            "claimId": "seller-report.marketing_touch",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "seller-report.marketing_touch"
              }
            ]
          },
          {
            "claimId": "seller-report.opportunity_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "seller-report.opportunity_id"
              }
            ]
          },
          {
            "claimId": "seller-report.property_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "seller-report.property_id"
              }
            ]
          },
          {
            "claimId": "seller-report.seller_group_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "seller-report.seller_group_id"
              }
            ]
          }
        ],
        "supportingClaimIds": [
          "click-brand.channel_id",
          "click-brand.event_at_ms",
          "click-brand.evidence_rank",
          "click-brand.marketing_touch",
          "click-brand.opportunity_id",
          "click-brand.property_id",
          "click-brand.seller_group_id",
          "click-nonbrand.channel_id",
          "click-nonbrand.event_at_ms",
          "click-nonbrand.evidence_rank",
          "click-nonbrand.marketing_touch",
          "click-nonbrand.opportunity_id",
          "click-nonbrand.property_id",
          "click-nonbrand.seller_group_id"
        ],
        "derivations": [
          {
            "rowHash": "694a95e1c5a20b2c4181a07122a2a687fc67128c10a258b2430fa33c69ae9712",
            "claimIds": [
              "click-brand.channel_id",
              "click-brand.event_at_ms",
              "click-brand.evidence_rank",
              "click-brand.marketing_touch",
              "click-brand.opportunity_id",
              "click-brand.property_id",
              "click-brand.seller_group_id"
            ]
          },
          {
            "rowHash": "8a86502664d35468a58d6eb7e6e5c9be4dfb70904e624e59abad3daa6bd71e31",
            "claimIds": [
              "click-nonbrand.channel_id",
              "click-nonbrand.event_at_ms",
              "click-nonbrand.evidence_rank",
              "click-nonbrand.marketing_touch",
              "click-nonbrand.opportunity_id",
              "click-nonbrand.property_id",
              "click-nonbrand.seller_group_id"
            ]
          }
        ],
        "exclusions": [
          {
            "stepId": "eligible",
            "bindings": {
              "touch": "mail-dispatch"
            },
            "reason": "Failed filter conditions: 3, 4",
            "claimIds": [
              "mail-dispatch.event_at_ms",
              "mail-dispatch.evidence_rank",
              "mail-dispatch.marketing_touch",
              "mail-dispatch.opportunity_id",
              "mail-dispatch.property_id",
              "mail-dispatch.seller_group_id"
            ]
          },
          {
            "stepId": "eligible",
            "bindings": {
              "touch": "seller-report"
            },
            "reason": "Failed filter conditions: 4",
            "claimIds": [
              "seller-report.event_at_ms",
              "seller-report.evidence_rank",
              "seller-report.marketing_touch",
              "seller-report.opportunity_id",
              "seller-report.property_id",
              "seller-report.seller_group_id"
            ]
          }
        ],
        "issues": [],
        "trace": [
          {
            "stepId": "touches",
            "operator": "lookup",
            "inputRows": 0,
            "outputRows": 4,
            "claimIds": [],
            "outputHash": "18bf8210a8c6e3f6d911da0a84661748727d8c00655a7acd42b8f46ee64c9577"
          },
          {
            "stepId": "eligible",
            "operator": "filter",
            "inputRows": 4,
            "outputRows": 2,
            "claimIds": [
              "click-brand.event_at_ms",
              "click-brand.evidence_rank",
              "click-brand.marketing_touch",
              "click-brand.opportunity_id",
              "click-brand.property_id",
              "click-brand.seller_group_id",
              "click-nonbrand.event_at_ms",
              "click-nonbrand.evidence_rank",
              "click-nonbrand.marketing_touch",
              "click-nonbrand.opportunity_id",
              "click-nonbrand.property_id",
              "click-nonbrand.seller_group_id",
              "mail-dispatch.event_at_ms",
              "mail-dispatch.evidence_rank",
              "mail-dispatch.marketing_touch",
              "mail-dispatch.opportunity_id",
              "mail-dispatch.property_id",
              "mail-dispatch.seller_group_id",
              "seller-report.event_at_ms",
              "seller-report.evidence_rank",
              "seller-report.marketing_touch",
              "seller-report.opportunity_id",
              "seller-report.property_id",
              "seller-report.seller_group_id"
            ],
            "outputHash": "8864bff38933853cc1e817ba21ea80f93b0b754a138347c03d066fddef7ec24b"
          },
          {
            "stepId": "rows",
            "operator": "project",
            "inputRows": 2,
            "outputRows": 2,
            "claimIds": [
              "click-brand.channel_id",
              "click-brand.event_at_ms",
              "click-brand.evidence_rank",
              "click-nonbrand.channel_id",
              "click-nonbrand.event_at_ms",
              "click-nonbrand.evidence_rank"
            ],
            "outputHash": "078dbc75a2ac1b1ea6e98b028bdb1c2655ebf9eac5681b4b98c9e64ac4242bac"
          }
        ],
        "work": 157,
        "resultHash": "0268cfb95166aecd587ecc7361b88a2d3a745ddadb6979bd92ab2c991e66e832"
      }
    },
    "mail|observed|resale": {
      "graph": {
        "snapshotVersion": "t2k.reasoning-graph.v1",
        "graphKey": "demo.cash-homebuyer",
        "asOf": "2026-09-15T23:59:59Z",
        "ontologyResolutionHash": "c1f42aba94b41cc81e2ba87abe71a6263a91a15226cc24ee279c2183f576533f",
        "coverage": "complete",
        "entities": [
          {
            "entityId": "mail-dispatch",
            "typeRef": "demo.cash-homebuyer:touchpoint"
          },
          {
            "entityId": "click-nonbrand",
            "typeRef": "demo.cash-homebuyer:touchpoint"
          },
          {
            "entityId": "click-brand",
            "typeRef": "demo.cash-homebuyer:touchpoint"
          },
          {
            "entityId": "seller-report",
            "typeRef": "demo.cash-homebuyer:touchpoint"
          }
        ],
        "claims": [
          {
            "claimId": "mail-dispatch.property_id",
            "revision": "1",
            "subjectId": "mail-dispatch",
            "predicateRef": "demo.cash-homebuyer:touchpoint.property_id",
            "value": "property-104",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-03-25T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/dispatch",
                "locator": "mail-dispatch.property_id"
              }
            ]
          },
          {
            "claimId": "mail-dispatch.opportunity_id",
            "revision": "1",
            "subjectId": "mail-dispatch",
            "predicateRef": "demo.cash-homebuyer:touchpoint.opportunity_id",
            "value": "acquisition-204",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-03-25T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/dispatch",
                "locator": "mail-dispatch.opportunity_id"
              }
            ]
          },
          {
            "claimId": "mail-dispatch.seller_group_id",
            "revision": "1",
            "subjectId": "mail-dispatch",
            "predicateRef": "demo.cash-homebuyer:touchpoint.seller_group_id",
            "value": "seller-group-14",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-03-25T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/dispatch",
                "locator": "mail-dispatch.seller_group_id"
              }
            ]
          },
          {
            "claimId": "mail-dispatch.channel_id",
            "revision": "1",
            "subjectId": "mail-dispatch",
            "predicateRef": "demo.cash-homebuyer:touchpoint.channel_id",
            "value": "mail",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-03-25T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/dispatch",
                "locator": "mail-dispatch.channel_id"
              }
            ]
          },
          {
            "claimId": "mail-dispatch.event_at_ms",
            "revision": "1",
            "subjectId": "mail-dispatch",
            "predicateRef": "demo.cash-homebuyer:touchpoint.event_at_ms",
            "value": 1774432800000,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-03-25T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/dispatch",
                "locator": "mail-dispatch.event_at_ms"
              }
            ]
          },
          {
            "claimId": "mail-dispatch.evidence_rank",
            "revision": "1",
            "subjectId": "mail-dispatch",
            "predicateRef": "demo.cash-homebuyer:touchpoint.evidence_rank",
            "value": 2,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-03-25T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/dispatch",
                "locator": "mail-dispatch.evidence_rank"
              }
            ]
          },
          {
            "claimId": "mail-dispatch.marketing_touch",
            "revision": "1",
            "subjectId": "mail-dispatch",
            "predicateRef": "demo.cash-homebuyer:touchpoint.marketing_touch",
            "value": false,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-03-25T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/dispatch",
                "locator": "mail-dispatch.marketing_touch"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.property_id",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.property_id",
            "value": "property-104",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.property_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.opportunity_id",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.opportunity_id",
            "value": "acquisition-204",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.opportunity_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.seller_group_id",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.seller_group_id",
            "value": "seller-group-14",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.seller_group_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.channel_id",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.channel_id",
            "value": "search-nonbrand",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.channel_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.event_at_ms",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.event_at_ms",
            "value": 1775210400000,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.event_at_ms"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.evidence_rank",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.evidence_rank",
            "value": 0,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.evidence_rank"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.marketing_touch",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.marketing_touch",
            "value": true,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.marketing_touch"
              }
            ]
          },
          {
            "claimId": "click-brand.property_id",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.property_id",
            "value": "property-104",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.property_id"
              }
            ]
          },
          {
            "claimId": "click-brand.opportunity_id",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.opportunity_id",
            "value": "acquisition-204",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.opportunity_id"
              }
            ]
          },
          {
            "claimId": "click-brand.seller_group_id",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.seller_group_id",
            "value": "seller-group-14",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.seller_group_id"
              }
            ]
          },
          {
            "claimId": "click-brand.channel_id",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.channel_id",
            "value": "search-brand",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.channel_id"
              }
            ]
          },
          {
            "claimId": "click-brand.event_at_ms",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.event_at_ms",
            "value": 1775646000000,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.event_at_ms"
              }
            ]
          },
          {
            "claimId": "click-brand.evidence_rank",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.evidence_rank",
            "value": 0,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.evidence_rank"
              }
            ]
          },
          {
            "claimId": "click-brand.marketing_touch",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.marketing_touch",
            "value": true,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.marketing_touch"
              }
            ]
          },
          {
            "claimId": "seller-report.property_id",
            "revision": "1",
            "subjectId": "seller-report",
            "predicateRef": "demo.cash-homebuyer:touchpoint.property_id",
            "value": "property-104",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-10T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "seller-report.property_id"
              }
            ]
          },
          {
            "claimId": "seller-report.opportunity_id",
            "revision": "1",
            "subjectId": "seller-report",
            "predicateRef": "demo.cash-homebuyer:touchpoint.opportunity_id",
            "value": "acquisition-204",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-10T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "seller-report.opportunity_id"
              }
            ]
          },
          {
            "claimId": "seller-report.seller_group_id",
            "revision": "1",
            "subjectId": "seller-report",
            "predicateRef": "demo.cash-homebuyer:touchpoint.seller_group_id",
            "value": "seller-group-14",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-10T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "seller-report.seller_group_id"
              }
            ]
          },
          {
            "claimId": "seller-report.channel_id",
            "revision": "1",
            "subjectId": "seller-report",
            "predicateRef": "demo.cash-homebuyer:touchpoint.channel_id",
            "value": "mail",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-10T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "seller-report.channel_id"
              }
            ]
          },
          {
            "claimId": "seller-report.event_at_ms",
            "revision": "1",
            "subjectId": "seller-report",
            "predicateRef": "demo.cash-homebuyer:touchpoint.event_at_ms",
            "value": 1774519200000,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-10T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "seller-report.event_at_ms"
              }
            ]
          },
          {
            "claimId": "seller-report.evidence_rank",
            "revision": "1",
            "subjectId": "seller-report",
            "predicateRef": "demo.cash-homebuyer:touchpoint.evidence_rank",
            "value": 1,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-10T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "seller-report.evidence_rank"
              },
              {
                "sourceRef": "synthetic://cash-homebuyer/review",
                "locator": "review-report-14"
              }
            ]
          },
          {
            "claimId": "seller-report.marketing_touch",
            "revision": "1",
            "subjectId": "seller-report",
            "predicateRef": "demo.cash-homebuyer:touchpoint.marketing_touch",
            "value": true,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-10T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "seller-report.marketing_touch"
              }
            ]
          }
        ]
      },
      "arguments": {
        "property": "property-104",
        "opportunity": "acquisition-204",
        "sellerGroup": "seller-group-14",
        "windowStart": 1772323200000,
        "qualificationAt": 1775746800000,
        "admittedRank": 0
      },
      "receipt": {
        "resultVersion": "t2k.graph-result.v1",
        "status": "complete",
        "value": [
          {
            "touchId": "click-brand",
            "channelId": "search-brand",
            "eventAtMs": 1775646000000,
            "evidenceRank": 0
          },
          {
            "touchId": "click-nonbrand",
            "channelId": "search-nonbrand",
            "eventAtMs": 1775210400000,
            "evidenceRank": 0
          }
        ],
        "authorization": "not_authorized",
        "binding": {
          "runtimeVersion": "t2k.graph-runtime.v1",
          "functionHash": "c0aa7b713a989a49764860e270b776fcbd76416e07891e48a43920029a6aa40d",
          "ontologyResolutionHash": "c1f42aba94b41cc81e2ba87abe71a6263a91a15226cc24ee279c2183f576533f",
          "graphKey": "demo.cash-homebuyer",
          "asOf": "2026-09-15T23:59:59.000Z",
          "snapshotHash": "34761aaa4762a57b7dbe2e2f86a800c22c91028f0442cadf5c020d32353d0ce2",
          "argumentsHash": "42e0e7d41d126edcc85e8694a0a6c610ab82f2484d117738872465ddbc3c08ac"
        },
        "evidence": [
          {
            "claimId": "click-brand.channel_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.channel_id"
              }
            ]
          },
          {
            "claimId": "click-brand.event_at_ms",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.event_at_ms"
              }
            ]
          },
          {
            "claimId": "click-brand.evidence_rank",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.evidence_rank"
              }
            ]
          },
          {
            "claimId": "click-brand.marketing_touch",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.marketing_touch"
              }
            ]
          },
          {
            "claimId": "click-brand.opportunity_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.opportunity_id"
              }
            ]
          },
          {
            "claimId": "click-brand.property_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.property_id"
              }
            ]
          },
          {
            "claimId": "click-brand.seller_group_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.seller_group_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.channel_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.channel_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.event_at_ms",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.event_at_ms"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.evidence_rank",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.evidence_rank"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.marketing_touch",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.marketing_touch"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.opportunity_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.opportunity_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.property_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.property_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.seller_group_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.seller_group_id"
              }
            ]
          },
          {
            "claimId": "mail-dispatch.event_at_ms",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/dispatch",
                "locator": "mail-dispatch.event_at_ms"
              }
            ]
          },
          {
            "claimId": "mail-dispatch.evidence_rank",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/dispatch",
                "locator": "mail-dispatch.evidence_rank"
              }
            ]
          },
          {
            "claimId": "mail-dispatch.marketing_touch",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/dispatch",
                "locator": "mail-dispatch.marketing_touch"
              }
            ]
          },
          {
            "claimId": "mail-dispatch.opportunity_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/dispatch",
                "locator": "mail-dispatch.opportunity_id"
              }
            ]
          },
          {
            "claimId": "mail-dispatch.property_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/dispatch",
                "locator": "mail-dispatch.property_id"
              }
            ]
          },
          {
            "claimId": "mail-dispatch.seller_group_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/dispatch",
                "locator": "mail-dispatch.seller_group_id"
              }
            ]
          },
          {
            "claimId": "seller-report.event_at_ms",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "seller-report.event_at_ms"
              }
            ]
          },
          {
            "claimId": "seller-report.evidence_rank",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/review",
                "locator": "review-report-14"
              },
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "seller-report.evidence_rank"
              }
            ]
          },
          {
            "claimId": "seller-report.marketing_touch",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "seller-report.marketing_touch"
              }
            ]
          },
          {
            "claimId": "seller-report.opportunity_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "seller-report.opportunity_id"
              }
            ]
          },
          {
            "claimId": "seller-report.property_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "seller-report.property_id"
              }
            ]
          },
          {
            "claimId": "seller-report.seller_group_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "seller-report.seller_group_id"
              }
            ]
          }
        ],
        "supportingClaimIds": [
          "click-brand.channel_id",
          "click-brand.event_at_ms",
          "click-brand.evidence_rank",
          "click-brand.marketing_touch",
          "click-brand.opportunity_id",
          "click-brand.property_id",
          "click-brand.seller_group_id",
          "click-nonbrand.channel_id",
          "click-nonbrand.event_at_ms",
          "click-nonbrand.evidence_rank",
          "click-nonbrand.marketing_touch",
          "click-nonbrand.opportunity_id",
          "click-nonbrand.property_id",
          "click-nonbrand.seller_group_id"
        ],
        "derivations": [
          {
            "rowHash": "694a95e1c5a20b2c4181a07122a2a687fc67128c10a258b2430fa33c69ae9712",
            "claimIds": [
              "click-brand.channel_id",
              "click-brand.event_at_ms",
              "click-brand.evidence_rank",
              "click-brand.marketing_touch",
              "click-brand.opportunity_id",
              "click-brand.property_id",
              "click-brand.seller_group_id"
            ]
          },
          {
            "rowHash": "8a86502664d35468a58d6eb7e6e5c9be4dfb70904e624e59abad3daa6bd71e31",
            "claimIds": [
              "click-nonbrand.channel_id",
              "click-nonbrand.event_at_ms",
              "click-nonbrand.evidence_rank",
              "click-nonbrand.marketing_touch",
              "click-nonbrand.opportunity_id",
              "click-nonbrand.property_id",
              "click-nonbrand.seller_group_id"
            ]
          }
        ],
        "exclusions": [
          {
            "stepId": "eligible",
            "bindings": {
              "touch": "mail-dispatch"
            },
            "reason": "Failed filter conditions: 3, 4",
            "claimIds": [
              "mail-dispatch.event_at_ms",
              "mail-dispatch.evidence_rank",
              "mail-dispatch.marketing_touch",
              "mail-dispatch.opportunity_id",
              "mail-dispatch.property_id",
              "mail-dispatch.seller_group_id"
            ]
          },
          {
            "stepId": "eligible",
            "bindings": {
              "touch": "seller-report"
            },
            "reason": "Failed filter conditions: 4",
            "claimIds": [
              "seller-report.event_at_ms",
              "seller-report.evidence_rank",
              "seller-report.marketing_touch",
              "seller-report.opportunity_id",
              "seller-report.property_id",
              "seller-report.seller_group_id"
            ]
          }
        ],
        "issues": [],
        "trace": [
          {
            "stepId": "touches",
            "operator": "lookup",
            "inputRows": 0,
            "outputRows": 4,
            "claimIds": [],
            "outputHash": "18bf8210a8c6e3f6d911da0a84661748727d8c00655a7acd42b8f46ee64c9577"
          },
          {
            "stepId": "eligible",
            "operator": "filter",
            "inputRows": 4,
            "outputRows": 2,
            "claimIds": [
              "click-brand.event_at_ms",
              "click-brand.evidence_rank",
              "click-brand.marketing_touch",
              "click-brand.opportunity_id",
              "click-brand.property_id",
              "click-brand.seller_group_id",
              "click-nonbrand.event_at_ms",
              "click-nonbrand.evidence_rank",
              "click-nonbrand.marketing_touch",
              "click-nonbrand.opportunity_id",
              "click-nonbrand.property_id",
              "click-nonbrand.seller_group_id",
              "mail-dispatch.event_at_ms",
              "mail-dispatch.evidence_rank",
              "mail-dispatch.marketing_touch",
              "mail-dispatch.opportunity_id",
              "mail-dispatch.property_id",
              "mail-dispatch.seller_group_id",
              "seller-report.event_at_ms",
              "seller-report.evidence_rank",
              "seller-report.marketing_touch",
              "seller-report.opportunity_id",
              "seller-report.property_id",
              "seller-report.seller_group_id"
            ],
            "outputHash": "8864bff38933853cc1e817ba21ea80f93b0b754a138347c03d066fddef7ec24b"
          },
          {
            "stepId": "rows",
            "operator": "project",
            "inputRows": 2,
            "outputRows": 2,
            "claimIds": [
              "click-brand.channel_id",
              "click-brand.event_at_ms",
              "click-brand.evidence_rank",
              "click-nonbrand.channel_id",
              "click-nonbrand.event_at_ms",
              "click-nonbrand.evidence_rank"
            ],
            "outputHash": "078dbc75a2ac1b1ea6e98b028bdb1c2655ebf9eac5681b4b98c9e64ac4242bac"
          }
        ],
        "work": 157,
        "resultHash": "7f15b441685448138a118256fc7c0edca87498f138ade3d6f93b03823fd0b01e"
      }
    },
    "mail|reported|contract": {
      "graph": {
        "snapshotVersion": "t2k.reasoning-graph.v1",
        "graphKey": "demo.cash-homebuyer",
        "asOf": "2026-05-15T23:59:59Z",
        "ontologyResolutionHash": "c1f42aba94b41cc81e2ba87abe71a6263a91a15226cc24ee279c2183f576533f",
        "coverage": "complete",
        "entities": [
          {
            "entityId": "mail-dispatch",
            "typeRef": "demo.cash-homebuyer:touchpoint"
          },
          {
            "entityId": "click-nonbrand",
            "typeRef": "demo.cash-homebuyer:touchpoint"
          },
          {
            "entityId": "click-brand",
            "typeRef": "demo.cash-homebuyer:touchpoint"
          },
          {
            "entityId": "seller-report",
            "typeRef": "demo.cash-homebuyer:touchpoint"
          }
        ],
        "claims": [
          {
            "claimId": "mail-dispatch.property_id",
            "revision": "1",
            "subjectId": "mail-dispatch",
            "predicateRef": "demo.cash-homebuyer:touchpoint.property_id",
            "value": "property-104",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-03-25T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/dispatch",
                "locator": "mail-dispatch.property_id"
              }
            ]
          },
          {
            "claimId": "mail-dispatch.opportunity_id",
            "revision": "1",
            "subjectId": "mail-dispatch",
            "predicateRef": "demo.cash-homebuyer:touchpoint.opportunity_id",
            "value": "acquisition-204",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-03-25T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/dispatch",
                "locator": "mail-dispatch.opportunity_id"
              }
            ]
          },
          {
            "claimId": "mail-dispatch.seller_group_id",
            "revision": "1",
            "subjectId": "mail-dispatch",
            "predicateRef": "demo.cash-homebuyer:touchpoint.seller_group_id",
            "value": "seller-group-14",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-03-25T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/dispatch",
                "locator": "mail-dispatch.seller_group_id"
              }
            ]
          },
          {
            "claimId": "mail-dispatch.channel_id",
            "revision": "1",
            "subjectId": "mail-dispatch",
            "predicateRef": "demo.cash-homebuyer:touchpoint.channel_id",
            "value": "mail",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-03-25T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/dispatch",
                "locator": "mail-dispatch.channel_id"
              }
            ]
          },
          {
            "claimId": "mail-dispatch.event_at_ms",
            "revision": "1",
            "subjectId": "mail-dispatch",
            "predicateRef": "demo.cash-homebuyer:touchpoint.event_at_ms",
            "value": 1774432800000,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-03-25T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/dispatch",
                "locator": "mail-dispatch.event_at_ms"
              }
            ]
          },
          {
            "claimId": "mail-dispatch.evidence_rank",
            "revision": "1",
            "subjectId": "mail-dispatch",
            "predicateRef": "demo.cash-homebuyer:touchpoint.evidence_rank",
            "value": 2,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-03-25T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/dispatch",
                "locator": "mail-dispatch.evidence_rank"
              }
            ]
          },
          {
            "claimId": "mail-dispatch.marketing_touch",
            "revision": "1",
            "subjectId": "mail-dispatch",
            "predicateRef": "demo.cash-homebuyer:touchpoint.marketing_touch",
            "value": false,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-03-25T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/dispatch",
                "locator": "mail-dispatch.marketing_touch"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.property_id",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.property_id",
            "value": "property-104",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.property_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.opportunity_id",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.opportunity_id",
            "value": "acquisition-204",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.opportunity_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.seller_group_id",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.seller_group_id",
            "value": "seller-group-14",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.seller_group_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.channel_id",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.channel_id",
            "value": "search-nonbrand",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.channel_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.event_at_ms",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.event_at_ms",
            "value": 1775210400000,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.event_at_ms"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.evidence_rank",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.evidence_rank",
            "value": 0,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.evidence_rank"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.marketing_touch",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.marketing_touch",
            "value": true,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.marketing_touch"
              }
            ]
          },
          {
            "claimId": "click-brand.property_id",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.property_id",
            "value": "property-104",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.property_id"
              }
            ]
          },
          {
            "claimId": "click-brand.opportunity_id",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.opportunity_id",
            "value": "acquisition-204",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.opportunity_id"
              }
            ]
          },
          {
            "claimId": "click-brand.seller_group_id",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.seller_group_id",
            "value": "seller-group-14",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.seller_group_id"
              }
            ]
          },
          {
            "claimId": "click-brand.channel_id",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.channel_id",
            "value": "search-brand",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.channel_id"
              }
            ]
          },
          {
            "claimId": "click-brand.event_at_ms",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.event_at_ms",
            "value": 1775646000000,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.event_at_ms"
              }
            ]
          },
          {
            "claimId": "click-brand.evidence_rank",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.evidence_rank",
            "value": 0,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.evidence_rank"
              }
            ]
          },
          {
            "claimId": "click-brand.marketing_touch",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.marketing_touch",
            "value": true,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.marketing_touch"
              }
            ]
          },
          {
            "claimId": "seller-report.property_id",
            "revision": "1",
            "subjectId": "seller-report",
            "predicateRef": "demo.cash-homebuyer:touchpoint.property_id",
            "value": "property-104",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-10T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "seller-report.property_id"
              }
            ]
          },
          {
            "claimId": "seller-report.opportunity_id",
            "revision": "1",
            "subjectId": "seller-report",
            "predicateRef": "demo.cash-homebuyer:touchpoint.opportunity_id",
            "value": "acquisition-204",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-10T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "seller-report.opportunity_id"
              }
            ]
          },
          {
            "claimId": "seller-report.seller_group_id",
            "revision": "1",
            "subjectId": "seller-report",
            "predicateRef": "demo.cash-homebuyer:touchpoint.seller_group_id",
            "value": "seller-group-14",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-10T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "seller-report.seller_group_id"
              }
            ]
          },
          {
            "claimId": "seller-report.channel_id",
            "revision": "1",
            "subjectId": "seller-report",
            "predicateRef": "demo.cash-homebuyer:touchpoint.channel_id",
            "value": "mail",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-10T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "seller-report.channel_id"
              }
            ]
          },
          {
            "claimId": "seller-report.event_at_ms",
            "revision": "1",
            "subjectId": "seller-report",
            "predicateRef": "demo.cash-homebuyer:touchpoint.event_at_ms",
            "value": 1774519200000,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-10T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "seller-report.event_at_ms"
              }
            ]
          },
          {
            "claimId": "seller-report.evidence_rank",
            "revision": "1",
            "subjectId": "seller-report",
            "predicateRef": "demo.cash-homebuyer:touchpoint.evidence_rank",
            "value": 1,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-10T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "seller-report.evidence_rank"
              },
              {
                "sourceRef": "synthetic://cash-homebuyer/review",
                "locator": "review-report-14"
              }
            ]
          },
          {
            "claimId": "seller-report.marketing_touch",
            "revision": "1",
            "subjectId": "seller-report",
            "predicateRef": "demo.cash-homebuyer:touchpoint.marketing_touch",
            "value": true,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-10T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "seller-report.marketing_touch"
              }
            ]
          }
        ]
      },
      "arguments": {
        "property": "property-104",
        "opportunity": "acquisition-204",
        "sellerGroup": "seller-group-14",
        "windowStart": 1772323200000,
        "qualificationAt": 1775746800000,
        "admittedRank": 1
      },
      "receipt": {
        "resultVersion": "t2k.graph-result.v1",
        "status": "complete",
        "value": [
          {
            "touchId": "seller-report",
            "channelId": "mail",
            "eventAtMs": 1774519200000,
            "evidenceRank": 1
          },
          {
            "touchId": "click-brand",
            "channelId": "search-brand",
            "eventAtMs": 1775646000000,
            "evidenceRank": 0
          },
          {
            "touchId": "click-nonbrand",
            "channelId": "search-nonbrand",
            "eventAtMs": 1775210400000,
            "evidenceRank": 0
          }
        ],
        "authorization": "not_authorized",
        "binding": {
          "runtimeVersion": "t2k.graph-runtime.v1",
          "functionHash": "c0aa7b713a989a49764860e270b776fcbd76416e07891e48a43920029a6aa40d",
          "ontologyResolutionHash": "c1f42aba94b41cc81e2ba87abe71a6263a91a15226cc24ee279c2183f576533f",
          "graphKey": "demo.cash-homebuyer",
          "asOf": "2026-05-15T23:59:59.000Z",
          "snapshotHash": "60a65208a9bdd2305d703fbcee073f9d3501e24b75e22045d6874ca9b0b8d994",
          "argumentsHash": "cd8690f832630034ecce3c948890d1e8f4ac84aebf4d3b80bcff6e7dcae3c8ab"
        },
        "evidence": [
          {
            "claimId": "click-brand.channel_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.channel_id"
              }
            ]
          },
          {
            "claimId": "click-brand.event_at_ms",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.event_at_ms"
              }
            ]
          },
          {
            "claimId": "click-brand.evidence_rank",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.evidence_rank"
              }
            ]
          },
          {
            "claimId": "click-brand.marketing_touch",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.marketing_touch"
              }
            ]
          },
          {
            "claimId": "click-brand.opportunity_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.opportunity_id"
              }
            ]
          },
          {
            "claimId": "click-brand.property_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.property_id"
              }
            ]
          },
          {
            "claimId": "click-brand.seller_group_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.seller_group_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.channel_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.channel_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.event_at_ms",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.event_at_ms"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.evidence_rank",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.evidence_rank"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.marketing_touch",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.marketing_touch"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.opportunity_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.opportunity_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.property_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.property_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.seller_group_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.seller_group_id"
              }
            ]
          },
          {
            "claimId": "mail-dispatch.event_at_ms",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/dispatch",
                "locator": "mail-dispatch.event_at_ms"
              }
            ]
          },
          {
            "claimId": "mail-dispatch.evidence_rank",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/dispatch",
                "locator": "mail-dispatch.evidence_rank"
              }
            ]
          },
          {
            "claimId": "mail-dispatch.marketing_touch",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/dispatch",
                "locator": "mail-dispatch.marketing_touch"
              }
            ]
          },
          {
            "claimId": "mail-dispatch.opportunity_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/dispatch",
                "locator": "mail-dispatch.opportunity_id"
              }
            ]
          },
          {
            "claimId": "mail-dispatch.property_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/dispatch",
                "locator": "mail-dispatch.property_id"
              }
            ]
          },
          {
            "claimId": "mail-dispatch.seller_group_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/dispatch",
                "locator": "mail-dispatch.seller_group_id"
              }
            ]
          },
          {
            "claimId": "seller-report.channel_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "seller-report.channel_id"
              }
            ]
          },
          {
            "claimId": "seller-report.event_at_ms",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "seller-report.event_at_ms"
              }
            ]
          },
          {
            "claimId": "seller-report.evidence_rank",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/review",
                "locator": "review-report-14"
              },
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "seller-report.evidence_rank"
              }
            ]
          },
          {
            "claimId": "seller-report.marketing_touch",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "seller-report.marketing_touch"
              }
            ]
          },
          {
            "claimId": "seller-report.opportunity_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "seller-report.opportunity_id"
              }
            ]
          },
          {
            "claimId": "seller-report.property_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "seller-report.property_id"
              }
            ]
          },
          {
            "claimId": "seller-report.seller_group_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "seller-report.seller_group_id"
              }
            ]
          }
        ],
        "supportingClaimIds": [
          "click-brand.channel_id",
          "click-brand.event_at_ms",
          "click-brand.evidence_rank",
          "click-brand.marketing_touch",
          "click-brand.opportunity_id",
          "click-brand.property_id",
          "click-brand.seller_group_id",
          "click-nonbrand.channel_id",
          "click-nonbrand.event_at_ms",
          "click-nonbrand.evidence_rank",
          "click-nonbrand.marketing_touch",
          "click-nonbrand.opportunity_id",
          "click-nonbrand.property_id",
          "click-nonbrand.seller_group_id",
          "seller-report.channel_id",
          "seller-report.event_at_ms",
          "seller-report.evidence_rank",
          "seller-report.marketing_touch",
          "seller-report.opportunity_id",
          "seller-report.property_id",
          "seller-report.seller_group_id"
        ],
        "derivations": [
          {
            "rowHash": "694a95e1c5a20b2c4181a07122a2a687fc67128c10a258b2430fa33c69ae9712",
            "claimIds": [
              "click-brand.channel_id",
              "click-brand.event_at_ms",
              "click-brand.evidence_rank",
              "click-brand.marketing_touch",
              "click-brand.opportunity_id",
              "click-brand.property_id",
              "click-brand.seller_group_id"
            ]
          },
          {
            "rowHash": "8a86502664d35468a58d6eb7e6e5c9be4dfb70904e624e59abad3daa6bd71e31",
            "claimIds": [
              "click-nonbrand.channel_id",
              "click-nonbrand.event_at_ms",
              "click-nonbrand.evidence_rank",
              "click-nonbrand.marketing_touch",
              "click-nonbrand.opportunity_id",
              "click-nonbrand.property_id",
              "click-nonbrand.seller_group_id"
            ]
          },
          {
            "rowHash": "89404f920fbc5a3df13379583fa5619c1d0f76b03492c6b6545b2ef20fe243e4",
            "claimIds": [
              "seller-report.channel_id",
              "seller-report.event_at_ms",
              "seller-report.evidence_rank",
              "seller-report.marketing_touch",
              "seller-report.opportunity_id",
              "seller-report.property_id",
              "seller-report.seller_group_id"
            ]
          }
        ],
        "exclusions": [
          {
            "stepId": "eligible",
            "bindings": {
              "touch": "mail-dispatch"
            },
            "reason": "Failed filter conditions: 3, 4",
            "claimIds": [
              "mail-dispatch.event_at_ms",
              "mail-dispatch.evidence_rank",
              "mail-dispatch.marketing_touch",
              "mail-dispatch.opportunity_id",
              "mail-dispatch.property_id",
              "mail-dispatch.seller_group_id"
            ]
          }
        ],
        "issues": [],
        "trace": [
          {
            "stepId": "touches",
            "operator": "lookup",
            "inputRows": 0,
            "outputRows": 4,
            "claimIds": [],
            "outputHash": "18bf8210a8c6e3f6d911da0a84661748727d8c00655a7acd42b8f46ee64c9577"
          },
          {
            "stepId": "eligible",
            "operator": "filter",
            "inputRows": 4,
            "outputRows": 3,
            "claimIds": [
              "click-brand.event_at_ms",
              "click-brand.evidence_rank",
              "click-brand.marketing_touch",
              "click-brand.opportunity_id",
              "click-brand.property_id",
              "click-brand.seller_group_id",
              "click-nonbrand.event_at_ms",
              "click-nonbrand.evidence_rank",
              "click-nonbrand.marketing_touch",
              "click-nonbrand.opportunity_id",
              "click-nonbrand.property_id",
              "click-nonbrand.seller_group_id",
              "mail-dispatch.event_at_ms",
              "mail-dispatch.evidence_rank",
              "mail-dispatch.marketing_touch",
              "mail-dispatch.opportunity_id",
              "mail-dispatch.property_id",
              "mail-dispatch.seller_group_id",
              "seller-report.event_at_ms",
              "seller-report.evidence_rank",
              "seller-report.marketing_touch",
              "seller-report.opportunity_id",
              "seller-report.property_id",
              "seller-report.seller_group_id"
            ],
            "outputHash": "e58f5c8261e312267159f64e9fb4dfea667bea5139c920e49b7097501ecb2d48"
          },
          {
            "stepId": "rows",
            "operator": "project",
            "inputRows": 3,
            "outputRows": 3,
            "claimIds": [
              "click-brand.channel_id",
              "click-brand.event_at_ms",
              "click-brand.evidence_rank",
              "click-nonbrand.channel_id",
              "click-nonbrand.event_at_ms",
              "click-nonbrand.evidence_rank",
              "seller-report.channel_id",
              "seller-report.event_at_ms",
              "seller-report.evidence_rank"
            ],
            "outputHash": "0ff7a8d7c470c05e91d9c8a4c2427f6b70534064d6c5bae2edc049644cb21b30"
          }
        ],
        "work": 164,
        "resultHash": "ba521c610c685398e75d2a37b65ae2c1358f8ecbbda544a5d5621ca7b040abdf"
      }
    },
    "mail|reported|acquired": {
      "graph": {
        "snapshotVersion": "t2k.reasoning-graph.v1",
        "graphKey": "demo.cash-homebuyer",
        "asOf": "2026-06-15T23:59:59Z",
        "ontologyResolutionHash": "c1f42aba94b41cc81e2ba87abe71a6263a91a15226cc24ee279c2183f576533f",
        "coverage": "complete",
        "entities": [
          {
            "entityId": "mail-dispatch",
            "typeRef": "demo.cash-homebuyer:touchpoint"
          },
          {
            "entityId": "click-nonbrand",
            "typeRef": "demo.cash-homebuyer:touchpoint"
          },
          {
            "entityId": "click-brand",
            "typeRef": "demo.cash-homebuyer:touchpoint"
          },
          {
            "entityId": "seller-report",
            "typeRef": "demo.cash-homebuyer:touchpoint"
          }
        ],
        "claims": [
          {
            "claimId": "mail-dispatch.property_id",
            "revision": "1",
            "subjectId": "mail-dispatch",
            "predicateRef": "demo.cash-homebuyer:touchpoint.property_id",
            "value": "property-104",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-03-25T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/dispatch",
                "locator": "mail-dispatch.property_id"
              }
            ]
          },
          {
            "claimId": "mail-dispatch.opportunity_id",
            "revision": "1",
            "subjectId": "mail-dispatch",
            "predicateRef": "demo.cash-homebuyer:touchpoint.opportunity_id",
            "value": "acquisition-204",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-03-25T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/dispatch",
                "locator": "mail-dispatch.opportunity_id"
              }
            ]
          },
          {
            "claimId": "mail-dispatch.seller_group_id",
            "revision": "1",
            "subjectId": "mail-dispatch",
            "predicateRef": "demo.cash-homebuyer:touchpoint.seller_group_id",
            "value": "seller-group-14",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-03-25T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/dispatch",
                "locator": "mail-dispatch.seller_group_id"
              }
            ]
          },
          {
            "claimId": "mail-dispatch.channel_id",
            "revision": "1",
            "subjectId": "mail-dispatch",
            "predicateRef": "demo.cash-homebuyer:touchpoint.channel_id",
            "value": "mail",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-03-25T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/dispatch",
                "locator": "mail-dispatch.channel_id"
              }
            ]
          },
          {
            "claimId": "mail-dispatch.event_at_ms",
            "revision": "1",
            "subjectId": "mail-dispatch",
            "predicateRef": "demo.cash-homebuyer:touchpoint.event_at_ms",
            "value": 1774432800000,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-03-25T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/dispatch",
                "locator": "mail-dispatch.event_at_ms"
              }
            ]
          },
          {
            "claimId": "mail-dispatch.evidence_rank",
            "revision": "1",
            "subjectId": "mail-dispatch",
            "predicateRef": "demo.cash-homebuyer:touchpoint.evidence_rank",
            "value": 2,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-03-25T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/dispatch",
                "locator": "mail-dispatch.evidence_rank"
              }
            ]
          },
          {
            "claimId": "mail-dispatch.marketing_touch",
            "revision": "1",
            "subjectId": "mail-dispatch",
            "predicateRef": "demo.cash-homebuyer:touchpoint.marketing_touch",
            "value": false,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-03-25T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/dispatch",
                "locator": "mail-dispatch.marketing_touch"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.property_id",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.property_id",
            "value": "property-104",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.property_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.opportunity_id",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.opportunity_id",
            "value": "acquisition-204",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.opportunity_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.seller_group_id",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.seller_group_id",
            "value": "seller-group-14",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.seller_group_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.channel_id",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.channel_id",
            "value": "search-nonbrand",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.channel_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.event_at_ms",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.event_at_ms",
            "value": 1775210400000,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.event_at_ms"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.evidence_rank",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.evidence_rank",
            "value": 0,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.evidence_rank"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.marketing_touch",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.marketing_touch",
            "value": true,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.marketing_touch"
              }
            ]
          },
          {
            "claimId": "click-brand.property_id",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.property_id",
            "value": "property-104",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.property_id"
              }
            ]
          },
          {
            "claimId": "click-brand.opportunity_id",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.opportunity_id",
            "value": "acquisition-204",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.opportunity_id"
              }
            ]
          },
          {
            "claimId": "click-brand.seller_group_id",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.seller_group_id",
            "value": "seller-group-14",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.seller_group_id"
              }
            ]
          },
          {
            "claimId": "click-brand.channel_id",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.channel_id",
            "value": "search-brand",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.channel_id"
              }
            ]
          },
          {
            "claimId": "click-brand.event_at_ms",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.event_at_ms",
            "value": 1775646000000,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.event_at_ms"
              }
            ]
          },
          {
            "claimId": "click-brand.evidence_rank",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.evidence_rank",
            "value": 0,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.evidence_rank"
              }
            ]
          },
          {
            "claimId": "click-brand.marketing_touch",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.marketing_touch",
            "value": true,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.marketing_touch"
              }
            ]
          },
          {
            "claimId": "seller-report.property_id",
            "revision": "1",
            "subjectId": "seller-report",
            "predicateRef": "demo.cash-homebuyer:touchpoint.property_id",
            "value": "property-104",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-10T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "seller-report.property_id"
              }
            ]
          },
          {
            "claimId": "seller-report.opportunity_id",
            "revision": "1",
            "subjectId": "seller-report",
            "predicateRef": "demo.cash-homebuyer:touchpoint.opportunity_id",
            "value": "acquisition-204",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-10T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "seller-report.opportunity_id"
              }
            ]
          },
          {
            "claimId": "seller-report.seller_group_id",
            "revision": "1",
            "subjectId": "seller-report",
            "predicateRef": "demo.cash-homebuyer:touchpoint.seller_group_id",
            "value": "seller-group-14",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-10T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "seller-report.seller_group_id"
              }
            ]
          },
          {
            "claimId": "seller-report.channel_id",
            "revision": "1",
            "subjectId": "seller-report",
            "predicateRef": "demo.cash-homebuyer:touchpoint.channel_id",
            "value": "mail",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-10T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "seller-report.channel_id"
              }
            ]
          },
          {
            "claimId": "seller-report.event_at_ms",
            "revision": "1",
            "subjectId": "seller-report",
            "predicateRef": "demo.cash-homebuyer:touchpoint.event_at_ms",
            "value": 1774519200000,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-10T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "seller-report.event_at_ms"
              }
            ]
          },
          {
            "claimId": "seller-report.evidence_rank",
            "revision": "1",
            "subjectId": "seller-report",
            "predicateRef": "demo.cash-homebuyer:touchpoint.evidence_rank",
            "value": 1,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-10T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "seller-report.evidence_rank"
              },
              {
                "sourceRef": "synthetic://cash-homebuyer/review",
                "locator": "review-report-14"
              }
            ]
          },
          {
            "claimId": "seller-report.marketing_touch",
            "revision": "1",
            "subjectId": "seller-report",
            "predicateRef": "demo.cash-homebuyer:touchpoint.marketing_touch",
            "value": true,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-10T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "seller-report.marketing_touch"
              }
            ]
          }
        ]
      },
      "arguments": {
        "property": "property-104",
        "opportunity": "acquisition-204",
        "sellerGroup": "seller-group-14",
        "windowStart": 1772323200000,
        "qualificationAt": 1775746800000,
        "admittedRank": 1
      },
      "receipt": {
        "resultVersion": "t2k.graph-result.v1",
        "status": "complete",
        "value": [
          {
            "touchId": "seller-report",
            "channelId": "mail",
            "eventAtMs": 1774519200000,
            "evidenceRank": 1
          },
          {
            "touchId": "click-brand",
            "channelId": "search-brand",
            "eventAtMs": 1775646000000,
            "evidenceRank": 0
          },
          {
            "touchId": "click-nonbrand",
            "channelId": "search-nonbrand",
            "eventAtMs": 1775210400000,
            "evidenceRank": 0
          }
        ],
        "authorization": "not_authorized",
        "binding": {
          "runtimeVersion": "t2k.graph-runtime.v1",
          "functionHash": "c0aa7b713a989a49764860e270b776fcbd76416e07891e48a43920029a6aa40d",
          "ontologyResolutionHash": "c1f42aba94b41cc81e2ba87abe71a6263a91a15226cc24ee279c2183f576533f",
          "graphKey": "demo.cash-homebuyer",
          "asOf": "2026-06-15T23:59:59.000Z",
          "snapshotHash": "bc6b1f52aa2e00d3c398470e563577661c1fbb021d224d289bf61fc23cd6a9ae",
          "argumentsHash": "cd8690f832630034ecce3c948890d1e8f4ac84aebf4d3b80bcff6e7dcae3c8ab"
        },
        "evidence": [
          {
            "claimId": "click-brand.channel_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.channel_id"
              }
            ]
          },
          {
            "claimId": "click-brand.event_at_ms",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.event_at_ms"
              }
            ]
          },
          {
            "claimId": "click-brand.evidence_rank",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.evidence_rank"
              }
            ]
          },
          {
            "claimId": "click-brand.marketing_touch",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.marketing_touch"
              }
            ]
          },
          {
            "claimId": "click-brand.opportunity_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.opportunity_id"
              }
            ]
          },
          {
            "claimId": "click-brand.property_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.property_id"
              }
            ]
          },
          {
            "claimId": "click-brand.seller_group_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.seller_group_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.channel_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.channel_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.event_at_ms",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.event_at_ms"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.evidence_rank",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.evidence_rank"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.marketing_touch",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.marketing_touch"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.opportunity_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.opportunity_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.property_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.property_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.seller_group_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.seller_group_id"
              }
            ]
          },
          {
            "claimId": "mail-dispatch.event_at_ms",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/dispatch",
                "locator": "mail-dispatch.event_at_ms"
              }
            ]
          },
          {
            "claimId": "mail-dispatch.evidence_rank",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/dispatch",
                "locator": "mail-dispatch.evidence_rank"
              }
            ]
          },
          {
            "claimId": "mail-dispatch.marketing_touch",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/dispatch",
                "locator": "mail-dispatch.marketing_touch"
              }
            ]
          },
          {
            "claimId": "mail-dispatch.opportunity_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/dispatch",
                "locator": "mail-dispatch.opportunity_id"
              }
            ]
          },
          {
            "claimId": "mail-dispatch.property_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/dispatch",
                "locator": "mail-dispatch.property_id"
              }
            ]
          },
          {
            "claimId": "mail-dispatch.seller_group_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/dispatch",
                "locator": "mail-dispatch.seller_group_id"
              }
            ]
          },
          {
            "claimId": "seller-report.channel_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "seller-report.channel_id"
              }
            ]
          },
          {
            "claimId": "seller-report.event_at_ms",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "seller-report.event_at_ms"
              }
            ]
          },
          {
            "claimId": "seller-report.evidence_rank",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/review",
                "locator": "review-report-14"
              },
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "seller-report.evidence_rank"
              }
            ]
          },
          {
            "claimId": "seller-report.marketing_touch",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "seller-report.marketing_touch"
              }
            ]
          },
          {
            "claimId": "seller-report.opportunity_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "seller-report.opportunity_id"
              }
            ]
          },
          {
            "claimId": "seller-report.property_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "seller-report.property_id"
              }
            ]
          },
          {
            "claimId": "seller-report.seller_group_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "seller-report.seller_group_id"
              }
            ]
          }
        ],
        "supportingClaimIds": [
          "click-brand.channel_id",
          "click-brand.event_at_ms",
          "click-brand.evidence_rank",
          "click-brand.marketing_touch",
          "click-brand.opportunity_id",
          "click-brand.property_id",
          "click-brand.seller_group_id",
          "click-nonbrand.channel_id",
          "click-nonbrand.event_at_ms",
          "click-nonbrand.evidence_rank",
          "click-nonbrand.marketing_touch",
          "click-nonbrand.opportunity_id",
          "click-nonbrand.property_id",
          "click-nonbrand.seller_group_id",
          "seller-report.channel_id",
          "seller-report.event_at_ms",
          "seller-report.evidence_rank",
          "seller-report.marketing_touch",
          "seller-report.opportunity_id",
          "seller-report.property_id",
          "seller-report.seller_group_id"
        ],
        "derivations": [
          {
            "rowHash": "694a95e1c5a20b2c4181a07122a2a687fc67128c10a258b2430fa33c69ae9712",
            "claimIds": [
              "click-brand.channel_id",
              "click-brand.event_at_ms",
              "click-brand.evidence_rank",
              "click-brand.marketing_touch",
              "click-brand.opportunity_id",
              "click-brand.property_id",
              "click-brand.seller_group_id"
            ]
          },
          {
            "rowHash": "8a86502664d35468a58d6eb7e6e5c9be4dfb70904e624e59abad3daa6bd71e31",
            "claimIds": [
              "click-nonbrand.channel_id",
              "click-nonbrand.event_at_ms",
              "click-nonbrand.evidence_rank",
              "click-nonbrand.marketing_touch",
              "click-nonbrand.opportunity_id",
              "click-nonbrand.property_id",
              "click-nonbrand.seller_group_id"
            ]
          },
          {
            "rowHash": "89404f920fbc5a3df13379583fa5619c1d0f76b03492c6b6545b2ef20fe243e4",
            "claimIds": [
              "seller-report.channel_id",
              "seller-report.event_at_ms",
              "seller-report.evidence_rank",
              "seller-report.marketing_touch",
              "seller-report.opportunity_id",
              "seller-report.property_id",
              "seller-report.seller_group_id"
            ]
          }
        ],
        "exclusions": [
          {
            "stepId": "eligible",
            "bindings": {
              "touch": "mail-dispatch"
            },
            "reason": "Failed filter conditions: 3, 4",
            "claimIds": [
              "mail-dispatch.event_at_ms",
              "mail-dispatch.evidence_rank",
              "mail-dispatch.marketing_touch",
              "mail-dispatch.opportunity_id",
              "mail-dispatch.property_id",
              "mail-dispatch.seller_group_id"
            ]
          }
        ],
        "issues": [],
        "trace": [
          {
            "stepId": "touches",
            "operator": "lookup",
            "inputRows": 0,
            "outputRows": 4,
            "claimIds": [],
            "outputHash": "18bf8210a8c6e3f6d911da0a84661748727d8c00655a7acd42b8f46ee64c9577"
          },
          {
            "stepId": "eligible",
            "operator": "filter",
            "inputRows": 4,
            "outputRows": 3,
            "claimIds": [
              "click-brand.event_at_ms",
              "click-brand.evidence_rank",
              "click-brand.marketing_touch",
              "click-brand.opportunity_id",
              "click-brand.property_id",
              "click-brand.seller_group_id",
              "click-nonbrand.event_at_ms",
              "click-nonbrand.evidence_rank",
              "click-nonbrand.marketing_touch",
              "click-nonbrand.opportunity_id",
              "click-nonbrand.property_id",
              "click-nonbrand.seller_group_id",
              "mail-dispatch.event_at_ms",
              "mail-dispatch.evidence_rank",
              "mail-dispatch.marketing_touch",
              "mail-dispatch.opportunity_id",
              "mail-dispatch.property_id",
              "mail-dispatch.seller_group_id",
              "seller-report.event_at_ms",
              "seller-report.evidence_rank",
              "seller-report.marketing_touch",
              "seller-report.opportunity_id",
              "seller-report.property_id",
              "seller-report.seller_group_id"
            ],
            "outputHash": "e58f5c8261e312267159f64e9fb4dfea667bea5139c920e49b7097501ecb2d48"
          },
          {
            "stepId": "rows",
            "operator": "project",
            "inputRows": 3,
            "outputRows": 3,
            "claimIds": [
              "click-brand.channel_id",
              "click-brand.event_at_ms",
              "click-brand.evidence_rank",
              "click-nonbrand.channel_id",
              "click-nonbrand.event_at_ms",
              "click-nonbrand.evidence_rank",
              "seller-report.channel_id",
              "seller-report.event_at_ms",
              "seller-report.evidence_rank"
            ],
            "outputHash": "0ff7a8d7c470c05e91d9c8a4c2427f6b70534064d6c5bae2edc049644cb21b30"
          }
        ],
        "work": 164,
        "resultHash": "d9ffb5456a9022a12e80297a39172356d77d97beeeac2efea5d48616884922fc"
      }
    },
    "mail|reported|resale": {
      "graph": {
        "snapshotVersion": "t2k.reasoning-graph.v1",
        "graphKey": "demo.cash-homebuyer",
        "asOf": "2026-09-15T23:59:59Z",
        "ontologyResolutionHash": "c1f42aba94b41cc81e2ba87abe71a6263a91a15226cc24ee279c2183f576533f",
        "coverage": "complete",
        "entities": [
          {
            "entityId": "mail-dispatch",
            "typeRef": "demo.cash-homebuyer:touchpoint"
          },
          {
            "entityId": "click-nonbrand",
            "typeRef": "demo.cash-homebuyer:touchpoint"
          },
          {
            "entityId": "click-brand",
            "typeRef": "demo.cash-homebuyer:touchpoint"
          },
          {
            "entityId": "seller-report",
            "typeRef": "demo.cash-homebuyer:touchpoint"
          }
        ],
        "claims": [
          {
            "claimId": "mail-dispatch.property_id",
            "revision": "1",
            "subjectId": "mail-dispatch",
            "predicateRef": "demo.cash-homebuyer:touchpoint.property_id",
            "value": "property-104",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-03-25T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/dispatch",
                "locator": "mail-dispatch.property_id"
              }
            ]
          },
          {
            "claimId": "mail-dispatch.opportunity_id",
            "revision": "1",
            "subjectId": "mail-dispatch",
            "predicateRef": "demo.cash-homebuyer:touchpoint.opportunity_id",
            "value": "acquisition-204",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-03-25T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/dispatch",
                "locator": "mail-dispatch.opportunity_id"
              }
            ]
          },
          {
            "claimId": "mail-dispatch.seller_group_id",
            "revision": "1",
            "subjectId": "mail-dispatch",
            "predicateRef": "demo.cash-homebuyer:touchpoint.seller_group_id",
            "value": "seller-group-14",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-03-25T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/dispatch",
                "locator": "mail-dispatch.seller_group_id"
              }
            ]
          },
          {
            "claimId": "mail-dispatch.channel_id",
            "revision": "1",
            "subjectId": "mail-dispatch",
            "predicateRef": "demo.cash-homebuyer:touchpoint.channel_id",
            "value": "mail",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-03-25T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/dispatch",
                "locator": "mail-dispatch.channel_id"
              }
            ]
          },
          {
            "claimId": "mail-dispatch.event_at_ms",
            "revision": "1",
            "subjectId": "mail-dispatch",
            "predicateRef": "demo.cash-homebuyer:touchpoint.event_at_ms",
            "value": 1774432800000,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-03-25T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/dispatch",
                "locator": "mail-dispatch.event_at_ms"
              }
            ]
          },
          {
            "claimId": "mail-dispatch.evidence_rank",
            "revision": "1",
            "subjectId": "mail-dispatch",
            "predicateRef": "demo.cash-homebuyer:touchpoint.evidence_rank",
            "value": 2,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-03-25T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/dispatch",
                "locator": "mail-dispatch.evidence_rank"
              }
            ]
          },
          {
            "claimId": "mail-dispatch.marketing_touch",
            "revision": "1",
            "subjectId": "mail-dispatch",
            "predicateRef": "demo.cash-homebuyer:touchpoint.marketing_touch",
            "value": false,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-03-25T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/dispatch",
                "locator": "mail-dispatch.marketing_touch"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.property_id",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.property_id",
            "value": "property-104",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.property_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.opportunity_id",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.opportunity_id",
            "value": "acquisition-204",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.opportunity_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.seller_group_id",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.seller_group_id",
            "value": "seller-group-14",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.seller_group_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.channel_id",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.channel_id",
            "value": "search-nonbrand",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.channel_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.event_at_ms",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.event_at_ms",
            "value": 1775210400000,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.event_at_ms"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.evidence_rank",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.evidence_rank",
            "value": 0,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.evidence_rank"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.marketing_touch",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.marketing_touch",
            "value": true,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.marketing_touch"
              }
            ]
          },
          {
            "claimId": "click-brand.property_id",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.property_id",
            "value": "property-104",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.property_id"
              }
            ]
          },
          {
            "claimId": "click-brand.opportunity_id",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.opportunity_id",
            "value": "acquisition-204",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.opportunity_id"
              }
            ]
          },
          {
            "claimId": "click-brand.seller_group_id",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.seller_group_id",
            "value": "seller-group-14",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.seller_group_id"
              }
            ]
          },
          {
            "claimId": "click-brand.channel_id",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.channel_id",
            "value": "search-brand",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.channel_id"
              }
            ]
          },
          {
            "claimId": "click-brand.event_at_ms",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.event_at_ms",
            "value": 1775646000000,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.event_at_ms"
              }
            ]
          },
          {
            "claimId": "click-brand.evidence_rank",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.evidence_rank",
            "value": 0,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.evidence_rank"
              }
            ]
          },
          {
            "claimId": "click-brand.marketing_touch",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.marketing_touch",
            "value": true,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.marketing_touch"
              }
            ]
          },
          {
            "claimId": "seller-report.property_id",
            "revision": "1",
            "subjectId": "seller-report",
            "predicateRef": "demo.cash-homebuyer:touchpoint.property_id",
            "value": "property-104",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-10T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "seller-report.property_id"
              }
            ]
          },
          {
            "claimId": "seller-report.opportunity_id",
            "revision": "1",
            "subjectId": "seller-report",
            "predicateRef": "demo.cash-homebuyer:touchpoint.opportunity_id",
            "value": "acquisition-204",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-10T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "seller-report.opportunity_id"
              }
            ]
          },
          {
            "claimId": "seller-report.seller_group_id",
            "revision": "1",
            "subjectId": "seller-report",
            "predicateRef": "demo.cash-homebuyer:touchpoint.seller_group_id",
            "value": "seller-group-14",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-10T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "seller-report.seller_group_id"
              }
            ]
          },
          {
            "claimId": "seller-report.channel_id",
            "revision": "1",
            "subjectId": "seller-report",
            "predicateRef": "demo.cash-homebuyer:touchpoint.channel_id",
            "value": "mail",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-10T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "seller-report.channel_id"
              }
            ]
          },
          {
            "claimId": "seller-report.event_at_ms",
            "revision": "1",
            "subjectId": "seller-report",
            "predicateRef": "demo.cash-homebuyer:touchpoint.event_at_ms",
            "value": 1774519200000,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-10T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "seller-report.event_at_ms"
              }
            ]
          },
          {
            "claimId": "seller-report.evidence_rank",
            "revision": "1",
            "subjectId": "seller-report",
            "predicateRef": "demo.cash-homebuyer:touchpoint.evidence_rank",
            "value": 1,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-10T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "seller-report.evidence_rank"
              },
              {
                "sourceRef": "synthetic://cash-homebuyer/review",
                "locator": "review-report-14"
              }
            ]
          },
          {
            "claimId": "seller-report.marketing_touch",
            "revision": "1",
            "subjectId": "seller-report",
            "predicateRef": "demo.cash-homebuyer:touchpoint.marketing_touch",
            "value": true,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-10T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "seller-report.marketing_touch"
              }
            ]
          }
        ]
      },
      "arguments": {
        "property": "property-104",
        "opportunity": "acquisition-204",
        "sellerGroup": "seller-group-14",
        "windowStart": 1772323200000,
        "qualificationAt": 1775746800000,
        "admittedRank": 1
      },
      "receipt": {
        "resultVersion": "t2k.graph-result.v1",
        "status": "complete",
        "value": [
          {
            "touchId": "seller-report",
            "channelId": "mail",
            "eventAtMs": 1774519200000,
            "evidenceRank": 1
          },
          {
            "touchId": "click-brand",
            "channelId": "search-brand",
            "eventAtMs": 1775646000000,
            "evidenceRank": 0
          },
          {
            "touchId": "click-nonbrand",
            "channelId": "search-nonbrand",
            "eventAtMs": 1775210400000,
            "evidenceRank": 0
          }
        ],
        "authorization": "not_authorized",
        "binding": {
          "runtimeVersion": "t2k.graph-runtime.v1",
          "functionHash": "c0aa7b713a989a49764860e270b776fcbd76416e07891e48a43920029a6aa40d",
          "ontologyResolutionHash": "c1f42aba94b41cc81e2ba87abe71a6263a91a15226cc24ee279c2183f576533f",
          "graphKey": "demo.cash-homebuyer",
          "asOf": "2026-09-15T23:59:59.000Z",
          "snapshotHash": "34761aaa4762a57b7dbe2e2f86a800c22c91028f0442cadf5c020d32353d0ce2",
          "argumentsHash": "cd8690f832630034ecce3c948890d1e8f4ac84aebf4d3b80bcff6e7dcae3c8ab"
        },
        "evidence": [
          {
            "claimId": "click-brand.channel_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.channel_id"
              }
            ]
          },
          {
            "claimId": "click-brand.event_at_ms",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.event_at_ms"
              }
            ]
          },
          {
            "claimId": "click-brand.evidence_rank",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.evidence_rank"
              }
            ]
          },
          {
            "claimId": "click-brand.marketing_touch",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.marketing_touch"
              }
            ]
          },
          {
            "claimId": "click-brand.opportunity_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.opportunity_id"
              }
            ]
          },
          {
            "claimId": "click-brand.property_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.property_id"
              }
            ]
          },
          {
            "claimId": "click-brand.seller_group_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.seller_group_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.channel_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.channel_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.event_at_ms",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.event_at_ms"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.evidence_rank",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.evidence_rank"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.marketing_touch",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.marketing_touch"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.opportunity_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.opportunity_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.property_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.property_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.seller_group_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.seller_group_id"
              }
            ]
          },
          {
            "claimId": "mail-dispatch.event_at_ms",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/dispatch",
                "locator": "mail-dispatch.event_at_ms"
              }
            ]
          },
          {
            "claimId": "mail-dispatch.evidence_rank",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/dispatch",
                "locator": "mail-dispatch.evidence_rank"
              }
            ]
          },
          {
            "claimId": "mail-dispatch.marketing_touch",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/dispatch",
                "locator": "mail-dispatch.marketing_touch"
              }
            ]
          },
          {
            "claimId": "mail-dispatch.opportunity_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/dispatch",
                "locator": "mail-dispatch.opportunity_id"
              }
            ]
          },
          {
            "claimId": "mail-dispatch.property_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/dispatch",
                "locator": "mail-dispatch.property_id"
              }
            ]
          },
          {
            "claimId": "mail-dispatch.seller_group_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/dispatch",
                "locator": "mail-dispatch.seller_group_id"
              }
            ]
          },
          {
            "claimId": "seller-report.channel_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "seller-report.channel_id"
              }
            ]
          },
          {
            "claimId": "seller-report.event_at_ms",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "seller-report.event_at_ms"
              }
            ]
          },
          {
            "claimId": "seller-report.evidence_rank",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/review",
                "locator": "review-report-14"
              },
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "seller-report.evidence_rank"
              }
            ]
          },
          {
            "claimId": "seller-report.marketing_touch",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "seller-report.marketing_touch"
              }
            ]
          },
          {
            "claimId": "seller-report.opportunity_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "seller-report.opportunity_id"
              }
            ]
          },
          {
            "claimId": "seller-report.property_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "seller-report.property_id"
              }
            ]
          },
          {
            "claimId": "seller-report.seller_group_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "seller-report.seller_group_id"
              }
            ]
          }
        ],
        "supportingClaimIds": [
          "click-brand.channel_id",
          "click-brand.event_at_ms",
          "click-brand.evidence_rank",
          "click-brand.marketing_touch",
          "click-brand.opportunity_id",
          "click-brand.property_id",
          "click-brand.seller_group_id",
          "click-nonbrand.channel_id",
          "click-nonbrand.event_at_ms",
          "click-nonbrand.evidence_rank",
          "click-nonbrand.marketing_touch",
          "click-nonbrand.opportunity_id",
          "click-nonbrand.property_id",
          "click-nonbrand.seller_group_id",
          "seller-report.channel_id",
          "seller-report.event_at_ms",
          "seller-report.evidence_rank",
          "seller-report.marketing_touch",
          "seller-report.opportunity_id",
          "seller-report.property_id",
          "seller-report.seller_group_id"
        ],
        "derivations": [
          {
            "rowHash": "694a95e1c5a20b2c4181a07122a2a687fc67128c10a258b2430fa33c69ae9712",
            "claimIds": [
              "click-brand.channel_id",
              "click-brand.event_at_ms",
              "click-brand.evidence_rank",
              "click-brand.marketing_touch",
              "click-brand.opportunity_id",
              "click-brand.property_id",
              "click-brand.seller_group_id"
            ]
          },
          {
            "rowHash": "8a86502664d35468a58d6eb7e6e5c9be4dfb70904e624e59abad3daa6bd71e31",
            "claimIds": [
              "click-nonbrand.channel_id",
              "click-nonbrand.event_at_ms",
              "click-nonbrand.evidence_rank",
              "click-nonbrand.marketing_touch",
              "click-nonbrand.opportunity_id",
              "click-nonbrand.property_id",
              "click-nonbrand.seller_group_id"
            ]
          },
          {
            "rowHash": "89404f920fbc5a3df13379583fa5619c1d0f76b03492c6b6545b2ef20fe243e4",
            "claimIds": [
              "seller-report.channel_id",
              "seller-report.event_at_ms",
              "seller-report.evidence_rank",
              "seller-report.marketing_touch",
              "seller-report.opportunity_id",
              "seller-report.property_id",
              "seller-report.seller_group_id"
            ]
          }
        ],
        "exclusions": [
          {
            "stepId": "eligible",
            "bindings": {
              "touch": "mail-dispatch"
            },
            "reason": "Failed filter conditions: 3, 4",
            "claimIds": [
              "mail-dispatch.event_at_ms",
              "mail-dispatch.evidence_rank",
              "mail-dispatch.marketing_touch",
              "mail-dispatch.opportunity_id",
              "mail-dispatch.property_id",
              "mail-dispatch.seller_group_id"
            ]
          }
        ],
        "issues": [],
        "trace": [
          {
            "stepId": "touches",
            "operator": "lookup",
            "inputRows": 0,
            "outputRows": 4,
            "claimIds": [],
            "outputHash": "18bf8210a8c6e3f6d911da0a84661748727d8c00655a7acd42b8f46ee64c9577"
          },
          {
            "stepId": "eligible",
            "operator": "filter",
            "inputRows": 4,
            "outputRows": 3,
            "claimIds": [
              "click-brand.event_at_ms",
              "click-brand.evidence_rank",
              "click-brand.marketing_touch",
              "click-brand.opportunity_id",
              "click-brand.property_id",
              "click-brand.seller_group_id",
              "click-nonbrand.event_at_ms",
              "click-nonbrand.evidence_rank",
              "click-nonbrand.marketing_touch",
              "click-nonbrand.opportunity_id",
              "click-nonbrand.property_id",
              "click-nonbrand.seller_group_id",
              "mail-dispatch.event_at_ms",
              "mail-dispatch.evidence_rank",
              "mail-dispatch.marketing_touch",
              "mail-dispatch.opportunity_id",
              "mail-dispatch.property_id",
              "mail-dispatch.seller_group_id",
              "seller-report.event_at_ms",
              "seller-report.evidence_rank",
              "seller-report.marketing_touch",
              "seller-report.opportunity_id",
              "seller-report.property_id",
              "seller-report.seller_group_id"
            ],
            "outputHash": "e58f5c8261e312267159f64e9fb4dfea667bea5139c920e49b7097501ecb2d48"
          },
          {
            "stepId": "rows",
            "operator": "project",
            "inputRows": 3,
            "outputRows": 3,
            "claimIds": [
              "click-brand.channel_id",
              "click-brand.event_at_ms",
              "click-brand.evidence_rank",
              "click-nonbrand.channel_id",
              "click-nonbrand.event_at_ms",
              "click-nonbrand.evidence_rank",
              "seller-report.channel_id",
              "seller-report.event_at_ms",
              "seller-report.evidence_rank"
            ],
            "outputHash": "0ff7a8d7c470c05e91d9c8a4c2427f6b70534064d6c5bae2edc049644cb21b30"
          }
        ],
        "work": 164,
        "resultHash": "de639dad834f8d89eafb36465958d13648f22cea0b7cf1deae148d9e64e6ab5c"
      }
    },
    "duplicate|observed|contract": {
      "graph": {
        "snapshotVersion": "t2k.reasoning-graph.v1",
        "graphKey": "demo.cash-homebuyer",
        "asOf": "2026-05-15T23:59:59Z",
        "ontologyResolutionHash": "c1f42aba94b41cc81e2ba87abe71a6263a91a15226cc24ee279c2183f576533f",
        "coverage": "complete",
        "entities": [
          {
            "entityId": "click-nonbrand",
            "typeRef": "demo.cash-homebuyer:touchpoint"
          },
          {
            "entityId": "click-brand",
            "typeRef": "demo.cash-homebuyer:touchpoint"
          }
        ],
        "claims": [
          {
            "claimId": "click-nonbrand.property_id",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.property_id",
            "value": "property-104",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.property_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.opportunity_id",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.opportunity_id",
            "value": "acquisition-204",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.opportunity_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.seller_group_id",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.seller_group_id",
            "value": "seller-group-14",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.seller_group_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.channel_id",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.channel_id",
            "value": "search-nonbrand",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.channel_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.event_at_ms",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.event_at_ms",
            "value": 1775210400000,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.event_at_ms"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.evidence_rank",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.evidence_rank",
            "value": 0,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.evidence_rank"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.marketing_touch",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.marketing_touch",
            "value": true,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.marketing_touch"
              }
            ]
          },
          {
            "claimId": "click-brand.property_id",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.property_id",
            "value": "property-104",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.property_id"
              }
            ]
          },
          {
            "claimId": "click-brand.opportunity_id",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.opportunity_id",
            "value": "acquisition-204",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.opportunity_id"
              }
            ]
          },
          {
            "claimId": "click-brand.seller_group_id",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.seller_group_id",
            "value": "seller-group-14",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.seller_group_id"
              }
            ]
          },
          {
            "claimId": "click-brand.channel_id",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.channel_id",
            "value": "search-brand",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.channel_id"
              }
            ]
          },
          {
            "claimId": "click-brand.event_at_ms",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.event_at_ms",
            "value": 1775646000000,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.event_at_ms"
              }
            ]
          },
          {
            "claimId": "click-brand.evidence_rank",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.evidence_rank",
            "value": 0,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.evidence_rank"
              }
            ]
          },
          {
            "claimId": "click-brand.marketing_touch",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.marketing_touch",
            "value": true,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.marketing_touch"
              }
            ]
          }
        ]
      },
      "arguments": {
        "property": "property-104",
        "opportunity": "acquisition-204",
        "sellerGroup": "seller-group-14",
        "windowStart": 1772323200000,
        "qualificationAt": 1775746800000,
        "admittedRank": 0
      },
      "receipt": {
        "resultVersion": "t2k.graph-result.v1",
        "status": "complete",
        "value": [
          {
            "touchId": "click-brand",
            "channelId": "search-brand",
            "eventAtMs": 1775646000000,
            "evidenceRank": 0
          },
          {
            "touchId": "click-nonbrand",
            "channelId": "search-nonbrand",
            "eventAtMs": 1775210400000,
            "evidenceRank": 0
          }
        ],
        "authorization": "not_authorized",
        "binding": {
          "runtimeVersion": "t2k.graph-runtime.v1",
          "functionHash": "c0aa7b713a989a49764860e270b776fcbd76416e07891e48a43920029a6aa40d",
          "ontologyResolutionHash": "c1f42aba94b41cc81e2ba87abe71a6263a91a15226cc24ee279c2183f576533f",
          "graphKey": "demo.cash-homebuyer",
          "asOf": "2026-05-15T23:59:59.000Z",
          "snapshotHash": "ce0d1ea1084615732b662e32ce6b69ae77ea2a75405f6d796be27a207e8b6267",
          "argumentsHash": "42e0e7d41d126edcc85e8694a0a6c610ab82f2484d117738872465ddbc3c08ac"
        },
        "evidence": [
          {
            "claimId": "click-brand.channel_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.channel_id"
              }
            ]
          },
          {
            "claimId": "click-brand.event_at_ms",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.event_at_ms"
              }
            ]
          },
          {
            "claimId": "click-brand.evidence_rank",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.evidence_rank"
              }
            ]
          },
          {
            "claimId": "click-brand.marketing_touch",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.marketing_touch"
              }
            ]
          },
          {
            "claimId": "click-brand.opportunity_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.opportunity_id"
              }
            ]
          },
          {
            "claimId": "click-brand.property_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.property_id"
              }
            ]
          },
          {
            "claimId": "click-brand.seller_group_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.seller_group_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.channel_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.channel_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.event_at_ms",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.event_at_ms"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.evidence_rank",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.evidence_rank"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.marketing_touch",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.marketing_touch"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.opportunity_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.opportunity_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.property_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.property_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.seller_group_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.seller_group_id"
              }
            ]
          }
        ],
        "supportingClaimIds": [
          "click-brand.channel_id",
          "click-brand.event_at_ms",
          "click-brand.evidence_rank",
          "click-brand.marketing_touch",
          "click-brand.opportunity_id",
          "click-brand.property_id",
          "click-brand.seller_group_id",
          "click-nonbrand.channel_id",
          "click-nonbrand.event_at_ms",
          "click-nonbrand.evidence_rank",
          "click-nonbrand.marketing_touch",
          "click-nonbrand.opportunity_id",
          "click-nonbrand.property_id",
          "click-nonbrand.seller_group_id"
        ],
        "derivations": [
          {
            "rowHash": "694a95e1c5a20b2c4181a07122a2a687fc67128c10a258b2430fa33c69ae9712",
            "claimIds": [
              "click-brand.channel_id",
              "click-brand.event_at_ms",
              "click-brand.evidence_rank",
              "click-brand.marketing_touch",
              "click-brand.opportunity_id",
              "click-brand.property_id",
              "click-brand.seller_group_id"
            ]
          },
          {
            "rowHash": "8a86502664d35468a58d6eb7e6e5c9be4dfb70904e624e59abad3daa6bd71e31",
            "claimIds": [
              "click-nonbrand.channel_id",
              "click-nonbrand.event_at_ms",
              "click-nonbrand.evidence_rank",
              "click-nonbrand.marketing_touch",
              "click-nonbrand.opportunity_id",
              "click-nonbrand.property_id",
              "click-nonbrand.seller_group_id"
            ]
          }
        ],
        "exclusions": [],
        "issues": [],
        "trace": [
          {
            "stepId": "touches",
            "operator": "lookup",
            "inputRows": 0,
            "outputRows": 2,
            "claimIds": [],
            "outputHash": "b5e54beeeb9e33347b6c6703bc8db26cc46e26ee22225bf368b569bf7d8f21c2"
          },
          {
            "stepId": "eligible",
            "operator": "filter",
            "inputRows": 2,
            "outputRows": 2,
            "claimIds": [
              "click-brand.event_at_ms",
              "click-brand.evidence_rank",
              "click-brand.marketing_touch",
              "click-brand.opportunity_id",
              "click-brand.property_id",
              "click-brand.seller_group_id",
              "click-nonbrand.event_at_ms",
              "click-nonbrand.evidence_rank",
              "click-nonbrand.marketing_touch",
              "click-nonbrand.opportunity_id",
              "click-nonbrand.property_id",
              "click-nonbrand.seller_group_id"
            ],
            "outputHash": "8864bff38933853cc1e817ba21ea80f93b0b754a138347c03d066fddef7ec24b"
          },
          {
            "stepId": "rows",
            "operator": "project",
            "inputRows": 2,
            "outputRows": 2,
            "claimIds": [
              "click-brand.channel_id",
              "click-brand.event_at_ms",
              "click-brand.evidence_rank",
              "click-nonbrand.channel_id",
              "click-nonbrand.event_at_ms",
              "click-nonbrand.evidence_rank"
            ],
            "outputHash": "078dbc75a2ac1b1ea6e98b028bdb1c2655ebf9eac5681b4b98c9e64ac4242bac"
          }
        ],
        "work": 87,
        "resultHash": "37ad81418ecafaad100396e0fa2dfa2e2d6edb6daf02b903eaa808e00e17ec09"
      }
    },
    "duplicate|observed|acquired": {
      "graph": {
        "snapshotVersion": "t2k.reasoning-graph.v1",
        "graphKey": "demo.cash-homebuyer",
        "asOf": "2026-06-15T23:59:59Z",
        "ontologyResolutionHash": "c1f42aba94b41cc81e2ba87abe71a6263a91a15226cc24ee279c2183f576533f",
        "coverage": "complete",
        "entities": [
          {
            "entityId": "click-nonbrand",
            "typeRef": "demo.cash-homebuyer:touchpoint"
          },
          {
            "entityId": "click-brand",
            "typeRef": "demo.cash-homebuyer:touchpoint"
          }
        ],
        "claims": [
          {
            "claimId": "click-nonbrand.property_id",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.property_id",
            "value": "property-104",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.property_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.opportunity_id",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.opportunity_id",
            "value": "acquisition-204",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.opportunity_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.seller_group_id",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.seller_group_id",
            "value": "seller-group-14",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.seller_group_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.channel_id",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.channel_id",
            "value": "search-nonbrand",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.channel_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.event_at_ms",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.event_at_ms",
            "value": 1775210400000,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.event_at_ms"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.evidence_rank",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.evidence_rank",
            "value": 0,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.evidence_rank"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.marketing_touch",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.marketing_touch",
            "value": true,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.marketing_touch"
              }
            ]
          },
          {
            "claimId": "click-brand.property_id",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.property_id",
            "value": "property-104",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.property_id"
              }
            ]
          },
          {
            "claimId": "click-brand.opportunity_id",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.opportunity_id",
            "value": "acquisition-204",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.opportunity_id"
              }
            ]
          },
          {
            "claimId": "click-brand.seller_group_id",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.seller_group_id",
            "value": "seller-group-14",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.seller_group_id"
              }
            ]
          },
          {
            "claimId": "click-brand.channel_id",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.channel_id",
            "value": "search-brand",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.channel_id"
              }
            ]
          },
          {
            "claimId": "click-brand.event_at_ms",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.event_at_ms",
            "value": 1775646000000,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.event_at_ms"
              }
            ]
          },
          {
            "claimId": "click-brand.evidence_rank",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.evidence_rank",
            "value": 0,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.evidence_rank"
              }
            ]
          },
          {
            "claimId": "click-brand.marketing_touch",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.marketing_touch",
            "value": true,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.marketing_touch"
              }
            ]
          }
        ]
      },
      "arguments": {
        "property": "property-104",
        "opportunity": "acquisition-204",
        "sellerGroup": "seller-group-14",
        "windowStart": 1772323200000,
        "qualificationAt": 1775746800000,
        "admittedRank": 0
      },
      "receipt": {
        "resultVersion": "t2k.graph-result.v1",
        "status": "complete",
        "value": [
          {
            "touchId": "click-brand",
            "channelId": "search-brand",
            "eventAtMs": 1775646000000,
            "evidenceRank": 0
          },
          {
            "touchId": "click-nonbrand",
            "channelId": "search-nonbrand",
            "eventAtMs": 1775210400000,
            "evidenceRank": 0
          }
        ],
        "authorization": "not_authorized",
        "binding": {
          "runtimeVersion": "t2k.graph-runtime.v1",
          "functionHash": "c0aa7b713a989a49764860e270b776fcbd76416e07891e48a43920029a6aa40d",
          "ontologyResolutionHash": "c1f42aba94b41cc81e2ba87abe71a6263a91a15226cc24ee279c2183f576533f",
          "graphKey": "demo.cash-homebuyer",
          "asOf": "2026-06-15T23:59:59.000Z",
          "snapshotHash": "8614b18e51d70dfc8c55b9f4989358baf3b75ba545043f35d1ca34aab74403ae",
          "argumentsHash": "42e0e7d41d126edcc85e8694a0a6c610ab82f2484d117738872465ddbc3c08ac"
        },
        "evidence": [
          {
            "claimId": "click-brand.channel_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.channel_id"
              }
            ]
          },
          {
            "claimId": "click-brand.event_at_ms",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.event_at_ms"
              }
            ]
          },
          {
            "claimId": "click-brand.evidence_rank",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.evidence_rank"
              }
            ]
          },
          {
            "claimId": "click-brand.marketing_touch",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.marketing_touch"
              }
            ]
          },
          {
            "claimId": "click-brand.opportunity_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.opportunity_id"
              }
            ]
          },
          {
            "claimId": "click-brand.property_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.property_id"
              }
            ]
          },
          {
            "claimId": "click-brand.seller_group_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.seller_group_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.channel_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.channel_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.event_at_ms",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.event_at_ms"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.evidence_rank",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.evidence_rank"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.marketing_touch",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.marketing_touch"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.opportunity_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.opportunity_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.property_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.property_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.seller_group_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.seller_group_id"
              }
            ]
          }
        ],
        "supportingClaimIds": [
          "click-brand.channel_id",
          "click-brand.event_at_ms",
          "click-brand.evidence_rank",
          "click-brand.marketing_touch",
          "click-brand.opportunity_id",
          "click-brand.property_id",
          "click-brand.seller_group_id",
          "click-nonbrand.channel_id",
          "click-nonbrand.event_at_ms",
          "click-nonbrand.evidence_rank",
          "click-nonbrand.marketing_touch",
          "click-nonbrand.opportunity_id",
          "click-nonbrand.property_id",
          "click-nonbrand.seller_group_id"
        ],
        "derivations": [
          {
            "rowHash": "694a95e1c5a20b2c4181a07122a2a687fc67128c10a258b2430fa33c69ae9712",
            "claimIds": [
              "click-brand.channel_id",
              "click-brand.event_at_ms",
              "click-brand.evidence_rank",
              "click-brand.marketing_touch",
              "click-brand.opportunity_id",
              "click-brand.property_id",
              "click-brand.seller_group_id"
            ]
          },
          {
            "rowHash": "8a86502664d35468a58d6eb7e6e5c9be4dfb70904e624e59abad3daa6bd71e31",
            "claimIds": [
              "click-nonbrand.channel_id",
              "click-nonbrand.event_at_ms",
              "click-nonbrand.evidence_rank",
              "click-nonbrand.marketing_touch",
              "click-nonbrand.opportunity_id",
              "click-nonbrand.property_id",
              "click-nonbrand.seller_group_id"
            ]
          }
        ],
        "exclusions": [],
        "issues": [],
        "trace": [
          {
            "stepId": "touches",
            "operator": "lookup",
            "inputRows": 0,
            "outputRows": 2,
            "claimIds": [],
            "outputHash": "b5e54beeeb9e33347b6c6703bc8db26cc46e26ee22225bf368b569bf7d8f21c2"
          },
          {
            "stepId": "eligible",
            "operator": "filter",
            "inputRows": 2,
            "outputRows": 2,
            "claimIds": [
              "click-brand.event_at_ms",
              "click-brand.evidence_rank",
              "click-brand.marketing_touch",
              "click-brand.opportunity_id",
              "click-brand.property_id",
              "click-brand.seller_group_id",
              "click-nonbrand.event_at_ms",
              "click-nonbrand.evidence_rank",
              "click-nonbrand.marketing_touch",
              "click-nonbrand.opportunity_id",
              "click-nonbrand.property_id",
              "click-nonbrand.seller_group_id"
            ],
            "outputHash": "8864bff38933853cc1e817ba21ea80f93b0b754a138347c03d066fddef7ec24b"
          },
          {
            "stepId": "rows",
            "operator": "project",
            "inputRows": 2,
            "outputRows": 2,
            "claimIds": [
              "click-brand.channel_id",
              "click-brand.event_at_ms",
              "click-brand.evidence_rank",
              "click-nonbrand.channel_id",
              "click-nonbrand.event_at_ms",
              "click-nonbrand.evidence_rank"
            ],
            "outputHash": "078dbc75a2ac1b1ea6e98b028bdb1c2655ebf9eac5681b4b98c9e64ac4242bac"
          }
        ],
        "work": 87,
        "resultHash": "af68bdca86f0c3b18dd21c7273bee72ce5087dafd94f15466f5c99eacb111798"
      }
    },
    "duplicate|observed|resale": {
      "graph": {
        "snapshotVersion": "t2k.reasoning-graph.v1",
        "graphKey": "demo.cash-homebuyer",
        "asOf": "2026-09-15T23:59:59Z",
        "ontologyResolutionHash": "c1f42aba94b41cc81e2ba87abe71a6263a91a15226cc24ee279c2183f576533f",
        "coverage": "complete",
        "entities": [
          {
            "entityId": "click-nonbrand",
            "typeRef": "demo.cash-homebuyer:touchpoint"
          },
          {
            "entityId": "click-brand",
            "typeRef": "demo.cash-homebuyer:touchpoint"
          }
        ],
        "claims": [
          {
            "claimId": "click-nonbrand.property_id",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.property_id",
            "value": "property-104",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.property_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.opportunity_id",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.opportunity_id",
            "value": "acquisition-204",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.opportunity_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.seller_group_id",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.seller_group_id",
            "value": "seller-group-14",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.seller_group_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.channel_id",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.channel_id",
            "value": "search-nonbrand",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.channel_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.event_at_ms",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.event_at_ms",
            "value": 1775210400000,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.event_at_ms"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.evidence_rank",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.evidence_rank",
            "value": 0,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.evidence_rank"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.marketing_touch",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.marketing_touch",
            "value": true,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.marketing_touch"
              }
            ]
          },
          {
            "claimId": "click-brand.property_id",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.property_id",
            "value": "property-104",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.property_id"
              }
            ]
          },
          {
            "claimId": "click-brand.opportunity_id",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.opportunity_id",
            "value": "acquisition-204",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.opportunity_id"
              }
            ]
          },
          {
            "claimId": "click-brand.seller_group_id",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.seller_group_id",
            "value": "seller-group-14",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.seller_group_id"
              }
            ]
          },
          {
            "claimId": "click-brand.channel_id",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.channel_id",
            "value": "search-brand",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.channel_id"
              }
            ]
          },
          {
            "claimId": "click-brand.event_at_ms",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.event_at_ms",
            "value": 1775646000000,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.event_at_ms"
              }
            ]
          },
          {
            "claimId": "click-brand.evidence_rank",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.evidence_rank",
            "value": 0,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.evidence_rank"
              }
            ]
          },
          {
            "claimId": "click-brand.marketing_touch",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.marketing_touch",
            "value": true,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.marketing_touch"
              }
            ]
          }
        ]
      },
      "arguments": {
        "property": "property-104",
        "opportunity": "acquisition-204",
        "sellerGroup": "seller-group-14",
        "windowStart": 1772323200000,
        "qualificationAt": 1775746800000,
        "admittedRank": 0
      },
      "receipt": {
        "resultVersion": "t2k.graph-result.v1",
        "status": "complete",
        "value": [
          {
            "touchId": "click-brand",
            "channelId": "search-brand",
            "eventAtMs": 1775646000000,
            "evidenceRank": 0
          },
          {
            "touchId": "click-nonbrand",
            "channelId": "search-nonbrand",
            "eventAtMs": 1775210400000,
            "evidenceRank": 0
          }
        ],
        "authorization": "not_authorized",
        "binding": {
          "runtimeVersion": "t2k.graph-runtime.v1",
          "functionHash": "c0aa7b713a989a49764860e270b776fcbd76416e07891e48a43920029a6aa40d",
          "ontologyResolutionHash": "c1f42aba94b41cc81e2ba87abe71a6263a91a15226cc24ee279c2183f576533f",
          "graphKey": "demo.cash-homebuyer",
          "asOf": "2026-09-15T23:59:59.000Z",
          "snapshotHash": "1812bf10a3af3876d044992b2c96a4b9d6abfe5b128ffff513334ce269884dc8",
          "argumentsHash": "42e0e7d41d126edcc85e8694a0a6c610ab82f2484d117738872465ddbc3c08ac"
        },
        "evidence": [
          {
            "claimId": "click-brand.channel_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.channel_id"
              }
            ]
          },
          {
            "claimId": "click-brand.event_at_ms",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.event_at_ms"
              }
            ]
          },
          {
            "claimId": "click-brand.evidence_rank",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.evidence_rank"
              }
            ]
          },
          {
            "claimId": "click-brand.marketing_touch",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.marketing_touch"
              }
            ]
          },
          {
            "claimId": "click-brand.opportunity_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.opportunity_id"
              }
            ]
          },
          {
            "claimId": "click-brand.property_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.property_id"
              }
            ]
          },
          {
            "claimId": "click-brand.seller_group_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.seller_group_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.channel_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.channel_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.event_at_ms",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.event_at_ms"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.evidence_rank",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.evidence_rank"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.marketing_touch",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.marketing_touch"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.opportunity_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.opportunity_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.property_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.property_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.seller_group_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.seller_group_id"
              }
            ]
          }
        ],
        "supportingClaimIds": [
          "click-brand.channel_id",
          "click-brand.event_at_ms",
          "click-brand.evidence_rank",
          "click-brand.marketing_touch",
          "click-brand.opportunity_id",
          "click-brand.property_id",
          "click-brand.seller_group_id",
          "click-nonbrand.channel_id",
          "click-nonbrand.event_at_ms",
          "click-nonbrand.evidence_rank",
          "click-nonbrand.marketing_touch",
          "click-nonbrand.opportunity_id",
          "click-nonbrand.property_id",
          "click-nonbrand.seller_group_id"
        ],
        "derivations": [
          {
            "rowHash": "694a95e1c5a20b2c4181a07122a2a687fc67128c10a258b2430fa33c69ae9712",
            "claimIds": [
              "click-brand.channel_id",
              "click-brand.event_at_ms",
              "click-brand.evidence_rank",
              "click-brand.marketing_touch",
              "click-brand.opportunity_id",
              "click-brand.property_id",
              "click-brand.seller_group_id"
            ]
          },
          {
            "rowHash": "8a86502664d35468a58d6eb7e6e5c9be4dfb70904e624e59abad3daa6bd71e31",
            "claimIds": [
              "click-nonbrand.channel_id",
              "click-nonbrand.event_at_ms",
              "click-nonbrand.evidence_rank",
              "click-nonbrand.marketing_touch",
              "click-nonbrand.opportunity_id",
              "click-nonbrand.property_id",
              "click-nonbrand.seller_group_id"
            ]
          }
        ],
        "exclusions": [],
        "issues": [],
        "trace": [
          {
            "stepId": "touches",
            "operator": "lookup",
            "inputRows": 0,
            "outputRows": 2,
            "claimIds": [],
            "outputHash": "b5e54beeeb9e33347b6c6703bc8db26cc46e26ee22225bf368b569bf7d8f21c2"
          },
          {
            "stepId": "eligible",
            "operator": "filter",
            "inputRows": 2,
            "outputRows": 2,
            "claimIds": [
              "click-brand.event_at_ms",
              "click-brand.evidence_rank",
              "click-brand.marketing_touch",
              "click-brand.opportunity_id",
              "click-brand.property_id",
              "click-brand.seller_group_id",
              "click-nonbrand.event_at_ms",
              "click-nonbrand.evidence_rank",
              "click-nonbrand.marketing_touch",
              "click-nonbrand.opportunity_id",
              "click-nonbrand.property_id",
              "click-nonbrand.seller_group_id"
            ],
            "outputHash": "8864bff38933853cc1e817ba21ea80f93b0b754a138347c03d066fddef7ec24b"
          },
          {
            "stepId": "rows",
            "operator": "project",
            "inputRows": 2,
            "outputRows": 2,
            "claimIds": [
              "click-brand.channel_id",
              "click-brand.event_at_ms",
              "click-brand.evidence_rank",
              "click-nonbrand.channel_id",
              "click-nonbrand.event_at_ms",
              "click-nonbrand.evidence_rank"
            ],
            "outputHash": "078dbc75a2ac1b1ea6e98b028bdb1c2655ebf9eac5681b4b98c9e64ac4242bac"
          }
        ],
        "work": 87,
        "resultHash": "44d4b2ab8d7210697eec584a39463625ba5208270192afda2c234c9dc57afdd8"
      }
    },
    "duplicate|reported|contract": {
      "graph": {
        "snapshotVersion": "t2k.reasoning-graph.v1",
        "graphKey": "demo.cash-homebuyer",
        "asOf": "2026-05-15T23:59:59Z",
        "ontologyResolutionHash": "c1f42aba94b41cc81e2ba87abe71a6263a91a15226cc24ee279c2183f576533f",
        "coverage": "complete",
        "entities": [
          {
            "entityId": "click-nonbrand",
            "typeRef": "demo.cash-homebuyer:touchpoint"
          },
          {
            "entityId": "click-brand",
            "typeRef": "demo.cash-homebuyer:touchpoint"
          }
        ],
        "claims": [
          {
            "claimId": "click-nonbrand.property_id",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.property_id",
            "value": "property-104",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.property_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.opportunity_id",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.opportunity_id",
            "value": "acquisition-204",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.opportunity_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.seller_group_id",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.seller_group_id",
            "value": "seller-group-14",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.seller_group_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.channel_id",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.channel_id",
            "value": "search-nonbrand",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.channel_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.event_at_ms",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.event_at_ms",
            "value": 1775210400000,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.event_at_ms"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.evidence_rank",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.evidence_rank",
            "value": 0,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.evidence_rank"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.marketing_touch",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.marketing_touch",
            "value": true,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.marketing_touch"
              }
            ]
          },
          {
            "claimId": "click-brand.property_id",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.property_id",
            "value": "property-104",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.property_id"
              }
            ]
          },
          {
            "claimId": "click-brand.opportunity_id",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.opportunity_id",
            "value": "acquisition-204",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.opportunity_id"
              }
            ]
          },
          {
            "claimId": "click-brand.seller_group_id",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.seller_group_id",
            "value": "seller-group-14",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.seller_group_id"
              }
            ]
          },
          {
            "claimId": "click-brand.channel_id",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.channel_id",
            "value": "search-brand",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.channel_id"
              }
            ]
          },
          {
            "claimId": "click-brand.event_at_ms",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.event_at_ms",
            "value": 1775646000000,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.event_at_ms"
              }
            ]
          },
          {
            "claimId": "click-brand.evidence_rank",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.evidence_rank",
            "value": 0,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.evidence_rank"
              }
            ]
          },
          {
            "claimId": "click-brand.marketing_touch",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.marketing_touch",
            "value": true,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.marketing_touch"
              }
            ]
          }
        ]
      },
      "arguments": {
        "property": "property-104",
        "opportunity": "acquisition-204",
        "sellerGroup": "seller-group-14",
        "windowStart": 1772323200000,
        "qualificationAt": 1775746800000,
        "admittedRank": 1
      },
      "receipt": {
        "resultVersion": "t2k.graph-result.v1",
        "status": "complete",
        "value": [
          {
            "touchId": "click-brand",
            "channelId": "search-brand",
            "eventAtMs": 1775646000000,
            "evidenceRank": 0
          },
          {
            "touchId": "click-nonbrand",
            "channelId": "search-nonbrand",
            "eventAtMs": 1775210400000,
            "evidenceRank": 0
          }
        ],
        "authorization": "not_authorized",
        "binding": {
          "runtimeVersion": "t2k.graph-runtime.v1",
          "functionHash": "c0aa7b713a989a49764860e270b776fcbd76416e07891e48a43920029a6aa40d",
          "ontologyResolutionHash": "c1f42aba94b41cc81e2ba87abe71a6263a91a15226cc24ee279c2183f576533f",
          "graphKey": "demo.cash-homebuyer",
          "asOf": "2026-05-15T23:59:59.000Z",
          "snapshotHash": "ce0d1ea1084615732b662e32ce6b69ae77ea2a75405f6d796be27a207e8b6267",
          "argumentsHash": "cd8690f832630034ecce3c948890d1e8f4ac84aebf4d3b80bcff6e7dcae3c8ab"
        },
        "evidence": [
          {
            "claimId": "click-brand.channel_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.channel_id"
              }
            ]
          },
          {
            "claimId": "click-brand.event_at_ms",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.event_at_ms"
              }
            ]
          },
          {
            "claimId": "click-brand.evidence_rank",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.evidence_rank"
              }
            ]
          },
          {
            "claimId": "click-brand.marketing_touch",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.marketing_touch"
              }
            ]
          },
          {
            "claimId": "click-brand.opportunity_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.opportunity_id"
              }
            ]
          },
          {
            "claimId": "click-brand.property_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.property_id"
              }
            ]
          },
          {
            "claimId": "click-brand.seller_group_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.seller_group_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.channel_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.channel_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.event_at_ms",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.event_at_ms"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.evidence_rank",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.evidence_rank"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.marketing_touch",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.marketing_touch"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.opportunity_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.opportunity_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.property_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.property_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.seller_group_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.seller_group_id"
              }
            ]
          }
        ],
        "supportingClaimIds": [
          "click-brand.channel_id",
          "click-brand.event_at_ms",
          "click-brand.evidence_rank",
          "click-brand.marketing_touch",
          "click-brand.opportunity_id",
          "click-brand.property_id",
          "click-brand.seller_group_id",
          "click-nonbrand.channel_id",
          "click-nonbrand.event_at_ms",
          "click-nonbrand.evidence_rank",
          "click-nonbrand.marketing_touch",
          "click-nonbrand.opportunity_id",
          "click-nonbrand.property_id",
          "click-nonbrand.seller_group_id"
        ],
        "derivations": [
          {
            "rowHash": "694a95e1c5a20b2c4181a07122a2a687fc67128c10a258b2430fa33c69ae9712",
            "claimIds": [
              "click-brand.channel_id",
              "click-brand.event_at_ms",
              "click-brand.evidence_rank",
              "click-brand.marketing_touch",
              "click-brand.opportunity_id",
              "click-brand.property_id",
              "click-brand.seller_group_id"
            ]
          },
          {
            "rowHash": "8a86502664d35468a58d6eb7e6e5c9be4dfb70904e624e59abad3daa6bd71e31",
            "claimIds": [
              "click-nonbrand.channel_id",
              "click-nonbrand.event_at_ms",
              "click-nonbrand.evidence_rank",
              "click-nonbrand.marketing_touch",
              "click-nonbrand.opportunity_id",
              "click-nonbrand.property_id",
              "click-nonbrand.seller_group_id"
            ]
          }
        ],
        "exclusions": [],
        "issues": [],
        "trace": [
          {
            "stepId": "touches",
            "operator": "lookup",
            "inputRows": 0,
            "outputRows": 2,
            "claimIds": [],
            "outputHash": "b5e54beeeb9e33347b6c6703bc8db26cc46e26ee22225bf368b569bf7d8f21c2"
          },
          {
            "stepId": "eligible",
            "operator": "filter",
            "inputRows": 2,
            "outputRows": 2,
            "claimIds": [
              "click-brand.event_at_ms",
              "click-brand.evidence_rank",
              "click-brand.marketing_touch",
              "click-brand.opportunity_id",
              "click-brand.property_id",
              "click-brand.seller_group_id",
              "click-nonbrand.event_at_ms",
              "click-nonbrand.evidence_rank",
              "click-nonbrand.marketing_touch",
              "click-nonbrand.opportunity_id",
              "click-nonbrand.property_id",
              "click-nonbrand.seller_group_id"
            ],
            "outputHash": "8864bff38933853cc1e817ba21ea80f93b0b754a138347c03d066fddef7ec24b"
          },
          {
            "stepId": "rows",
            "operator": "project",
            "inputRows": 2,
            "outputRows": 2,
            "claimIds": [
              "click-brand.channel_id",
              "click-brand.event_at_ms",
              "click-brand.evidence_rank",
              "click-nonbrand.channel_id",
              "click-nonbrand.event_at_ms",
              "click-nonbrand.evidence_rank"
            ],
            "outputHash": "078dbc75a2ac1b1ea6e98b028bdb1c2655ebf9eac5681b4b98c9e64ac4242bac"
          }
        ],
        "work": 87,
        "resultHash": "b983200dfc08bf82074c9ac66084fd86f7510dc80fc4faf80802c24dc44512c9"
      }
    },
    "duplicate|reported|acquired": {
      "graph": {
        "snapshotVersion": "t2k.reasoning-graph.v1",
        "graphKey": "demo.cash-homebuyer",
        "asOf": "2026-06-15T23:59:59Z",
        "ontologyResolutionHash": "c1f42aba94b41cc81e2ba87abe71a6263a91a15226cc24ee279c2183f576533f",
        "coverage": "complete",
        "entities": [
          {
            "entityId": "click-nonbrand",
            "typeRef": "demo.cash-homebuyer:touchpoint"
          },
          {
            "entityId": "click-brand",
            "typeRef": "demo.cash-homebuyer:touchpoint"
          }
        ],
        "claims": [
          {
            "claimId": "click-nonbrand.property_id",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.property_id",
            "value": "property-104",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.property_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.opportunity_id",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.opportunity_id",
            "value": "acquisition-204",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.opportunity_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.seller_group_id",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.seller_group_id",
            "value": "seller-group-14",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.seller_group_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.channel_id",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.channel_id",
            "value": "search-nonbrand",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.channel_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.event_at_ms",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.event_at_ms",
            "value": 1775210400000,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.event_at_ms"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.evidence_rank",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.evidence_rank",
            "value": 0,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.evidence_rank"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.marketing_touch",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.marketing_touch",
            "value": true,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.marketing_touch"
              }
            ]
          },
          {
            "claimId": "click-brand.property_id",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.property_id",
            "value": "property-104",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.property_id"
              }
            ]
          },
          {
            "claimId": "click-brand.opportunity_id",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.opportunity_id",
            "value": "acquisition-204",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.opportunity_id"
              }
            ]
          },
          {
            "claimId": "click-brand.seller_group_id",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.seller_group_id",
            "value": "seller-group-14",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.seller_group_id"
              }
            ]
          },
          {
            "claimId": "click-brand.channel_id",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.channel_id",
            "value": "search-brand",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.channel_id"
              }
            ]
          },
          {
            "claimId": "click-brand.event_at_ms",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.event_at_ms",
            "value": 1775646000000,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.event_at_ms"
              }
            ]
          },
          {
            "claimId": "click-brand.evidence_rank",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.evidence_rank",
            "value": 0,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.evidence_rank"
              }
            ]
          },
          {
            "claimId": "click-brand.marketing_touch",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.marketing_touch",
            "value": true,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.marketing_touch"
              }
            ]
          }
        ]
      },
      "arguments": {
        "property": "property-104",
        "opportunity": "acquisition-204",
        "sellerGroup": "seller-group-14",
        "windowStart": 1772323200000,
        "qualificationAt": 1775746800000,
        "admittedRank": 1
      },
      "receipt": {
        "resultVersion": "t2k.graph-result.v1",
        "status": "complete",
        "value": [
          {
            "touchId": "click-brand",
            "channelId": "search-brand",
            "eventAtMs": 1775646000000,
            "evidenceRank": 0
          },
          {
            "touchId": "click-nonbrand",
            "channelId": "search-nonbrand",
            "eventAtMs": 1775210400000,
            "evidenceRank": 0
          }
        ],
        "authorization": "not_authorized",
        "binding": {
          "runtimeVersion": "t2k.graph-runtime.v1",
          "functionHash": "c0aa7b713a989a49764860e270b776fcbd76416e07891e48a43920029a6aa40d",
          "ontologyResolutionHash": "c1f42aba94b41cc81e2ba87abe71a6263a91a15226cc24ee279c2183f576533f",
          "graphKey": "demo.cash-homebuyer",
          "asOf": "2026-06-15T23:59:59.000Z",
          "snapshotHash": "8614b18e51d70dfc8c55b9f4989358baf3b75ba545043f35d1ca34aab74403ae",
          "argumentsHash": "cd8690f832630034ecce3c948890d1e8f4ac84aebf4d3b80bcff6e7dcae3c8ab"
        },
        "evidence": [
          {
            "claimId": "click-brand.channel_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.channel_id"
              }
            ]
          },
          {
            "claimId": "click-brand.event_at_ms",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.event_at_ms"
              }
            ]
          },
          {
            "claimId": "click-brand.evidence_rank",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.evidence_rank"
              }
            ]
          },
          {
            "claimId": "click-brand.marketing_touch",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.marketing_touch"
              }
            ]
          },
          {
            "claimId": "click-brand.opportunity_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.opportunity_id"
              }
            ]
          },
          {
            "claimId": "click-brand.property_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.property_id"
              }
            ]
          },
          {
            "claimId": "click-brand.seller_group_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.seller_group_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.channel_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.channel_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.event_at_ms",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.event_at_ms"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.evidence_rank",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.evidence_rank"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.marketing_touch",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.marketing_touch"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.opportunity_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.opportunity_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.property_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.property_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.seller_group_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.seller_group_id"
              }
            ]
          }
        ],
        "supportingClaimIds": [
          "click-brand.channel_id",
          "click-brand.event_at_ms",
          "click-brand.evidence_rank",
          "click-brand.marketing_touch",
          "click-brand.opportunity_id",
          "click-brand.property_id",
          "click-brand.seller_group_id",
          "click-nonbrand.channel_id",
          "click-nonbrand.event_at_ms",
          "click-nonbrand.evidence_rank",
          "click-nonbrand.marketing_touch",
          "click-nonbrand.opportunity_id",
          "click-nonbrand.property_id",
          "click-nonbrand.seller_group_id"
        ],
        "derivations": [
          {
            "rowHash": "694a95e1c5a20b2c4181a07122a2a687fc67128c10a258b2430fa33c69ae9712",
            "claimIds": [
              "click-brand.channel_id",
              "click-brand.event_at_ms",
              "click-brand.evidence_rank",
              "click-brand.marketing_touch",
              "click-brand.opportunity_id",
              "click-brand.property_id",
              "click-brand.seller_group_id"
            ]
          },
          {
            "rowHash": "8a86502664d35468a58d6eb7e6e5c9be4dfb70904e624e59abad3daa6bd71e31",
            "claimIds": [
              "click-nonbrand.channel_id",
              "click-nonbrand.event_at_ms",
              "click-nonbrand.evidence_rank",
              "click-nonbrand.marketing_touch",
              "click-nonbrand.opportunity_id",
              "click-nonbrand.property_id",
              "click-nonbrand.seller_group_id"
            ]
          }
        ],
        "exclusions": [],
        "issues": [],
        "trace": [
          {
            "stepId": "touches",
            "operator": "lookup",
            "inputRows": 0,
            "outputRows": 2,
            "claimIds": [],
            "outputHash": "b5e54beeeb9e33347b6c6703bc8db26cc46e26ee22225bf368b569bf7d8f21c2"
          },
          {
            "stepId": "eligible",
            "operator": "filter",
            "inputRows": 2,
            "outputRows": 2,
            "claimIds": [
              "click-brand.event_at_ms",
              "click-brand.evidence_rank",
              "click-brand.marketing_touch",
              "click-brand.opportunity_id",
              "click-brand.property_id",
              "click-brand.seller_group_id",
              "click-nonbrand.event_at_ms",
              "click-nonbrand.evidence_rank",
              "click-nonbrand.marketing_touch",
              "click-nonbrand.opportunity_id",
              "click-nonbrand.property_id",
              "click-nonbrand.seller_group_id"
            ],
            "outputHash": "8864bff38933853cc1e817ba21ea80f93b0b754a138347c03d066fddef7ec24b"
          },
          {
            "stepId": "rows",
            "operator": "project",
            "inputRows": 2,
            "outputRows": 2,
            "claimIds": [
              "click-brand.channel_id",
              "click-brand.event_at_ms",
              "click-brand.evidence_rank",
              "click-nonbrand.channel_id",
              "click-nonbrand.event_at_ms",
              "click-nonbrand.evidence_rank"
            ],
            "outputHash": "078dbc75a2ac1b1ea6e98b028bdb1c2655ebf9eac5681b4b98c9e64ac4242bac"
          }
        ],
        "work": 87,
        "resultHash": "c88fa17158addb166c0645767874f7d9130c2a7a3f76308ab7586b0a4ac23dc7"
      }
    },
    "duplicate|reported|resale": {
      "graph": {
        "snapshotVersion": "t2k.reasoning-graph.v1",
        "graphKey": "demo.cash-homebuyer",
        "asOf": "2026-09-15T23:59:59Z",
        "ontologyResolutionHash": "c1f42aba94b41cc81e2ba87abe71a6263a91a15226cc24ee279c2183f576533f",
        "coverage": "complete",
        "entities": [
          {
            "entityId": "click-nonbrand",
            "typeRef": "demo.cash-homebuyer:touchpoint"
          },
          {
            "entityId": "click-brand",
            "typeRef": "demo.cash-homebuyer:touchpoint"
          }
        ],
        "claims": [
          {
            "claimId": "click-nonbrand.property_id",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.property_id",
            "value": "property-104",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.property_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.opportunity_id",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.opportunity_id",
            "value": "acquisition-204",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.opportunity_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.seller_group_id",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.seller_group_id",
            "value": "seller-group-14",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.seller_group_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.channel_id",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.channel_id",
            "value": "search-nonbrand",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.channel_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.event_at_ms",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.event_at_ms",
            "value": 1775210400000,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.event_at_ms"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.evidence_rank",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.evidence_rank",
            "value": 0,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.evidence_rank"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.marketing_touch",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.marketing_touch",
            "value": true,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.marketing_touch"
              }
            ]
          },
          {
            "claimId": "click-brand.property_id",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.property_id",
            "value": "property-104",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.property_id"
              }
            ]
          },
          {
            "claimId": "click-brand.opportunity_id",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.opportunity_id",
            "value": "acquisition-204",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.opportunity_id"
              }
            ]
          },
          {
            "claimId": "click-brand.seller_group_id",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.seller_group_id",
            "value": "seller-group-14",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.seller_group_id"
              }
            ]
          },
          {
            "claimId": "click-brand.channel_id",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.channel_id",
            "value": "search-brand",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.channel_id"
              }
            ]
          },
          {
            "claimId": "click-brand.event_at_ms",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.event_at_ms",
            "value": 1775646000000,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.event_at_ms"
              }
            ]
          },
          {
            "claimId": "click-brand.evidence_rank",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.evidence_rank",
            "value": 0,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.evidence_rank"
              }
            ]
          },
          {
            "claimId": "click-brand.marketing_touch",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.marketing_touch",
            "value": true,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.marketing_touch"
              }
            ]
          }
        ]
      },
      "arguments": {
        "property": "property-104",
        "opportunity": "acquisition-204",
        "sellerGroup": "seller-group-14",
        "windowStart": 1772323200000,
        "qualificationAt": 1775746800000,
        "admittedRank": 1
      },
      "receipt": {
        "resultVersion": "t2k.graph-result.v1",
        "status": "complete",
        "value": [
          {
            "touchId": "click-brand",
            "channelId": "search-brand",
            "eventAtMs": 1775646000000,
            "evidenceRank": 0
          },
          {
            "touchId": "click-nonbrand",
            "channelId": "search-nonbrand",
            "eventAtMs": 1775210400000,
            "evidenceRank": 0
          }
        ],
        "authorization": "not_authorized",
        "binding": {
          "runtimeVersion": "t2k.graph-runtime.v1",
          "functionHash": "c0aa7b713a989a49764860e270b776fcbd76416e07891e48a43920029a6aa40d",
          "ontologyResolutionHash": "c1f42aba94b41cc81e2ba87abe71a6263a91a15226cc24ee279c2183f576533f",
          "graphKey": "demo.cash-homebuyer",
          "asOf": "2026-09-15T23:59:59.000Z",
          "snapshotHash": "1812bf10a3af3876d044992b2c96a4b9d6abfe5b128ffff513334ce269884dc8",
          "argumentsHash": "cd8690f832630034ecce3c948890d1e8f4ac84aebf4d3b80bcff6e7dcae3c8ab"
        },
        "evidence": [
          {
            "claimId": "click-brand.channel_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.channel_id"
              }
            ]
          },
          {
            "claimId": "click-brand.event_at_ms",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.event_at_ms"
              }
            ]
          },
          {
            "claimId": "click-brand.evidence_rank",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.evidence_rank"
              }
            ]
          },
          {
            "claimId": "click-brand.marketing_touch",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.marketing_touch"
              }
            ]
          },
          {
            "claimId": "click-brand.opportunity_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.opportunity_id"
              }
            ]
          },
          {
            "claimId": "click-brand.property_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.property_id"
              }
            ]
          },
          {
            "claimId": "click-brand.seller_group_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.seller_group_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.channel_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.channel_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.event_at_ms",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.event_at_ms"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.evidence_rank",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.evidence_rank"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.marketing_touch",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.marketing_touch"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.opportunity_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.opportunity_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.property_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.property_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.seller_group_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.seller_group_id"
              }
            ]
          }
        ],
        "supportingClaimIds": [
          "click-brand.channel_id",
          "click-brand.event_at_ms",
          "click-brand.evidence_rank",
          "click-brand.marketing_touch",
          "click-brand.opportunity_id",
          "click-brand.property_id",
          "click-brand.seller_group_id",
          "click-nonbrand.channel_id",
          "click-nonbrand.event_at_ms",
          "click-nonbrand.evidence_rank",
          "click-nonbrand.marketing_touch",
          "click-nonbrand.opportunity_id",
          "click-nonbrand.property_id",
          "click-nonbrand.seller_group_id"
        ],
        "derivations": [
          {
            "rowHash": "694a95e1c5a20b2c4181a07122a2a687fc67128c10a258b2430fa33c69ae9712",
            "claimIds": [
              "click-brand.channel_id",
              "click-brand.event_at_ms",
              "click-brand.evidence_rank",
              "click-brand.marketing_touch",
              "click-brand.opportunity_id",
              "click-brand.property_id",
              "click-brand.seller_group_id"
            ]
          },
          {
            "rowHash": "8a86502664d35468a58d6eb7e6e5c9be4dfb70904e624e59abad3daa6bd71e31",
            "claimIds": [
              "click-nonbrand.channel_id",
              "click-nonbrand.event_at_ms",
              "click-nonbrand.evidence_rank",
              "click-nonbrand.marketing_touch",
              "click-nonbrand.opportunity_id",
              "click-nonbrand.property_id",
              "click-nonbrand.seller_group_id"
            ]
          }
        ],
        "exclusions": [],
        "issues": [],
        "trace": [
          {
            "stepId": "touches",
            "operator": "lookup",
            "inputRows": 0,
            "outputRows": 2,
            "claimIds": [],
            "outputHash": "b5e54beeeb9e33347b6c6703bc8db26cc46e26ee22225bf368b569bf7d8f21c2"
          },
          {
            "stepId": "eligible",
            "operator": "filter",
            "inputRows": 2,
            "outputRows": 2,
            "claimIds": [
              "click-brand.event_at_ms",
              "click-brand.evidence_rank",
              "click-brand.marketing_touch",
              "click-brand.opportunity_id",
              "click-brand.property_id",
              "click-brand.seller_group_id",
              "click-nonbrand.event_at_ms",
              "click-nonbrand.evidence_rank",
              "click-nonbrand.marketing_touch",
              "click-nonbrand.opportunity_id",
              "click-nonbrand.property_id",
              "click-nonbrand.seller_group_id"
            ],
            "outputHash": "8864bff38933853cc1e817ba21ea80f93b0b754a138347c03d066fddef7ec24b"
          },
          {
            "stepId": "rows",
            "operator": "project",
            "inputRows": 2,
            "outputRows": 2,
            "claimIds": [
              "click-brand.channel_id",
              "click-brand.event_at_ms",
              "click-brand.evidence_rank",
              "click-nonbrand.channel_id",
              "click-nonbrand.event_at_ms",
              "click-nonbrand.evidence_rank"
            ],
            "outputHash": "078dbc75a2ac1b1ea6e98b028bdb1c2655ebf9eac5681b4b98c9e64ac4242bac"
          }
        ],
        "work": 87,
        "resultHash": "565816838d126cc6cfee981c62bf01fb0947e7451f9b8344ce47b57c7f14d05f"
      }
    },
    "mapping|observed|contract": {
      "graph": {
        "snapshotVersion": "t2k.reasoning-graph.v1",
        "graphKey": "demo.cash-homebuyer",
        "asOf": "2026-05-15T23:59:59Z",
        "ontologyResolutionHash": "c1f42aba94b41cc81e2ba87abe71a6263a91a15226cc24ee279c2183f576533f",
        "coverage": "complete",
        "entities": [
          {
            "entityId": "click-nonbrand",
            "typeRef": "demo.cash-homebuyer:touchpoint"
          },
          {
            "entityId": "click-brand",
            "typeRef": "demo.cash-homebuyer:touchpoint"
          }
        ],
        "claims": [
          {
            "claimId": "click-nonbrand.property_id",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.property_id",
            "value": "property-104",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.property_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.opportunity_id",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.opportunity_id",
            "value": "acquisition-204",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.opportunity_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.seller_group_id",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.seller_group_id",
            "value": "seller-group-14",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.seller_group_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.channel_id",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.channel_id",
            "value": "search-nonbrand",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.channel_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.event_at_ms",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.event_at_ms",
            "value": 1775210400000,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.event_at_ms"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.evidence_rank",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.evidence_rank",
            "value": 0,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.evidence_rank"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.marketing_touch",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.marketing_touch",
            "value": true,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.marketing_touch"
              }
            ]
          },
          {
            "claimId": "click-brand.property_id",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.property_id",
            "value": "property-104",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.property_id"
              }
            ]
          },
          {
            "claimId": "click-brand.opportunity_id",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.opportunity_id",
            "value": "acquisition-204",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.opportunity_id"
              }
            ]
          },
          {
            "claimId": "click-brand.seller_group_id",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.seller_group_id",
            "value": "seller-group-14",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.seller_group_id"
              }
            ]
          },
          {
            "claimId": "click-brand.channel_id",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.channel_id",
            "value": "search-brand",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.channel_id"
              }
            ]
          },
          {
            "claimId": "click-brand.event_at_ms",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.event_at_ms",
            "value": 1775646000000,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.event_at_ms"
              }
            ]
          },
          {
            "claimId": "click-brand.evidence_rank",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.evidence_rank",
            "value": 0,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.evidence_rank"
              }
            ]
          },
          {
            "claimId": "click-brand.marketing_touch",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.marketing_touch",
            "value": true,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.marketing_touch"
              }
            ]
          }
        ]
      },
      "arguments": {
        "property": "property-104",
        "opportunity": "acquisition-204",
        "sellerGroup": "seller-group-14",
        "windowStart": 1772323200000,
        "qualificationAt": 1775746800000,
        "admittedRank": 0
      },
      "receipt": {
        "resultVersion": "t2k.graph-result.v1",
        "status": "complete",
        "value": [
          {
            "touchId": "click-brand",
            "channelId": "search-brand",
            "eventAtMs": 1775646000000,
            "evidenceRank": 0
          },
          {
            "touchId": "click-nonbrand",
            "channelId": "search-nonbrand",
            "eventAtMs": 1775210400000,
            "evidenceRank": 0
          }
        ],
        "authorization": "not_authorized",
        "binding": {
          "runtimeVersion": "t2k.graph-runtime.v1",
          "functionHash": "c0aa7b713a989a49764860e270b776fcbd76416e07891e48a43920029a6aa40d",
          "ontologyResolutionHash": "c1f42aba94b41cc81e2ba87abe71a6263a91a15226cc24ee279c2183f576533f",
          "graphKey": "demo.cash-homebuyer",
          "asOf": "2026-05-15T23:59:59.000Z",
          "snapshotHash": "ce0d1ea1084615732b662e32ce6b69ae77ea2a75405f6d796be27a207e8b6267",
          "argumentsHash": "42e0e7d41d126edcc85e8694a0a6c610ab82f2484d117738872465ddbc3c08ac"
        },
        "evidence": [
          {
            "claimId": "click-brand.channel_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.channel_id"
              }
            ]
          },
          {
            "claimId": "click-brand.event_at_ms",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.event_at_ms"
              }
            ]
          },
          {
            "claimId": "click-brand.evidence_rank",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.evidence_rank"
              }
            ]
          },
          {
            "claimId": "click-brand.marketing_touch",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.marketing_touch"
              }
            ]
          },
          {
            "claimId": "click-brand.opportunity_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.opportunity_id"
              }
            ]
          },
          {
            "claimId": "click-brand.property_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.property_id"
              }
            ]
          },
          {
            "claimId": "click-brand.seller_group_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.seller_group_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.channel_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.channel_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.event_at_ms",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.event_at_ms"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.evidence_rank",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.evidence_rank"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.marketing_touch",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.marketing_touch"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.opportunity_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.opportunity_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.property_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.property_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.seller_group_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.seller_group_id"
              }
            ]
          }
        ],
        "supportingClaimIds": [
          "click-brand.channel_id",
          "click-brand.event_at_ms",
          "click-brand.evidence_rank",
          "click-brand.marketing_touch",
          "click-brand.opportunity_id",
          "click-brand.property_id",
          "click-brand.seller_group_id",
          "click-nonbrand.channel_id",
          "click-nonbrand.event_at_ms",
          "click-nonbrand.evidence_rank",
          "click-nonbrand.marketing_touch",
          "click-nonbrand.opportunity_id",
          "click-nonbrand.property_id",
          "click-nonbrand.seller_group_id"
        ],
        "derivations": [
          {
            "rowHash": "694a95e1c5a20b2c4181a07122a2a687fc67128c10a258b2430fa33c69ae9712",
            "claimIds": [
              "click-brand.channel_id",
              "click-brand.event_at_ms",
              "click-brand.evidence_rank",
              "click-brand.marketing_touch",
              "click-brand.opportunity_id",
              "click-brand.property_id",
              "click-brand.seller_group_id"
            ]
          },
          {
            "rowHash": "8a86502664d35468a58d6eb7e6e5c9be4dfb70904e624e59abad3daa6bd71e31",
            "claimIds": [
              "click-nonbrand.channel_id",
              "click-nonbrand.event_at_ms",
              "click-nonbrand.evidence_rank",
              "click-nonbrand.marketing_touch",
              "click-nonbrand.opportunity_id",
              "click-nonbrand.property_id",
              "click-nonbrand.seller_group_id"
            ]
          }
        ],
        "exclusions": [],
        "issues": [],
        "trace": [
          {
            "stepId": "touches",
            "operator": "lookup",
            "inputRows": 0,
            "outputRows": 2,
            "claimIds": [],
            "outputHash": "b5e54beeeb9e33347b6c6703bc8db26cc46e26ee22225bf368b569bf7d8f21c2"
          },
          {
            "stepId": "eligible",
            "operator": "filter",
            "inputRows": 2,
            "outputRows": 2,
            "claimIds": [
              "click-brand.event_at_ms",
              "click-brand.evidence_rank",
              "click-brand.marketing_touch",
              "click-brand.opportunity_id",
              "click-brand.property_id",
              "click-brand.seller_group_id",
              "click-nonbrand.event_at_ms",
              "click-nonbrand.evidence_rank",
              "click-nonbrand.marketing_touch",
              "click-nonbrand.opportunity_id",
              "click-nonbrand.property_id",
              "click-nonbrand.seller_group_id"
            ],
            "outputHash": "8864bff38933853cc1e817ba21ea80f93b0b754a138347c03d066fddef7ec24b"
          },
          {
            "stepId": "rows",
            "operator": "project",
            "inputRows": 2,
            "outputRows": 2,
            "claimIds": [
              "click-brand.channel_id",
              "click-brand.event_at_ms",
              "click-brand.evidence_rank",
              "click-nonbrand.channel_id",
              "click-nonbrand.event_at_ms",
              "click-nonbrand.evidence_rank"
            ],
            "outputHash": "078dbc75a2ac1b1ea6e98b028bdb1c2655ebf9eac5681b4b98c9e64ac4242bac"
          }
        ],
        "work": 87,
        "resultHash": "37ad81418ecafaad100396e0fa2dfa2e2d6edb6daf02b903eaa808e00e17ec09"
      }
    },
    "mapping|observed|acquired": {
      "graph": {
        "snapshotVersion": "t2k.reasoning-graph.v1",
        "graphKey": "demo.cash-homebuyer",
        "asOf": "2026-06-15T23:59:59Z",
        "ontologyResolutionHash": "c1f42aba94b41cc81e2ba87abe71a6263a91a15226cc24ee279c2183f576533f",
        "coverage": "complete",
        "entities": [
          {
            "entityId": "click-nonbrand",
            "typeRef": "demo.cash-homebuyer:touchpoint"
          },
          {
            "entityId": "click-brand",
            "typeRef": "demo.cash-homebuyer:touchpoint"
          }
        ],
        "claims": [
          {
            "claimId": "click-nonbrand.property_id",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.property_id",
            "value": "property-104",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.property_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.opportunity_id",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.opportunity_id",
            "value": "acquisition-204",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.opportunity_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.seller_group_id",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.seller_group_id",
            "value": "seller-group-14",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.seller_group_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.channel_id",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.channel_id",
            "value": "search-nonbrand",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.channel_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.event_at_ms",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.event_at_ms",
            "value": 1775210400000,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.event_at_ms"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.evidence_rank",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.evidence_rank",
            "value": 0,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.evidence_rank"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.marketing_touch",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.marketing_touch",
            "value": true,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.marketing_touch"
              }
            ]
          },
          {
            "claimId": "click-brand.property_id",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.property_id",
            "value": "property-104",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.property_id"
              }
            ]
          },
          {
            "claimId": "click-brand.opportunity_id",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.opportunity_id",
            "value": "acquisition-204",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.opportunity_id"
              }
            ]
          },
          {
            "claimId": "click-brand.seller_group_id",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.seller_group_id",
            "value": "seller-group-14",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.seller_group_id"
              }
            ]
          },
          {
            "claimId": "click-brand.channel_id",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.channel_id",
            "value": "search-brand",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.channel_id"
              }
            ]
          },
          {
            "claimId": "click-brand.event_at_ms",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.event_at_ms",
            "value": 1775646000000,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.event_at_ms"
              }
            ]
          },
          {
            "claimId": "click-brand.evidence_rank",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.evidence_rank",
            "value": 0,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.evidence_rank"
              }
            ]
          },
          {
            "claimId": "click-brand.marketing_touch",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.marketing_touch",
            "value": true,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.marketing_touch"
              }
            ]
          }
        ]
      },
      "arguments": {
        "property": "property-104",
        "opportunity": "acquisition-204",
        "sellerGroup": "seller-group-14",
        "windowStart": 1772323200000,
        "qualificationAt": 1775746800000,
        "admittedRank": 0
      },
      "receipt": {
        "resultVersion": "t2k.graph-result.v1",
        "status": "complete",
        "value": [
          {
            "touchId": "click-brand",
            "channelId": "search-brand",
            "eventAtMs": 1775646000000,
            "evidenceRank": 0
          },
          {
            "touchId": "click-nonbrand",
            "channelId": "search-nonbrand",
            "eventAtMs": 1775210400000,
            "evidenceRank": 0
          }
        ],
        "authorization": "not_authorized",
        "binding": {
          "runtimeVersion": "t2k.graph-runtime.v1",
          "functionHash": "c0aa7b713a989a49764860e270b776fcbd76416e07891e48a43920029a6aa40d",
          "ontologyResolutionHash": "c1f42aba94b41cc81e2ba87abe71a6263a91a15226cc24ee279c2183f576533f",
          "graphKey": "demo.cash-homebuyer",
          "asOf": "2026-06-15T23:59:59.000Z",
          "snapshotHash": "8614b18e51d70dfc8c55b9f4989358baf3b75ba545043f35d1ca34aab74403ae",
          "argumentsHash": "42e0e7d41d126edcc85e8694a0a6c610ab82f2484d117738872465ddbc3c08ac"
        },
        "evidence": [
          {
            "claimId": "click-brand.channel_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.channel_id"
              }
            ]
          },
          {
            "claimId": "click-brand.event_at_ms",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.event_at_ms"
              }
            ]
          },
          {
            "claimId": "click-brand.evidence_rank",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.evidence_rank"
              }
            ]
          },
          {
            "claimId": "click-brand.marketing_touch",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.marketing_touch"
              }
            ]
          },
          {
            "claimId": "click-brand.opportunity_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.opportunity_id"
              }
            ]
          },
          {
            "claimId": "click-brand.property_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.property_id"
              }
            ]
          },
          {
            "claimId": "click-brand.seller_group_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.seller_group_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.channel_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.channel_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.event_at_ms",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.event_at_ms"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.evidence_rank",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.evidence_rank"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.marketing_touch",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.marketing_touch"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.opportunity_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.opportunity_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.property_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.property_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.seller_group_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.seller_group_id"
              }
            ]
          }
        ],
        "supportingClaimIds": [
          "click-brand.channel_id",
          "click-brand.event_at_ms",
          "click-brand.evidence_rank",
          "click-brand.marketing_touch",
          "click-brand.opportunity_id",
          "click-brand.property_id",
          "click-brand.seller_group_id",
          "click-nonbrand.channel_id",
          "click-nonbrand.event_at_ms",
          "click-nonbrand.evidence_rank",
          "click-nonbrand.marketing_touch",
          "click-nonbrand.opportunity_id",
          "click-nonbrand.property_id",
          "click-nonbrand.seller_group_id"
        ],
        "derivations": [
          {
            "rowHash": "694a95e1c5a20b2c4181a07122a2a687fc67128c10a258b2430fa33c69ae9712",
            "claimIds": [
              "click-brand.channel_id",
              "click-brand.event_at_ms",
              "click-brand.evidence_rank",
              "click-brand.marketing_touch",
              "click-brand.opportunity_id",
              "click-brand.property_id",
              "click-brand.seller_group_id"
            ]
          },
          {
            "rowHash": "8a86502664d35468a58d6eb7e6e5c9be4dfb70904e624e59abad3daa6bd71e31",
            "claimIds": [
              "click-nonbrand.channel_id",
              "click-nonbrand.event_at_ms",
              "click-nonbrand.evidence_rank",
              "click-nonbrand.marketing_touch",
              "click-nonbrand.opportunity_id",
              "click-nonbrand.property_id",
              "click-nonbrand.seller_group_id"
            ]
          }
        ],
        "exclusions": [],
        "issues": [],
        "trace": [
          {
            "stepId": "touches",
            "operator": "lookup",
            "inputRows": 0,
            "outputRows": 2,
            "claimIds": [],
            "outputHash": "b5e54beeeb9e33347b6c6703bc8db26cc46e26ee22225bf368b569bf7d8f21c2"
          },
          {
            "stepId": "eligible",
            "operator": "filter",
            "inputRows": 2,
            "outputRows": 2,
            "claimIds": [
              "click-brand.event_at_ms",
              "click-brand.evidence_rank",
              "click-brand.marketing_touch",
              "click-brand.opportunity_id",
              "click-brand.property_id",
              "click-brand.seller_group_id",
              "click-nonbrand.event_at_ms",
              "click-nonbrand.evidence_rank",
              "click-nonbrand.marketing_touch",
              "click-nonbrand.opportunity_id",
              "click-nonbrand.property_id",
              "click-nonbrand.seller_group_id"
            ],
            "outputHash": "8864bff38933853cc1e817ba21ea80f93b0b754a138347c03d066fddef7ec24b"
          },
          {
            "stepId": "rows",
            "operator": "project",
            "inputRows": 2,
            "outputRows": 2,
            "claimIds": [
              "click-brand.channel_id",
              "click-brand.event_at_ms",
              "click-brand.evidence_rank",
              "click-nonbrand.channel_id",
              "click-nonbrand.event_at_ms",
              "click-nonbrand.evidence_rank"
            ],
            "outputHash": "078dbc75a2ac1b1ea6e98b028bdb1c2655ebf9eac5681b4b98c9e64ac4242bac"
          }
        ],
        "work": 87,
        "resultHash": "af68bdca86f0c3b18dd21c7273bee72ce5087dafd94f15466f5c99eacb111798"
      }
    },
    "mapping|observed|resale": {
      "graph": {
        "snapshotVersion": "t2k.reasoning-graph.v1",
        "graphKey": "demo.cash-homebuyer",
        "asOf": "2026-09-15T23:59:59Z",
        "ontologyResolutionHash": "c1f42aba94b41cc81e2ba87abe71a6263a91a15226cc24ee279c2183f576533f",
        "coverage": "complete",
        "entities": [
          {
            "entityId": "click-nonbrand",
            "typeRef": "demo.cash-homebuyer:touchpoint"
          },
          {
            "entityId": "click-brand",
            "typeRef": "demo.cash-homebuyer:touchpoint"
          }
        ],
        "claims": [
          {
            "claimId": "click-nonbrand.property_id",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.property_id",
            "value": "property-104",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.property_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.opportunity_id",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.opportunity_id",
            "value": "acquisition-204",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.opportunity_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.seller_group_id",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.seller_group_id",
            "value": "seller-group-14",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.seller_group_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.channel_id",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.channel_id",
            "value": "search-nonbrand",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.channel_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.event_at_ms",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.event_at_ms",
            "value": 1775210400000,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.event_at_ms"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.evidence_rank",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.evidence_rank",
            "value": 0,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.evidence_rank"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.marketing_touch",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.marketing_touch",
            "value": true,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.marketing_touch"
              }
            ]
          },
          {
            "claimId": "click-brand.property_id",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.property_id",
            "value": "property-104",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.property_id"
              }
            ]
          },
          {
            "claimId": "click-brand.opportunity_id",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.opportunity_id",
            "value": "acquisition-204",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.opportunity_id"
              }
            ]
          },
          {
            "claimId": "click-brand.seller_group_id",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.seller_group_id",
            "value": "seller-group-14",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.seller_group_id"
              }
            ]
          },
          {
            "claimId": "click-brand.channel_id",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.channel_id",
            "value": "search-brand",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.channel_id"
              }
            ]
          },
          {
            "claimId": "click-brand.event_at_ms",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.event_at_ms",
            "value": 1775646000000,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.event_at_ms"
              }
            ]
          },
          {
            "claimId": "click-brand.evidence_rank",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.evidence_rank",
            "value": 0,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.evidence_rank"
              }
            ]
          },
          {
            "claimId": "click-brand.marketing_touch",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.marketing_touch",
            "value": true,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.marketing_touch"
              }
            ]
          }
        ]
      },
      "arguments": {
        "property": "property-104",
        "opportunity": "acquisition-204",
        "sellerGroup": "seller-group-14",
        "windowStart": 1772323200000,
        "qualificationAt": 1775746800000,
        "admittedRank": 0
      },
      "receipt": {
        "resultVersion": "t2k.graph-result.v1",
        "status": "complete",
        "value": [
          {
            "touchId": "click-brand",
            "channelId": "search-brand",
            "eventAtMs": 1775646000000,
            "evidenceRank": 0
          },
          {
            "touchId": "click-nonbrand",
            "channelId": "search-nonbrand",
            "eventAtMs": 1775210400000,
            "evidenceRank": 0
          }
        ],
        "authorization": "not_authorized",
        "binding": {
          "runtimeVersion": "t2k.graph-runtime.v1",
          "functionHash": "c0aa7b713a989a49764860e270b776fcbd76416e07891e48a43920029a6aa40d",
          "ontologyResolutionHash": "c1f42aba94b41cc81e2ba87abe71a6263a91a15226cc24ee279c2183f576533f",
          "graphKey": "demo.cash-homebuyer",
          "asOf": "2026-09-15T23:59:59.000Z",
          "snapshotHash": "1812bf10a3af3876d044992b2c96a4b9d6abfe5b128ffff513334ce269884dc8",
          "argumentsHash": "42e0e7d41d126edcc85e8694a0a6c610ab82f2484d117738872465ddbc3c08ac"
        },
        "evidence": [
          {
            "claimId": "click-brand.channel_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.channel_id"
              }
            ]
          },
          {
            "claimId": "click-brand.event_at_ms",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.event_at_ms"
              }
            ]
          },
          {
            "claimId": "click-brand.evidence_rank",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.evidence_rank"
              }
            ]
          },
          {
            "claimId": "click-brand.marketing_touch",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.marketing_touch"
              }
            ]
          },
          {
            "claimId": "click-brand.opportunity_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.opportunity_id"
              }
            ]
          },
          {
            "claimId": "click-brand.property_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.property_id"
              }
            ]
          },
          {
            "claimId": "click-brand.seller_group_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.seller_group_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.channel_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.channel_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.event_at_ms",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.event_at_ms"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.evidence_rank",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.evidence_rank"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.marketing_touch",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.marketing_touch"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.opportunity_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.opportunity_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.property_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.property_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.seller_group_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.seller_group_id"
              }
            ]
          }
        ],
        "supportingClaimIds": [
          "click-brand.channel_id",
          "click-brand.event_at_ms",
          "click-brand.evidence_rank",
          "click-brand.marketing_touch",
          "click-brand.opportunity_id",
          "click-brand.property_id",
          "click-brand.seller_group_id",
          "click-nonbrand.channel_id",
          "click-nonbrand.event_at_ms",
          "click-nonbrand.evidence_rank",
          "click-nonbrand.marketing_touch",
          "click-nonbrand.opportunity_id",
          "click-nonbrand.property_id",
          "click-nonbrand.seller_group_id"
        ],
        "derivations": [
          {
            "rowHash": "694a95e1c5a20b2c4181a07122a2a687fc67128c10a258b2430fa33c69ae9712",
            "claimIds": [
              "click-brand.channel_id",
              "click-brand.event_at_ms",
              "click-brand.evidence_rank",
              "click-brand.marketing_touch",
              "click-brand.opportunity_id",
              "click-brand.property_id",
              "click-brand.seller_group_id"
            ]
          },
          {
            "rowHash": "8a86502664d35468a58d6eb7e6e5c9be4dfb70904e624e59abad3daa6bd71e31",
            "claimIds": [
              "click-nonbrand.channel_id",
              "click-nonbrand.event_at_ms",
              "click-nonbrand.evidence_rank",
              "click-nonbrand.marketing_touch",
              "click-nonbrand.opportunity_id",
              "click-nonbrand.property_id",
              "click-nonbrand.seller_group_id"
            ]
          }
        ],
        "exclusions": [],
        "issues": [],
        "trace": [
          {
            "stepId": "touches",
            "operator": "lookup",
            "inputRows": 0,
            "outputRows": 2,
            "claimIds": [],
            "outputHash": "b5e54beeeb9e33347b6c6703bc8db26cc46e26ee22225bf368b569bf7d8f21c2"
          },
          {
            "stepId": "eligible",
            "operator": "filter",
            "inputRows": 2,
            "outputRows": 2,
            "claimIds": [
              "click-brand.event_at_ms",
              "click-brand.evidence_rank",
              "click-brand.marketing_touch",
              "click-brand.opportunity_id",
              "click-brand.property_id",
              "click-brand.seller_group_id",
              "click-nonbrand.event_at_ms",
              "click-nonbrand.evidence_rank",
              "click-nonbrand.marketing_touch",
              "click-nonbrand.opportunity_id",
              "click-nonbrand.property_id",
              "click-nonbrand.seller_group_id"
            ],
            "outputHash": "8864bff38933853cc1e817ba21ea80f93b0b754a138347c03d066fddef7ec24b"
          },
          {
            "stepId": "rows",
            "operator": "project",
            "inputRows": 2,
            "outputRows": 2,
            "claimIds": [
              "click-brand.channel_id",
              "click-brand.event_at_ms",
              "click-brand.evidence_rank",
              "click-nonbrand.channel_id",
              "click-nonbrand.event_at_ms",
              "click-nonbrand.evidence_rank"
            ],
            "outputHash": "078dbc75a2ac1b1ea6e98b028bdb1c2655ebf9eac5681b4b98c9e64ac4242bac"
          }
        ],
        "work": 87,
        "resultHash": "44d4b2ab8d7210697eec584a39463625ba5208270192afda2c234c9dc57afdd8"
      }
    },
    "mapping|reported|contract": {
      "graph": {
        "snapshotVersion": "t2k.reasoning-graph.v1",
        "graphKey": "demo.cash-homebuyer",
        "asOf": "2026-05-15T23:59:59Z",
        "ontologyResolutionHash": "c1f42aba94b41cc81e2ba87abe71a6263a91a15226cc24ee279c2183f576533f",
        "coverage": "complete",
        "entities": [
          {
            "entityId": "click-nonbrand",
            "typeRef": "demo.cash-homebuyer:touchpoint"
          },
          {
            "entityId": "click-brand",
            "typeRef": "demo.cash-homebuyer:touchpoint"
          }
        ],
        "claims": [
          {
            "claimId": "click-nonbrand.property_id",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.property_id",
            "value": "property-104",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.property_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.opportunity_id",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.opportunity_id",
            "value": "acquisition-204",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.opportunity_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.seller_group_id",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.seller_group_id",
            "value": "seller-group-14",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.seller_group_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.channel_id",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.channel_id",
            "value": "search-nonbrand",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.channel_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.event_at_ms",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.event_at_ms",
            "value": 1775210400000,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.event_at_ms"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.evidence_rank",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.evidence_rank",
            "value": 0,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.evidence_rank"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.marketing_touch",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.marketing_touch",
            "value": true,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.marketing_touch"
              }
            ]
          },
          {
            "claimId": "click-brand.property_id",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.property_id",
            "value": "property-104",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.property_id"
              }
            ]
          },
          {
            "claimId": "click-brand.opportunity_id",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.opportunity_id",
            "value": "acquisition-204",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.opportunity_id"
              }
            ]
          },
          {
            "claimId": "click-brand.seller_group_id",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.seller_group_id",
            "value": "seller-group-14",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.seller_group_id"
              }
            ]
          },
          {
            "claimId": "click-brand.channel_id",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.channel_id",
            "value": "search-brand",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.channel_id"
              }
            ]
          },
          {
            "claimId": "click-brand.event_at_ms",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.event_at_ms",
            "value": 1775646000000,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.event_at_ms"
              }
            ]
          },
          {
            "claimId": "click-brand.evidence_rank",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.evidence_rank",
            "value": 0,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.evidence_rank"
              }
            ]
          },
          {
            "claimId": "click-brand.marketing_touch",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.marketing_touch",
            "value": true,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.marketing_touch"
              }
            ]
          }
        ]
      },
      "arguments": {
        "property": "property-104",
        "opportunity": "acquisition-204",
        "sellerGroup": "seller-group-14",
        "windowStart": 1772323200000,
        "qualificationAt": 1775746800000,
        "admittedRank": 1
      },
      "receipt": {
        "resultVersion": "t2k.graph-result.v1",
        "status": "complete",
        "value": [
          {
            "touchId": "click-brand",
            "channelId": "search-brand",
            "eventAtMs": 1775646000000,
            "evidenceRank": 0
          },
          {
            "touchId": "click-nonbrand",
            "channelId": "search-nonbrand",
            "eventAtMs": 1775210400000,
            "evidenceRank": 0
          }
        ],
        "authorization": "not_authorized",
        "binding": {
          "runtimeVersion": "t2k.graph-runtime.v1",
          "functionHash": "c0aa7b713a989a49764860e270b776fcbd76416e07891e48a43920029a6aa40d",
          "ontologyResolutionHash": "c1f42aba94b41cc81e2ba87abe71a6263a91a15226cc24ee279c2183f576533f",
          "graphKey": "demo.cash-homebuyer",
          "asOf": "2026-05-15T23:59:59.000Z",
          "snapshotHash": "ce0d1ea1084615732b662e32ce6b69ae77ea2a75405f6d796be27a207e8b6267",
          "argumentsHash": "cd8690f832630034ecce3c948890d1e8f4ac84aebf4d3b80bcff6e7dcae3c8ab"
        },
        "evidence": [
          {
            "claimId": "click-brand.channel_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.channel_id"
              }
            ]
          },
          {
            "claimId": "click-brand.event_at_ms",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.event_at_ms"
              }
            ]
          },
          {
            "claimId": "click-brand.evidence_rank",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.evidence_rank"
              }
            ]
          },
          {
            "claimId": "click-brand.marketing_touch",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.marketing_touch"
              }
            ]
          },
          {
            "claimId": "click-brand.opportunity_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.opportunity_id"
              }
            ]
          },
          {
            "claimId": "click-brand.property_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.property_id"
              }
            ]
          },
          {
            "claimId": "click-brand.seller_group_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.seller_group_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.channel_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.channel_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.event_at_ms",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.event_at_ms"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.evidence_rank",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.evidence_rank"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.marketing_touch",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.marketing_touch"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.opportunity_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.opportunity_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.property_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.property_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.seller_group_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.seller_group_id"
              }
            ]
          }
        ],
        "supportingClaimIds": [
          "click-brand.channel_id",
          "click-brand.event_at_ms",
          "click-brand.evidence_rank",
          "click-brand.marketing_touch",
          "click-brand.opportunity_id",
          "click-brand.property_id",
          "click-brand.seller_group_id",
          "click-nonbrand.channel_id",
          "click-nonbrand.event_at_ms",
          "click-nonbrand.evidence_rank",
          "click-nonbrand.marketing_touch",
          "click-nonbrand.opportunity_id",
          "click-nonbrand.property_id",
          "click-nonbrand.seller_group_id"
        ],
        "derivations": [
          {
            "rowHash": "694a95e1c5a20b2c4181a07122a2a687fc67128c10a258b2430fa33c69ae9712",
            "claimIds": [
              "click-brand.channel_id",
              "click-brand.event_at_ms",
              "click-brand.evidence_rank",
              "click-brand.marketing_touch",
              "click-brand.opportunity_id",
              "click-brand.property_id",
              "click-brand.seller_group_id"
            ]
          },
          {
            "rowHash": "8a86502664d35468a58d6eb7e6e5c9be4dfb70904e624e59abad3daa6bd71e31",
            "claimIds": [
              "click-nonbrand.channel_id",
              "click-nonbrand.event_at_ms",
              "click-nonbrand.evidence_rank",
              "click-nonbrand.marketing_touch",
              "click-nonbrand.opportunity_id",
              "click-nonbrand.property_id",
              "click-nonbrand.seller_group_id"
            ]
          }
        ],
        "exclusions": [],
        "issues": [],
        "trace": [
          {
            "stepId": "touches",
            "operator": "lookup",
            "inputRows": 0,
            "outputRows": 2,
            "claimIds": [],
            "outputHash": "b5e54beeeb9e33347b6c6703bc8db26cc46e26ee22225bf368b569bf7d8f21c2"
          },
          {
            "stepId": "eligible",
            "operator": "filter",
            "inputRows": 2,
            "outputRows": 2,
            "claimIds": [
              "click-brand.event_at_ms",
              "click-brand.evidence_rank",
              "click-brand.marketing_touch",
              "click-brand.opportunity_id",
              "click-brand.property_id",
              "click-brand.seller_group_id",
              "click-nonbrand.event_at_ms",
              "click-nonbrand.evidence_rank",
              "click-nonbrand.marketing_touch",
              "click-nonbrand.opportunity_id",
              "click-nonbrand.property_id",
              "click-nonbrand.seller_group_id"
            ],
            "outputHash": "8864bff38933853cc1e817ba21ea80f93b0b754a138347c03d066fddef7ec24b"
          },
          {
            "stepId": "rows",
            "operator": "project",
            "inputRows": 2,
            "outputRows": 2,
            "claimIds": [
              "click-brand.channel_id",
              "click-brand.event_at_ms",
              "click-brand.evidence_rank",
              "click-nonbrand.channel_id",
              "click-nonbrand.event_at_ms",
              "click-nonbrand.evidence_rank"
            ],
            "outputHash": "078dbc75a2ac1b1ea6e98b028bdb1c2655ebf9eac5681b4b98c9e64ac4242bac"
          }
        ],
        "work": 87,
        "resultHash": "b983200dfc08bf82074c9ac66084fd86f7510dc80fc4faf80802c24dc44512c9"
      }
    },
    "mapping|reported|acquired": {
      "graph": {
        "snapshotVersion": "t2k.reasoning-graph.v1",
        "graphKey": "demo.cash-homebuyer",
        "asOf": "2026-06-15T23:59:59Z",
        "ontologyResolutionHash": "c1f42aba94b41cc81e2ba87abe71a6263a91a15226cc24ee279c2183f576533f",
        "coverage": "complete",
        "entities": [
          {
            "entityId": "click-nonbrand",
            "typeRef": "demo.cash-homebuyer:touchpoint"
          },
          {
            "entityId": "click-brand",
            "typeRef": "demo.cash-homebuyer:touchpoint"
          }
        ],
        "claims": [
          {
            "claimId": "click-nonbrand.property_id",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.property_id",
            "value": "property-104",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.property_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.opportunity_id",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.opportunity_id",
            "value": "acquisition-204",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.opportunity_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.seller_group_id",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.seller_group_id",
            "value": "seller-group-14",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.seller_group_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.channel_id",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.channel_id",
            "value": "search-nonbrand",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.channel_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.event_at_ms",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.event_at_ms",
            "value": 1775210400000,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.event_at_ms"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.evidence_rank",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.evidence_rank",
            "value": 0,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.evidence_rank"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.marketing_touch",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.marketing_touch",
            "value": true,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.marketing_touch"
              }
            ]
          },
          {
            "claimId": "click-brand.property_id",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.property_id",
            "value": "property-104",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.property_id"
              }
            ]
          },
          {
            "claimId": "click-brand.opportunity_id",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.opportunity_id",
            "value": "acquisition-204",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.opportunity_id"
              }
            ]
          },
          {
            "claimId": "click-brand.seller_group_id",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.seller_group_id",
            "value": "seller-group-14",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.seller_group_id"
              }
            ]
          },
          {
            "claimId": "click-brand.channel_id",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.channel_id",
            "value": "search-brand",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.channel_id"
              }
            ]
          },
          {
            "claimId": "click-brand.event_at_ms",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.event_at_ms",
            "value": 1775646000000,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.event_at_ms"
              }
            ]
          },
          {
            "claimId": "click-brand.evidence_rank",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.evidence_rank",
            "value": 0,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.evidence_rank"
              }
            ]
          },
          {
            "claimId": "click-brand.marketing_touch",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.marketing_touch",
            "value": true,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.marketing_touch"
              }
            ]
          }
        ]
      },
      "arguments": {
        "property": "property-104",
        "opportunity": "acquisition-204",
        "sellerGroup": "seller-group-14",
        "windowStart": 1772323200000,
        "qualificationAt": 1775746800000,
        "admittedRank": 1
      },
      "receipt": {
        "resultVersion": "t2k.graph-result.v1",
        "status": "complete",
        "value": [
          {
            "touchId": "click-brand",
            "channelId": "search-brand",
            "eventAtMs": 1775646000000,
            "evidenceRank": 0
          },
          {
            "touchId": "click-nonbrand",
            "channelId": "search-nonbrand",
            "eventAtMs": 1775210400000,
            "evidenceRank": 0
          }
        ],
        "authorization": "not_authorized",
        "binding": {
          "runtimeVersion": "t2k.graph-runtime.v1",
          "functionHash": "c0aa7b713a989a49764860e270b776fcbd76416e07891e48a43920029a6aa40d",
          "ontologyResolutionHash": "c1f42aba94b41cc81e2ba87abe71a6263a91a15226cc24ee279c2183f576533f",
          "graphKey": "demo.cash-homebuyer",
          "asOf": "2026-06-15T23:59:59.000Z",
          "snapshotHash": "8614b18e51d70dfc8c55b9f4989358baf3b75ba545043f35d1ca34aab74403ae",
          "argumentsHash": "cd8690f832630034ecce3c948890d1e8f4ac84aebf4d3b80bcff6e7dcae3c8ab"
        },
        "evidence": [
          {
            "claimId": "click-brand.channel_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.channel_id"
              }
            ]
          },
          {
            "claimId": "click-brand.event_at_ms",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.event_at_ms"
              }
            ]
          },
          {
            "claimId": "click-brand.evidence_rank",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.evidence_rank"
              }
            ]
          },
          {
            "claimId": "click-brand.marketing_touch",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.marketing_touch"
              }
            ]
          },
          {
            "claimId": "click-brand.opportunity_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.opportunity_id"
              }
            ]
          },
          {
            "claimId": "click-brand.property_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.property_id"
              }
            ]
          },
          {
            "claimId": "click-brand.seller_group_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.seller_group_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.channel_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.channel_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.event_at_ms",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.event_at_ms"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.evidence_rank",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.evidence_rank"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.marketing_touch",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.marketing_touch"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.opportunity_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.opportunity_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.property_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.property_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.seller_group_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.seller_group_id"
              }
            ]
          }
        ],
        "supportingClaimIds": [
          "click-brand.channel_id",
          "click-brand.event_at_ms",
          "click-brand.evidence_rank",
          "click-brand.marketing_touch",
          "click-brand.opportunity_id",
          "click-brand.property_id",
          "click-brand.seller_group_id",
          "click-nonbrand.channel_id",
          "click-nonbrand.event_at_ms",
          "click-nonbrand.evidence_rank",
          "click-nonbrand.marketing_touch",
          "click-nonbrand.opportunity_id",
          "click-nonbrand.property_id",
          "click-nonbrand.seller_group_id"
        ],
        "derivations": [
          {
            "rowHash": "694a95e1c5a20b2c4181a07122a2a687fc67128c10a258b2430fa33c69ae9712",
            "claimIds": [
              "click-brand.channel_id",
              "click-brand.event_at_ms",
              "click-brand.evidence_rank",
              "click-brand.marketing_touch",
              "click-brand.opportunity_id",
              "click-brand.property_id",
              "click-brand.seller_group_id"
            ]
          },
          {
            "rowHash": "8a86502664d35468a58d6eb7e6e5c9be4dfb70904e624e59abad3daa6bd71e31",
            "claimIds": [
              "click-nonbrand.channel_id",
              "click-nonbrand.event_at_ms",
              "click-nonbrand.evidence_rank",
              "click-nonbrand.marketing_touch",
              "click-nonbrand.opportunity_id",
              "click-nonbrand.property_id",
              "click-nonbrand.seller_group_id"
            ]
          }
        ],
        "exclusions": [],
        "issues": [],
        "trace": [
          {
            "stepId": "touches",
            "operator": "lookup",
            "inputRows": 0,
            "outputRows": 2,
            "claimIds": [],
            "outputHash": "b5e54beeeb9e33347b6c6703bc8db26cc46e26ee22225bf368b569bf7d8f21c2"
          },
          {
            "stepId": "eligible",
            "operator": "filter",
            "inputRows": 2,
            "outputRows": 2,
            "claimIds": [
              "click-brand.event_at_ms",
              "click-brand.evidence_rank",
              "click-brand.marketing_touch",
              "click-brand.opportunity_id",
              "click-brand.property_id",
              "click-brand.seller_group_id",
              "click-nonbrand.event_at_ms",
              "click-nonbrand.evidence_rank",
              "click-nonbrand.marketing_touch",
              "click-nonbrand.opportunity_id",
              "click-nonbrand.property_id",
              "click-nonbrand.seller_group_id"
            ],
            "outputHash": "8864bff38933853cc1e817ba21ea80f93b0b754a138347c03d066fddef7ec24b"
          },
          {
            "stepId": "rows",
            "operator": "project",
            "inputRows": 2,
            "outputRows": 2,
            "claimIds": [
              "click-brand.channel_id",
              "click-brand.event_at_ms",
              "click-brand.evidence_rank",
              "click-nonbrand.channel_id",
              "click-nonbrand.event_at_ms",
              "click-nonbrand.evidence_rank"
            ],
            "outputHash": "078dbc75a2ac1b1ea6e98b028bdb1c2655ebf9eac5681b4b98c9e64ac4242bac"
          }
        ],
        "work": 87,
        "resultHash": "c88fa17158addb166c0645767874f7d9130c2a7a3f76308ab7586b0a4ac23dc7"
      }
    },
    "mapping|reported|resale": {
      "graph": {
        "snapshotVersion": "t2k.reasoning-graph.v1",
        "graphKey": "demo.cash-homebuyer",
        "asOf": "2026-09-15T23:59:59Z",
        "ontologyResolutionHash": "c1f42aba94b41cc81e2ba87abe71a6263a91a15226cc24ee279c2183f576533f",
        "coverage": "complete",
        "entities": [
          {
            "entityId": "click-nonbrand",
            "typeRef": "demo.cash-homebuyer:touchpoint"
          },
          {
            "entityId": "click-brand",
            "typeRef": "demo.cash-homebuyer:touchpoint"
          }
        ],
        "claims": [
          {
            "claimId": "click-nonbrand.property_id",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.property_id",
            "value": "property-104",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.property_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.opportunity_id",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.opportunity_id",
            "value": "acquisition-204",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.opportunity_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.seller_group_id",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.seller_group_id",
            "value": "seller-group-14",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.seller_group_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.channel_id",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.channel_id",
            "value": "search-nonbrand",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.channel_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.event_at_ms",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.event_at_ms",
            "value": 1775210400000,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.event_at_ms"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.evidence_rank",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.evidence_rank",
            "value": 0,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.evidence_rank"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.marketing_touch",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.marketing_touch",
            "value": true,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.marketing_touch"
              }
            ]
          },
          {
            "claimId": "click-brand.property_id",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.property_id",
            "value": "property-104",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.property_id"
              }
            ]
          },
          {
            "claimId": "click-brand.opportunity_id",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.opportunity_id",
            "value": "acquisition-204",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.opportunity_id"
              }
            ]
          },
          {
            "claimId": "click-brand.seller_group_id",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.seller_group_id",
            "value": "seller-group-14",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.seller_group_id"
              }
            ]
          },
          {
            "claimId": "click-brand.channel_id",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.channel_id",
            "value": "search-brand",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.channel_id"
              }
            ]
          },
          {
            "claimId": "click-brand.event_at_ms",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.event_at_ms",
            "value": 1775646000000,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.event_at_ms"
              }
            ]
          },
          {
            "claimId": "click-brand.evidence_rank",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.evidence_rank",
            "value": 0,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.evidence_rank"
              }
            ]
          },
          {
            "claimId": "click-brand.marketing_touch",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.marketing_touch",
            "value": true,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.marketing_touch"
              }
            ]
          }
        ]
      },
      "arguments": {
        "property": "property-104",
        "opportunity": "acquisition-204",
        "sellerGroup": "seller-group-14",
        "windowStart": 1772323200000,
        "qualificationAt": 1775746800000,
        "admittedRank": 1
      },
      "receipt": {
        "resultVersion": "t2k.graph-result.v1",
        "status": "complete",
        "value": [
          {
            "touchId": "click-brand",
            "channelId": "search-brand",
            "eventAtMs": 1775646000000,
            "evidenceRank": 0
          },
          {
            "touchId": "click-nonbrand",
            "channelId": "search-nonbrand",
            "eventAtMs": 1775210400000,
            "evidenceRank": 0
          }
        ],
        "authorization": "not_authorized",
        "binding": {
          "runtimeVersion": "t2k.graph-runtime.v1",
          "functionHash": "c0aa7b713a989a49764860e270b776fcbd76416e07891e48a43920029a6aa40d",
          "ontologyResolutionHash": "c1f42aba94b41cc81e2ba87abe71a6263a91a15226cc24ee279c2183f576533f",
          "graphKey": "demo.cash-homebuyer",
          "asOf": "2026-09-15T23:59:59.000Z",
          "snapshotHash": "1812bf10a3af3876d044992b2c96a4b9d6abfe5b128ffff513334ce269884dc8",
          "argumentsHash": "cd8690f832630034ecce3c948890d1e8f4ac84aebf4d3b80bcff6e7dcae3c8ab"
        },
        "evidence": [
          {
            "claimId": "click-brand.channel_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.channel_id"
              }
            ]
          },
          {
            "claimId": "click-brand.event_at_ms",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.event_at_ms"
              }
            ]
          },
          {
            "claimId": "click-brand.evidence_rank",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.evidence_rank"
              }
            ]
          },
          {
            "claimId": "click-brand.marketing_touch",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.marketing_touch"
              }
            ]
          },
          {
            "claimId": "click-brand.opportunity_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.opportunity_id"
              }
            ]
          },
          {
            "claimId": "click-brand.property_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.property_id"
              }
            ]
          },
          {
            "claimId": "click-brand.seller_group_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.seller_group_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.channel_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.channel_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.event_at_ms",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.event_at_ms"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.evidence_rank",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.evidence_rank"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.marketing_touch",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.marketing_touch"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.opportunity_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.opportunity_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.property_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.property_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.seller_group_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.seller_group_id"
              }
            ]
          }
        ],
        "supportingClaimIds": [
          "click-brand.channel_id",
          "click-brand.event_at_ms",
          "click-brand.evidence_rank",
          "click-brand.marketing_touch",
          "click-brand.opportunity_id",
          "click-brand.property_id",
          "click-brand.seller_group_id",
          "click-nonbrand.channel_id",
          "click-nonbrand.event_at_ms",
          "click-nonbrand.evidence_rank",
          "click-nonbrand.marketing_touch",
          "click-nonbrand.opportunity_id",
          "click-nonbrand.property_id",
          "click-nonbrand.seller_group_id"
        ],
        "derivations": [
          {
            "rowHash": "694a95e1c5a20b2c4181a07122a2a687fc67128c10a258b2430fa33c69ae9712",
            "claimIds": [
              "click-brand.channel_id",
              "click-brand.event_at_ms",
              "click-brand.evidence_rank",
              "click-brand.marketing_touch",
              "click-brand.opportunity_id",
              "click-brand.property_id",
              "click-brand.seller_group_id"
            ]
          },
          {
            "rowHash": "8a86502664d35468a58d6eb7e6e5c9be4dfb70904e624e59abad3daa6bd71e31",
            "claimIds": [
              "click-nonbrand.channel_id",
              "click-nonbrand.event_at_ms",
              "click-nonbrand.evidence_rank",
              "click-nonbrand.marketing_touch",
              "click-nonbrand.opportunity_id",
              "click-nonbrand.property_id",
              "click-nonbrand.seller_group_id"
            ]
          }
        ],
        "exclusions": [],
        "issues": [],
        "trace": [
          {
            "stepId": "touches",
            "operator": "lookup",
            "inputRows": 0,
            "outputRows": 2,
            "claimIds": [],
            "outputHash": "b5e54beeeb9e33347b6c6703bc8db26cc46e26ee22225bf368b569bf7d8f21c2"
          },
          {
            "stepId": "eligible",
            "operator": "filter",
            "inputRows": 2,
            "outputRows": 2,
            "claimIds": [
              "click-brand.event_at_ms",
              "click-brand.evidence_rank",
              "click-brand.marketing_touch",
              "click-brand.opportunity_id",
              "click-brand.property_id",
              "click-brand.seller_group_id",
              "click-nonbrand.event_at_ms",
              "click-nonbrand.evidence_rank",
              "click-nonbrand.marketing_touch",
              "click-nonbrand.opportunity_id",
              "click-nonbrand.property_id",
              "click-nonbrand.seller_group_id"
            ],
            "outputHash": "8864bff38933853cc1e817ba21ea80f93b0b754a138347c03d066fddef7ec24b"
          },
          {
            "stepId": "rows",
            "operator": "project",
            "inputRows": 2,
            "outputRows": 2,
            "claimIds": [
              "click-brand.channel_id",
              "click-brand.event_at_ms",
              "click-brand.evidence_rank",
              "click-nonbrand.channel_id",
              "click-nonbrand.event_at_ms",
              "click-nonbrand.evidence_rank"
            ],
            "outputHash": "078dbc75a2ac1b1ea6e98b028bdb1c2655ebf9eac5681b4b98c9e64ac4242bac"
          }
        ],
        "work": 87,
        "resultHash": "565816838d126cc6cfee981c62bf01fb0947e7451f9b8344ce47b57c7f14d05f"
      }
    },
    "repeat|observed|contract": {
      "graph": {
        "snapshotVersion": "t2k.reasoning-graph.v1",
        "graphKey": "demo.cash-homebuyer",
        "asOf": "2026-05-15T23:59:59Z",
        "ontologyResolutionHash": "c1f42aba94b41cc81e2ba87abe71a6263a91a15226cc24ee279c2183f576533f",
        "coverage": "complete",
        "entities": [
          {
            "entityId": "prior-referral",
            "typeRef": "demo.cash-homebuyer:touchpoint"
          },
          {
            "entityId": "click-nonbrand",
            "typeRef": "demo.cash-homebuyer:touchpoint"
          },
          {
            "entityId": "click-brand",
            "typeRef": "demo.cash-homebuyer:touchpoint"
          }
        ],
        "claims": [
          {
            "claimId": "prior-referral.property_id",
            "revision": "1",
            "subjectId": "prior-referral",
            "predicateRef": "demo.cash-homebuyer:touchpoint.property_id",
            "value": "property-104",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-03-12T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "prior-referral.property_id"
              }
            ]
          },
          {
            "claimId": "prior-referral.opportunity_id",
            "revision": "1",
            "subjectId": "prior-referral",
            "predicateRef": "demo.cash-homebuyer:touchpoint.opportunity_id",
            "value": "acquisition-203",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-03-12T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "prior-referral.opportunity_id"
              }
            ]
          },
          {
            "claimId": "prior-referral.seller_group_id",
            "revision": "1",
            "subjectId": "prior-referral",
            "predicateRef": "demo.cash-homebuyer:touchpoint.seller_group_id",
            "value": "seller-group-13",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-03-12T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "prior-referral.seller_group_id"
              }
            ]
          },
          {
            "claimId": "prior-referral.channel_id",
            "revision": "1",
            "subjectId": "prior-referral",
            "predicateRef": "demo.cash-homebuyer:touchpoint.channel_id",
            "value": "referral",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-03-12T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "prior-referral.channel_id"
              }
            ]
          },
          {
            "claimId": "prior-referral.event_at_ms",
            "revision": "1",
            "subjectId": "prior-referral",
            "predicateRef": "demo.cash-homebuyer:touchpoint.event_at_ms",
            "value": 1773309600000,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-03-12T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "prior-referral.event_at_ms"
              }
            ]
          },
          {
            "claimId": "prior-referral.evidence_rank",
            "revision": "1",
            "subjectId": "prior-referral",
            "predicateRef": "demo.cash-homebuyer:touchpoint.evidence_rank",
            "value": 0,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-03-12T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "prior-referral.evidence_rank"
              }
            ]
          },
          {
            "claimId": "prior-referral.marketing_touch",
            "revision": "1",
            "subjectId": "prior-referral",
            "predicateRef": "demo.cash-homebuyer:touchpoint.marketing_touch",
            "value": true,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-03-12T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "prior-referral.marketing_touch"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.property_id",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.property_id",
            "value": "property-104",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.property_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.opportunity_id",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.opportunity_id",
            "value": "acquisition-204",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.opportunity_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.seller_group_id",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.seller_group_id",
            "value": "seller-group-14",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.seller_group_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.channel_id",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.channel_id",
            "value": "search-nonbrand",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.channel_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.event_at_ms",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.event_at_ms",
            "value": 1775210400000,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.event_at_ms"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.evidence_rank",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.evidence_rank",
            "value": 0,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.evidence_rank"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.marketing_touch",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.marketing_touch",
            "value": true,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.marketing_touch"
              }
            ]
          },
          {
            "claimId": "click-brand.property_id",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.property_id",
            "value": "property-104",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.property_id"
              }
            ]
          },
          {
            "claimId": "click-brand.opportunity_id",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.opportunity_id",
            "value": "acquisition-204",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.opportunity_id"
              }
            ]
          },
          {
            "claimId": "click-brand.seller_group_id",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.seller_group_id",
            "value": "seller-group-14",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.seller_group_id"
              }
            ]
          },
          {
            "claimId": "click-brand.channel_id",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.channel_id",
            "value": "search-brand",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.channel_id"
              }
            ]
          },
          {
            "claimId": "click-brand.event_at_ms",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.event_at_ms",
            "value": 1775646000000,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.event_at_ms"
              }
            ]
          },
          {
            "claimId": "click-brand.evidence_rank",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.evidence_rank",
            "value": 0,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.evidence_rank"
              }
            ]
          },
          {
            "claimId": "click-brand.marketing_touch",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.marketing_touch",
            "value": true,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.marketing_touch"
              }
            ]
          }
        ]
      },
      "arguments": {
        "property": "property-104",
        "opportunity": "acquisition-204",
        "sellerGroup": "seller-group-14",
        "windowStart": 1772323200000,
        "qualificationAt": 1775746800000,
        "admittedRank": 0
      },
      "receipt": {
        "resultVersion": "t2k.graph-result.v1",
        "status": "complete",
        "value": [
          {
            "touchId": "click-brand",
            "channelId": "search-brand",
            "eventAtMs": 1775646000000,
            "evidenceRank": 0
          },
          {
            "touchId": "click-nonbrand",
            "channelId": "search-nonbrand",
            "eventAtMs": 1775210400000,
            "evidenceRank": 0
          }
        ],
        "authorization": "not_authorized",
        "binding": {
          "runtimeVersion": "t2k.graph-runtime.v1",
          "functionHash": "c0aa7b713a989a49764860e270b776fcbd76416e07891e48a43920029a6aa40d",
          "ontologyResolutionHash": "c1f42aba94b41cc81e2ba87abe71a6263a91a15226cc24ee279c2183f576533f",
          "graphKey": "demo.cash-homebuyer",
          "asOf": "2026-05-15T23:59:59.000Z",
          "snapshotHash": "286f49c0746d799fffc065dae2af9e933a8c433b73ce3ba6ac2a2787812dc54d",
          "argumentsHash": "42e0e7d41d126edcc85e8694a0a6c610ab82f2484d117738872465ddbc3c08ac"
        },
        "evidence": [
          {
            "claimId": "click-brand.channel_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.channel_id"
              }
            ]
          },
          {
            "claimId": "click-brand.event_at_ms",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.event_at_ms"
              }
            ]
          },
          {
            "claimId": "click-brand.evidence_rank",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.evidence_rank"
              }
            ]
          },
          {
            "claimId": "click-brand.marketing_touch",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.marketing_touch"
              }
            ]
          },
          {
            "claimId": "click-brand.opportunity_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.opportunity_id"
              }
            ]
          },
          {
            "claimId": "click-brand.property_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.property_id"
              }
            ]
          },
          {
            "claimId": "click-brand.seller_group_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.seller_group_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.channel_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.channel_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.event_at_ms",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.event_at_ms"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.evidence_rank",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.evidence_rank"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.marketing_touch",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.marketing_touch"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.opportunity_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.opportunity_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.property_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.property_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.seller_group_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.seller_group_id"
              }
            ]
          },
          {
            "claimId": "prior-referral.event_at_ms",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "prior-referral.event_at_ms"
              }
            ]
          },
          {
            "claimId": "prior-referral.evidence_rank",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "prior-referral.evidence_rank"
              }
            ]
          },
          {
            "claimId": "prior-referral.marketing_touch",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "prior-referral.marketing_touch"
              }
            ]
          },
          {
            "claimId": "prior-referral.opportunity_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "prior-referral.opportunity_id"
              }
            ]
          },
          {
            "claimId": "prior-referral.property_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "prior-referral.property_id"
              }
            ]
          },
          {
            "claimId": "prior-referral.seller_group_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "prior-referral.seller_group_id"
              }
            ]
          }
        ],
        "supportingClaimIds": [
          "click-brand.channel_id",
          "click-brand.event_at_ms",
          "click-brand.evidence_rank",
          "click-brand.marketing_touch",
          "click-brand.opportunity_id",
          "click-brand.property_id",
          "click-brand.seller_group_id",
          "click-nonbrand.channel_id",
          "click-nonbrand.event_at_ms",
          "click-nonbrand.evidence_rank",
          "click-nonbrand.marketing_touch",
          "click-nonbrand.opportunity_id",
          "click-nonbrand.property_id",
          "click-nonbrand.seller_group_id"
        ],
        "derivations": [
          {
            "rowHash": "694a95e1c5a20b2c4181a07122a2a687fc67128c10a258b2430fa33c69ae9712",
            "claimIds": [
              "click-brand.channel_id",
              "click-brand.event_at_ms",
              "click-brand.evidence_rank",
              "click-brand.marketing_touch",
              "click-brand.opportunity_id",
              "click-brand.property_id",
              "click-brand.seller_group_id"
            ]
          },
          {
            "rowHash": "8a86502664d35468a58d6eb7e6e5c9be4dfb70904e624e59abad3daa6bd71e31",
            "claimIds": [
              "click-nonbrand.channel_id",
              "click-nonbrand.event_at_ms",
              "click-nonbrand.evidence_rank",
              "click-nonbrand.marketing_touch",
              "click-nonbrand.opportunity_id",
              "click-nonbrand.property_id",
              "click-nonbrand.seller_group_id"
            ]
          }
        ],
        "exclusions": [
          {
            "stepId": "eligible",
            "bindings": {
              "touch": "prior-referral"
            },
            "reason": "Failed filter conditions: 1, 2",
            "claimIds": [
              "prior-referral.event_at_ms",
              "prior-referral.evidence_rank",
              "prior-referral.marketing_touch",
              "prior-referral.opportunity_id",
              "prior-referral.property_id",
              "prior-referral.seller_group_id"
            ]
          }
        ],
        "issues": [],
        "trace": [
          {
            "stepId": "touches",
            "operator": "lookup",
            "inputRows": 0,
            "outputRows": 3,
            "claimIds": [],
            "outputHash": "43db3b0829c9ccc44ef95b2ee2802f2a2174cfb727e446ef00263b2187b99902"
          },
          {
            "stepId": "eligible",
            "operator": "filter",
            "inputRows": 3,
            "outputRows": 2,
            "claimIds": [
              "click-brand.event_at_ms",
              "click-brand.evidence_rank",
              "click-brand.marketing_touch",
              "click-brand.opportunity_id",
              "click-brand.property_id",
              "click-brand.seller_group_id",
              "click-nonbrand.event_at_ms",
              "click-nonbrand.evidence_rank",
              "click-nonbrand.marketing_touch",
              "click-nonbrand.opportunity_id",
              "click-nonbrand.property_id",
              "click-nonbrand.seller_group_id",
              "prior-referral.event_at_ms",
              "prior-referral.evidence_rank",
              "prior-referral.marketing_touch",
              "prior-referral.opportunity_id",
              "prior-referral.property_id",
              "prior-referral.seller_group_id"
            ],
            "outputHash": "8864bff38933853cc1e817ba21ea80f93b0b754a138347c03d066fddef7ec24b"
          },
          {
            "stepId": "rows",
            "operator": "project",
            "inputRows": 2,
            "outputRows": 2,
            "claimIds": [
              "click-brand.channel_id",
              "click-brand.event_at_ms",
              "click-brand.evidence_rank",
              "click-nonbrand.channel_id",
              "click-nonbrand.event_at_ms",
              "click-nonbrand.evidence_rank"
            ],
            "outputHash": "078dbc75a2ac1b1ea6e98b028bdb1c2655ebf9eac5681b4b98c9e64ac4242bac"
          }
        ],
        "work": 122,
        "resultHash": "b7110233d72320487e8425cb50ae19b08aec710f932048d57e3308eab82981ff"
      }
    },
    "repeat|observed|acquired": {
      "graph": {
        "snapshotVersion": "t2k.reasoning-graph.v1",
        "graphKey": "demo.cash-homebuyer",
        "asOf": "2026-06-15T23:59:59Z",
        "ontologyResolutionHash": "c1f42aba94b41cc81e2ba87abe71a6263a91a15226cc24ee279c2183f576533f",
        "coverage": "complete",
        "entities": [
          {
            "entityId": "prior-referral",
            "typeRef": "demo.cash-homebuyer:touchpoint"
          },
          {
            "entityId": "click-nonbrand",
            "typeRef": "demo.cash-homebuyer:touchpoint"
          },
          {
            "entityId": "click-brand",
            "typeRef": "demo.cash-homebuyer:touchpoint"
          }
        ],
        "claims": [
          {
            "claimId": "prior-referral.property_id",
            "revision": "1",
            "subjectId": "prior-referral",
            "predicateRef": "demo.cash-homebuyer:touchpoint.property_id",
            "value": "property-104",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-03-12T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "prior-referral.property_id"
              }
            ]
          },
          {
            "claimId": "prior-referral.opportunity_id",
            "revision": "1",
            "subjectId": "prior-referral",
            "predicateRef": "demo.cash-homebuyer:touchpoint.opportunity_id",
            "value": "acquisition-203",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-03-12T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "prior-referral.opportunity_id"
              }
            ]
          },
          {
            "claimId": "prior-referral.seller_group_id",
            "revision": "1",
            "subjectId": "prior-referral",
            "predicateRef": "demo.cash-homebuyer:touchpoint.seller_group_id",
            "value": "seller-group-13",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-03-12T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "prior-referral.seller_group_id"
              }
            ]
          },
          {
            "claimId": "prior-referral.channel_id",
            "revision": "1",
            "subjectId": "prior-referral",
            "predicateRef": "demo.cash-homebuyer:touchpoint.channel_id",
            "value": "referral",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-03-12T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "prior-referral.channel_id"
              }
            ]
          },
          {
            "claimId": "prior-referral.event_at_ms",
            "revision": "1",
            "subjectId": "prior-referral",
            "predicateRef": "demo.cash-homebuyer:touchpoint.event_at_ms",
            "value": 1773309600000,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-03-12T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "prior-referral.event_at_ms"
              }
            ]
          },
          {
            "claimId": "prior-referral.evidence_rank",
            "revision": "1",
            "subjectId": "prior-referral",
            "predicateRef": "demo.cash-homebuyer:touchpoint.evidence_rank",
            "value": 0,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-03-12T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "prior-referral.evidence_rank"
              }
            ]
          },
          {
            "claimId": "prior-referral.marketing_touch",
            "revision": "1",
            "subjectId": "prior-referral",
            "predicateRef": "demo.cash-homebuyer:touchpoint.marketing_touch",
            "value": true,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-03-12T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "prior-referral.marketing_touch"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.property_id",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.property_id",
            "value": "property-104",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.property_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.opportunity_id",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.opportunity_id",
            "value": "acquisition-204",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.opportunity_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.seller_group_id",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.seller_group_id",
            "value": "seller-group-14",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.seller_group_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.channel_id",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.channel_id",
            "value": "search-nonbrand",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.channel_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.event_at_ms",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.event_at_ms",
            "value": 1775210400000,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.event_at_ms"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.evidence_rank",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.evidence_rank",
            "value": 0,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.evidence_rank"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.marketing_touch",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.marketing_touch",
            "value": true,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.marketing_touch"
              }
            ]
          },
          {
            "claimId": "click-brand.property_id",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.property_id",
            "value": "property-104",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.property_id"
              }
            ]
          },
          {
            "claimId": "click-brand.opportunity_id",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.opportunity_id",
            "value": "acquisition-204",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.opportunity_id"
              }
            ]
          },
          {
            "claimId": "click-brand.seller_group_id",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.seller_group_id",
            "value": "seller-group-14",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.seller_group_id"
              }
            ]
          },
          {
            "claimId": "click-brand.channel_id",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.channel_id",
            "value": "search-brand",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.channel_id"
              }
            ]
          },
          {
            "claimId": "click-brand.event_at_ms",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.event_at_ms",
            "value": 1775646000000,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.event_at_ms"
              }
            ]
          },
          {
            "claimId": "click-brand.evidence_rank",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.evidence_rank",
            "value": 0,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.evidence_rank"
              }
            ]
          },
          {
            "claimId": "click-brand.marketing_touch",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.marketing_touch",
            "value": true,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.marketing_touch"
              }
            ]
          }
        ]
      },
      "arguments": {
        "property": "property-104",
        "opportunity": "acquisition-204",
        "sellerGroup": "seller-group-14",
        "windowStart": 1772323200000,
        "qualificationAt": 1775746800000,
        "admittedRank": 0
      },
      "receipt": {
        "resultVersion": "t2k.graph-result.v1",
        "status": "complete",
        "value": [
          {
            "touchId": "click-brand",
            "channelId": "search-brand",
            "eventAtMs": 1775646000000,
            "evidenceRank": 0
          },
          {
            "touchId": "click-nonbrand",
            "channelId": "search-nonbrand",
            "eventAtMs": 1775210400000,
            "evidenceRank": 0
          }
        ],
        "authorization": "not_authorized",
        "binding": {
          "runtimeVersion": "t2k.graph-runtime.v1",
          "functionHash": "c0aa7b713a989a49764860e270b776fcbd76416e07891e48a43920029a6aa40d",
          "ontologyResolutionHash": "c1f42aba94b41cc81e2ba87abe71a6263a91a15226cc24ee279c2183f576533f",
          "graphKey": "demo.cash-homebuyer",
          "asOf": "2026-06-15T23:59:59.000Z",
          "snapshotHash": "22859c314b4d3f094a23af30365f8914e24bf0e468422f430ad3d95d78556039",
          "argumentsHash": "42e0e7d41d126edcc85e8694a0a6c610ab82f2484d117738872465ddbc3c08ac"
        },
        "evidence": [
          {
            "claimId": "click-brand.channel_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.channel_id"
              }
            ]
          },
          {
            "claimId": "click-brand.event_at_ms",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.event_at_ms"
              }
            ]
          },
          {
            "claimId": "click-brand.evidence_rank",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.evidence_rank"
              }
            ]
          },
          {
            "claimId": "click-brand.marketing_touch",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.marketing_touch"
              }
            ]
          },
          {
            "claimId": "click-brand.opportunity_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.opportunity_id"
              }
            ]
          },
          {
            "claimId": "click-brand.property_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.property_id"
              }
            ]
          },
          {
            "claimId": "click-brand.seller_group_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.seller_group_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.channel_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.channel_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.event_at_ms",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.event_at_ms"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.evidence_rank",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.evidence_rank"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.marketing_touch",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.marketing_touch"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.opportunity_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.opportunity_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.property_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.property_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.seller_group_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.seller_group_id"
              }
            ]
          },
          {
            "claimId": "prior-referral.event_at_ms",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "prior-referral.event_at_ms"
              }
            ]
          },
          {
            "claimId": "prior-referral.evidence_rank",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "prior-referral.evidence_rank"
              }
            ]
          },
          {
            "claimId": "prior-referral.marketing_touch",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "prior-referral.marketing_touch"
              }
            ]
          },
          {
            "claimId": "prior-referral.opportunity_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "prior-referral.opportunity_id"
              }
            ]
          },
          {
            "claimId": "prior-referral.property_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "prior-referral.property_id"
              }
            ]
          },
          {
            "claimId": "prior-referral.seller_group_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "prior-referral.seller_group_id"
              }
            ]
          }
        ],
        "supportingClaimIds": [
          "click-brand.channel_id",
          "click-brand.event_at_ms",
          "click-brand.evidence_rank",
          "click-brand.marketing_touch",
          "click-brand.opportunity_id",
          "click-brand.property_id",
          "click-brand.seller_group_id",
          "click-nonbrand.channel_id",
          "click-nonbrand.event_at_ms",
          "click-nonbrand.evidence_rank",
          "click-nonbrand.marketing_touch",
          "click-nonbrand.opportunity_id",
          "click-nonbrand.property_id",
          "click-nonbrand.seller_group_id"
        ],
        "derivations": [
          {
            "rowHash": "694a95e1c5a20b2c4181a07122a2a687fc67128c10a258b2430fa33c69ae9712",
            "claimIds": [
              "click-brand.channel_id",
              "click-brand.event_at_ms",
              "click-brand.evidence_rank",
              "click-brand.marketing_touch",
              "click-brand.opportunity_id",
              "click-brand.property_id",
              "click-brand.seller_group_id"
            ]
          },
          {
            "rowHash": "8a86502664d35468a58d6eb7e6e5c9be4dfb70904e624e59abad3daa6bd71e31",
            "claimIds": [
              "click-nonbrand.channel_id",
              "click-nonbrand.event_at_ms",
              "click-nonbrand.evidence_rank",
              "click-nonbrand.marketing_touch",
              "click-nonbrand.opportunity_id",
              "click-nonbrand.property_id",
              "click-nonbrand.seller_group_id"
            ]
          }
        ],
        "exclusions": [
          {
            "stepId": "eligible",
            "bindings": {
              "touch": "prior-referral"
            },
            "reason": "Failed filter conditions: 1, 2",
            "claimIds": [
              "prior-referral.event_at_ms",
              "prior-referral.evidence_rank",
              "prior-referral.marketing_touch",
              "prior-referral.opportunity_id",
              "prior-referral.property_id",
              "prior-referral.seller_group_id"
            ]
          }
        ],
        "issues": [],
        "trace": [
          {
            "stepId": "touches",
            "operator": "lookup",
            "inputRows": 0,
            "outputRows": 3,
            "claimIds": [],
            "outputHash": "43db3b0829c9ccc44ef95b2ee2802f2a2174cfb727e446ef00263b2187b99902"
          },
          {
            "stepId": "eligible",
            "operator": "filter",
            "inputRows": 3,
            "outputRows": 2,
            "claimIds": [
              "click-brand.event_at_ms",
              "click-brand.evidence_rank",
              "click-brand.marketing_touch",
              "click-brand.opportunity_id",
              "click-brand.property_id",
              "click-brand.seller_group_id",
              "click-nonbrand.event_at_ms",
              "click-nonbrand.evidence_rank",
              "click-nonbrand.marketing_touch",
              "click-nonbrand.opportunity_id",
              "click-nonbrand.property_id",
              "click-nonbrand.seller_group_id",
              "prior-referral.event_at_ms",
              "prior-referral.evidence_rank",
              "prior-referral.marketing_touch",
              "prior-referral.opportunity_id",
              "prior-referral.property_id",
              "prior-referral.seller_group_id"
            ],
            "outputHash": "8864bff38933853cc1e817ba21ea80f93b0b754a138347c03d066fddef7ec24b"
          },
          {
            "stepId": "rows",
            "operator": "project",
            "inputRows": 2,
            "outputRows": 2,
            "claimIds": [
              "click-brand.channel_id",
              "click-brand.event_at_ms",
              "click-brand.evidence_rank",
              "click-nonbrand.channel_id",
              "click-nonbrand.event_at_ms",
              "click-nonbrand.evidence_rank"
            ],
            "outputHash": "078dbc75a2ac1b1ea6e98b028bdb1c2655ebf9eac5681b4b98c9e64ac4242bac"
          }
        ],
        "work": 122,
        "resultHash": "acb3e055b4f62862104537d4431fdd4ed5fdd3d2465b13337a0358424c1e79cc"
      }
    },
    "repeat|observed|resale": {
      "graph": {
        "snapshotVersion": "t2k.reasoning-graph.v1",
        "graphKey": "demo.cash-homebuyer",
        "asOf": "2026-09-15T23:59:59Z",
        "ontologyResolutionHash": "c1f42aba94b41cc81e2ba87abe71a6263a91a15226cc24ee279c2183f576533f",
        "coverage": "complete",
        "entities": [
          {
            "entityId": "prior-referral",
            "typeRef": "demo.cash-homebuyer:touchpoint"
          },
          {
            "entityId": "click-nonbrand",
            "typeRef": "demo.cash-homebuyer:touchpoint"
          },
          {
            "entityId": "click-brand",
            "typeRef": "demo.cash-homebuyer:touchpoint"
          }
        ],
        "claims": [
          {
            "claimId": "prior-referral.property_id",
            "revision": "1",
            "subjectId": "prior-referral",
            "predicateRef": "demo.cash-homebuyer:touchpoint.property_id",
            "value": "property-104",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-03-12T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "prior-referral.property_id"
              }
            ]
          },
          {
            "claimId": "prior-referral.opportunity_id",
            "revision": "1",
            "subjectId": "prior-referral",
            "predicateRef": "demo.cash-homebuyer:touchpoint.opportunity_id",
            "value": "acquisition-203",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-03-12T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "prior-referral.opportunity_id"
              }
            ]
          },
          {
            "claimId": "prior-referral.seller_group_id",
            "revision": "1",
            "subjectId": "prior-referral",
            "predicateRef": "demo.cash-homebuyer:touchpoint.seller_group_id",
            "value": "seller-group-13",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-03-12T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "prior-referral.seller_group_id"
              }
            ]
          },
          {
            "claimId": "prior-referral.channel_id",
            "revision": "1",
            "subjectId": "prior-referral",
            "predicateRef": "demo.cash-homebuyer:touchpoint.channel_id",
            "value": "referral",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-03-12T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "prior-referral.channel_id"
              }
            ]
          },
          {
            "claimId": "prior-referral.event_at_ms",
            "revision": "1",
            "subjectId": "prior-referral",
            "predicateRef": "demo.cash-homebuyer:touchpoint.event_at_ms",
            "value": 1773309600000,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-03-12T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "prior-referral.event_at_ms"
              }
            ]
          },
          {
            "claimId": "prior-referral.evidence_rank",
            "revision": "1",
            "subjectId": "prior-referral",
            "predicateRef": "demo.cash-homebuyer:touchpoint.evidence_rank",
            "value": 0,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-03-12T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "prior-referral.evidence_rank"
              }
            ]
          },
          {
            "claimId": "prior-referral.marketing_touch",
            "revision": "1",
            "subjectId": "prior-referral",
            "predicateRef": "demo.cash-homebuyer:touchpoint.marketing_touch",
            "value": true,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-03-12T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "prior-referral.marketing_touch"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.property_id",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.property_id",
            "value": "property-104",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.property_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.opportunity_id",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.opportunity_id",
            "value": "acquisition-204",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.opportunity_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.seller_group_id",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.seller_group_id",
            "value": "seller-group-14",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.seller_group_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.channel_id",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.channel_id",
            "value": "search-nonbrand",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.channel_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.event_at_ms",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.event_at_ms",
            "value": 1775210400000,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.event_at_ms"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.evidence_rank",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.evidence_rank",
            "value": 0,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.evidence_rank"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.marketing_touch",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.marketing_touch",
            "value": true,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.marketing_touch"
              }
            ]
          },
          {
            "claimId": "click-brand.property_id",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.property_id",
            "value": "property-104",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.property_id"
              }
            ]
          },
          {
            "claimId": "click-brand.opportunity_id",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.opportunity_id",
            "value": "acquisition-204",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.opportunity_id"
              }
            ]
          },
          {
            "claimId": "click-brand.seller_group_id",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.seller_group_id",
            "value": "seller-group-14",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.seller_group_id"
              }
            ]
          },
          {
            "claimId": "click-brand.channel_id",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.channel_id",
            "value": "search-brand",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.channel_id"
              }
            ]
          },
          {
            "claimId": "click-brand.event_at_ms",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.event_at_ms",
            "value": 1775646000000,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.event_at_ms"
              }
            ]
          },
          {
            "claimId": "click-brand.evidence_rank",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.evidence_rank",
            "value": 0,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.evidence_rank"
              }
            ]
          },
          {
            "claimId": "click-brand.marketing_touch",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.marketing_touch",
            "value": true,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.marketing_touch"
              }
            ]
          }
        ]
      },
      "arguments": {
        "property": "property-104",
        "opportunity": "acquisition-204",
        "sellerGroup": "seller-group-14",
        "windowStart": 1772323200000,
        "qualificationAt": 1775746800000,
        "admittedRank": 0
      },
      "receipt": {
        "resultVersion": "t2k.graph-result.v1",
        "status": "complete",
        "value": [
          {
            "touchId": "click-brand",
            "channelId": "search-brand",
            "eventAtMs": 1775646000000,
            "evidenceRank": 0
          },
          {
            "touchId": "click-nonbrand",
            "channelId": "search-nonbrand",
            "eventAtMs": 1775210400000,
            "evidenceRank": 0
          }
        ],
        "authorization": "not_authorized",
        "binding": {
          "runtimeVersion": "t2k.graph-runtime.v1",
          "functionHash": "c0aa7b713a989a49764860e270b776fcbd76416e07891e48a43920029a6aa40d",
          "ontologyResolutionHash": "c1f42aba94b41cc81e2ba87abe71a6263a91a15226cc24ee279c2183f576533f",
          "graphKey": "demo.cash-homebuyer",
          "asOf": "2026-09-15T23:59:59.000Z",
          "snapshotHash": "408948fa957d7a71ddf895d5725e86caa50eecddc9925225c5aec5f59575a219",
          "argumentsHash": "42e0e7d41d126edcc85e8694a0a6c610ab82f2484d117738872465ddbc3c08ac"
        },
        "evidence": [
          {
            "claimId": "click-brand.channel_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.channel_id"
              }
            ]
          },
          {
            "claimId": "click-brand.event_at_ms",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.event_at_ms"
              }
            ]
          },
          {
            "claimId": "click-brand.evidence_rank",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.evidence_rank"
              }
            ]
          },
          {
            "claimId": "click-brand.marketing_touch",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.marketing_touch"
              }
            ]
          },
          {
            "claimId": "click-brand.opportunity_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.opportunity_id"
              }
            ]
          },
          {
            "claimId": "click-brand.property_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.property_id"
              }
            ]
          },
          {
            "claimId": "click-brand.seller_group_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.seller_group_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.channel_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.channel_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.event_at_ms",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.event_at_ms"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.evidence_rank",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.evidence_rank"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.marketing_touch",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.marketing_touch"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.opportunity_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.opportunity_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.property_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.property_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.seller_group_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.seller_group_id"
              }
            ]
          },
          {
            "claimId": "prior-referral.event_at_ms",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "prior-referral.event_at_ms"
              }
            ]
          },
          {
            "claimId": "prior-referral.evidence_rank",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "prior-referral.evidence_rank"
              }
            ]
          },
          {
            "claimId": "prior-referral.marketing_touch",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "prior-referral.marketing_touch"
              }
            ]
          },
          {
            "claimId": "prior-referral.opportunity_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "prior-referral.opportunity_id"
              }
            ]
          },
          {
            "claimId": "prior-referral.property_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "prior-referral.property_id"
              }
            ]
          },
          {
            "claimId": "prior-referral.seller_group_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "prior-referral.seller_group_id"
              }
            ]
          }
        ],
        "supportingClaimIds": [
          "click-brand.channel_id",
          "click-brand.event_at_ms",
          "click-brand.evidence_rank",
          "click-brand.marketing_touch",
          "click-brand.opportunity_id",
          "click-brand.property_id",
          "click-brand.seller_group_id",
          "click-nonbrand.channel_id",
          "click-nonbrand.event_at_ms",
          "click-nonbrand.evidence_rank",
          "click-nonbrand.marketing_touch",
          "click-nonbrand.opportunity_id",
          "click-nonbrand.property_id",
          "click-nonbrand.seller_group_id"
        ],
        "derivations": [
          {
            "rowHash": "694a95e1c5a20b2c4181a07122a2a687fc67128c10a258b2430fa33c69ae9712",
            "claimIds": [
              "click-brand.channel_id",
              "click-brand.event_at_ms",
              "click-brand.evidence_rank",
              "click-brand.marketing_touch",
              "click-brand.opportunity_id",
              "click-brand.property_id",
              "click-brand.seller_group_id"
            ]
          },
          {
            "rowHash": "8a86502664d35468a58d6eb7e6e5c9be4dfb70904e624e59abad3daa6bd71e31",
            "claimIds": [
              "click-nonbrand.channel_id",
              "click-nonbrand.event_at_ms",
              "click-nonbrand.evidence_rank",
              "click-nonbrand.marketing_touch",
              "click-nonbrand.opportunity_id",
              "click-nonbrand.property_id",
              "click-nonbrand.seller_group_id"
            ]
          }
        ],
        "exclusions": [
          {
            "stepId": "eligible",
            "bindings": {
              "touch": "prior-referral"
            },
            "reason": "Failed filter conditions: 1, 2",
            "claimIds": [
              "prior-referral.event_at_ms",
              "prior-referral.evidence_rank",
              "prior-referral.marketing_touch",
              "prior-referral.opportunity_id",
              "prior-referral.property_id",
              "prior-referral.seller_group_id"
            ]
          }
        ],
        "issues": [],
        "trace": [
          {
            "stepId": "touches",
            "operator": "lookup",
            "inputRows": 0,
            "outputRows": 3,
            "claimIds": [],
            "outputHash": "43db3b0829c9ccc44ef95b2ee2802f2a2174cfb727e446ef00263b2187b99902"
          },
          {
            "stepId": "eligible",
            "operator": "filter",
            "inputRows": 3,
            "outputRows": 2,
            "claimIds": [
              "click-brand.event_at_ms",
              "click-brand.evidence_rank",
              "click-brand.marketing_touch",
              "click-brand.opportunity_id",
              "click-brand.property_id",
              "click-brand.seller_group_id",
              "click-nonbrand.event_at_ms",
              "click-nonbrand.evidence_rank",
              "click-nonbrand.marketing_touch",
              "click-nonbrand.opportunity_id",
              "click-nonbrand.property_id",
              "click-nonbrand.seller_group_id",
              "prior-referral.event_at_ms",
              "prior-referral.evidence_rank",
              "prior-referral.marketing_touch",
              "prior-referral.opportunity_id",
              "prior-referral.property_id",
              "prior-referral.seller_group_id"
            ],
            "outputHash": "8864bff38933853cc1e817ba21ea80f93b0b754a138347c03d066fddef7ec24b"
          },
          {
            "stepId": "rows",
            "operator": "project",
            "inputRows": 2,
            "outputRows": 2,
            "claimIds": [
              "click-brand.channel_id",
              "click-brand.event_at_ms",
              "click-brand.evidence_rank",
              "click-nonbrand.channel_id",
              "click-nonbrand.event_at_ms",
              "click-nonbrand.evidence_rank"
            ],
            "outputHash": "078dbc75a2ac1b1ea6e98b028bdb1c2655ebf9eac5681b4b98c9e64ac4242bac"
          }
        ],
        "work": 122,
        "resultHash": "e8f3f82c8d64a050d8424b6859371ec2b4ae481987db12f0f6ed144835000614"
      }
    },
    "repeat|reported|contract": {
      "graph": {
        "snapshotVersion": "t2k.reasoning-graph.v1",
        "graphKey": "demo.cash-homebuyer",
        "asOf": "2026-05-15T23:59:59Z",
        "ontologyResolutionHash": "c1f42aba94b41cc81e2ba87abe71a6263a91a15226cc24ee279c2183f576533f",
        "coverage": "complete",
        "entities": [
          {
            "entityId": "prior-referral",
            "typeRef": "demo.cash-homebuyer:touchpoint"
          },
          {
            "entityId": "click-nonbrand",
            "typeRef": "demo.cash-homebuyer:touchpoint"
          },
          {
            "entityId": "click-brand",
            "typeRef": "demo.cash-homebuyer:touchpoint"
          }
        ],
        "claims": [
          {
            "claimId": "prior-referral.property_id",
            "revision": "1",
            "subjectId": "prior-referral",
            "predicateRef": "demo.cash-homebuyer:touchpoint.property_id",
            "value": "property-104",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-03-12T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "prior-referral.property_id"
              }
            ]
          },
          {
            "claimId": "prior-referral.opportunity_id",
            "revision": "1",
            "subjectId": "prior-referral",
            "predicateRef": "demo.cash-homebuyer:touchpoint.opportunity_id",
            "value": "acquisition-203",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-03-12T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "prior-referral.opportunity_id"
              }
            ]
          },
          {
            "claimId": "prior-referral.seller_group_id",
            "revision": "1",
            "subjectId": "prior-referral",
            "predicateRef": "demo.cash-homebuyer:touchpoint.seller_group_id",
            "value": "seller-group-13",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-03-12T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "prior-referral.seller_group_id"
              }
            ]
          },
          {
            "claimId": "prior-referral.channel_id",
            "revision": "1",
            "subjectId": "prior-referral",
            "predicateRef": "demo.cash-homebuyer:touchpoint.channel_id",
            "value": "referral",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-03-12T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "prior-referral.channel_id"
              }
            ]
          },
          {
            "claimId": "prior-referral.event_at_ms",
            "revision": "1",
            "subjectId": "prior-referral",
            "predicateRef": "demo.cash-homebuyer:touchpoint.event_at_ms",
            "value": 1773309600000,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-03-12T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "prior-referral.event_at_ms"
              }
            ]
          },
          {
            "claimId": "prior-referral.evidence_rank",
            "revision": "1",
            "subjectId": "prior-referral",
            "predicateRef": "demo.cash-homebuyer:touchpoint.evidence_rank",
            "value": 0,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-03-12T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "prior-referral.evidence_rank"
              }
            ]
          },
          {
            "claimId": "prior-referral.marketing_touch",
            "revision": "1",
            "subjectId": "prior-referral",
            "predicateRef": "demo.cash-homebuyer:touchpoint.marketing_touch",
            "value": true,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-03-12T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "prior-referral.marketing_touch"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.property_id",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.property_id",
            "value": "property-104",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.property_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.opportunity_id",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.opportunity_id",
            "value": "acquisition-204",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.opportunity_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.seller_group_id",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.seller_group_id",
            "value": "seller-group-14",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.seller_group_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.channel_id",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.channel_id",
            "value": "search-nonbrand",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.channel_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.event_at_ms",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.event_at_ms",
            "value": 1775210400000,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.event_at_ms"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.evidence_rank",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.evidence_rank",
            "value": 0,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.evidence_rank"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.marketing_touch",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.marketing_touch",
            "value": true,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.marketing_touch"
              }
            ]
          },
          {
            "claimId": "click-brand.property_id",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.property_id",
            "value": "property-104",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.property_id"
              }
            ]
          },
          {
            "claimId": "click-brand.opportunity_id",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.opportunity_id",
            "value": "acquisition-204",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.opportunity_id"
              }
            ]
          },
          {
            "claimId": "click-brand.seller_group_id",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.seller_group_id",
            "value": "seller-group-14",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.seller_group_id"
              }
            ]
          },
          {
            "claimId": "click-brand.channel_id",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.channel_id",
            "value": "search-brand",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.channel_id"
              }
            ]
          },
          {
            "claimId": "click-brand.event_at_ms",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.event_at_ms",
            "value": 1775646000000,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.event_at_ms"
              }
            ]
          },
          {
            "claimId": "click-brand.evidence_rank",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.evidence_rank",
            "value": 0,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.evidence_rank"
              }
            ]
          },
          {
            "claimId": "click-brand.marketing_touch",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.marketing_touch",
            "value": true,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.marketing_touch"
              }
            ]
          }
        ]
      },
      "arguments": {
        "property": "property-104",
        "opportunity": "acquisition-204",
        "sellerGroup": "seller-group-14",
        "windowStart": 1772323200000,
        "qualificationAt": 1775746800000,
        "admittedRank": 1
      },
      "receipt": {
        "resultVersion": "t2k.graph-result.v1",
        "status": "complete",
        "value": [
          {
            "touchId": "click-brand",
            "channelId": "search-brand",
            "eventAtMs": 1775646000000,
            "evidenceRank": 0
          },
          {
            "touchId": "click-nonbrand",
            "channelId": "search-nonbrand",
            "eventAtMs": 1775210400000,
            "evidenceRank": 0
          }
        ],
        "authorization": "not_authorized",
        "binding": {
          "runtimeVersion": "t2k.graph-runtime.v1",
          "functionHash": "c0aa7b713a989a49764860e270b776fcbd76416e07891e48a43920029a6aa40d",
          "ontologyResolutionHash": "c1f42aba94b41cc81e2ba87abe71a6263a91a15226cc24ee279c2183f576533f",
          "graphKey": "demo.cash-homebuyer",
          "asOf": "2026-05-15T23:59:59.000Z",
          "snapshotHash": "286f49c0746d799fffc065dae2af9e933a8c433b73ce3ba6ac2a2787812dc54d",
          "argumentsHash": "cd8690f832630034ecce3c948890d1e8f4ac84aebf4d3b80bcff6e7dcae3c8ab"
        },
        "evidence": [
          {
            "claimId": "click-brand.channel_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.channel_id"
              }
            ]
          },
          {
            "claimId": "click-brand.event_at_ms",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.event_at_ms"
              }
            ]
          },
          {
            "claimId": "click-brand.evidence_rank",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.evidence_rank"
              }
            ]
          },
          {
            "claimId": "click-brand.marketing_touch",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.marketing_touch"
              }
            ]
          },
          {
            "claimId": "click-brand.opportunity_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.opportunity_id"
              }
            ]
          },
          {
            "claimId": "click-brand.property_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.property_id"
              }
            ]
          },
          {
            "claimId": "click-brand.seller_group_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.seller_group_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.channel_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.channel_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.event_at_ms",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.event_at_ms"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.evidence_rank",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.evidence_rank"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.marketing_touch",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.marketing_touch"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.opportunity_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.opportunity_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.property_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.property_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.seller_group_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.seller_group_id"
              }
            ]
          },
          {
            "claimId": "prior-referral.event_at_ms",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "prior-referral.event_at_ms"
              }
            ]
          },
          {
            "claimId": "prior-referral.evidence_rank",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "prior-referral.evidence_rank"
              }
            ]
          },
          {
            "claimId": "prior-referral.marketing_touch",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "prior-referral.marketing_touch"
              }
            ]
          },
          {
            "claimId": "prior-referral.opportunity_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "prior-referral.opportunity_id"
              }
            ]
          },
          {
            "claimId": "prior-referral.property_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "prior-referral.property_id"
              }
            ]
          },
          {
            "claimId": "prior-referral.seller_group_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "prior-referral.seller_group_id"
              }
            ]
          }
        ],
        "supportingClaimIds": [
          "click-brand.channel_id",
          "click-brand.event_at_ms",
          "click-brand.evidence_rank",
          "click-brand.marketing_touch",
          "click-brand.opportunity_id",
          "click-brand.property_id",
          "click-brand.seller_group_id",
          "click-nonbrand.channel_id",
          "click-nonbrand.event_at_ms",
          "click-nonbrand.evidence_rank",
          "click-nonbrand.marketing_touch",
          "click-nonbrand.opportunity_id",
          "click-nonbrand.property_id",
          "click-nonbrand.seller_group_id"
        ],
        "derivations": [
          {
            "rowHash": "694a95e1c5a20b2c4181a07122a2a687fc67128c10a258b2430fa33c69ae9712",
            "claimIds": [
              "click-brand.channel_id",
              "click-brand.event_at_ms",
              "click-brand.evidence_rank",
              "click-brand.marketing_touch",
              "click-brand.opportunity_id",
              "click-brand.property_id",
              "click-brand.seller_group_id"
            ]
          },
          {
            "rowHash": "8a86502664d35468a58d6eb7e6e5c9be4dfb70904e624e59abad3daa6bd71e31",
            "claimIds": [
              "click-nonbrand.channel_id",
              "click-nonbrand.event_at_ms",
              "click-nonbrand.evidence_rank",
              "click-nonbrand.marketing_touch",
              "click-nonbrand.opportunity_id",
              "click-nonbrand.property_id",
              "click-nonbrand.seller_group_id"
            ]
          }
        ],
        "exclusions": [
          {
            "stepId": "eligible",
            "bindings": {
              "touch": "prior-referral"
            },
            "reason": "Failed filter conditions: 1, 2",
            "claimIds": [
              "prior-referral.event_at_ms",
              "prior-referral.evidence_rank",
              "prior-referral.marketing_touch",
              "prior-referral.opportunity_id",
              "prior-referral.property_id",
              "prior-referral.seller_group_id"
            ]
          }
        ],
        "issues": [],
        "trace": [
          {
            "stepId": "touches",
            "operator": "lookup",
            "inputRows": 0,
            "outputRows": 3,
            "claimIds": [],
            "outputHash": "43db3b0829c9ccc44ef95b2ee2802f2a2174cfb727e446ef00263b2187b99902"
          },
          {
            "stepId": "eligible",
            "operator": "filter",
            "inputRows": 3,
            "outputRows": 2,
            "claimIds": [
              "click-brand.event_at_ms",
              "click-brand.evidence_rank",
              "click-brand.marketing_touch",
              "click-brand.opportunity_id",
              "click-brand.property_id",
              "click-brand.seller_group_id",
              "click-nonbrand.event_at_ms",
              "click-nonbrand.evidence_rank",
              "click-nonbrand.marketing_touch",
              "click-nonbrand.opportunity_id",
              "click-nonbrand.property_id",
              "click-nonbrand.seller_group_id",
              "prior-referral.event_at_ms",
              "prior-referral.evidence_rank",
              "prior-referral.marketing_touch",
              "prior-referral.opportunity_id",
              "prior-referral.property_id",
              "prior-referral.seller_group_id"
            ],
            "outputHash": "8864bff38933853cc1e817ba21ea80f93b0b754a138347c03d066fddef7ec24b"
          },
          {
            "stepId": "rows",
            "operator": "project",
            "inputRows": 2,
            "outputRows": 2,
            "claimIds": [
              "click-brand.channel_id",
              "click-brand.event_at_ms",
              "click-brand.evidence_rank",
              "click-nonbrand.channel_id",
              "click-nonbrand.event_at_ms",
              "click-nonbrand.evidence_rank"
            ],
            "outputHash": "078dbc75a2ac1b1ea6e98b028bdb1c2655ebf9eac5681b4b98c9e64ac4242bac"
          }
        ],
        "work": 122,
        "resultHash": "34e66feaee80a34a77ae5384093375fc8f1d248d9de63a05d11414c849c00c8d"
      }
    },
    "repeat|reported|acquired": {
      "graph": {
        "snapshotVersion": "t2k.reasoning-graph.v1",
        "graphKey": "demo.cash-homebuyer",
        "asOf": "2026-06-15T23:59:59Z",
        "ontologyResolutionHash": "c1f42aba94b41cc81e2ba87abe71a6263a91a15226cc24ee279c2183f576533f",
        "coverage": "complete",
        "entities": [
          {
            "entityId": "prior-referral",
            "typeRef": "demo.cash-homebuyer:touchpoint"
          },
          {
            "entityId": "click-nonbrand",
            "typeRef": "demo.cash-homebuyer:touchpoint"
          },
          {
            "entityId": "click-brand",
            "typeRef": "demo.cash-homebuyer:touchpoint"
          }
        ],
        "claims": [
          {
            "claimId": "prior-referral.property_id",
            "revision": "1",
            "subjectId": "prior-referral",
            "predicateRef": "demo.cash-homebuyer:touchpoint.property_id",
            "value": "property-104",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-03-12T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "prior-referral.property_id"
              }
            ]
          },
          {
            "claimId": "prior-referral.opportunity_id",
            "revision": "1",
            "subjectId": "prior-referral",
            "predicateRef": "demo.cash-homebuyer:touchpoint.opportunity_id",
            "value": "acquisition-203",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-03-12T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "prior-referral.opportunity_id"
              }
            ]
          },
          {
            "claimId": "prior-referral.seller_group_id",
            "revision": "1",
            "subjectId": "prior-referral",
            "predicateRef": "demo.cash-homebuyer:touchpoint.seller_group_id",
            "value": "seller-group-13",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-03-12T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "prior-referral.seller_group_id"
              }
            ]
          },
          {
            "claimId": "prior-referral.channel_id",
            "revision": "1",
            "subjectId": "prior-referral",
            "predicateRef": "demo.cash-homebuyer:touchpoint.channel_id",
            "value": "referral",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-03-12T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "prior-referral.channel_id"
              }
            ]
          },
          {
            "claimId": "prior-referral.event_at_ms",
            "revision": "1",
            "subjectId": "prior-referral",
            "predicateRef": "demo.cash-homebuyer:touchpoint.event_at_ms",
            "value": 1773309600000,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-03-12T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "prior-referral.event_at_ms"
              }
            ]
          },
          {
            "claimId": "prior-referral.evidence_rank",
            "revision": "1",
            "subjectId": "prior-referral",
            "predicateRef": "demo.cash-homebuyer:touchpoint.evidence_rank",
            "value": 0,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-03-12T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "prior-referral.evidence_rank"
              }
            ]
          },
          {
            "claimId": "prior-referral.marketing_touch",
            "revision": "1",
            "subjectId": "prior-referral",
            "predicateRef": "demo.cash-homebuyer:touchpoint.marketing_touch",
            "value": true,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-03-12T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "prior-referral.marketing_touch"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.property_id",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.property_id",
            "value": "property-104",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.property_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.opportunity_id",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.opportunity_id",
            "value": "acquisition-204",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.opportunity_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.seller_group_id",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.seller_group_id",
            "value": "seller-group-14",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.seller_group_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.channel_id",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.channel_id",
            "value": "search-nonbrand",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.channel_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.event_at_ms",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.event_at_ms",
            "value": 1775210400000,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.event_at_ms"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.evidence_rank",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.evidence_rank",
            "value": 0,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.evidence_rank"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.marketing_touch",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.marketing_touch",
            "value": true,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.marketing_touch"
              }
            ]
          },
          {
            "claimId": "click-brand.property_id",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.property_id",
            "value": "property-104",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.property_id"
              }
            ]
          },
          {
            "claimId": "click-brand.opportunity_id",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.opportunity_id",
            "value": "acquisition-204",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.opportunity_id"
              }
            ]
          },
          {
            "claimId": "click-brand.seller_group_id",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.seller_group_id",
            "value": "seller-group-14",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.seller_group_id"
              }
            ]
          },
          {
            "claimId": "click-brand.channel_id",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.channel_id",
            "value": "search-brand",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.channel_id"
              }
            ]
          },
          {
            "claimId": "click-brand.event_at_ms",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.event_at_ms",
            "value": 1775646000000,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.event_at_ms"
              }
            ]
          },
          {
            "claimId": "click-brand.evidence_rank",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.evidence_rank",
            "value": 0,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.evidence_rank"
              }
            ]
          },
          {
            "claimId": "click-brand.marketing_touch",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.marketing_touch",
            "value": true,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.marketing_touch"
              }
            ]
          }
        ]
      },
      "arguments": {
        "property": "property-104",
        "opportunity": "acquisition-204",
        "sellerGroup": "seller-group-14",
        "windowStart": 1772323200000,
        "qualificationAt": 1775746800000,
        "admittedRank": 1
      },
      "receipt": {
        "resultVersion": "t2k.graph-result.v1",
        "status": "complete",
        "value": [
          {
            "touchId": "click-brand",
            "channelId": "search-brand",
            "eventAtMs": 1775646000000,
            "evidenceRank": 0
          },
          {
            "touchId": "click-nonbrand",
            "channelId": "search-nonbrand",
            "eventAtMs": 1775210400000,
            "evidenceRank": 0
          }
        ],
        "authorization": "not_authorized",
        "binding": {
          "runtimeVersion": "t2k.graph-runtime.v1",
          "functionHash": "c0aa7b713a989a49764860e270b776fcbd76416e07891e48a43920029a6aa40d",
          "ontologyResolutionHash": "c1f42aba94b41cc81e2ba87abe71a6263a91a15226cc24ee279c2183f576533f",
          "graphKey": "demo.cash-homebuyer",
          "asOf": "2026-06-15T23:59:59.000Z",
          "snapshotHash": "22859c314b4d3f094a23af30365f8914e24bf0e468422f430ad3d95d78556039",
          "argumentsHash": "cd8690f832630034ecce3c948890d1e8f4ac84aebf4d3b80bcff6e7dcae3c8ab"
        },
        "evidence": [
          {
            "claimId": "click-brand.channel_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.channel_id"
              }
            ]
          },
          {
            "claimId": "click-brand.event_at_ms",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.event_at_ms"
              }
            ]
          },
          {
            "claimId": "click-brand.evidence_rank",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.evidence_rank"
              }
            ]
          },
          {
            "claimId": "click-brand.marketing_touch",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.marketing_touch"
              }
            ]
          },
          {
            "claimId": "click-brand.opportunity_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.opportunity_id"
              }
            ]
          },
          {
            "claimId": "click-brand.property_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.property_id"
              }
            ]
          },
          {
            "claimId": "click-brand.seller_group_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.seller_group_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.channel_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.channel_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.event_at_ms",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.event_at_ms"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.evidence_rank",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.evidence_rank"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.marketing_touch",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.marketing_touch"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.opportunity_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.opportunity_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.property_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.property_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.seller_group_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.seller_group_id"
              }
            ]
          },
          {
            "claimId": "prior-referral.event_at_ms",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "prior-referral.event_at_ms"
              }
            ]
          },
          {
            "claimId": "prior-referral.evidence_rank",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "prior-referral.evidence_rank"
              }
            ]
          },
          {
            "claimId": "prior-referral.marketing_touch",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "prior-referral.marketing_touch"
              }
            ]
          },
          {
            "claimId": "prior-referral.opportunity_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "prior-referral.opportunity_id"
              }
            ]
          },
          {
            "claimId": "prior-referral.property_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "prior-referral.property_id"
              }
            ]
          },
          {
            "claimId": "prior-referral.seller_group_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "prior-referral.seller_group_id"
              }
            ]
          }
        ],
        "supportingClaimIds": [
          "click-brand.channel_id",
          "click-brand.event_at_ms",
          "click-brand.evidence_rank",
          "click-brand.marketing_touch",
          "click-brand.opportunity_id",
          "click-brand.property_id",
          "click-brand.seller_group_id",
          "click-nonbrand.channel_id",
          "click-nonbrand.event_at_ms",
          "click-nonbrand.evidence_rank",
          "click-nonbrand.marketing_touch",
          "click-nonbrand.opportunity_id",
          "click-nonbrand.property_id",
          "click-nonbrand.seller_group_id"
        ],
        "derivations": [
          {
            "rowHash": "694a95e1c5a20b2c4181a07122a2a687fc67128c10a258b2430fa33c69ae9712",
            "claimIds": [
              "click-brand.channel_id",
              "click-brand.event_at_ms",
              "click-brand.evidence_rank",
              "click-brand.marketing_touch",
              "click-brand.opportunity_id",
              "click-brand.property_id",
              "click-brand.seller_group_id"
            ]
          },
          {
            "rowHash": "8a86502664d35468a58d6eb7e6e5c9be4dfb70904e624e59abad3daa6bd71e31",
            "claimIds": [
              "click-nonbrand.channel_id",
              "click-nonbrand.event_at_ms",
              "click-nonbrand.evidence_rank",
              "click-nonbrand.marketing_touch",
              "click-nonbrand.opportunity_id",
              "click-nonbrand.property_id",
              "click-nonbrand.seller_group_id"
            ]
          }
        ],
        "exclusions": [
          {
            "stepId": "eligible",
            "bindings": {
              "touch": "prior-referral"
            },
            "reason": "Failed filter conditions: 1, 2",
            "claimIds": [
              "prior-referral.event_at_ms",
              "prior-referral.evidence_rank",
              "prior-referral.marketing_touch",
              "prior-referral.opportunity_id",
              "prior-referral.property_id",
              "prior-referral.seller_group_id"
            ]
          }
        ],
        "issues": [],
        "trace": [
          {
            "stepId": "touches",
            "operator": "lookup",
            "inputRows": 0,
            "outputRows": 3,
            "claimIds": [],
            "outputHash": "43db3b0829c9ccc44ef95b2ee2802f2a2174cfb727e446ef00263b2187b99902"
          },
          {
            "stepId": "eligible",
            "operator": "filter",
            "inputRows": 3,
            "outputRows": 2,
            "claimIds": [
              "click-brand.event_at_ms",
              "click-brand.evidence_rank",
              "click-brand.marketing_touch",
              "click-brand.opportunity_id",
              "click-brand.property_id",
              "click-brand.seller_group_id",
              "click-nonbrand.event_at_ms",
              "click-nonbrand.evidence_rank",
              "click-nonbrand.marketing_touch",
              "click-nonbrand.opportunity_id",
              "click-nonbrand.property_id",
              "click-nonbrand.seller_group_id",
              "prior-referral.event_at_ms",
              "prior-referral.evidence_rank",
              "prior-referral.marketing_touch",
              "prior-referral.opportunity_id",
              "prior-referral.property_id",
              "prior-referral.seller_group_id"
            ],
            "outputHash": "8864bff38933853cc1e817ba21ea80f93b0b754a138347c03d066fddef7ec24b"
          },
          {
            "stepId": "rows",
            "operator": "project",
            "inputRows": 2,
            "outputRows": 2,
            "claimIds": [
              "click-brand.channel_id",
              "click-brand.event_at_ms",
              "click-brand.evidence_rank",
              "click-nonbrand.channel_id",
              "click-nonbrand.event_at_ms",
              "click-nonbrand.evidence_rank"
            ],
            "outputHash": "078dbc75a2ac1b1ea6e98b028bdb1c2655ebf9eac5681b4b98c9e64ac4242bac"
          }
        ],
        "work": 122,
        "resultHash": "c82754b4dc7046926ff3c5882e7c0cc5638492d8b2dd8126a96e65b2f41a2db0"
      }
    },
    "repeat|reported|resale": {
      "graph": {
        "snapshotVersion": "t2k.reasoning-graph.v1",
        "graphKey": "demo.cash-homebuyer",
        "asOf": "2026-09-15T23:59:59Z",
        "ontologyResolutionHash": "c1f42aba94b41cc81e2ba87abe71a6263a91a15226cc24ee279c2183f576533f",
        "coverage": "complete",
        "entities": [
          {
            "entityId": "prior-referral",
            "typeRef": "demo.cash-homebuyer:touchpoint"
          },
          {
            "entityId": "click-nonbrand",
            "typeRef": "demo.cash-homebuyer:touchpoint"
          },
          {
            "entityId": "click-brand",
            "typeRef": "demo.cash-homebuyer:touchpoint"
          }
        ],
        "claims": [
          {
            "claimId": "prior-referral.property_id",
            "revision": "1",
            "subjectId": "prior-referral",
            "predicateRef": "demo.cash-homebuyer:touchpoint.property_id",
            "value": "property-104",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-03-12T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "prior-referral.property_id"
              }
            ]
          },
          {
            "claimId": "prior-referral.opportunity_id",
            "revision": "1",
            "subjectId": "prior-referral",
            "predicateRef": "demo.cash-homebuyer:touchpoint.opportunity_id",
            "value": "acquisition-203",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-03-12T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "prior-referral.opportunity_id"
              }
            ]
          },
          {
            "claimId": "prior-referral.seller_group_id",
            "revision": "1",
            "subjectId": "prior-referral",
            "predicateRef": "demo.cash-homebuyer:touchpoint.seller_group_id",
            "value": "seller-group-13",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-03-12T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "prior-referral.seller_group_id"
              }
            ]
          },
          {
            "claimId": "prior-referral.channel_id",
            "revision": "1",
            "subjectId": "prior-referral",
            "predicateRef": "demo.cash-homebuyer:touchpoint.channel_id",
            "value": "referral",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-03-12T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "prior-referral.channel_id"
              }
            ]
          },
          {
            "claimId": "prior-referral.event_at_ms",
            "revision": "1",
            "subjectId": "prior-referral",
            "predicateRef": "demo.cash-homebuyer:touchpoint.event_at_ms",
            "value": 1773309600000,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-03-12T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "prior-referral.event_at_ms"
              }
            ]
          },
          {
            "claimId": "prior-referral.evidence_rank",
            "revision": "1",
            "subjectId": "prior-referral",
            "predicateRef": "demo.cash-homebuyer:touchpoint.evidence_rank",
            "value": 0,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-03-12T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "prior-referral.evidence_rank"
              }
            ]
          },
          {
            "claimId": "prior-referral.marketing_touch",
            "revision": "1",
            "subjectId": "prior-referral",
            "predicateRef": "demo.cash-homebuyer:touchpoint.marketing_touch",
            "value": true,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-03-12T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "prior-referral.marketing_touch"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.property_id",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.property_id",
            "value": "property-104",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.property_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.opportunity_id",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.opportunity_id",
            "value": "acquisition-204",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.opportunity_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.seller_group_id",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.seller_group_id",
            "value": "seller-group-14",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.seller_group_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.channel_id",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.channel_id",
            "value": "search-nonbrand",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.channel_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.event_at_ms",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.event_at_ms",
            "value": 1775210400000,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.event_at_ms"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.evidence_rank",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.evidence_rank",
            "value": 0,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.evidence_rank"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.marketing_touch",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.marketing_touch",
            "value": true,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.marketing_touch"
              }
            ]
          },
          {
            "claimId": "click-brand.property_id",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.property_id",
            "value": "property-104",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.property_id"
              }
            ]
          },
          {
            "claimId": "click-brand.opportunity_id",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.opportunity_id",
            "value": "acquisition-204",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.opportunity_id"
              }
            ]
          },
          {
            "claimId": "click-brand.seller_group_id",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.seller_group_id",
            "value": "seller-group-14",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.seller_group_id"
              }
            ]
          },
          {
            "claimId": "click-brand.channel_id",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.channel_id",
            "value": "search-brand",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.channel_id"
              }
            ]
          },
          {
            "claimId": "click-brand.event_at_ms",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.event_at_ms",
            "value": 1775646000000,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.event_at_ms"
              }
            ]
          },
          {
            "claimId": "click-brand.evidence_rank",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.evidence_rank",
            "value": 0,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.evidence_rank"
              }
            ]
          },
          {
            "claimId": "click-brand.marketing_touch",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.marketing_touch",
            "value": true,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.marketing_touch"
              }
            ]
          }
        ]
      },
      "arguments": {
        "property": "property-104",
        "opportunity": "acquisition-204",
        "sellerGroup": "seller-group-14",
        "windowStart": 1772323200000,
        "qualificationAt": 1775746800000,
        "admittedRank": 1
      },
      "receipt": {
        "resultVersion": "t2k.graph-result.v1",
        "status": "complete",
        "value": [
          {
            "touchId": "click-brand",
            "channelId": "search-brand",
            "eventAtMs": 1775646000000,
            "evidenceRank": 0
          },
          {
            "touchId": "click-nonbrand",
            "channelId": "search-nonbrand",
            "eventAtMs": 1775210400000,
            "evidenceRank": 0
          }
        ],
        "authorization": "not_authorized",
        "binding": {
          "runtimeVersion": "t2k.graph-runtime.v1",
          "functionHash": "c0aa7b713a989a49764860e270b776fcbd76416e07891e48a43920029a6aa40d",
          "ontologyResolutionHash": "c1f42aba94b41cc81e2ba87abe71a6263a91a15226cc24ee279c2183f576533f",
          "graphKey": "demo.cash-homebuyer",
          "asOf": "2026-09-15T23:59:59.000Z",
          "snapshotHash": "408948fa957d7a71ddf895d5725e86caa50eecddc9925225c5aec5f59575a219",
          "argumentsHash": "cd8690f832630034ecce3c948890d1e8f4ac84aebf4d3b80bcff6e7dcae3c8ab"
        },
        "evidence": [
          {
            "claimId": "click-brand.channel_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.channel_id"
              }
            ]
          },
          {
            "claimId": "click-brand.event_at_ms",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.event_at_ms"
              }
            ]
          },
          {
            "claimId": "click-brand.evidence_rank",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.evidence_rank"
              }
            ]
          },
          {
            "claimId": "click-brand.marketing_touch",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.marketing_touch"
              }
            ]
          },
          {
            "claimId": "click-brand.opportunity_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.opportunity_id"
              }
            ]
          },
          {
            "claimId": "click-brand.property_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.property_id"
              }
            ]
          },
          {
            "claimId": "click-brand.seller_group_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.seller_group_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.channel_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.channel_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.event_at_ms",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.event_at_ms"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.evidence_rank",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.evidence_rank"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.marketing_touch",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.marketing_touch"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.opportunity_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.opportunity_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.property_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.property_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.seller_group_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.seller_group_id"
              }
            ]
          },
          {
            "claimId": "prior-referral.event_at_ms",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "prior-referral.event_at_ms"
              }
            ]
          },
          {
            "claimId": "prior-referral.evidence_rank",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "prior-referral.evidence_rank"
              }
            ]
          },
          {
            "claimId": "prior-referral.marketing_touch",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "prior-referral.marketing_touch"
              }
            ]
          },
          {
            "claimId": "prior-referral.opportunity_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "prior-referral.opportunity_id"
              }
            ]
          },
          {
            "claimId": "prior-referral.property_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "prior-referral.property_id"
              }
            ]
          },
          {
            "claimId": "prior-referral.seller_group_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "prior-referral.seller_group_id"
              }
            ]
          }
        ],
        "supportingClaimIds": [
          "click-brand.channel_id",
          "click-brand.event_at_ms",
          "click-brand.evidence_rank",
          "click-brand.marketing_touch",
          "click-brand.opportunity_id",
          "click-brand.property_id",
          "click-brand.seller_group_id",
          "click-nonbrand.channel_id",
          "click-nonbrand.event_at_ms",
          "click-nonbrand.evidence_rank",
          "click-nonbrand.marketing_touch",
          "click-nonbrand.opportunity_id",
          "click-nonbrand.property_id",
          "click-nonbrand.seller_group_id"
        ],
        "derivations": [
          {
            "rowHash": "694a95e1c5a20b2c4181a07122a2a687fc67128c10a258b2430fa33c69ae9712",
            "claimIds": [
              "click-brand.channel_id",
              "click-brand.event_at_ms",
              "click-brand.evidence_rank",
              "click-brand.marketing_touch",
              "click-brand.opportunity_id",
              "click-brand.property_id",
              "click-brand.seller_group_id"
            ]
          },
          {
            "rowHash": "8a86502664d35468a58d6eb7e6e5c9be4dfb70904e624e59abad3daa6bd71e31",
            "claimIds": [
              "click-nonbrand.channel_id",
              "click-nonbrand.event_at_ms",
              "click-nonbrand.evidence_rank",
              "click-nonbrand.marketing_touch",
              "click-nonbrand.opportunity_id",
              "click-nonbrand.property_id",
              "click-nonbrand.seller_group_id"
            ]
          }
        ],
        "exclusions": [
          {
            "stepId": "eligible",
            "bindings": {
              "touch": "prior-referral"
            },
            "reason": "Failed filter conditions: 1, 2",
            "claimIds": [
              "prior-referral.event_at_ms",
              "prior-referral.evidence_rank",
              "prior-referral.marketing_touch",
              "prior-referral.opportunity_id",
              "prior-referral.property_id",
              "prior-referral.seller_group_id"
            ]
          }
        ],
        "issues": [],
        "trace": [
          {
            "stepId": "touches",
            "operator": "lookup",
            "inputRows": 0,
            "outputRows": 3,
            "claimIds": [],
            "outputHash": "43db3b0829c9ccc44ef95b2ee2802f2a2174cfb727e446ef00263b2187b99902"
          },
          {
            "stepId": "eligible",
            "operator": "filter",
            "inputRows": 3,
            "outputRows": 2,
            "claimIds": [
              "click-brand.event_at_ms",
              "click-brand.evidence_rank",
              "click-brand.marketing_touch",
              "click-brand.opportunity_id",
              "click-brand.property_id",
              "click-brand.seller_group_id",
              "click-nonbrand.event_at_ms",
              "click-nonbrand.evidence_rank",
              "click-nonbrand.marketing_touch",
              "click-nonbrand.opportunity_id",
              "click-nonbrand.property_id",
              "click-nonbrand.seller_group_id",
              "prior-referral.event_at_ms",
              "prior-referral.evidence_rank",
              "prior-referral.marketing_touch",
              "prior-referral.opportunity_id",
              "prior-referral.property_id",
              "prior-referral.seller_group_id"
            ],
            "outputHash": "8864bff38933853cc1e817ba21ea80f93b0b754a138347c03d066fddef7ec24b"
          },
          {
            "stepId": "rows",
            "operator": "project",
            "inputRows": 2,
            "outputRows": 2,
            "claimIds": [
              "click-brand.channel_id",
              "click-brand.event_at_ms",
              "click-brand.evidence_rank",
              "click-nonbrand.channel_id",
              "click-nonbrand.event_at_ms",
              "click-nonbrand.evidence_rank"
            ],
            "outputHash": "078dbc75a2ac1b1ea6e98b028bdb1c2655ebf9eac5681b4b98c9e64ac4242bac"
          }
        ],
        "work": 122,
        "resultHash": "872a78b79784e42abfbdcb540bd89676239e39d93f9660ede30ef99133e35f90"
      }
    },
    "followup|observed|contract": {
      "graph": {
        "snapshotVersion": "t2k.reasoning-graph.v1",
        "graphKey": "demo.cash-homebuyer",
        "asOf": "2026-05-15T23:59:59Z",
        "ontologyResolutionHash": "c1f42aba94b41cc81e2ba87abe71a6263a91a15226cc24ee279c2183f576533f",
        "coverage": "complete",
        "entities": [
          {
            "entityId": "click-nonbrand",
            "typeRef": "demo.cash-homebuyer:touchpoint"
          },
          {
            "entityId": "click-brand",
            "typeRef": "demo.cash-homebuyer:touchpoint"
          },
          {
            "entityId": "followup-11",
            "typeRef": "demo.cash-homebuyer:touchpoint"
          },
          {
            "entityId": "followup-12",
            "typeRef": "demo.cash-homebuyer:touchpoint"
          },
          {
            "entityId": "followup-13",
            "typeRef": "demo.cash-homebuyer:touchpoint"
          },
          {
            "entityId": "followup-14",
            "typeRef": "demo.cash-homebuyer:touchpoint"
          },
          {
            "entityId": "followup-15",
            "typeRef": "demo.cash-homebuyer:touchpoint"
          },
          {
            "entityId": "followup-16",
            "typeRef": "demo.cash-homebuyer:touchpoint"
          }
        ],
        "claims": [
          {
            "claimId": "click-nonbrand.property_id",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.property_id",
            "value": "property-104",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.property_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.opportunity_id",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.opportunity_id",
            "value": "acquisition-204",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.opportunity_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.seller_group_id",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.seller_group_id",
            "value": "seller-group-14",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.seller_group_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.channel_id",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.channel_id",
            "value": "search-nonbrand",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.channel_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.event_at_ms",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.event_at_ms",
            "value": 1775210400000,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.event_at_ms"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.evidence_rank",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.evidence_rank",
            "value": 0,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.evidence_rank"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.marketing_touch",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.marketing_touch",
            "value": true,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.marketing_touch"
              }
            ]
          },
          {
            "claimId": "click-brand.property_id",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.property_id",
            "value": "property-104",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.property_id"
              }
            ]
          },
          {
            "claimId": "click-brand.opportunity_id",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.opportunity_id",
            "value": "acquisition-204",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.opportunity_id"
              }
            ]
          },
          {
            "claimId": "click-brand.seller_group_id",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.seller_group_id",
            "value": "seller-group-14",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.seller_group_id"
              }
            ]
          },
          {
            "claimId": "click-brand.channel_id",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.channel_id",
            "value": "search-brand",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.channel_id"
              }
            ]
          },
          {
            "claimId": "click-brand.event_at_ms",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.event_at_ms",
            "value": 1775646000000,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.event_at_ms"
              }
            ]
          },
          {
            "claimId": "click-brand.evidence_rank",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.evidence_rank",
            "value": 0,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.evidence_rank"
              }
            ]
          },
          {
            "claimId": "click-brand.marketing_touch",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.marketing_touch",
            "value": true,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.marketing_touch"
              }
            ]
          },
          {
            "claimId": "followup-11.property_id",
            "revision": "1",
            "subjectId": "followup-11",
            "predicateRef": "demo.cash-homebuyer:touchpoint.property_id",
            "value": "property-104",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-11T13:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-11.property_id"
              }
            ]
          },
          {
            "claimId": "followup-11.opportunity_id",
            "revision": "1",
            "subjectId": "followup-11",
            "predicateRef": "demo.cash-homebuyer:touchpoint.opportunity_id",
            "value": "acquisition-204",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-11T13:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-11.opportunity_id"
              }
            ]
          },
          {
            "claimId": "followup-11.seller_group_id",
            "revision": "1",
            "subjectId": "followup-11",
            "predicateRef": "demo.cash-homebuyer:touchpoint.seller_group_id",
            "value": "seller-group-14",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-11T13:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-11.seller_group_id"
              }
            ]
          },
          {
            "claimId": "followup-11.event_at_ms",
            "revision": "1",
            "subjectId": "followup-11",
            "predicateRef": "demo.cash-homebuyer:touchpoint.event_at_ms",
            "value": 1775912400000,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-11T13:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-11.event_at_ms"
              }
            ]
          },
          {
            "claimId": "followup-11.evidence_rank",
            "revision": "1",
            "subjectId": "followup-11",
            "predicateRef": "demo.cash-homebuyer:touchpoint.evidence_rank",
            "value": 0,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-11T13:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-11.evidence_rank"
              }
            ]
          },
          {
            "claimId": "followup-11.marketing_touch",
            "revision": "1",
            "subjectId": "followup-11",
            "predicateRef": "demo.cash-homebuyer:touchpoint.marketing_touch",
            "value": false,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-11T13:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-11.marketing_touch"
              }
            ]
          },
          {
            "claimId": "followup-12.property_id",
            "revision": "1",
            "subjectId": "followup-12",
            "predicateRef": "demo.cash-homebuyer:touchpoint.property_id",
            "value": "property-104",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-12T13:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-12.property_id"
              }
            ]
          },
          {
            "claimId": "followup-12.opportunity_id",
            "revision": "1",
            "subjectId": "followup-12",
            "predicateRef": "demo.cash-homebuyer:touchpoint.opportunity_id",
            "value": "acquisition-204",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-12T13:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-12.opportunity_id"
              }
            ]
          },
          {
            "claimId": "followup-12.seller_group_id",
            "revision": "1",
            "subjectId": "followup-12",
            "predicateRef": "demo.cash-homebuyer:touchpoint.seller_group_id",
            "value": "seller-group-14",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-12T13:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-12.seller_group_id"
              }
            ]
          },
          {
            "claimId": "followup-12.event_at_ms",
            "revision": "1",
            "subjectId": "followup-12",
            "predicateRef": "demo.cash-homebuyer:touchpoint.event_at_ms",
            "value": 1775998800000,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-12T13:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-12.event_at_ms"
              }
            ]
          },
          {
            "claimId": "followup-12.evidence_rank",
            "revision": "1",
            "subjectId": "followup-12",
            "predicateRef": "demo.cash-homebuyer:touchpoint.evidence_rank",
            "value": 0,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-12T13:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-12.evidence_rank"
              }
            ]
          },
          {
            "claimId": "followup-12.marketing_touch",
            "revision": "1",
            "subjectId": "followup-12",
            "predicateRef": "demo.cash-homebuyer:touchpoint.marketing_touch",
            "value": false,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-12T13:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-12.marketing_touch"
              }
            ]
          },
          {
            "claimId": "followup-13.property_id",
            "revision": "1",
            "subjectId": "followup-13",
            "predicateRef": "demo.cash-homebuyer:touchpoint.property_id",
            "value": "property-104",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-13T13:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-13.property_id"
              }
            ]
          },
          {
            "claimId": "followup-13.opportunity_id",
            "revision": "1",
            "subjectId": "followup-13",
            "predicateRef": "demo.cash-homebuyer:touchpoint.opportunity_id",
            "value": "acquisition-204",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-13T13:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-13.opportunity_id"
              }
            ]
          },
          {
            "claimId": "followup-13.seller_group_id",
            "revision": "1",
            "subjectId": "followup-13",
            "predicateRef": "demo.cash-homebuyer:touchpoint.seller_group_id",
            "value": "seller-group-14",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-13T13:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-13.seller_group_id"
              }
            ]
          },
          {
            "claimId": "followup-13.event_at_ms",
            "revision": "1",
            "subjectId": "followup-13",
            "predicateRef": "demo.cash-homebuyer:touchpoint.event_at_ms",
            "value": 1776085200000,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-13T13:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-13.event_at_ms"
              }
            ]
          },
          {
            "claimId": "followup-13.evidence_rank",
            "revision": "1",
            "subjectId": "followup-13",
            "predicateRef": "demo.cash-homebuyer:touchpoint.evidence_rank",
            "value": 0,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-13T13:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-13.evidence_rank"
              }
            ]
          },
          {
            "claimId": "followup-13.marketing_touch",
            "revision": "1",
            "subjectId": "followup-13",
            "predicateRef": "demo.cash-homebuyer:touchpoint.marketing_touch",
            "value": false,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-13T13:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-13.marketing_touch"
              }
            ]
          },
          {
            "claimId": "followup-14.property_id",
            "revision": "1",
            "subjectId": "followup-14",
            "predicateRef": "demo.cash-homebuyer:touchpoint.property_id",
            "value": "property-104",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-14T13:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-14.property_id"
              }
            ]
          },
          {
            "claimId": "followup-14.opportunity_id",
            "revision": "1",
            "subjectId": "followup-14",
            "predicateRef": "demo.cash-homebuyer:touchpoint.opportunity_id",
            "value": "acquisition-204",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-14T13:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-14.opportunity_id"
              }
            ]
          },
          {
            "claimId": "followup-14.seller_group_id",
            "revision": "1",
            "subjectId": "followup-14",
            "predicateRef": "demo.cash-homebuyer:touchpoint.seller_group_id",
            "value": "seller-group-14",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-14T13:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-14.seller_group_id"
              }
            ]
          },
          {
            "claimId": "followup-14.event_at_ms",
            "revision": "1",
            "subjectId": "followup-14",
            "predicateRef": "demo.cash-homebuyer:touchpoint.event_at_ms",
            "value": 1776171600000,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-14T13:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-14.event_at_ms"
              }
            ]
          },
          {
            "claimId": "followup-14.evidence_rank",
            "revision": "1",
            "subjectId": "followup-14",
            "predicateRef": "demo.cash-homebuyer:touchpoint.evidence_rank",
            "value": 0,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-14T13:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-14.evidence_rank"
              }
            ]
          },
          {
            "claimId": "followup-14.marketing_touch",
            "revision": "1",
            "subjectId": "followup-14",
            "predicateRef": "demo.cash-homebuyer:touchpoint.marketing_touch",
            "value": false,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-14T13:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-14.marketing_touch"
              }
            ]
          },
          {
            "claimId": "followup-15.property_id",
            "revision": "1",
            "subjectId": "followup-15",
            "predicateRef": "demo.cash-homebuyer:touchpoint.property_id",
            "value": "property-104",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-15T13:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-15.property_id"
              }
            ]
          },
          {
            "claimId": "followup-15.opportunity_id",
            "revision": "1",
            "subjectId": "followup-15",
            "predicateRef": "demo.cash-homebuyer:touchpoint.opportunity_id",
            "value": "acquisition-204",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-15T13:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-15.opportunity_id"
              }
            ]
          },
          {
            "claimId": "followup-15.seller_group_id",
            "revision": "1",
            "subjectId": "followup-15",
            "predicateRef": "demo.cash-homebuyer:touchpoint.seller_group_id",
            "value": "seller-group-14",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-15T13:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-15.seller_group_id"
              }
            ]
          },
          {
            "claimId": "followup-15.event_at_ms",
            "revision": "1",
            "subjectId": "followup-15",
            "predicateRef": "demo.cash-homebuyer:touchpoint.event_at_ms",
            "value": 1776258000000,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-15T13:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-15.event_at_ms"
              }
            ]
          },
          {
            "claimId": "followup-15.evidence_rank",
            "revision": "1",
            "subjectId": "followup-15",
            "predicateRef": "demo.cash-homebuyer:touchpoint.evidence_rank",
            "value": 0,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-15T13:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-15.evidence_rank"
              }
            ]
          },
          {
            "claimId": "followup-15.marketing_touch",
            "revision": "1",
            "subjectId": "followup-15",
            "predicateRef": "demo.cash-homebuyer:touchpoint.marketing_touch",
            "value": false,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-15T13:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-15.marketing_touch"
              }
            ]
          },
          {
            "claimId": "followup-16.property_id",
            "revision": "1",
            "subjectId": "followup-16",
            "predicateRef": "demo.cash-homebuyer:touchpoint.property_id",
            "value": "property-104",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-16T13:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-16.property_id"
              }
            ]
          },
          {
            "claimId": "followup-16.opportunity_id",
            "revision": "1",
            "subjectId": "followup-16",
            "predicateRef": "demo.cash-homebuyer:touchpoint.opportunity_id",
            "value": "acquisition-204",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-16T13:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-16.opportunity_id"
              }
            ]
          },
          {
            "claimId": "followup-16.seller_group_id",
            "revision": "1",
            "subjectId": "followup-16",
            "predicateRef": "demo.cash-homebuyer:touchpoint.seller_group_id",
            "value": "seller-group-14",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-16T13:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-16.seller_group_id"
              }
            ]
          },
          {
            "claimId": "followup-16.event_at_ms",
            "revision": "1",
            "subjectId": "followup-16",
            "predicateRef": "demo.cash-homebuyer:touchpoint.event_at_ms",
            "value": 1776344400000,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-16T13:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-16.event_at_ms"
              }
            ]
          },
          {
            "claimId": "followup-16.evidence_rank",
            "revision": "1",
            "subjectId": "followup-16",
            "predicateRef": "demo.cash-homebuyer:touchpoint.evidence_rank",
            "value": 0,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-16T13:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-16.evidence_rank"
              }
            ]
          },
          {
            "claimId": "followup-16.marketing_touch",
            "revision": "1",
            "subjectId": "followup-16",
            "predicateRef": "demo.cash-homebuyer:touchpoint.marketing_touch",
            "value": false,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-16T13:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-16.marketing_touch"
              }
            ]
          }
        ]
      },
      "arguments": {
        "property": "property-104",
        "opportunity": "acquisition-204",
        "sellerGroup": "seller-group-14",
        "windowStart": 1772323200000,
        "qualificationAt": 1775746800000,
        "admittedRank": 0
      },
      "receipt": {
        "resultVersion": "t2k.graph-result.v1",
        "status": "complete",
        "value": [
          {
            "touchId": "click-brand",
            "channelId": "search-brand",
            "eventAtMs": 1775646000000,
            "evidenceRank": 0
          },
          {
            "touchId": "click-nonbrand",
            "channelId": "search-nonbrand",
            "eventAtMs": 1775210400000,
            "evidenceRank": 0
          }
        ],
        "authorization": "not_authorized",
        "binding": {
          "runtimeVersion": "t2k.graph-runtime.v1",
          "functionHash": "c0aa7b713a989a49764860e270b776fcbd76416e07891e48a43920029a6aa40d",
          "ontologyResolutionHash": "c1f42aba94b41cc81e2ba87abe71a6263a91a15226cc24ee279c2183f576533f",
          "graphKey": "demo.cash-homebuyer",
          "asOf": "2026-05-15T23:59:59.000Z",
          "snapshotHash": "87284037b4622e00b1cbab0d8b4c4abb90c4c5e6e8e550a4ffa77187cdca1cab",
          "argumentsHash": "42e0e7d41d126edcc85e8694a0a6c610ab82f2484d117738872465ddbc3c08ac"
        },
        "evidence": [
          {
            "claimId": "click-brand.channel_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.channel_id"
              }
            ]
          },
          {
            "claimId": "click-brand.event_at_ms",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.event_at_ms"
              }
            ]
          },
          {
            "claimId": "click-brand.evidence_rank",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.evidence_rank"
              }
            ]
          },
          {
            "claimId": "click-brand.marketing_touch",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.marketing_touch"
              }
            ]
          },
          {
            "claimId": "click-brand.opportunity_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.opportunity_id"
              }
            ]
          },
          {
            "claimId": "click-brand.property_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.property_id"
              }
            ]
          },
          {
            "claimId": "click-brand.seller_group_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.seller_group_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.channel_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.channel_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.event_at_ms",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.event_at_ms"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.evidence_rank",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.evidence_rank"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.marketing_touch",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.marketing_touch"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.opportunity_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.opportunity_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.property_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.property_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.seller_group_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.seller_group_id"
              }
            ]
          },
          {
            "claimId": "followup-11.event_at_ms",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-11.event_at_ms"
              }
            ]
          },
          {
            "claimId": "followup-11.evidence_rank",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-11.evidence_rank"
              }
            ]
          },
          {
            "claimId": "followup-11.marketing_touch",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-11.marketing_touch"
              }
            ]
          },
          {
            "claimId": "followup-11.opportunity_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-11.opportunity_id"
              }
            ]
          },
          {
            "claimId": "followup-11.property_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-11.property_id"
              }
            ]
          },
          {
            "claimId": "followup-11.seller_group_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-11.seller_group_id"
              }
            ]
          },
          {
            "claimId": "followup-12.event_at_ms",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-12.event_at_ms"
              }
            ]
          },
          {
            "claimId": "followup-12.evidence_rank",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-12.evidence_rank"
              }
            ]
          },
          {
            "claimId": "followup-12.marketing_touch",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-12.marketing_touch"
              }
            ]
          },
          {
            "claimId": "followup-12.opportunity_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-12.opportunity_id"
              }
            ]
          },
          {
            "claimId": "followup-12.property_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-12.property_id"
              }
            ]
          },
          {
            "claimId": "followup-12.seller_group_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-12.seller_group_id"
              }
            ]
          },
          {
            "claimId": "followup-13.event_at_ms",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-13.event_at_ms"
              }
            ]
          },
          {
            "claimId": "followup-13.evidence_rank",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-13.evidence_rank"
              }
            ]
          },
          {
            "claimId": "followup-13.marketing_touch",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-13.marketing_touch"
              }
            ]
          },
          {
            "claimId": "followup-13.opportunity_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-13.opportunity_id"
              }
            ]
          },
          {
            "claimId": "followup-13.property_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-13.property_id"
              }
            ]
          },
          {
            "claimId": "followup-13.seller_group_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-13.seller_group_id"
              }
            ]
          },
          {
            "claimId": "followup-14.event_at_ms",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-14.event_at_ms"
              }
            ]
          },
          {
            "claimId": "followup-14.evidence_rank",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-14.evidence_rank"
              }
            ]
          },
          {
            "claimId": "followup-14.marketing_touch",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-14.marketing_touch"
              }
            ]
          },
          {
            "claimId": "followup-14.opportunity_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-14.opportunity_id"
              }
            ]
          },
          {
            "claimId": "followup-14.property_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-14.property_id"
              }
            ]
          },
          {
            "claimId": "followup-14.seller_group_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-14.seller_group_id"
              }
            ]
          },
          {
            "claimId": "followup-15.event_at_ms",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-15.event_at_ms"
              }
            ]
          },
          {
            "claimId": "followup-15.evidence_rank",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-15.evidence_rank"
              }
            ]
          },
          {
            "claimId": "followup-15.marketing_touch",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-15.marketing_touch"
              }
            ]
          },
          {
            "claimId": "followup-15.opportunity_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-15.opportunity_id"
              }
            ]
          },
          {
            "claimId": "followup-15.property_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-15.property_id"
              }
            ]
          },
          {
            "claimId": "followup-15.seller_group_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-15.seller_group_id"
              }
            ]
          },
          {
            "claimId": "followup-16.event_at_ms",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-16.event_at_ms"
              }
            ]
          },
          {
            "claimId": "followup-16.evidence_rank",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-16.evidence_rank"
              }
            ]
          },
          {
            "claimId": "followup-16.marketing_touch",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-16.marketing_touch"
              }
            ]
          },
          {
            "claimId": "followup-16.opportunity_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-16.opportunity_id"
              }
            ]
          },
          {
            "claimId": "followup-16.property_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-16.property_id"
              }
            ]
          },
          {
            "claimId": "followup-16.seller_group_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-16.seller_group_id"
              }
            ]
          }
        ],
        "supportingClaimIds": [
          "click-brand.channel_id",
          "click-brand.event_at_ms",
          "click-brand.evidence_rank",
          "click-brand.marketing_touch",
          "click-brand.opportunity_id",
          "click-brand.property_id",
          "click-brand.seller_group_id",
          "click-nonbrand.channel_id",
          "click-nonbrand.event_at_ms",
          "click-nonbrand.evidence_rank",
          "click-nonbrand.marketing_touch",
          "click-nonbrand.opportunity_id",
          "click-nonbrand.property_id",
          "click-nonbrand.seller_group_id"
        ],
        "derivations": [
          {
            "rowHash": "694a95e1c5a20b2c4181a07122a2a687fc67128c10a258b2430fa33c69ae9712",
            "claimIds": [
              "click-brand.channel_id",
              "click-brand.event_at_ms",
              "click-brand.evidence_rank",
              "click-brand.marketing_touch",
              "click-brand.opportunity_id",
              "click-brand.property_id",
              "click-brand.seller_group_id"
            ]
          },
          {
            "rowHash": "8a86502664d35468a58d6eb7e6e5c9be4dfb70904e624e59abad3daa6bd71e31",
            "claimIds": [
              "click-nonbrand.channel_id",
              "click-nonbrand.event_at_ms",
              "click-nonbrand.evidence_rank",
              "click-nonbrand.marketing_touch",
              "click-nonbrand.opportunity_id",
              "click-nonbrand.property_id",
              "click-nonbrand.seller_group_id"
            ]
          }
        ],
        "exclusions": [
          {
            "stepId": "eligible",
            "bindings": {
              "touch": "followup-11"
            },
            "reason": "Failed filter conditions: 3, 6",
            "claimIds": [
              "followup-11.event_at_ms",
              "followup-11.evidence_rank",
              "followup-11.marketing_touch",
              "followup-11.opportunity_id",
              "followup-11.property_id",
              "followup-11.seller_group_id"
            ]
          },
          {
            "stepId": "eligible",
            "bindings": {
              "touch": "followup-12"
            },
            "reason": "Failed filter conditions: 3, 6",
            "claimIds": [
              "followup-12.event_at_ms",
              "followup-12.evidence_rank",
              "followup-12.marketing_touch",
              "followup-12.opportunity_id",
              "followup-12.property_id",
              "followup-12.seller_group_id"
            ]
          },
          {
            "stepId": "eligible",
            "bindings": {
              "touch": "followup-13"
            },
            "reason": "Failed filter conditions: 3, 6",
            "claimIds": [
              "followup-13.event_at_ms",
              "followup-13.evidence_rank",
              "followup-13.marketing_touch",
              "followup-13.opportunity_id",
              "followup-13.property_id",
              "followup-13.seller_group_id"
            ]
          },
          {
            "stepId": "eligible",
            "bindings": {
              "touch": "followup-14"
            },
            "reason": "Failed filter conditions: 3, 6",
            "claimIds": [
              "followup-14.event_at_ms",
              "followup-14.evidence_rank",
              "followup-14.marketing_touch",
              "followup-14.opportunity_id",
              "followup-14.property_id",
              "followup-14.seller_group_id"
            ]
          },
          {
            "stepId": "eligible",
            "bindings": {
              "touch": "followup-15"
            },
            "reason": "Failed filter conditions: 3, 6",
            "claimIds": [
              "followup-15.event_at_ms",
              "followup-15.evidence_rank",
              "followup-15.marketing_touch",
              "followup-15.opportunity_id",
              "followup-15.property_id",
              "followup-15.seller_group_id"
            ]
          },
          {
            "stepId": "eligible",
            "bindings": {
              "touch": "followup-16"
            },
            "reason": "Failed filter conditions: 3, 6",
            "claimIds": [
              "followup-16.event_at_ms",
              "followup-16.evidence_rank",
              "followup-16.marketing_touch",
              "followup-16.opportunity_id",
              "followup-16.property_id",
              "followup-16.seller_group_id"
            ]
          }
        ],
        "issues": [],
        "trace": [
          {
            "stepId": "touches",
            "operator": "lookup",
            "inputRows": 0,
            "outputRows": 8,
            "claimIds": [],
            "outputHash": "c55fbd507e72dfa4be1c281bf20769c56680927a97c21e0f59ee3933e73dee7a"
          },
          {
            "stepId": "eligible",
            "operator": "filter",
            "inputRows": 8,
            "outputRows": 2,
            "claimIds": [
              "click-brand.event_at_ms",
              "click-brand.evidence_rank",
              "click-brand.marketing_touch",
              "click-brand.opportunity_id",
              "click-brand.property_id",
              "click-brand.seller_group_id",
              "click-nonbrand.event_at_ms",
              "click-nonbrand.evidence_rank",
              "click-nonbrand.marketing_touch",
              "click-nonbrand.opportunity_id",
              "click-nonbrand.property_id",
              "click-nonbrand.seller_group_id",
              "followup-11.event_at_ms",
              "followup-11.evidence_rank",
              "followup-11.marketing_touch",
              "followup-11.opportunity_id",
              "followup-11.property_id",
              "followup-11.seller_group_id",
              "followup-12.event_at_ms",
              "followup-12.evidence_rank",
              "followup-12.marketing_touch",
              "followup-12.opportunity_id",
              "followup-12.property_id",
              "followup-12.seller_group_id",
              "followup-13.event_at_ms",
              "followup-13.evidence_rank",
              "followup-13.marketing_touch",
              "followup-13.opportunity_id",
              "followup-13.property_id",
              "followup-13.seller_group_id",
              "followup-14.event_at_ms",
              "followup-14.evidence_rank",
              "followup-14.marketing_touch",
              "followup-14.opportunity_id",
              "followup-14.property_id",
              "followup-14.seller_group_id",
              "followup-15.event_at_ms",
              "followup-15.evidence_rank",
              "followup-15.marketing_touch",
              "followup-15.opportunity_id",
              "followup-15.property_id",
              "followup-15.seller_group_id",
              "followup-16.event_at_ms",
              "followup-16.evidence_rank",
              "followup-16.marketing_touch",
              "followup-16.opportunity_id",
              "followup-16.property_id",
              "followup-16.seller_group_id"
            ],
            "outputHash": "8864bff38933853cc1e817ba21ea80f93b0b754a138347c03d066fddef7ec24b"
          },
          {
            "stepId": "rows",
            "operator": "project",
            "inputRows": 2,
            "outputRows": 2,
            "claimIds": [
              "click-brand.channel_id",
              "click-brand.event_at_ms",
              "click-brand.evidence_rank",
              "click-nonbrand.channel_id",
              "click-nonbrand.event_at_ms",
              "click-nonbrand.evidence_rank"
            ],
            "outputHash": "078dbc75a2ac1b1ea6e98b028bdb1c2655ebf9eac5681b4b98c9e64ac4242bac"
          }
        ],
        "work": 291,
        "resultHash": "857092c28c2d417b1c79f578684a8c6f956dd7ff088fc93faeb428047ed25b2e"
      }
    },
    "followup|observed|acquired": {
      "graph": {
        "snapshotVersion": "t2k.reasoning-graph.v1",
        "graphKey": "demo.cash-homebuyer",
        "asOf": "2026-06-15T23:59:59Z",
        "ontologyResolutionHash": "c1f42aba94b41cc81e2ba87abe71a6263a91a15226cc24ee279c2183f576533f",
        "coverage": "complete",
        "entities": [
          {
            "entityId": "click-nonbrand",
            "typeRef": "demo.cash-homebuyer:touchpoint"
          },
          {
            "entityId": "click-brand",
            "typeRef": "demo.cash-homebuyer:touchpoint"
          },
          {
            "entityId": "followup-11",
            "typeRef": "demo.cash-homebuyer:touchpoint"
          },
          {
            "entityId": "followup-12",
            "typeRef": "demo.cash-homebuyer:touchpoint"
          },
          {
            "entityId": "followup-13",
            "typeRef": "demo.cash-homebuyer:touchpoint"
          },
          {
            "entityId": "followup-14",
            "typeRef": "demo.cash-homebuyer:touchpoint"
          },
          {
            "entityId": "followup-15",
            "typeRef": "demo.cash-homebuyer:touchpoint"
          },
          {
            "entityId": "followup-16",
            "typeRef": "demo.cash-homebuyer:touchpoint"
          }
        ],
        "claims": [
          {
            "claimId": "click-nonbrand.property_id",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.property_id",
            "value": "property-104",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.property_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.opportunity_id",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.opportunity_id",
            "value": "acquisition-204",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.opportunity_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.seller_group_id",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.seller_group_id",
            "value": "seller-group-14",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.seller_group_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.channel_id",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.channel_id",
            "value": "search-nonbrand",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.channel_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.event_at_ms",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.event_at_ms",
            "value": 1775210400000,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.event_at_ms"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.evidence_rank",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.evidence_rank",
            "value": 0,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.evidence_rank"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.marketing_touch",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.marketing_touch",
            "value": true,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.marketing_touch"
              }
            ]
          },
          {
            "claimId": "click-brand.property_id",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.property_id",
            "value": "property-104",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.property_id"
              }
            ]
          },
          {
            "claimId": "click-brand.opportunity_id",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.opportunity_id",
            "value": "acquisition-204",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.opportunity_id"
              }
            ]
          },
          {
            "claimId": "click-brand.seller_group_id",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.seller_group_id",
            "value": "seller-group-14",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.seller_group_id"
              }
            ]
          },
          {
            "claimId": "click-brand.channel_id",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.channel_id",
            "value": "search-brand",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.channel_id"
              }
            ]
          },
          {
            "claimId": "click-brand.event_at_ms",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.event_at_ms",
            "value": 1775646000000,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.event_at_ms"
              }
            ]
          },
          {
            "claimId": "click-brand.evidence_rank",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.evidence_rank",
            "value": 0,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.evidence_rank"
              }
            ]
          },
          {
            "claimId": "click-brand.marketing_touch",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.marketing_touch",
            "value": true,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.marketing_touch"
              }
            ]
          },
          {
            "claimId": "followup-11.property_id",
            "revision": "1",
            "subjectId": "followup-11",
            "predicateRef": "demo.cash-homebuyer:touchpoint.property_id",
            "value": "property-104",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-11T13:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-11.property_id"
              }
            ]
          },
          {
            "claimId": "followup-11.opportunity_id",
            "revision": "1",
            "subjectId": "followup-11",
            "predicateRef": "demo.cash-homebuyer:touchpoint.opportunity_id",
            "value": "acquisition-204",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-11T13:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-11.opportunity_id"
              }
            ]
          },
          {
            "claimId": "followup-11.seller_group_id",
            "revision": "1",
            "subjectId": "followup-11",
            "predicateRef": "demo.cash-homebuyer:touchpoint.seller_group_id",
            "value": "seller-group-14",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-11T13:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-11.seller_group_id"
              }
            ]
          },
          {
            "claimId": "followup-11.event_at_ms",
            "revision": "1",
            "subjectId": "followup-11",
            "predicateRef": "demo.cash-homebuyer:touchpoint.event_at_ms",
            "value": 1775912400000,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-11T13:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-11.event_at_ms"
              }
            ]
          },
          {
            "claimId": "followup-11.evidence_rank",
            "revision": "1",
            "subjectId": "followup-11",
            "predicateRef": "demo.cash-homebuyer:touchpoint.evidence_rank",
            "value": 0,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-11T13:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-11.evidence_rank"
              }
            ]
          },
          {
            "claimId": "followup-11.marketing_touch",
            "revision": "1",
            "subjectId": "followup-11",
            "predicateRef": "demo.cash-homebuyer:touchpoint.marketing_touch",
            "value": false,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-11T13:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-11.marketing_touch"
              }
            ]
          },
          {
            "claimId": "followup-12.property_id",
            "revision": "1",
            "subjectId": "followup-12",
            "predicateRef": "demo.cash-homebuyer:touchpoint.property_id",
            "value": "property-104",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-12T13:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-12.property_id"
              }
            ]
          },
          {
            "claimId": "followup-12.opportunity_id",
            "revision": "1",
            "subjectId": "followup-12",
            "predicateRef": "demo.cash-homebuyer:touchpoint.opportunity_id",
            "value": "acquisition-204",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-12T13:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-12.opportunity_id"
              }
            ]
          },
          {
            "claimId": "followup-12.seller_group_id",
            "revision": "1",
            "subjectId": "followup-12",
            "predicateRef": "demo.cash-homebuyer:touchpoint.seller_group_id",
            "value": "seller-group-14",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-12T13:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-12.seller_group_id"
              }
            ]
          },
          {
            "claimId": "followup-12.event_at_ms",
            "revision": "1",
            "subjectId": "followup-12",
            "predicateRef": "demo.cash-homebuyer:touchpoint.event_at_ms",
            "value": 1775998800000,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-12T13:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-12.event_at_ms"
              }
            ]
          },
          {
            "claimId": "followup-12.evidence_rank",
            "revision": "1",
            "subjectId": "followup-12",
            "predicateRef": "demo.cash-homebuyer:touchpoint.evidence_rank",
            "value": 0,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-12T13:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-12.evidence_rank"
              }
            ]
          },
          {
            "claimId": "followup-12.marketing_touch",
            "revision": "1",
            "subjectId": "followup-12",
            "predicateRef": "demo.cash-homebuyer:touchpoint.marketing_touch",
            "value": false,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-12T13:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-12.marketing_touch"
              }
            ]
          },
          {
            "claimId": "followup-13.property_id",
            "revision": "1",
            "subjectId": "followup-13",
            "predicateRef": "demo.cash-homebuyer:touchpoint.property_id",
            "value": "property-104",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-13T13:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-13.property_id"
              }
            ]
          },
          {
            "claimId": "followup-13.opportunity_id",
            "revision": "1",
            "subjectId": "followup-13",
            "predicateRef": "demo.cash-homebuyer:touchpoint.opportunity_id",
            "value": "acquisition-204",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-13T13:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-13.opportunity_id"
              }
            ]
          },
          {
            "claimId": "followup-13.seller_group_id",
            "revision": "1",
            "subjectId": "followup-13",
            "predicateRef": "demo.cash-homebuyer:touchpoint.seller_group_id",
            "value": "seller-group-14",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-13T13:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-13.seller_group_id"
              }
            ]
          },
          {
            "claimId": "followup-13.event_at_ms",
            "revision": "1",
            "subjectId": "followup-13",
            "predicateRef": "demo.cash-homebuyer:touchpoint.event_at_ms",
            "value": 1776085200000,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-13T13:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-13.event_at_ms"
              }
            ]
          },
          {
            "claimId": "followup-13.evidence_rank",
            "revision": "1",
            "subjectId": "followup-13",
            "predicateRef": "demo.cash-homebuyer:touchpoint.evidence_rank",
            "value": 0,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-13T13:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-13.evidence_rank"
              }
            ]
          },
          {
            "claimId": "followup-13.marketing_touch",
            "revision": "1",
            "subjectId": "followup-13",
            "predicateRef": "demo.cash-homebuyer:touchpoint.marketing_touch",
            "value": false,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-13T13:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-13.marketing_touch"
              }
            ]
          },
          {
            "claimId": "followup-14.property_id",
            "revision": "1",
            "subjectId": "followup-14",
            "predicateRef": "demo.cash-homebuyer:touchpoint.property_id",
            "value": "property-104",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-14T13:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-14.property_id"
              }
            ]
          },
          {
            "claimId": "followup-14.opportunity_id",
            "revision": "1",
            "subjectId": "followup-14",
            "predicateRef": "demo.cash-homebuyer:touchpoint.opportunity_id",
            "value": "acquisition-204",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-14T13:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-14.opportunity_id"
              }
            ]
          },
          {
            "claimId": "followup-14.seller_group_id",
            "revision": "1",
            "subjectId": "followup-14",
            "predicateRef": "demo.cash-homebuyer:touchpoint.seller_group_id",
            "value": "seller-group-14",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-14T13:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-14.seller_group_id"
              }
            ]
          },
          {
            "claimId": "followup-14.event_at_ms",
            "revision": "1",
            "subjectId": "followup-14",
            "predicateRef": "demo.cash-homebuyer:touchpoint.event_at_ms",
            "value": 1776171600000,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-14T13:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-14.event_at_ms"
              }
            ]
          },
          {
            "claimId": "followup-14.evidence_rank",
            "revision": "1",
            "subjectId": "followup-14",
            "predicateRef": "demo.cash-homebuyer:touchpoint.evidence_rank",
            "value": 0,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-14T13:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-14.evidence_rank"
              }
            ]
          },
          {
            "claimId": "followup-14.marketing_touch",
            "revision": "1",
            "subjectId": "followup-14",
            "predicateRef": "demo.cash-homebuyer:touchpoint.marketing_touch",
            "value": false,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-14T13:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-14.marketing_touch"
              }
            ]
          },
          {
            "claimId": "followup-15.property_id",
            "revision": "1",
            "subjectId": "followup-15",
            "predicateRef": "demo.cash-homebuyer:touchpoint.property_id",
            "value": "property-104",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-15T13:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-15.property_id"
              }
            ]
          },
          {
            "claimId": "followup-15.opportunity_id",
            "revision": "1",
            "subjectId": "followup-15",
            "predicateRef": "demo.cash-homebuyer:touchpoint.opportunity_id",
            "value": "acquisition-204",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-15T13:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-15.opportunity_id"
              }
            ]
          },
          {
            "claimId": "followup-15.seller_group_id",
            "revision": "1",
            "subjectId": "followup-15",
            "predicateRef": "demo.cash-homebuyer:touchpoint.seller_group_id",
            "value": "seller-group-14",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-15T13:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-15.seller_group_id"
              }
            ]
          },
          {
            "claimId": "followup-15.event_at_ms",
            "revision": "1",
            "subjectId": "followup-15",
            "predicateRef": "demo.cash-homebuyer:touchpoint.event_at_ms",
            "value": 1776258000000,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-15T13:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-15.event_at_ms"
              }
            ]
          },
          {
            "claimId": "followup-15.evidence_rank",
            "revision": "1",
            "subjectId": "followup-15",
            "predicateRef": "demo.cash-homebuyer:touchpoint.evidence_rank",
            "value": 0,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-15T13:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-15.evidence_rank"
              }
            ]
          },
          {
            "claimId": "followup-15.marketing_touch",
            "revision": "1",
            "subjectId": "followup-15",
            "predicateRef": "demo.cash-homebuyer:touchpoint.marketing_touch",
            "value": false,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-15T13:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-15.marketing_touch"
              }
            ]
          },
          {
            "claimId": "followup-16.property_id",
            "revision": "1",
            "subjectId": "followup-16",
            "predicateRef": "demo.cash-homebuyer:touchpoint.property_id",
            "value": "property-104",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-16T13:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-16.property_id"
              }
            ]
          },
          {
            "claimId": "followup-16.opportunity_id",
            "revision": "1",
            "subjectId": "followup-16",
            "predicateRef": "demo.cash-homebuyer:touchpoint.opportunity_id",
            "value": "acquisition-204",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-16T13:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-16.opportunity_id"
              }
            ]
          },
          {
            "claimId": "followup-16.seller_group_id",
            "revision": "1",
            "subjectId": "followup-16",
            "predicateRef": "demo.cash-homebuyer:touchpoint.seller_group_id",
            "value": "seller-group-14",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-16T13:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-16.seller_group_id"
              }
            ]
          },
          {
            "claimId": "followup-16.event_at_ms",
            "revision": "1",
            "subjectId": "followup-16",
            "predicateRef": "demo.cash-homebuyer:touchpoint.event_at_ms",
            "value": 1776344400000,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-16T13:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-16.event_at_ms"
              }
            ]
          },
          {
            "claimId": "followup-16.evidence_rank",
            "revision": "1",
            "subjectId": "followup-16",
            "predicateRef": "demo.cash-homebuyer:touchpoint.evidence_rank",
            "value": 0,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-16T13:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-16.evidence_rank"
              }
            ]
          },
          {
            "claimId": "followup-16.marketing_touch",
            "revision": "1",
            "subjectId": "followup-16",
            "predicateRef": "demo.cash-homebuyer:touchpoint.marketing_touch",
            "value": false,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-16T13:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-16.marketing_touch"
              }
            ]
          }
        ]
      },
      "arguments": {
        "property": "property-104",
        "opportunity": "acquisition-204",
        "sellerGroup": "seller-group-14",
        "windowStart": 1772323200000,
        "qualificationAt": 1775746800000,
        "admittedRank": 0
      },
      "receipt": {
        "resultVersion": "t2k.graph-result.v1",
        "status": "complete",
        "value": [
          {
            "touchId": "click-brand",
            "channelId": "search-brand",
            "eventAtMs": 1775646000000,
            "evidenceRank": 0
          },
          {
            "touchId": "click-nonbrand",
            "channelId": "search-nonbrand",
            "eventAtMs": 1775210400000,
            "evidenceRank": 0
          }
        ],
        "authorization": "not_authorized",
        "binding": {
          "runtimeVersion": "t2k.graph-runtime.v1",
          "functionHash": "c0aa7b713a989a49764860e270b776fcbd76416e07891e48a43920029a6aa40d",
          "ontologyResolutionHash": "c1f42aba94b41cc81e2ba87abe71a6263a91a15226cc24ee279c2183f576533f",
          "graphKey": "demo.cash-homebuyer",
          "asOf": "2026-06-15T23:59:59.000Z",
          "snapshotHash": "73f082fed9887a4c6e124c92739c8126e7f09b5b4d287ec0a43739012173ecc6",
          "argumentsHash": "42e0e7d41d126edcc85e8694a0a6c610ab82f2484d117738872465ddbc3c08ac"
        },
        "evidence": [
          {
            "claimId": "click-brand.channel_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.channel_id"
              }
            ]
          },
          {
            "claimId": "click-brand.event_at_ms",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.event_at_ms"
              }
            ]
          },
          {
            "claimId": "click-brand.evidence_rank",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.evidence_rank"
              }
            ]
          },
          {
            "claimId": "click-brand.marketing_touch",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.marketing_touch"
              }
            ]
          },
          {
            "claimId": "click-brand.opportunity_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.opportunity_id"
              }
            ]
          },
          {
            "claimId": "click-brand.property_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.property_id"
              }
            ]
          },
          {
            "claimId": "click-brand.seller_group_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.seller_group_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.channel_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.channel_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.event_at_ms",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.event_at_ms"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.evidence_rank",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.evidence_rank"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.marketing_touch",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.marketing_touch"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.opportunity_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.opportunity_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.property_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.property_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.seller_group_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.seller_group_id"
              }
            ]
          },
          {
            "claimId": "followup-11.event_at_ms",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-11.event_at_ms"
              }
            ]
          },
          {
            "claimId": "followup-11.evidence_rank",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-11.evidence_rank"
              }
            ]
          },
          {
            "claimId": "followup-11.marketing_touch",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-11.marketing_touch"
              }
            ]
          },
          {
            "claimId": "followup-11.opportunity_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-11.opportunity_id"
              }
            ]
          },
          {
            "claimId": "followup-11.property_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-11.property_id"
              }
            ]
          },
          {
            "claimId": "followup-11.seller_group_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-11.seller_group_id"
              }
            ]
          },
          {
            "claimId": "followup-12.event_at_ms",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-12.event_at_ms"
              }
            ]
          },
          {
            "claimId": "followup-12.evidence_rank",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-12.evidence_rank"
              }
            ]
          },
          {
            "claimId": "followup-12.marketing_touch",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-12.marketing_touch"
              }
            ]
          },
          {
            "claimId": "followup-12.opportunity_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-12.opportunity_id"
              }
            ]
          },
          {
            "claimId": "followup-12.property_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-12.property_id"
              }
            ]
          },
          {
            "claimId": "followup-12.seller_group_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-12.seller_group_id"
              }
            ]
          },
          {
            "claimId": "followup-13.event_at_ms",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-13.event_at_ms"
              }
            ]
          },
          {
            "claimId": "followup-13.evidence_rank",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-13.evidence_rank"
              }
            ]
          },
          {
            "claimId": "followup-13.marketing_touch",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-13.marketing_touch"
              }
            ]
          },
          {
            "claimId": "followup-13.opportunity_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-13.opportunity_id"
              }
            ]
          },
          {
            "claimId": "followup-13.property_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-13.property_id"
              }
            ]
          },
          {
            "claimId": "followup-13.seller_group_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-13.seller_group_id"
              }
            ]
          },
          {
            "claimId": "followup-14.event_at_ms",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-14.event_at_ms"
              }
            ]
          },
          {
            "claimId": "followup-14.evidence_rank",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-14.evidence_rank"
              }
            ]
          },
          {
            "claimId": "followup-14.marketing_touch",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-14.marketing_touch"
              }
            ]
          },
          {
            "claimId": "followup-14.opportunity_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-14.opportunity_id"
              }
            ]
          },
          {
            "claimId": "followup-14.property_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-14.property_id"
              }
            ]
          },
          {
            "claimId": "followup-14.seller_group_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-14.seller_group_id"
              }
            ]
          },
          {
            "claimId": "followup-15.event_at_ms",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-15.event_at_ms"
              }
            ]
          },
          {
            "claimId": "followup-15.evidence_rank",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-15.evidence_rank"
              }
            ]
          },
          {
            "claimId": "followup-15.marketing_touch",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-15.marketing_touch"
              }
            ]
          },
          {
            "claimId": "followup-15.opportunity_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-15.opportunity_id"
              }
            ]
          },
          {
            "claimId": "followup-15.property_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-15.property_id"
              }
            ]
          },
          {
            "claimId": "followup-15.seller_group_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-15.seller_group_id"
              }
            ]
          },
          {
            "claimId": "followup-16.event_at_ms",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-16.event_at_ms"
              }
            ]
          },
          {
            "claimId": "followup-16.evidence_rank",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-16.evidence_rank"
              }
            ]
          },
          {
            "claimId": "followup-16.marketing_touch",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-16.marketing_touch"
              }
            ]
          },
          {
            "claimId": "followup-16.opportunity_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-16.opportunity_id"
              }
            ]
          },
          {
            "claimId": "followup-16.property_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-16.property_id"
              }
            ]
          },
          {
            "claimId": "followup-16.seller_group_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-16.seller_group_id"
              }
            ]
          }
        ],
        "supportingClaimIds": [
          "click-brand.channel_id",
          "click-brand.event_at_ms",
          "click-brand.evidence_rank",
          "click-brand.marketing_touch",
          "click-brand.opportunity_id",
          "click-brand.property_id",
          "click-brand.seller_group_id",
          "click-nonbrand.channel_id",
          "click-nonbrand.event_at_ms",
          "click-nonbrand.evidence_rank",
          "click-nonbrand.marketing_touch",
          "click-nonbrand.opportunity_id",
          "click-nonbrand.property_id",
          "click-nonbrand.seller_group_id"
        ],
        "derivations": [
          {
            "rowHash": "694a95e1c5a20b2c4181a07122a2a687fc67128c10a258b2430fa33c69ae9712",
            "claimIds": [
              "click-brand.channel_id",
              "click-brand.event_at_ms",
              "click-brand.evidence_rank",
              "click-brand.marketing_touch",
              "click-brand.opportunity_id",
              "click-brand.property_id",
              "click-brand.seller_group_id"
            ]
          },
          {
            "rowHash": "8a86502664d35468a58d6eb7e6e5c9be4dfb70904e624e59abad3daa6bd71e31",
            "claimIds": [
              "click-nonbrand.channel_id",
              "click-nonbrand.event_at_ms",
              "click-nonbrand.evidence_rank",
              "click-nonbrand.marketing_touch",
              "click-nonbrand.opportunity_id",
              "click-nonbrand.property_id",
              "click-nonbrand.seller_group_id"
            ]
          }
        ],
        "exclusions": [
          {
            "stepId": "eligible",
            "bindings": {
              "touch": "followup-11"
            },
            "reason": "Failed filter conditions: 3, 6",
            "claimIds": [
              "followup-11.event_at_ms",
              "followup-11.evidence_rank",
              "followup-11.marketing_touch",
              "followup-11.opportunity_id",
              "followup-11.property_id",
              "followup-11.seller_group_id"
            ]
          },
          {
            "stepId": "eligible",
            "bindings": {
              "touch": "followup-12"
            },
            "reason": "Failed filter conditions: 3, 6",
            "claimIds": [
              "followup-12.event_at_ms",
              "followup-12.evidence_rank",
              "followup-12.marketing_touch",
              "followup-12.opportunity_id",
              "followup-12.property_id",
              "followup-12.seller_group_id"
            ]
          },
          {
            "stepId": "eligible",
            "bindings": {
              "touch": "followup-13"
            },
            "reason": "Failed filter conditions: 3, 6",
            "claimIds": [
              "followup-13.event_at_ms",
              "followup-13.evidence_rank",
              "followup-13.marketing_touch",
              "followup-13.opportunity_id",
              "followup-13.property_id",
              "followup-13.seller_group_id"
            ]
          },
          {
            "stepId": "eligible",
            "bindings": {
              "touch": "followup-14"
            },
            "reason": "Failed filter conditions: 3, 6",
            "claimIds": [
              "followup-14.event_at_ms",
              "followup-14.evidence_rank",
              "followup-14.marketing_touch",
              "followup-14.opportunity_id",
              "followup-14.property_id",
              "followup-14.seller_group_id"
            ]
          },
          {
            "stepId": "eligible",
            "bindings": {
              "touch": "followup-15"
            },
            "reason": "Failed filter conditions: 3, 6",
            "claimIds": [
              "followup-15.event_at_ms",
              "followup-15.evidence_rank",
              "followup-15.marketing_touch",
              "followup-15.opportunity_id",
              "followup-15.property_id",
              "followup-15.seller_group_id"
            ]
          },
          {
            "stepId": "eligible",
            "bindings": {
              "touch": "followup-16"
            },
            "reason": "Failed filter conditions: 3, 6",
            "claimIds": [
              "followup-16.event_at_ms",
              "followup-16.evidence_rank",
              "followup-16.marketing_touch",
              "followup-16.opportunity_id",
              "followup-16.property_id",
              "followup-16.seller_group_id"
            ]
          }
        ],
        "issues": [],
        "trace": [
          {
            "stepId": "touches",
            "operator": "lookup",
            "inputRows": 0,
            "outputRows": 8,
            "claimIds": [],
            "outputHash": "c55fbd507e72dfa4be1c281bf20769c56680927a97c21e0f59ee3933e73dee7a"
          },
          {
            "stepId": "eligible",
            "operator": "filter",
            "inputRows": 8,
            "outputRows": 2,
            "claimIds": [
              "click-brand.event_at_ms",
              "click-brand.evidence_rank",
              "click-brand.marketing_touch",
              "click-brand.opportunity_id",
              "click-brand.property_id",
              "click-brand.seller_group_id",
              "click-nonbrand.event_at_ms",
              "click-nonbrand.evidence_rank",
              "click-nonbrand.marketing_touch",
              "click-nonbrand.opportunity_id",
              "click-nonbrand.property_id",
              "click-nonbrand.seller_group_id",
              "followup-11.event_at_ms",
              "followup-11.evidence_rank",
              "followup-11.marketing_touch",
              "followup-11.opportunity_id",
              "followup-11.property_id",
              "followup-11.seller_group_id",
              "followup-12.event_at_ms",
              "followup-12.evidence_rank",
              "followup-12.marketing_touch",
              "followup-12.opportunity_id",
              "followup-12.property_id",
              "followup-12.seller_group_id",
              "followup-13.event_at_ms",
              "followup-13.evidence_rank",
              "followup-13.marketing_touch",
              "followup-13.opportunity_id",
              "followup-13.property_id",
              "followup-13.seller_group_id",
              "followup-14.event_at_ms",
              "followup-14.evidence_rank",
              "followup-14.marketing_touch",
              "followup-14.opportunity_id",
              "followup-14.property_id",
              "followup-14.seller_group_id",
              "followup-15.event_at_ms",
              "followup-15.evidence_rank",
              "followup-15.marketing_touch",
              "followup-15.opportunity_id",
              "followup-15.property_id",
              "followup-15.seller_group_id",
              "followup-16.event_at_ms",
              "followup-16.evidence_rank",
              "followup-16.marketing_touch",
              "followup-16.opportunity_id",
              "followup-16.property_id",
              "followup-16.seller_group_id"
            ],
            "outputHash": "8864bff38933853cc1e817ba21ea80f93b0b754a138347c03d066fddef7ec24b"
          },
          {
            "stepId": "rows",
            "operator": "project",
            "inputRows": 2,
            "outputRows": 2,
            "claimIds": [
              "click-brand.channel_id",
              "click-brand.event_at_ms",
              "click-brand.evidence_rank",
              "click-nonbrand.channel_id",
              "click-nonbrand.event_at_ms",
              "click-nonbrand.evidence_rank"
            ],
            "outputHash": "078dbc75a2ac1b1ea6e98b028bdb1c2655ebf9eac5681b4b98c9e64ac4242bac"
          }
        ],
        "work": 291,
        "resultHash": "bd6ef66be3a835842a8830f5af3f1fd1415522f3b33dc8827750d4a552755459"
      }
    },
    "followup|observed|resale": {
      "graph": {
        "snapshotVersion": "t2k.reasoning-graph.v1",
        "graphKey": "demo.cash-homebuyer",
        "asOf": "2026-09-15T23:59:59Z",
        "ontologyResolutionHash": "c1f42aba94b41cc81e2ba87abe71a6263a91a15226cc24ee279c2183f576533f",
        "coverage": "complete",
        "entities": [
          {
            "entityId": "click-nonbrand",
            "typeRef": "demo.cash-homebuyer:touchpoint"
          },
          {
            "entityId": "click-brand",
            "typeRef": "demo.cash-homebuyer:touchpoint"
          },
          {
            "entityId": "followup-11",
            "typeRef": "demo.cash-homebuyer:touchpoint"
          },
          {
            "entityId": "followup-12",
            "typeRef": "demo.cash-homebuyer:touchpoint"
          },
          {
            "entityId": "followup-13",
            "typeRef": "demo.cash-homebuyer:touchpoint"
          },
          {
            "entityId": "followup-14",
            "typeRef": "demo.cash-homebuyer:touchpoint"
          },
          {
            "entityId": "followup-15",
            "typeRef": "demo.cash-homebuyer:touchpoint"
          },
          {
            "entityId": "followup-16",
            "typeRef": "demo.cash-homebuyer:touchpoint"
          }
        ],
        "claims": [
          {
            "claimId": "click-nonbrand.property_id",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.property_id",
            "value": "property-104",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.property_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.opportunity_id",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.opportunity_id",
            "value": "acquisition-204",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.opportunity_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.seller_group_id",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.seller_group_id",
            "value": "seller-group-14",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.seller_group_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.channel_id",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.channel_id",
            "value": "search-nonbrand",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.channel_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.event_at_ms",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.event_at_ms",
            "value": 1775210400000,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.event_at_ms"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.evidence_rank",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.evidence_rank",
            "value": 0,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.evidence_rank"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.marketing_touch",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.marketing_touch",
            "value": true,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.marketing_touch"
              }
            ]
          },
          {
            "claimId": "click-brand.property_id",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.property_id",
            "value": "property-104",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.property_id"
              }
            ]
          },
          {
            "claimId": "click-brand.opportunity_id",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.opportunity_id",
            "value": "acquisition-204",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.opportunity_id"
              }
            ]
          },
          {
            "claimId": "click-brand.seller_group_id",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.seller_group_id",
            "value": "seller-group-14",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.seller_group_id"
              }
            ]
          },
          {
            "claimId": "click-brand.channel_id",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.channel_id",
            "value": "search-brand",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.channel_id"
              }
            ]
          },
          {
            "claimId": "click-brand.event_at_ms",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.event_at_ms",
            "value": 1775646000000,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.event_at_ms"
              }
            ]
          },
          {
            "claimId": "click-brand.evidence_rank",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.evidence_rank",
            "value": 0,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.evidence_rank"
              }
            ]
          },
          {
            "claimId": "click-brand.marketing_touch",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.marketing_touch",
            "value": true,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.marketing_touch"
              }
            ]
          },
          {
            "claimId": "followup-11.property_id",
            "revision": "1",
            "subjectId": "followup-11",
            "predicateRef": "demo.cash-homebuyer:touchpoint.property_id",
            "value": "property-104",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-11T13:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-11.property_id"
              }
            ]
          },
          {
            "claimId": "followup-11.opportunity_id",
            "revision": "1",
            "subjectId": "followup-11",
            "predicateRef": "demo.cash-homebuyer:touchpoint.opportunity_id",
            "value": "acquisition-204",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-11T13:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-11.opportunity_id"
              }
            ]
          },
          {
            "claimId": "followup-11.seller_group_id",
            "revision": "1",
            "subjectId": "followup-11",
            "predicateRef": "demo.cash-homebuyer:touchpoint.seller_group_id",
            "value": "seller-group-14",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-11T13:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-11.seller_group_id"
              }
            ]
          },
          {
            "claimId": "followup-11.event_at_ms",
            "revision": "1",
            "subjectId": "followup-11",
            "predicateRef": "demo.cash-homebuyer:touchpoint.event_at_ms",
            "value": 1775912400000,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-11T13:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-11.event_at_ms"
              }
            ]
          },
          {
            "claimId": "followup-11.evidence_rank",
            "revision": "1",
            "subjectId": "followup-11",
            "predicateRef": "demo.cash-homebuyer:touchpoint.evidence_rank",
            "value": 0,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-11T13:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-11.evidence_rank"
              }
            ]
          },
          {
            "claimId": "followup-11.marketing_touch",
            "revision": "1",
            "subjectId": "followup-11",
            "predicateRef": "demo.cash-homebuyer:touchpoint.marketing_touch",
            "value": false,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-11T13:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-11.marketing_touch"
              }
            ]
          },
          {
            "claimId": "followup-12.property_id",
            "revision": "1",
            "subjectId": "followup-12",
            "predicateRef": "demo.cash-homebuyer:touchpoint.property_id",
            "value": "property-104",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-12T13:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-12.property_id"
              }
            ]
          },
          {
            "claimId": "followup-12.opportunity_id",
            "revision": "1",
            "subjectId": "followup-12",
            "predicateRef": "demo.cash-homebuyer:touchpoint.opportunity_id",
            "value": "acquisition-204",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-12T13:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-12.opportunity_id"
              }
            ]
          },
          {
            "claimId": "followup-12.seller_group_id",
            "revision": "1",
            "subjectId": "followup-12",
            "predicateRef": "demo.cash-homebuyer:touchpoint.seller_group_id",
            "value": "seller-group-14",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-12T13:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-12.seller_group_id"
              }
            ]
          },
          {
            "claimId": "followup-12.event_at_ms",
            "revision": "1",
            "subjectId": "followup-12",
            "predicateRef": "demo.cash-homebuyer:touchpoint.event_at_ms",
            "value": 1775998800000,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-12T13:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-12.event_at_ms"
              }
            ]
          },
          {
            "claimId": "followup-12.evidence_rank",
            "revision": "1",
            "subjectId": "followup-12",
            "predicateRef": "demo.cash-homebuyer:touchpoint.evidence_rank",
            "value": 0,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-12T13:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-12.evidence_rank"
              }
            ]
          },
          {
            "claimId": "followup-12.marketing_touch",
            "revision": "1",
            "subjectId": "followup-12",
            "predicateRef": "demo.cash-homebuyer:touchpoint.marketing_touch",
            "value": false,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-12T13:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-12.marketing_touch"
              }
            ]
          },
          {
            "claimId": "followup-13.property_id",
            "revision": "1",
            "subjectId": "followup-13",
            "predicateRef": "demo.cash-homebuyer:touchpoint.property_id",
            "value": "property-104",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-13T13:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-13.property_id"
              }
            ]
          },
          {
            "claimId": "followup-13.opportunity_id",
            "revision": "1",
            "subjectId": "followup-13",
            "predicateRef": "demo.cash-homebuyer:touchpoint.opportunity_id",
            "value": "acquisition-204",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-13T13:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-13.opportunity_id"
              }
            ]
          },
          {
            "claimId": "followup-13.seller_group_id",
            "revision": "1",
            "subjectId": "followup-13",
            "predicateRef": "demo.cash-homebuyer:touchpoint.seller_group_id",
            "value": "seller-group-14",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-13T13:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-13.seller_group_id"
              }
            ]
          },
          {
            "claimId": "followup-13.event_at_ms",
            "revision": "1",
            "subjectId": "followup-13",
            "predicateRef": "demo.cash-homebuyer:touchpoint.event_at_ms",
            "value": 1776085200000,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-13T13:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-13.event_at_ms"
              }
            ]
          },
          {
            "claimId": "followup-13.evidence_rank",
            "revision": "1",
            "subjectId": "followup-13",
            "predicateRef": "demo.cash-homebuyer:touchpoint.evidence_rank",
            "value": 0,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-13T13:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-13.evidence_rank"
              }
            ]
          },
          {
            "claimId": "followup-13.marketing_touch",
            "revision": "1",
            "subjectId": "followup-13",
            "predicateRef": "demo.cash-homebuyer:touchpoint.marketing_touch",
            "value": false,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-13T13:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-13.marketing_touch"
              }
            ]
          },
          {
            "claimId": "followup-14.property_id",
            "revision": "1",
            "subjectId": "followup-14",
            "predicateRef": "demo.cash-homebuyer:touchpoint.property_id",
            "value": "property-104",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-14T13:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-14.property_id"
              }
            ]
          },
          {
            "claimId": "followup-14.opportunity_id",
            "revision": "1",
            "subjectId": "followup-14",
            "predicateRef": "demo.cash-homebuyer:touchpoint.opportunity_id",
            "value": "acquisition-204",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-14T13:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-14.opportunity_id"
              }
            ]
          },
          {
            "claimId": "followup-14.seller_group_id",
            "revision": "1",
            "subjectId": "followup-14",
            "predicateRef": "demo.cash-homebuyer:touchpoint.seller_group_id",
            "value": "seller-group-14",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-14T13:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-14.seller_group_id"
              }
            ]
          },
          {
            "claimId": "followup-14.event_at_ms",
            "revision": "1",
            "subjectId": "followup-14",
            "predicateRef": "demo.cash-homebuyer:touchpoint.event_at_ms",
            "value": 1776171600000,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-14T13:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-14.event_at_ms"
              }
            ]
          },
          {
            "claimId": "followup-14.evidence_rank",
            "revision": "1",
            "subjectId": "followup-14",
            "predicateRef": "demo.cash-homebuyer:touchpoint.evidence_rank",
            "value": 0,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-14T13:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-14.evidence_rank"
              }
            ]
          },
          {
            "claimId": "followup-14.marketing_touch",
            "revision": "1",
            "subjectId": "followup-14",
            "predicateRef": "demo.cash-homebuyer:touchpoint.marketing_touch",
            "value": false,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-14T13:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-14.marketing_touch"
              }
            ]
          },
          {
            "claimId": "followup-15.property_id",
            "revision": "1",
            "subjectId": "followup-15",
            "predicateRef": "demo.cash-homebuyer:touchpoint.property_id",
            "value": "property-104",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-15T13:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-15.property_id"
              }
            ]
          },
          {
            "claimId": "followup-15.opportunity_id",
            "revision": "1",
            "subjectId": "followup-15",
            "predicateRef": "demo.cash-homebuyer:touchpoint.opportunity_id",
            "value": "acquisition-204",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-15T13:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-15.opportunity_id"
              }
            ]
          },
          {
            "claimId": "followup-15.seller_group_id",
            "revision": "1",
            "subjectId": "followup-15",
            "predicateRef": "demo.cash-homebuyer:touchpoint.seller_group_id",
            "value": "seller-group-14",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-15T13:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-15.seller_group_id"
              }
            ]
          },
          {
            "claimId": "followup-15.event_at_ms",
            "revision": "1",
            "subjectId": "followup-15",
            "predicateRef": "demo.cash-homebuyer:touchpoint.event_at_ms",
            "value": 1776258000000,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-15T13:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-15.event_at_ms"
              }
            ]
          },
          {
            "claimId": "followup-15.evidence_rank",
            "revision": "1",
            "subjectId": "followup-15",
            "predicateRef": "demo.cash-homebuyer:touchpoint.evidence_rank",
            "value": 0,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-15T13:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-15.evidence_rank"
              }
            ]
          },
          {
            "claimId": "followup-15.marketing_touch",
            "revision": "1",
            "subjectId": "followup-15",
            "predicateRef": "demo.cash-homebuyer:touchpoint.marketing_touch",
            "value": false,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-15T13:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-15.marketing_touch"
              }
            ]
          },
          {
            "claimId": "followup-16.property_id",
            "revision": "1",
            "subjectId": "followup-16",
            "predicateRef": "demo.cash-homebuyer:touchpoint.property_id",
            "value": "property-104",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-16T13:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-16.property_id"
              }
            ]
          },
          {
            "claimId": "followup-16.opportunity_id",
            "revision": "1",
            "subjectId": "followup-16",
            "predicateRef": "demo.cash-homebuyer:touchpoint.opportunity_id",
            "value": "acquisition-204",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-16T13:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-16.opportunity_id"
              }
            ]
          },
          {
            "claimId": "followup-16.seller_group_id",
            "revision": "1",
            "subjectId": "followup-16",
            "predicateRef": "demo.cash-homebuyer:touchpoint.seller_group_id",
            "value": "seller-group-14",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-16T13:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-16.seller_group_id"
              }
            ]
          },
          {
            "claimId": "followup-16.event_at_ms",
            "revision": "1",
            "subjectId": "followup-16",
            "predicateRef": "demo.cash-homebuyer:touchpoint.event_at_ms",
            "value": 1776344400000,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-16T13:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-16.event_at_ms"
              }
            ]
          },
          {
            "claimId": "followup-16.evidence_rank",
            "revision": "1",
            "subjectId": "followup-16",
            "predicateRef": "demo.cash-homebuyer:touchpoint.evidence_rank",
            "value": 0,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-16T13:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-16.evidence_rank"
              }
            ]
          },
          {
            "claimId": "followup-16.marketing_touch",
            "revision": "1",
            "subjectId": "followup-16",
            "predicateRef": "demo.cash-homebuyer:touchpoint.marketing_touch",
            "value": false,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-16T13:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-16.marketing_touch"
              }
            ]
          }
        ]
      },
      "arguments": {
        "property": "property-104",
        "opportunity": "acquisition-204",
        "sellerGroup": "seller-group-14",
        "windowStart": 1772323200000,
        "qualificationAt": 1775746800000,
        "admittedRank": 0
      },
      "receipt": {
        "resultVersion": "t2k.graph-result.v1",
        "status": "complete",
        "value": [
          {
            "touchId": "click-brand",
            "channelId": "search-brand",
            "eventAtMs": 1775646000000,
            "evidenceRank": 0
          },
          {
            "touchId": "click-nonbrand",
            "channelId": "search-nonbrand",
            "eventAtMs": 1775210400000,
            "evidenceRank": 0
          }
        ],
        "authorization": "not_authorized",
        "binding": {
          "runtimeVersion": "t2k.graph-runtime.v1",
          "functionHash": "c0aa7b713a989a49764860e270b776fcbd76416e07891e48a43920029a6aa40d",
          "ontologyResolutionHash": "c1f42aba94b41cc81e2ba87abe71a6263a91a15226cc24ee279c2183f576533f",
          "graphKey": "demo.cash-homebuyer",
          "asOf": "2026-09-15T23:59:59.000Z",
          "snapshotHash": "b158ca826396a1968ca996bf9c99b85b1a2263fcf664782b899349945960a876",
          "argumentsHash": "42e0e7d41d126edcc85e8694a0a6c610ab82f2484d117738872465ddbc3c08ac"
        },
        "evidence": [
          {
            "claimId": "click-brand.channel_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.channel_id"
              }
            ]
          },
          {
            "claimId": "click-brand.event_at_ms",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.event_at_ms"
              }
            ]
          },
          {
            "claimId": "click-brand.evidence_rank",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.evidence_rank"
              }
            ]
          },
          {
            "claimId": "click-brand.marketing_touch",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.marketing_touch"
              }
            ]
          },
          {
            "claimId": "click-brand.opportunity_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.opportunity_id"
              }
            ]
          },
          {
            "claimId": "click-brand.property_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.property_id"
              }
            ]
          },
          {
            "claimId": "click-brand.seller_group_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.seller_group_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.channel_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.channel_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.event_at_ms",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.event_at_ms"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.evidence_rank",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.evidence_rank"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.marketing_touch",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.marketing_touch"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.opportunity_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.opportunity_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.property_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.property_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.seller_group_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.seller_group_id"
              }
            ]
          },
          {
            "claimId": "followup-11.event_at_ms",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-11.event_at_ms"
              }
            ]
          },
          {
            "claimId": "followup-11.evidence_rank",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-11.evidence_rank"
              }
            ]
          },
          {
            "claimId": "followup-11.marketing_touch",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-11.marketing_touch"
              }
            ]
          },
          {
            "claimId": "followup-11.opportunity_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-11.opportunity_id"
              }
            ]
          },
          {
            "claimId": "followup-11.property_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-11.property_id"
              }
            ]
          },
          {
            "claimId": "followup-11.seller_group_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-11.seller_group_id"
              }
            ]
          },
          {
            "claimId": "followup-12.event_at_ms",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-12.event_at_ms"
              }
            ]
          },
          {
            "claimId": "followup-12.evidence_rank",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-12.evidence_rank"
              }
            ]
          },
          {
            "claimId": "followup-12.marketing_touch",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-12.marketing_touch"
              }
            ]
          },
          {
            "claimId": "followup-12.opportunity_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-12.opportunity_id"
              }
            ]
          },
          {
            "claimId": "followup-12.property_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-12.property_id"
              }
            ]
          },
          {
            "claimId": "followup-12.seller_group_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-12.seller_group_id"
              }
            ]
          },
          {
            "claimId": "followup-13.event_at_ms",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-13.event_at_ms"
              }
            ]
          },
          {
            "claimId": "followup-13.evidence_rank",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-13.evidence_rank"
              }
            ]
          },
          {
            "claimId": "followup-13.marketing_touch",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-13.marketing_touch"
              }
            ]
          },
          {
            "claimId": "followup-13.opportunity_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-13.opportunity_id"
              }
            ]
          },
          {
            "claimId": "followup-13.property_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-13.property_id"
              }
            ]
          },
          {
            "claimId": "followup-13.seller_group_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-13.seller_group_id"
              }
            ]
          },
          {
            "claimId": "followup-14.event_at_ms",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-14.event_at_ms"
              }
            ]
          },
          {
            "claimId": "followup-14.evidence_rank",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-14.evidence_rank"
              }
            ]
          },
          {
            "claimId": "followup-14.marketing_touch",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-14.marketing_touch"
              }
            ]
          },
          {
            "claimId": "followup-14.opportunity_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-14.opportunity_id"
              }
            ]
          },
          {
            "claimId": "followup-14.property_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-14.property_id"
              }
            ]
          },
          {
            "claimId": "followup-14.seller_group_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-14.seller_group_id"
              }
            ]
          },
          {
            "claimId": "followup-15.event_at_ms",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-15.event_at_ms"
              }
            ]
          },
          {
            "claimId": "followup-15.evidence_rank",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-15.evidence_rank"
              }
            ]
          },
          {
            "claimId": "followup-15.marketing_touch",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-15.marketing_touch"
              }
            ]
          },
          {
            "claimId": "followup-15.opportunity_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-15.opportunity_id"
              }
            ]
          },
          {
            "claimId": "followup-15.property_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-15.property_id"
              }
            ]
          },
          {
            "claimId": "followup-15.seller_group_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-15.seller_group_id"
              }
            ]
          },
          {
            "claimId": "followup-16.event_at_ms",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-16.event_at_ms"
              }
            ]
          },
          {
            "claimId": "followup-16.evidence_rank",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-16.evidence_rank"
              }
            ]
          },
          {
            "claimId": "followup-16.marketing_touch",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-16.marketing_touch"
              }
            ]
          },
          {
            "claimId": "followup-16.opportunity_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-16.opportunity_id"
              }
            ]
          },
          {
            "claimId": "followup-16.property_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-16.property_id"
              }
            ]
          },
          {
            "claimId": "followup-16.seller_group_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-16.seller_group_id"
              }
            ]
          }
        ],
        "supportingClaimIds": [
          "click-brand.channel_id",
          "click-brand.event_at_ms",
          "click-brand.evidence_rank",
          "click-brand.marketing_touch",
          "click-brand.opportunity_id",
          "click-brand.property_id",
          "click-brand.seller_group_id",
          "click-nonbrand.channel_id",
          "click-nonbrand.event_at_ms",
          "click-nonbrand.evidence_rank",
          "click-nonbrand.marketing_touch",
          "click-nonbrand.opportunity_id",
          "click-nonbrand.property_id",
          "click-nonbrand.seller_group_id"
        ],
        "derivations": [
          {
            "rowHash": "694a95e1c5a20b2c4181a07122a2a687fc67128c10a258b2430fa33c69ae9712",
            "claimIds": [
              "click-brand.channel_id",
              "click-brand.event_at_ms",
              "click-brand.evidence_rank",
              "click-brand.marketing_touch",
              "click-brand.opportunity_id",
              "click-brand.property_id",
              "click-brand.seller_group_id"
            ]
          },
          {
            "rowHash": "8a86502664d35468a58d6eb7e6e5c9be4dfb70904e624e59abad3daa6bd71e31",
            "claimIds": [
              "click-nonbrand.channel_id",
              "click-nonbrand.event_at_ms",
              "click-nonbrand.evidence_rank",
              "click-nonbrand.marketing_touch",
              "click-nonbrand.opportunity_id",
              "click-nonbrand.property_id",
              "click-nonbrand.seller_group_id"
            ]
          }
        ],
        "exclusions": [
          {
            "stepId": "eligible",
            "bindings": {
              "touch": "followup-11"
            },
            "reason": "Failed filter conditions: 3, 6",
            "claimIds": [
              "followup-11.event_at_ms",
              "followup-11.evidence_rank",
              "followup-11.marketing_touch",
              "followup-11.opportunity_id",
              "followup-11.property_id",
              "followup-11.seller_group_id"
            ]
          },
          {
            "stepId": "eligible",
            "bindings": {
              "touch": "followup-12"
            },
            "reason": "Failed filter conditions: 3, 6",
            "claimIds": [
              "followup-12.event_at_ms",
              "followup-12.evidence_rank",
              "followup-12.marketing_touch",
              "followup-12.opportunity_id",
              "followup-12.property_id",
              "followup-12.seller_group_id"
            ]
          },
          {
            "stepId": "eligible",
            "bindings": {
              "touch": "followup-13"
            },
            "reason": "Failed filter conditions: 3, 6",
            "claimIds": [
              "followup-13.event_at_ms",
              "followup-13.evidence_rank",
              "followup-13.marketing_touch",
              "followup-13.opportunity_id",
              "followup-13.property_id",
              "followup-13.seller_group_id"
            ]
          },
          {
            "stepId": "eligible",
            "bindings": {
              "touch": "followup-14"
            },
            "reason": "Failed filter conditions: 3, 6",
            "claimIds": [
              "followup-14.event_at_ms",
              "followup-14.evidence_rank",
              "followup-14.marketing_touch",
              "followup-14.opportunity_id",
              "followup-14.property_id",
              "followup-14.seller_group_id"
            ]
          },
          {
            "stepId": "eligible",
            "bindings": {
              "touch": "followup-15"
            },
            "reason": "Failed filter conditions: 3, 6",
            "claimIds": [
              "followup-15.event_at_ms",
              "followup-15.evidence_rank",
              "followup-15.marketing_touch",
              "followup-15.opportunity_id",
              "followup-15.property_id",
              "followup-15.seller_group_id"
            ]
          },
          {
            "stepId": "eligible",
            "bindings": {
              "touch": "followup-16"
            },
            "reason": "Failed filter conditions: 3, 6",
            "claimIds": [
              "followup-16.event_at_ms",
              "followup-16.evidence_rank",
              "followup-16.marketing_touch",
              "followup-16.opportunity_id",
              "followup-16.property_id",
              "followup-16.seller_group_id"
            ]
          }
        ],
        "issues": [],
        "trace": [
          {
            "stepId": "touches",
            "operator": "lookup",
            "inputRows": 0,
            "outputRows": 8,
            "claimIds": [],
            "outputHash": "c55fbd507e72dfa4be1c281bf20769c56680927a97c21e0f59ee3933e73dee7a"
          },
          {
            "stepId": "eligible",
            "operator": "filter",
            "inputRows": 8,
            "outputRows": 2,
            "claimIds": [
              "click-brand.event_at_ms",
              "click-brand.evidence_rank",
              "click-brand.marketing_touch",
              "click-brand.opportunity_id",
              "click-brand.property_id",
              "click-brand.seller_group_id",
              "click-nonbrand.event_at_ms",
              "click-nonbrand.evidence_rank",
              "click-nonbrand.marketing_touch",
              "click-nonbrand.opportunity_id",
              "click-nonbrand.property_id",
              "click-nonbrand.seller_group_id",
              "followup-11.event_at_ms",
              "followup-11.evidence_rank",
              "followup-11.marketing_touch",
              "followup-11.opportunity_id",
              "followup-11.property_id",
              "followup-11.seller_group_id",
              "followup-12.event_at_ms",
              "followup-12.evidence_rank",
              "followup-12.marketing_touch",
              "followup-12.opportunity_id",
              "followup-12.property_id",
              "followup-12.seller_group_id",
              "followup-13.event_at_ms",
              "followup-13.evidence_rank",
              "followup-13.marketing_touch",
              "followup-13.opportunity_id",
              "followup-13.property_id",
              "followup-13.seller_group_id",
              "followup-14.event_at_ms",
              "followup-14.evidence_rank",
              "followup-14.marketing_touch",
              "followup-14.opportunity_id",
              "followup-14.property_id",
              "followup-14.seller_group_id",
              "followup-15.event_at_ms",
              "followup-15.evidence_rank",
              "followup-15.marketing_touch",
              "followup-15.opportunity_id",
              "followup-15.property_id",
              "followup-15.seller_group_id",
              "followup-16.event_at_ms",
              "followup-16.evidence_rank",
              "followup-16.marketing_touch",
              "followup-16.opportunity_id",
              "followup-16.property_id",
              "followup-16.seller_group_id"
            ],
            "outputHash": "8864bff38933853cc1e817ba21ea80f93b0b754a138347c03d066fddef7ec24b"
          },
          {
            "stepId": "rows",
            "operator": "project",
            "inputRows": 2,
            "outputRows": 2,
            "claimIds": [
              "click-brand.channel_id",
              "click-brand.event_at_ms",
              "click-brand.evidence_rank",
              "click-nonbrand.channel_id",
              "click-nonbrand.event_at_ms",
              "click-nonbrand.evidence_rank"
            ],
            "outputHash": "078dbc75a2ac1b1ea6e98b028bdb1c2655ebf9eac5681b4b98c9e64ac4242bac"
          }
        ],
        "work": 291,
        "resultHash": "0c8bb42b46284b563d4a64fb335aa5380e2f5077ef4305d2b44628e58c399f8b"
      }
    },
    "followup|reported|contract": {
      "graph": {
        "snapshotVersion": "t2k.reasoning-graph.v1",
        "graphKey": "demo.cash-homebuyer",
        "asOf": "2026-05-15T23:59:59Z",
        "ontologyResolutionHash": "c1f42aba94b41cc81e2ba87abe71a6263a91a15226cc24ee279c2183f576533f",
        "coverage": "complete",
        "entities": [
          {
            "entityId": "click-nonbrand",
            "typeRef": "demo.cash-homebuyer:touchpoint"
          },
          {
            "entityId": "click-brand",
            "typeRef": "demo.cash-homebuyer:touchpoint"
          },
          {
            "entityId": "followup-11",
            "typeRef": "demo.cash-homebuyer:touchpoint"
          },
          {
            "entityId": "followup-12",
            "typeRef": "demo.cash-homebuyer:touchpoint"
          },
          {
            "entityId": "followup-13",
            "typeRef": "demo.cash-homebuyer:touchpoint"
          },
          {
            "entityId": "followup-14",
            "typeRef": "demo.cash-homebuyer:touchpoint"
          },
          {
            "entityId": "followup-15",
            "typeRef": "demo.cash-homebuyer:touchpoint"
          },
          {
            "entityId": "followup-16",
            "typeRef": "demo.cash-homebuyer:touchpoint"
          }
        ],
        "claims": [
          {
            "claimId": "click-nonbrand.property_id",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.property_id",
            "value": "property-104",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.property_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.opportunity_id",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.opportunity_id",
            "value": "acquisition-204",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.opportunity_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.seller_group_id",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.seller_group_id",
            "value": "seller-group-14",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.seller_group_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.channel_id",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.channel_id",
            "value": "search-nonbrand",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.channel_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.event_at_ms",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.event_at_ms",
            "value": 1775210400000,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.event_at_ms"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.evidence_rank",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.evidence_rank",
            "value": 0,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.evidence_rank"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.marketing_touch",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.marketing_touch",
            "value": true,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.marketing_touch"
              }
            ]
          },
          {
            "claimId": "click-brand.property_id",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.property_id",
            "value": "property-104",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.property_id"
              }
            ]
          },
          {
            "claimId": "click-brand.opportunity_id",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.opportunity_id",
            "value": "acquisition-204",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.opportunity_id"
              }
            ]
          },
          {
            "claimId": "click-brand.seller_group_id",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.seller_group_id",
            "value": "seller-group-14",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.seller_group_id"
              }
            ]
          },
          {
            "claimId": "click-brand.channel_id",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.channel_id",
            "value": "search-brand",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.channel_id"
              }
            ]
          },
          {
            "claimId": "click-brand.event_at_ms",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.event_at_ms",
            "value": 1775646000000,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.event_at_ms"
              }
            ]
          },
          {
            "claimId": "click-brand.evidence_rank",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.evidence_rank",
            "value": 0,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.evidence_rank"
              }
            ]
          },
          {
            "claimId": "click-brand.marketing_touch",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.marketing_touch",
            "value": true,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.marketing_touch"
              }
            ]
          },
          {
            "claimId": "followup-11.property_id",
            "revision": "1",
            "subjectId": "followup-11",
            "predicateRef": "demo.cash-homebuyer:touchpoint.property_id",
            "value": "property-104",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-11T13:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-11.property_id"
              }
            ]
          },
          {
            "claimId": "followup-11.opportunity_id",
            "revision": "1",
            "subjectId": "followup-11",
            "predicateRef": "demo.cash-homebuyer:touchpoint.opportunity_id",
            "value": "acquisition-204",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-11T13:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-11.opportunity_id"
              }
            ]
          },
          {
            "claimId": "followup-11.seller_group_id",
            "revision": "1",
            "subjectId": "followup-11",
            "predicateRef": "demo.cash-homebuyer:touchpoint.seller_group_id",
            "value": "seller-group-14",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-11T13:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-11.seller_group_id"
              }
            ]
          },
          {
            "claimId": "followup-11.event_at_ms",
            "revision": "1",
            "subjectId": "followup-11",
            "predicateRef": "demo.cash-homebuyer:touchpoint.event_at_ms",
            "value": 1775912400000,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-11T13:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-11.event_at_ms"
              }
            ]
          },
          {
            "claimId": "followup-11.evidence_rank",
            "revision": "1",
            "subjectId": "followup-11",
            "predicateRef": "demo.cash-homebuyer:touchpoint.evidence_rank",
            "value": 0,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-11T13:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-11.evidence_rank"
              }
            ]
          },
          {
            "claimId": "followup-11.marketing_touch",
            "revision": "1",
            "subjectId": "followup-11",
            "predicateRef": "demo.cash-homebuyer:touchpoint.marketing_touch",
            "value": false,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-11T13:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-11.marketing_touch"
              }
            ]
          },
          {
            "claimId": "followup-12.property_id",
            "revision": "1",
            "subjectId": "followup-12",
            "predicateRef": "demo.cash-homebuyer:touchpoint.property_id",
            "value": "property-104",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-12T13:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-12.property_id"
              }
            ]
          },
          {
            "claimId": "followup-12.opportunity_id",
            "revision": "1",
            "subjectId": "followup-12",
            "predicateRef": "demo.cash-homebuyer:touchpoint.opportunity_id",
            "value": "acquisition-204",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-12T13:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-12.opportunity_id"
              }
            ]
          },
          {
            "claimId": "followup-12.seller_group_id",
            "revision": "1",
            "subjectId": "followup-12",
            "predicateRef": "demo.cash-homebuyer:touchpoint.seller_group_id",
            "value": "seller-group-14",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-12T13:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-12.seller_group_id"
              }
            ]
          },
          {
            "claimId": "followup-12.event_at_ms",
            "revision": "1",
            "subjectId": "followup-12",
            "predicateRef": "demo.cash-homebuyer:touchpoint.event_at_ms",
            "value": 1775998800000,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-12T13:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-12.event_at_ms"
              }
            ]
          },
          {
            "claimId": "followup-12.evidence_rank",
            "revision": "1",
            "subjectId": "followup-12",
            "predicateRef": "demo.cash-homebuyer:touchpoint.evidence_rank",
            "value": 0,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-12T13:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-12.evidence_rank"
              }
            ]
          },
          {
            "claimId": "followup-12.marketing_touch",
            "revision": "1",
            "subjectId": "followup-12",
            "predicateRef": "demo.cash-homebuyer:touchpoint.marketing_touch",
            "value": false,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-12T13:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-12.marketing_touch"
              }
            ]
          },
          {
            "claimId": "followup-13.property_id",
            "revision": "1",
            "subjectId": "followup-13",
            "predicateRef": "demo.cash-homebuyer:touchpoint.property_id",
            "value": "property-104",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-13T13:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-13.property_id"
              }
            ]
          },
          {
            "claimId": "followup-13.opportunity_id",
            "revision": "1",
            "subjectId": "followup-13",
            "predicateRef": "demo.cash-homebuyer:touchpoint.opportunity_id",
            "value": "acquisition-204",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-13T13:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-13.opportunity_id"
              }
            ]
          },
          {
            "claimId": "followup-13.seller_group_id",
            "revision": "1",
            "subjectId": "followup-13",
            "predicateRef": "demo.cash-homebuyer:touchpoint.seller_group_id",
            "value": "seller-group-14",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-13T13:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-13.seller_group_id"
              }
            ]
          },
          {
            "claimId": "followup-13.event_at_ms",
            "revision": "1",
            "subjectId": "followup-13",
            "predicateRef": "demo.cash-homebuyer:touchpoint.event_at_ms",
            "value": 1776085200000,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-13T13:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-13.event_at_ms"
              }
            ]
          },
          {
            "claimId": "followup-13.evidence_rank",
            "revision": "1",
            "subjectId": "followup-13",
            "predicateRef": "demo.cash-homebuyer:touchpoint.evidence_rank",
            "value": 0,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-13T13:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-13.evidence_rank"
              }
            ]
          },
          {
            "claimId": "followup-13.marketing_touch",
            "revision": "1",
            "subjectId": "followup-13",
            "predicateRef": "demo.cash-homebuyer:touchpoint.marketing_touch",
            "value": false,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-13T13:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-13.marketing_touch"
              }
            ]
          },
          {
            "claimId": "followup-14.property_id",
            "revision": "1",
            "subjectId": "followup-14",
            "predicateRef": "demo.cash-homebuyer:touchpoint.property_id",
            "value": "property-104",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-14T13:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-14.property_id"
              }
            ]
          },
          {
            "claimId": "followup-14.opportunity_id",
            "revision": "1",
            "subjectId": "followup-14",
            "predicateRef": "demo.cash-homebuyer:touchpoint.opportunity_id",
            "value": "acquisition-204",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-14T13:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-14.opportunity_id"
              }
            ]
          },
          {
            "claimId": "followup-14.seller_group_id",
            "revision": "1",
            "subjectId": "followup-14",
            "predicateRef": "demo.cash-homebuyer:touchpoint.seller_group_id",
            "value": "seller-group-14",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-14T13:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-14.seller_group_id"
              }
            ]
          },
          {
            "claimId": "followup-14.event_at_ms",
            "revision": "1",
            "subjectId": "followup-14",
            "predicateRef": "demo.cash-homebuyer:touchpoint.event_at_ms",
            "value": 1776171600000,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-14T13:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-14.event_at_ms"
              }
            ]
          },
          {
            "claimId": "followup-14.evidence_rank",
            "revision": "1",
            "subjectId": "followup-14",
            "predicateRef": "demo.cash-homebuyer:touchpoint.evidence_rank",
            "value": 0,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-14T13:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-14.evidence_rank"
              }
            ]
          },
          {
            "claimId": "followup-14.marketing_touch",
            "revision": "1",
            "subjectId": "followup-14",
            "predicateRef": "demo.cash-homebuyer:touchpoint.marketing_touch",
            "value": false,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-14T13:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-14.marketing_touch"
              }
            ]
          },
          {
            "claimId": "followup-15.property_id",
            "revision": "1",
            "subjectId": "followup-15",
            "predicateRef": "demo.cash-homebuyer:touchpoint.property_id",
            "value": "property-104",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-15T13:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-15.property_id"
              }
            ]
          },
          {
            "claimId": "followup-15.opportunity_id",
            "revision": "1",
            "subjectId": "followup-15",
            "predicateRef": "demo.cash-homebuyer:touchpoint.opportunity_id",
            "value": "acquisition-204",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-15T13:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-15.opportunity_id"
              }
            ]
          },
          {
            "claimId": "followup-15.seller_group_id",
            "revision": "1",
            "subjectId": "followup-15",
            "predicateRef": "demo.cash-homebuyer:touchpoint.seller_group_id",
            "value": "seller-group-14",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-15T13:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-15.seller_group_id"
              }
            ]
          },
          {
            "claimId": "followup-15.event_at_ms",
            "revision": "1",
            "subjectId": "followup-15",
            "predicateRef": "demo.cash-homebuyer:touchpoint.event_at_ms",
            "value": 1776258000000,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-15T13:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-15.event_at_ms"
              }
            ]
          },
          {
            "claimId": "followup-15.evidence_rank",
            "revision": "1",
            "subjectId": "followup-15",
            "predicateRef": "demo.cash-homebuyer:touchpoint.evidence_rank",
            "value": 0,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-15T13:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-15.evidence_rank"
              }
            ]
          },
          {
            "claimId": "followup-15.marketing_touch",
            "revision": "1",
            "subjectId": "followup-15",
            "predicateRef": "demo.cash-homebuyer:touchpoint.marketing_touch",
            "value": false,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-15T13:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-15.marketing_touch"
              }
            ]
          },
          {
            "claimId": "followup-16.property_id",
            "revision": "1",
            "subjectId": "followup-16",
            "predicateRef": "demo.cash-homebuyer:touchpoint.property_id",
            "value": "property-104",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-16T13:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-16.property_id"
              }
            ]
          },
          {
            "claimId": "followup-16.opportunity_id",
            "revision": "1",
            "subjectId": "followup-16",
            "predicateRef": "demo.cash-homebuyer:touchpoint.opportunity_id",
            "value": "acquisition-204",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-16T13:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-16.opportunity_id"
              }
            ]
          },
          {
            "claimId": "followup-16.seller_group_id",
            "revision": "1",
            "subjectId": "followup-16",
            "predicateRef": "demo.cash-homebuyer:touchpoint.seller_group_id",
            "value": "seller-group-14",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-16T13:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-16.seller_group_id"
              }
            ]
          },
          {
            "claimId": "followup-16.event_at_ms",
            "revision": "1",
            "subjectId": "followup-16",
            "predicateRef": "demo.cash-homebuyer:touchpoint.event_at_ms",
            "value": 1776344400000,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-16T13:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-16.event_at_ms"
              }
            ]
          },
          {
            "claimId": "followup-16.evidence_rank",
            "revision": "1",
            "subjectId": "followup-16",
            "predicateRef": "demo.cash-homebuyer:touchpoint.evidence_rank",
            "value": 0,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-16T13:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-16.evidence_rank"
              }
            ]
          },
          {
            "claimId": "followup-16.marketing_touch",
            "revision": "1",
            "subjectId": "followup-16",
            "predicateRef": "demo.cash-homebuyer:touchpoint.marketing_touch",
            "value": false,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-16T13:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-16.marketing_touch"
              }
            ]
          }
        ]
      },
      "arguments": {
        "property": "property-104",
        "opportunity": "acquisition-204",
        "sellerGroup": "seller-group-14",
        "windowStart": 1772323200000,
        "qualificationAt": 1775746800000,
        "admittedRank": 1
      },
      "receipt": {
        "resultVersion": "t2k.graph-result.v1",
        "status": "complete",
        "value": [
          {
            "touchId": "click-brand",
            "channelId": "search-brand",
            "eventAtMs": 1775646000000,
            "evidenceRank": 0
          },
          {
            "touchId": "click-nonbrand",
            "channelId": "search-nonbrand",
            "eventAtMs": 1775210400000,
            "evidenceRank": 0
          }
        ],
        "authorization": "not_authorized",
        "binding": {
          "runtimeVersion": "t2k.graph-runtime.v1",
          "functionHash": "c0aa7b713a989a49764860e270b776fcbd76416e07891e48a43920029a6aa40d",
          "ontologyResolutionHash": "c1f42aba94b41cc81e2ba87abe71a6263a91a15226cc24ee279c2183f576533f",
          "graphKey": "demo.cash-homebuyer",
          "asOf": "2026-05-15T23:59:59.000Z",
          "snapshotHash": "87284037b4622e00b1cbab0d8b4c4abb90c4c5e6e8e550a4ffa77187cdca1cab",
          "argumentsHash": "cd8690f832630034ecce3c948890d1e8f4ac84aebf4d3b80bcff6e7dcae3c8ab"
        },
        "evidence": [
          {
            "claimId": "click-brand.channel_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.channel_id"
              }
            ]
          },
          {
            "claimId": "click-brand.event_at_ms",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.event_at_ms"
              }
            ]
          },
          {
            "claimId": "click-brand.evidence_rank",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.evidence_rank"
              }
            ]
          },
          {
            "claimId": "click-brand.marketing_touch",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.marketing_touch"
              }
            ]
          },
          {
            "claimId": "click-brand.opportunity_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.opportunity_id"
              }
            ]
          },
          {
            "claimId": "click-brand.property_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.property_id"
              }
            ]
          },
          {
            "claimId": "click-brand.seller_group_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.seller_group_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.channel_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.channel_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.event_at_ms",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.event_at_ms"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.evidence_rank",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.evidence_rank"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.marketing_touch",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.marketing_touch"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.opportunity_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.opportunity_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.property_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.property_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.seller_group_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.seller_group_id"
              }
            ]
          },
          {
            "claimId": "followup-11.event_at_ms",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-11.event_at_ms"
              }
            ]
          },
          {
            "claimId": "followup-11.evidence_rank",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-11.evidence_rank"
              }
            ]
          },
          {
            "claimId": "followup-11.marketing_touch",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-11.marketing_touch"
              }
            ]
          },
          {
            "claimId": "followup-11.opportunity_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-11.opportunity_id"
              }
            ]
          },
          {
            "claimId": "followup-11.property_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-11.property_id"
              }
            ]
          },
          {
            "claimId": "followup-11.seller_group_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-11.seller_group_id"
              }
            ]
          },
          {
            "claimId": "followup-12.event_at_ms",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-12.event_at_ms"
              }
            ]
          },
          {
            "claimId": "followup-12.evidence_rank",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-12.evidence_rank"
              }
            ]
          },
          {
            "claimId": "followup-12.marketing_touch",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-12.marketing_touch"
              }
            ]
          },
          {
            "claimId": "followup-12.opportunity_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-12.opportunity_id"
              }
            ]
          },
          {
            "claimId": "followup-12.property_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-12.property_id"
              }
            ]
          },
          {
            "claimId": "followup-12.seller_group_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-12.seller_group_id"
              }
            ]
          },
          {
            "claimId": "followup-13.event_at_ms",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-13.event_at_ms"
              }
            ]
          },
          {
            "claimId": "followup-13.evidence_rank",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-13.evidence_rank"
              }
            ]
          },
          {
            "claimId": "followup-13.marketing_touch",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-13.marketing_touch"
              }
            ]
          },
          {
            "claimId": "followup-13.opportunity_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-13.opportunity_id"
              }
            ]
          },
          {
            "claimId": "followup-13.property_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-13.property_id"
              }
            ]
          },
          {
            "claimId": "followup-13.seller_group_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-13.seller_group_id"
              }
            ]
          },
          {
            "claimId": "followup-14.event_at_ms",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-14.event_at_ms"
              }
            ]
          },
          {
            "claimId": "followup-14.evidence_rank",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-14.evidence_rank"
              }
            ]
          },
          {
            "claimId": "followup-14.marketing_touch",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-14.marketing_touch"
              }
            ]
          },
          {
            "claimId": "followup-14.opportunity_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-14.opportunity_id"
              }
            ]
          },
          {
            "claimId": "followup-14.property_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-14.property_id"
              }
            ]
          },
          {
            "claimId": "followup-14.seller_group_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-14.seller_group_id"
              }
            ]
          },
          {
            "claimId": "followup-15.event_at_ms",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-15.event_at_ms"
              }
            ]
          },
          {
            "claimId": "followup-15.evidence_rank",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-15.evidence_rank"
              }
            ]
          },
          {
            "claimId": "followup-15.marketing_touch",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-15.marketing_touch"
              }
            ]
          },
          {
            "claimId": "followup-15.opportunity_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-15.opportunity_id"
              }
            ]
          },
          {
            "claimId": "followup-15.property_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-15.property_id"
              }
            ]
          },
          {
            "claimId": "followup-15.seller_group_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-15.seller_group_id"
              }
            ]
          },
          {
            "claimId": "followup-16.event_at_ms",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-16.event_at_ms"
              }
            ]
          },
          {
            "claimId": "followup-16.evidence_rank",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-16.evidence_rank"
              }
            ]
          },
          {
            "claimId": "followup-16.marketing_touch",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-16.marketing_touch"
              }
            ]
          },
          {
            "claimId": "followup-16.opportunity_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-16.opportunity_id"
              }
            ]
          },
          {
            "claimId": "followup-16.property_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-16.property_id"
              }
            ]
          },
          {
            "claimId": "followup-16.seller_group_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-16.seller_group_id"
              }
            ]
          }
        ],
        "supportingClaimIds": [
          "click-brand.channel_id",
          "click-brand.event_at_ms",
          "click-brand.evidence_rank",
          "click-brand.marketing_touch",
          "click-brand.opportunity_id",
          "click-brand.property_id",
          "click-brand.seller_group_id",
          "click-nonbrand.channel_id",
          "click-nonbrand.event_at_ms",
          "click-nonbrand.evidence_rank",
          "click-nonbrand.marketing_touch",
          "click-nonbrand.opportunity_id",
          "click-nonbrand.property_id",
          "click-nonbrand.seller_group_id"
        ],
        "derivations": [
          {
            "rowHash": "694a95e1c5a20b2c4181a07122a2a687fc67128c10a258b2430fa33c69ae9712",
            "claimIds": [
              "click-brand.channel_id",
              "click-brand.event_at_ms",
              "click-brand.evidence_rank",
              "click-brand.marketing_touch",
              "click-brand.opportunity_id",
              "click-brand.property_id",
              "click-brand.seller_group_id"
            ]
          },
          {
            "rowHash": "8a86502664d35468a58d6eb7e6e5c9be4dfb70904e624e59abad3daa6bd71e31",
            "claimIds": [
              "click-nonbrand.channel_id",
              "click-nonbrand.event_at_ms",
              "click-nonbrand.evidence_rank",
              "click-nonbrand.marketing_touch",
              "click-nonbrand.opportunity_id",
              "click-nonbrand.property_id",
              "click-nonbrand.seller_group_id"
            ]
          }
        ],
        "exclusions": [
          {
            "stepId": "eligible",
            "bindings": {
              "touch": "followup-11"
            },
            "reason": "Failed filter conditions: 3, 6",
            "claimIds": [
              "followup-11.event_at_ms",
              "followup-11.evidence_rank",
              "followup-11.marketing_touch",
              "followup-11.opportunity_id",
              "followup-11.property_id",
              "followup-11.seller_group_id"
            ]
          },
          {
            "stepId": "eligible",
            "bindings": {
              "touch": "followup-12"
            },
            "reason": "Failed filter conditions: 3, 6",
            "claimIds": [
              "followup-12.event_at_ms",
              "followup-12.evidence_rank",
              "followup-12.marketing_touch",
              "followup-12.opportunity_id",
              "followup-12.property_id",
              "followup-12.seller_group_id"
            ]
          },
          {
            "stepId": "eligible",
            "bindings": {
              "touch": "followup-13"
            },
            "reason": "Failed filter conditions: 3, 6",
            "claimIds": [
              "followup-13.event_at_ms",
              "followup-13.evidence_rank",
              "followup-13.marketing_touch",
              "followup-13.opportunity_id",
              "followup-13.property_id",
              "followup-13.seller_group_id"
            ]
          },
          {
            "stepId": "eligible",
            "bindings": {
              "touch": "followup-14"
            },
            "reason": "Failed filter conditions: 3, 6",
            "claimIds": [
              "followup-14.event_at_ms",
              "followup-14.evidence_rank",
              "followup-14.marketing_touch",
              "followup-14.opportunity_id",
              "followup-14.property_id",
              "followup-14.seller_group_id"
            ]
          },
          {
            "stepId": "eligible",
            "bindings": {
              "touch": "followup-15"
            },
            "reason": "Failed filter conditions: 3, 6",
            "claimIds": [
              "followup-15.event_at_ms",
              "followup-15.evidence_rank",
              "followup-15.marketing_touch",
              "followup-15.opportunity_id",
              "followup-15.property_id",
              "followup-15.seller_group_id"
            ]
          },
          {
            "stepId": "eligible",
            "bindings": {
              "touch": "followup-16"
            },
            "reason": "Failed filter conditions: 3, 6",
            "claimIds": [
              "followup-16.event_at_ms",
              "followup-16.evidence_rank",
              "followup-16.marketing_touch",
              "followup-16.opportunity_id",
              "followup-16.property_id",
              "followup-16.seller_group_id"
            ]
          }
        ],
        "issues": [],
        "trace": [
          {
            "stepId": "touches",
            "operator": "lookup",
            "inputRows": 0,
            "outputRows": 8,
            "claimIds": [],
            "outputHash": "c55fbd507e72dfa4be1c281bf20769c56680927a97c21e0f59ee3933e73dee7a"
          },
          {
            "stepId": "eligible",
            "operator": "filter",
            "inputRows": 8,
            "outputRows": 2,
            "claimIds": [
              "click-brand.event_at_ms",
              "click-brand.evidence_rank",
              "click-brand.marketing_touch",
              "click-brand.opportunity_id",
              "click-brand.property_id",
              "click-brand.seller_group_id",
              "click-nonbrand.event_at_ms",
              "click-nonbrand.evidence_rank",
              "click-nonbrand.marketing_touch",
              "click-nonbrand.opportunity_id",
              "click-nonbrand.property_id",
              "click-nonbrand.seller_group_id",
              "followup-11.event_at_ms",
              "followup-11.evidence_rank",
              "followup-11.marketing_touch",
              "followup-11.opportunity_id",
              "followup-11.property_id",
              "followup-11.seller_group_id",
              "followup-12.event_at_ms",
              "followup-12.evidence_rank",
              "followup-12.marketing_touch",
              "followup-12.opportunity_id",
              "followup-12.property_id",
              "followup-12.seller_group_id",
              "followup-13.event_at_ms",
              "followup-13.evidence_rank",
              "followup-13.marketing_touch",
              "followup-13.opportunity_id",
              "followup-13.property_id",
              "followup-13.seller_group_id",
              "followup-14.event_at_ms",
              "followup-14.evidence_rank",
              "followup-14.marketing_touch",
              "followup-14.opportunity_id",
              "followup-14.property_id",
              "followup-14.seller_group_id",
              "followup-15.event_at_ms",
              "followup-15.evidence_rank",
              "followup-15.marketing_touch",
              "followup-15.opportunity_id",
              "followup-15.property_id",
              "followup-15.seller_group_id",
              "followup-16.event_at_ms",
              "followup-16.evidence_rank",
              "followup-16.marketing_touch",
              "followup-16.opportunity_id",
              "followup-16.property_id",
              "followup-16.seller_group_id"
            ],
            "outputHash": "8864bff38933853cc1e817ba21ea80f93b0b754a138347c03d066fddef7ec24b"
          },
          {
            "stepId": "rows",
            "operator": "project",
            "inputRows": 2,
            "outputRows": 2,
            "claimIds": [
              "click-brand.channel_id",
              "click-brand.event_at_ms",
              "click-brand.evidence_rank",
              "click-nonbrand.channel_id",
              "click-nonbrand.event_at_ms",
              "click-nonbrand.evidence_rank"
            ],
            "outputHash": "078dbc75a2ac1b1ea6e98b028bdb1c2655ebf9eac5681b4b98c9e64ac4242bac"
          }
        ],
        "work": 291,
        "resultHash": "ac0670e9cae6336618f30ece67112cd87a26306516e9010652a7d0f9a679f1b2"
      }
    },
    "followup|reported|acquired": {
      "graph": {
        "snapshotVersion": "t2k.reasoning-graph.v1",
        "graphKey": "demo.cash-homebuyer",
        "asOf": "2026-06-15T23:59:59Z",
        "ontologyResolutionHash": "c1f42aba94b41cc81e2ba87abe71a6263a91a15226cc24ee279c2183f576533f",
        "coverage": "complete",
        "entities": [
          {
            "entityId": "click-nonbrand",
            "typeRef": "demo.cash-homebuyer:touchpoint"
          },
          {
            "entityId": "click-brand",
            "typeRef": "demo.cash-homebuyer:touchpoint"
          },
          {
            "entityId": "followup-11",
            "typeRef": "demo.cash-homebuyer:touchpoint"
          },
          {
            "entityId": "followup-12",
            "typeRef": "demo.cash-homebuyer:touchpoint"
          },
          {
            "entityId": "followup-13",
            "typeRef": "demo.cash-homebuyer:touchpoint"
          },
          {
            "entityId": "followup-14",
            "typeRef": "demo.cash-homebuyer:touchpoint"
          },
          {
            "entityId": "followup-15",
            "typeRef": "demo.cash-homebuyer:touchpoint"
          },
          {
            "entityId": "followup-16",
            "typeRef": "demo.cash-homebuyer:touchpoint"
          }
        ],
        "claims": [
          {
            "claimId": "click-nonbrand.property_id",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.property_id",
            "value": "property-104",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.property_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.opportunity_id",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.opportunity_id",
            "value": "acquisition-204",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.opportunity_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.seller_group_id",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.seller_group_id",
            "value": "seller-group-14",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.seller_group_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.channel_id",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.channel_id",
            "value": "search-nonbrand",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.channel_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.event_at_ms",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.event_at_ms",
            "value": 1775210400000,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.event_at_ms"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.evidence_rank",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.evidence_rank",
            "value": 0,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.evidence_rank"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.marketing_touch",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.marketing_touch",
            "value": true,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.marketing_touch"
              }
            ]
          },
          {
            "claimId": "click-brand.property_id",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.property_id",
            "value": "property-104",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.property_id"
              }
            ]
          },
          {
            "claimId": "click-brand.opportunity_id",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.opportunity_id",
            "value": "acquisition-204",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.opportunity_id"
              }
            ]
          },
          {
            "claimId": "click-brand.seller_group_id",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.seller_group_id",
            "value": "seller-group-14",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.seller_group_id"
              }
            ]
          },
          {
            "claimId": "click-brand.channel_id",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.channel_id",
            "value": "search-brand",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.channel_id"
              }
            ]
          },
          {
            "claimId": "click-brand.event_at_ms",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.event_at_ms",
            "value": 1775646000000,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.event_at_ms"
              }
            ]
          },
          {
            "claimId": "click-brand.evidence_rank",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.evidence_rank",
            "value": 0,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.evidence_rank"
              }
            ]
          },
          {
            "claimId": "click-brand.marketing_touch",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.marketing_touch",
            "value": true,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.marketing_touch"
              }
            ]
          },
          {
            "claimId": "followup-11.property_id",
            "revision": "1",
            "subjectId": "followup-11",
            "predicateRef": "demo.cash-homebuyer:touchpoint.property_id",
            "value": "property-104",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-11T13:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-11.property_id"
              }
            ]
          },
          {
            "claimId": "followup-11.opportunity_id",
            "revision": "1",
            "subjectId": "followup-11",
            "predicateRef": "demo.cash-homebuyer:touchpoint.opportunity_id",
            "value": "acquisition-204",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-11T13:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-11.opportunity_id"
              }
            ]
          },
          {
            "claimId": "followup-11.seller_group_id",
            "revision": "1",
            "subjectId": "followup-11",
            "predicateRef": "demo.cash-homebuyer:touchpoint.seller_group_id",
            "value": "seller-group-14",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-11T13:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-11.seller_group_id"
              }
            ]
          },
          {
            "claimId": "followup-11.event_at_ms",
            "revision": "1",
            "subjectId": "followup-11",
            "predicateRef": "demo.cash-homebuyer:touchpoint.event_at_ms",
            "value": 1775912400000,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-11T13:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-11.event_at_ms"
              }
            ]
          },
          {
            "claimId": "followup-11.evidence_rank",
            "revision": "1",
            "subjectId": "followup-11",
            "predicateRef": "demo.cash-homebuyer:touchpoint.evidence_rank",
            "value": 0,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-11T13:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-11.evidence_rank"
              }
            ]
          },
          {
            "claimId": "followup-11.marketing_touch",
            "revision": "1",
            "subjectId": "followup-11",
            "predicateRef": "demo.cash-homebuyer:touchpoint.marketing_touch",
            "value": false,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-11T13:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-11.marketing_touch"
              }
            ]
          },
          {
            "claimId": "followup-12.property_id",
            "revision": "1",
            "subjectId": "followup-12",
            "predicateRef": "demo.cash-homebuyer:touchpoint.property_id",
            "value": "property-104",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-12T13:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-12.property_id"
              }
            ]
          },
          {
            "claimId": "followup-12.opportunity_id",
            "revision": "1",
            "subjectId": "followup-12",
            "predicateRef": "demo.cash-homebuyer:touchpoint.opportunity_id",
            "value": "acquisition-204",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-12T13:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-12.opportunity_id"
              }
            ]
          },
          {
            "claimId": "followup-12.seller_group_id",
            "revision": "1",
            "subjectId": "followup-12",
            "predicateRef": "demo.cash-homebuyer:touchpoint.seller_group_id",
            "value": "seller-group-14",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-12T13:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-12.seller_group_id"
              }
            ]
          },
          {
            "claimId": "followup-12.event_at_ms",
            "revision": "1",
            "subjectId": "followup-12",
            "predicateRef": "demo.cash-homebuyer:touchpoint.event_at_ms",
            "value": 1775998800000,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-12T13:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-12.event_at_ms"
              }
            ]
          },
          {
            "claimId": "followup-12.evidence_rank",
            "revision": "1",
            "subjectId": "followup-12",
            "predicateRef": "demo.cash-homebuyer:touchpoint.evidence_rank",
            "value": 0,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-12T13:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-12.evidence_rank"
              }
            ]
          },
          {
            "claimId": "followup-12.marketing_touch",
            "revision": "1",
            "subjectId": "followup-12",
            "predicateRef": "demo.cash-homebuyer:touchpoint.marketing_touch",
            "value": false,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-12T13:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-12.marketing_touch"
              }
            ]
          },
          {
            "claimId": "followup-13.property_id",
            "revision": "1",
            "subjectId": "followup-13",
            "predicateRef": "demo.cash-homebuyer:touchpoint.property_id",
            "value": "property-104",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-13T13:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-13.property_id"
              }
            ]
          },
          {
            "claimId": "followup-13.opportunity_id",
            "revision": "1",
            "subjectId": "followup-13",
            "predicateRef": "demo.cash-homebuyer:touchpoint.opportunity_id",
            "value": "acquisition-204",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-13T13:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-13.opportunity_id"
              }
            ]
          },
          {
            "claimId": "followup-13.seller_group_id",
            "revision": "1",
            "subjectId": "followup-13",
            "predicateRef": "demo.cash-homebuyer:touchpoint.seller_group_id",
            "value": "seller-group-14",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-13T13:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-13.seller_group_id"
              }
            ]
          },
          {
            "claimId": "followup-13.event_at_ms",
            "revision": "1",
            "subjectId": "followup-13",
            "predicateRef": "demo.cash-homebuyer:touchpoint.event_at_ms",
            "value": 1776085200000,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-13T13:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-13.event_at_ms"
              }
            ]
          },
          {
            "claimId": "followup-13.evidence_rank",
            "revision": "1",
            "subjectId": "followup-13",
            "predicateRef": "demo.cash-homebuyer:touchpoint.evidence_rank",
            "value": 0,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-13T13:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-13.evidence_rank"
              }
            ]
          },
          {
            "claimId": "followup-13.marketing_touch",
            "revision": "1",
            "subjectId": "followup-13",
            "predicateRef": "demo.cash-homebuyer:touchpoint.marketing_touch",
            "value": false,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-13T13:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-13.marketing_touch"
              }
            ]
          },
          {
            "claimId": "followup-14.property_id",
            "revision": "1",
            "subjectId": "followup-14",
            "predicateRef": "demo.cash-homebuyer:touchpoint.property_id",
            "value": "property-104",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-14T13:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-14.property_id"
              }
            ]
          },
          {
            "claimId": "followup-14.opportunity_id",
            "revision": "1",
            "subjectId": "followup-14",
            "predicateRef": "demo.cash-homebuyer:touchpoint.opportunity_id",
            "value": "acquisition-204",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-14T13:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-14.opportunity_id"
              }
            ]
          },
          {
            "claimId": "followup-14.seller_group_id",
            "revision": "1",
            "subjectId": "followup-14",
            "predicateRef": "demo.cash-homebuyer:touchpoint.seller_group_id",
            "value": "seller-group-14",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-14T13:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-14.seller_group_id"
              }
            ]
          },
          {
            "claimId": "followup-14.event_at_ms",
            "revision": "1",
            "subjectId": "followup-14",
            "predicateRef": "demo.cash-homebuyer:touchpoint.event_at_ms",
            "value": 1776171600000,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-14T13:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-14.event_at_ms"
              }
            ]
          },
          {
            "claimId": "followup-14.evidence_rank",
            "revision": "1",
            "subjectId": "followup-14",
            "predicateRef": "demo.cash-homebuyer:touchpoint.evidence_rank",
            "value": 0,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-14T13:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-14.evidence_rank"
              }
            ]
          },
          {
            "claimId": "followup-14.marketing_touch",
            "revision": "1",
            "subjectId": "followup-14",
            "predicateRef": "demo.cash-homebuyer:touchpoint.marketing_touch",
            "value": false,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-14T13:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-14.marketing_touch"
              }
            ]
          },
          {
            "claimId": "followup-15.property_id",
            "revision": "1",
            "subjectId": "followup-15",
            "predicateRef": "demo.cash-homebuyer:touchpoint.property_id",
            "value": "property-104",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-15T13:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-15.property_id"
              }
            ]
          },
          {
            "claimId": "followup-15.opportunity_id",
            "revision": "1",
            "subjectId": "followup-15",
            "predicateRef": "demo.cash-homebuyer:touchpoint.opportunity_id",
            "value": "acquisition-204",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-15T13:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-15.opportunity_id"
              }
            ]
          },
          {
            "claimId": "followup-15.seller_group_id",
            "revision": "1",
            "subjectId": "followup-15",
            "predicateRef": "demo.cash-homebuyer:touchpoint.seller_group_id",
            "value": "seller-group-14",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-15T13:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-15.seller_group_id"
              }
            ]
          },
          {
            "claimId": "followup-15.event_at_ms",
            "revision": "1",
            "subjectId": "followup-15",
            "predicateRef": "demo.cash-homebuyer:touchpoint.event_at_ms",
            "value": 1776258000000,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-15T13:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-15.event_at_ms"
              }
            ]
          },
          {
            "claimId": "followup-15.evidence_rank",
            "revision": "1",
            "subjectId": "followup-15",
            "predicateRef": "demo.cash-homebuyer:touchpoint.evidence_rank",
            "value": 0,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-15T13:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-15.evidence_rank"
              }
            ]
          },
          {
            "claimId": "followup-15.marketing_touch",
            "revision": "1",
            "subjectId": "followup-15",
            "predicateRef": "demo.cash-homebuyer:touchpoint.marketing_touch",
            "value": false,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-15T13:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-15.marketing_touch"
              }
            ]
          },
          {
            "claimId": "followup-16.property_id",
            "revision": "1",
            "subjectId": "followup-16",
            "predicateRef": "demo.cash-homebuyer:touchpoint.property_id",
            "value": "property-104",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-16T13:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-16.property_id"
              }
            ]
          },
          {
            "claimId": "followup-16.opportunity_id",
            "revision": "1",
            "subjectId": "followup-16",
            "predicateRef": "demo.cash-homebuyer:touchpoint.opportunity_id",
            "value": "acquisition-204",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-16T13:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-16.opportunity_id"
              }
            ]
          },
          {
            "claimId": "followup-16.seller_group_id",
            "revision": "1",
            "subjectId": "followup-16",
            "predicateRef": "demo.cash-homebuyer:touchpoint.seller_group_id",
            "value": "seller-group-14",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-16T13:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-16.seller_group_id"
              }
            ]
          },
          {
            "claimId": "followup-16.event_at_ms",
            "revision": "1",
            "subjectId": "followup-16",
            "predicateRef": "demo.cash-homebuyer:touchpoint.event_at_ms",
            "value": 1776344400000,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-16T13:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-16.event_at_ms"
              }
            ]
          },
          {
            "claimId": "followup-16.evidence_rank",
            "revision": "1",
            "subjectId": "followup-16",
            "predicateRef": "demo.cash-homebuyer:touchpoint.evidence_rank",
            "value": 0,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-16T13:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-16.evidence_rank"
              }
            ]
          },
          {
            "claimId": "followup-16.marketing_touch",
            "revision": "1",
            "subjectId": "followup-16",
            "predicateRef": "demo.cash-homebuyer:touchpoint.marketing_touch",
            "value": false,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-16T13:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-16.marketing_touch"
              }
            ]
          }
        ]
      },
      "arguments": {
        "property": "property-104",
        "opportunity": "acquisition-204",
        "sellerGroup": "seller-group-14",
        "windowStart": 1772323200000,
        "qualificationAt": 1775746800000,
        "admittedRank": 1
      },
      "receipt": {
        "resultVersion": "t2k.graph-result.v1",
        "status": "complete",
        "value": [
          {
            "touchId": "click-brand",
            "channelId": "search-brand",
            "eventAtMs": 1775646000000,
            "evidenceRank": 0
          },
          {
            "touchId": "click-nonbrand",
            "channelId": "search-nonbrand",
            "eventAtMs": 1775210400000,
            "evidenceRank": 0
          }
        ],
        "authorization": "not_authorized",
        "binding": {
          "runtimeVersion": "t2k.graph-runtime.v1",
          "functionHash": "c0aa7b713a989a49764860e270b776fcbd76416e07891e48a43920029a6aa40d",
          "ontologyResolutionHash": "c1f42aba94b41cc81e2ba87abe71a6263a91a15226cc24ee279c2183f576533f",
          "graphKey": "demo.cash-homebuyer",
          "asOf": "2026-06-15T23:59:59.000Z",
          "snapshotHash": "73f082fed9887a4c6e124c92739c8126e7f09b5b4d287ec0a43739012173ecc6",
          "argumentsHash": "cd8690f832630034ecce3c948890d1e8f4ac84aebf4d3b80bcff6e7dcae3c8ab"
        },
        "evidence": [
          {
            "claimId": "click-brand.channel_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.channel_id"
              }
            ]
          },
          {
            "claimId": "click-brand.event_at_ms",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.event_at_ms"
              }
            ]
          },
          {
            "claimId": "click-brand.evidence_rank",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.evidence_rank"
              }
            ]
          },
          {
            "claimId": "click-brand.marketing_touch",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.marketing_touch"
              }
            ]
          },
          {
            "claimId": "click-brand.opportunity_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.opportunity_id"
              }
            ]
          },
          {
            "claimId": "click-brand.property_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.property_id"
              }
            ]
          },
          {
            "claimId": "click-brand.seller_group_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.seller_group_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.channel_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.channel_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.event_at_ms",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.event_at_ms"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.evidence_rank",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.evidence_rank"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.marketing_touch",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.marketing_touch"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.opportunity_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.opportunity_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.property_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.property_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.seller_group_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.seller_group_id"
              }
            ]
          },
          {
            "claimId": "followup-11.event_at_ms",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-11.event_at_ms"
              }
            ]
          },
          {
            "claimId": "followup-11.evidence_rank",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-11.evidence_rank"
              }
            ]
          },
          {
            "claimId": "followup-11.marketing_touch",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-11.marketing_touch"
              }
            ]
          },
          {
            "claimId": "followup-11.opportunity_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-11.opportunity_id"
              }
            ]
          },
          {
            "claimId": "followup-11.property_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-11.property_id"
              }
            ]
          },
          {
            "claimId": "followup-11.seller_group_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-11.seller_group_id"
              }
            ]
          },
          {
            "claimId": "followup-12.event_at_ms",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-12.event_at_ms"
              }
            ]
          },
          {
            "claimId": "followup-12.evidence_rank",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-12.evidence_rank"
              }
            ]
          },
          {
            "claimId": "followup-12.marketing_touch",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-12.marketing_touch"
              }
            ]
          },
          {
            "claimId": "followup-12.opportunity_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-12.opportunity_id"
              }
            ]
          },
          {
            "claimId": "followup-12.property_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-12.property_id"
              }
            ]
          },
          {
            "claimId": "followup-12.seller_group_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-12.seller_group_id"
              }
            ]
          },
          {
            "claimId": "followup-13.event_at_ms",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-13.event_at_ms"
              }
            ]
          },
          {
            "claimId": "followup-13.evidence_rank",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-13.evidence_rank"
              }
            ]
          },
          {
            "claimId": "followup-13.marketing_touch",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-13.marketing_touch"
              }
            ]
          },
          {
            "claimId": "followup-13.opportunity_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-13.opportunity_id"
              }
            ]
          },
          {
            "claimId": "followup-13.property_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-13.property_id"
              }
            ]
          },
          {
            "claimId": "followup-13.seller_group_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-13.seller_group_id"
              }
            ]
          },
          {
            "claimId": "followup-14.event_at_ms",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-14.event_at_ms"
              }
            ]
          },
          {
            "claimId": "followup-14.evidence_rank",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-14.evidence_rank"
              }
            ]
          },
          {
            "claimId": "followup-14.marketing_touch",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-14.marketing_touch"
              }
            ]
          },
          {
            "claimId": "followup-14.opportunity_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-14.opportunity_id"
              }
            ]
          },
          {
            "claimId": "followup-14.property_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-14.property_id"
              }
            ]
          },
          {
            "claimId": "followup-14.seller_group_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-14.seller_group_id"
              }
            ]
          },
          {
            "claimId": "followup-15.event_at_ms",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-15.event_at_ms"
              }
            ]
          },
          {
            "claimId": "followup-15.evidence_rank",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-15.evidence_rank"
              }
            ]
          },
          {
            "claimId": "followup-15.marketing_touch",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-15.marketing_touch"
              }
            ]
          },
          {
            "claimId": "followup-15.opportunity_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-15.opportunity_id"
              }
            ]
          },
          {
            "claimId": "followup-15.property_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-15.property_id"
              }
            ]
          },
          {
            "claimId": "followup-15.seller_group_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-15.seller_group_id"
              }
            ]
          },
          {
            "claimId": "followup-16.event_at_ms",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-16.event_at_ms"
              }
            ]
          },
          {
            "claimId": "followup-16.evidence_rank",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-16.evidence_rank"
              }
            ]
          },
          {
            "claimId": "followup-16.marketing_touch",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-16.marketing_touch"
              }
            ]
          },
          {
            "claimId": "followup-16.opportunity_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-16.opportunity_id"
              }
            ]
          },
          {
            "claimId": "followup-16.property_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-16.property_id"
              }
            ]
          },
          {
            "claimId": "followup-16.seller_group_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-16.seller_group_id"
              }
            ]
          }
        ],
        "supportingClaimIds": [
          "click-brand.channel_id",
          "click-brand.event_at_ms",
          "click-brand.evidence_rank",
          "click-brand.marketing_touch",
          "click-brand.opportunity_id",
          "click-brand.property_id",
          "click-brand.seller_group_id",
          "click-nonbrand.channel_id",
          "click-nonbrand.event_at_ms",
          "click-nonbrand.evidence_rank",
          "click-nonbrand.marketing_touch",
          "click-nonbrand.opportunity_id",
          "click-nonbrand.property_id",
          "click-nonbrand.seller_group_id"
        ],
        "derivations": [
          {
            "rowHash": "694a95e1c5a20b2c4181a07122a2a687fc67128c10a258b2430fa33c69ae9712",
            "claimIds": [
              "click-brand.channel_id",
              "click-brand.event_at_ms",
              "click-brand.evidence_rank",
              "click-brand.marketing_touch",
              "click-brand.opportunity_id",
              "click-brand.property_id",
              "click-brand.seller_group_id"
            ]
          },
          {
            "rowHash": "8a86502664d35468a58d6eb7e6e5c9be4dfb70904e624e59abad3daa6bd71e31",
            "claimIds": [
              "click-nonbrand.channel_id",
              "click-nonbrand.event_at_ms",
              "click-nonbrand.evidence_rank",
              "click-nonbrand.marketing_touch",
              "click-nonbrand.opportunity_id",
              "click-nonbrand.property_id",
              "click-nonbrand.seller_group_id"
            ]
          }
        ],
        "exclusions": [
          {
            "stepId": "eligible",
            "bindings": {
              "touch": "followup-11"
            },
            "reason": "Failed filter conditions: 3, 6",
            "claimIds": [
              "followup-11.event_at_ms",
              "followup-11.evidence_rank",
              "followup-11.marketing_touch",
              "followup-11.opportunity_id",
              "followup-11.property_id",
              "followup-11.seller_group_id"
            ]
          },
          {
            "stepId": "eligible",
            "bindings": {
              "touch": "followup-12"
            },
            "reason": "Failed filter conditions: 3, 6",
            "claimIds": [
              "followup-12.event_at_ms",
              "followup-12.evidence_rank",
              "followup-12.marketing_touch",
              "followup-12.opportunity_id",
              "followup-12.property_id",
              "followup-12.seller_group_id"
            ]
          },
          {
            "stepId": "eligible",
            "bindings": {
              "touch": "followup-13"
            },
            "reason": "Failed filter conditions: 3, 6",
            "claimIds": [
              "followup-13.event_at_ms",
              "followup-13.evidence_rank",
              "followup-13.marketing_touch",
              "followup-13.opportunity_id",
              "followup-13.property_id",
              "followup-13.seller_group_id"
            ]
          },
          {
            "stepId": "eligible",
            "bindings": {
              "touch": "followup-14"
            },
            "reason": "Failed filter conditions: 3, 6",
            "claimIds": [
              "followup-14.event_at_ms",
              "followup-14.evidence_rank",
              "followup-14.marketing_touch",
              "followup-14.opportunity_id",
              "followup-14.property_id",
              "followup-14.seller_group_id"
            ]
          },
          {
            "stepId": "eligible",
            "bindings": {
              "touch": "followup-15"
            },
            "reason": "Failed filter conditions: 3, 6",
            "claimIds": [
              "followup-15.event_at_ms",
              "followup-15.evidence_rank",
              "followup-15.marketing_touch",
              "followup-15.opportunity_id",
              "followup-15.property_id",
              "followup-15.seller_group_id"
            ]
          },
          {
            "stepId": "eligible",
            "bindings": {
              "touch": "followup-16"
            },
            "reason": "Failed filter conditions: 3, 6",
            "claimIds": [
              "followup-16.event_at_ms",
              "followup-16.evidence_rank",
              "followup-16.marketing_touch",
              "followup-16.opportunity_id",
              "followup-16.property_id",
              "followup-16.seller_group_id"
            ]
          }
        ],
        "issues": [],
        "trace": [
          {
            "stepId": "touches",
            "operator": "lookup",
            "inputRows": 0,
            "outputRows": 8,
            "claimIds": [],
            "outputHash": "c55fbd507e72dfa4be1c281bf20769c56680927a97c21e0f59ee3933e73dee7a"
          },
          {
            "stepId": "eligible",
            "operator": "filter",
            "inputRows": 8,
            "outputRows": 2,
            "claimIds": [
              "click-brand.event_at_ms",
              "click-brand.evidence_rank",
              "click-brand.marketing_touch",
              "click-brand.opportunity_id",
              "click-brand.property_id",
              "click-brand.seller_group_id",
              "click-nonbrand.event_at_ms",
              "click-nonbrand.evidence_rank",
              "click-nonbrand.marketing_touch",
              "click-nonbrand.opportunity_id",
              "click-nonbrand.property_id",
              "click-nonbrand.seller_group_id",
              "followup-11.event_at_ms",
              "followup-11.evidence_rank",
              "followup-11.marketing_touch",
              "followup-11.opportunity_id",
              "followup-11.property_id",
              "followup-11.seller_group_id",
              "followup-12.event_at_ms",
              "followup-12.evidence_rank",
              "followup-12.marketing_touch",
              "followup-12.opportunity_id",
              "followup-12.property_id",
              "followup-12.seller_group_id",
              "followup-13.event_at_ms",
              "followup-13.evidence_rank",
              "followup-13.marketing_touch",
              "followup-13.opportunity_id",
              "followup-13.property_id",
              "followup-13.seller_group_id",
              "followup-14.event_at_ms",
              "followup-14.evidence_rank",
              "followup-14.marketing_touch",
              "followup-14.opportunity_id",
              "followup-14.property_id",
              "followup-14.seller_group_id",
              "followup-15.event_at_ms",
              "followup-15.evidence_rank",
              "followup-15.marketing_touch",
              "followup-15.opportunity_id",
              "followup-15.property_id",
              "followup-15.seller_group_id",
              "followup-16.event_at_ms",
              "followup-16.evidence_rank",
              "followup-16.marketing_touch",
              "followup-16.opportunity_id",
              "followup-16.property_id",
              "followup-16.seller_group_id"
            ],
            "outputHash": "8864bff38933853cc1e817ba21ea80f93b0b754a138347c03d066fddef7ec24b"
          },
          {
            "stepId": "rows",
            "operator": "project",
            "inputRows": 2,
            "outputRows": 2,
            "claimIds": [
              "click-brand.channel_id",
              "click-brand.event_at_ms",
              "click-brand.evidence_rank",
              "click-nonbrand.channel_id",
              "click-nonbrand.event_at_ms",
              "click-nonbrand.evidence_rank"
            ],
            "outputHash": "078dbc75a2ac1b1ea6e98b028bdb1c2655ebf9eac5681b4b98c9e64ac4242bac"
          }
        ],
        "work": 291,
        "resultHash": "31916c7a91282cc7f09d9702df8aff86a7b3af88b5a99a82ef77defdc05cb617"
      }
    },
    "followup|reported|resale": {
      "graph": {
        "snapshotVersion": "t2k.reasoning-graph.v1",
        "graphKey": "demo.cash-homebuyer",
        "asOf": "2026-09-15T23:59:59Z",
        "ontologyResolutionHash": "c1f42aba94b41cc81e2ba87abe71a6263a91a15226cc24ee279c2183f576533f",
        "coverage": "complete",
        "entities": [
          {
            "entityId": "click-nonbrand",
            "typeRef": "demo.cash-homebuyer:touchpoint"
          },
          {
            "entityId": "click-brand",
            "typeRef": "demo.cash-homebuyer:touchpoint"
          },
          {
            "entityId": "followup-11",
            "typeRef": "demo.cash-homebuyer:touchpoint"
          },
          {
            "entityId": "followup-12",
            "typeRef": "demo.cash-homebuyer:touchpoint"
          },
          {
            "entityId": "followup-13",
            "typeRef": "demo.cash-homebuyer:touchpoint"
          },
          {
            "entityId": "followup-14",
            "typeRef": "demo.cash-homebuyer:touchpoint"
          },
          {
            "entityId": "followup-15",
            "typeRef": "demo.cash-homebuyer:touchpoint"
          },
          {
            "entityId": "followup-16",
            "typeRef": "demo.cash-homebuyer:touchpoint"
          }
        ],
        "claims": [
          {
            "claimId": "click-nonbrand.property_id",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.property_id",
            "value": "property-104",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.property_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.opportunity_id",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.opportunity_id",
            "value": "acquisition-204",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.opportunity_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.seller_group_id",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.seller_group_id",
            "value": "seller-group-14",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.seller_group_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.channel_id",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.channel_id",
            "value": "search-nonbrand",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.channel_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.event_at_ms",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.event_at_ms",
            "value": 1775210400000,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.event_at_ms"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.evidence_rank",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.evidence_rank",
            "value": 0,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.evidence_rank"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.marketing_touch",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.marketing_touch",
            "value": true,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.marketing_touch"
              }
            ]
          },
          {
            "claimId": "click-brand.property_id",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.property_id",
            "value": "property-104",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.property_id"
              }
            ]
          },
          {
            "claimId": "click-brand.opportunity_id",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.opportunity_id",
            "value": "acquisition-204",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.opportunity_id"
              }
            ]
          },
          {
            "claimId": "click-brand.seller_group_id",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.seller_group_id",
            "value": "seller-group-14",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.seller_group_id"
              }
            ]
          },
          {
            "claimId": "click-brand.channel_id",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.channel_id",
            "value": "search-brand",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.channel_id"
              }
            ]
          },
          {
            "claimId": "click-brand.event_at_ms",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.event_at_ms",
            "value": 1775646000000,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.event_at_ms"
              }
            ]
          },
          {
            "claimId": "click-brand.evidence_rank",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.evidence_rank",
            "value": 0,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.evidence_rank"
              }
            ]
          },
          {
            "claimId": "click-brand.marketing_touch",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.marketing_touch",
            "value": true,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.marketing_touch"
              }
            ]
          },
          {
            "claimId": "followup-11.property_id",
            "revision": "1",
            "subjectId": "followup-11",
            "predicateRef": "demo.cash-homebuyer:touchpoint.property_id",
            "value": "property-104",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-11T13:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-11.property_id"
              }
            ]
          },
          {
            "claimId": "followup-11.opportunity_id",
            "revision": "1",
            "subjectId": "followup-11",
            "predicateRef": "demo.cash-homebuyer:touchpoint.opportunity_id",
            "value": "acquisition-204",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-11T13:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-11.opportunity_id"
              }
            ]
          },
          {
            "claimId": "followup-11.seller_group_id",
            "revision": "1",
            "subjectId": "followup-11",
            "predicateRef": "demo.cash-homebuyer:touchpoint.seller_group_id",
            "value": "seller-group-14",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-11T13:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-11.seller_group_id"
              }
            ]
          },
          {
            "claimId": "followup-11.event_at_ms",
            "revision": "1",
            "subjectId": "followup-11",
            "predicateRef": "demo.cash-homebuyer:touchpoint.event_at_ms",
            "value": 1775912400000,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-11T13:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-11.event_at_ms"
              }
            ]
          },
          {
            "claimId": "followup-11.evidence_rank",
            "revision": "1",
            "subjectId": "followup-11",
            "predicateRef": "demo.cash-homebuyer:touchpoint.evidence_rank",
            "value": 0,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-11T13:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-11.evidence_rank"
              }
            ]
          },
          {
            "claimId": "followup-11.marketing_touch",
            "revision": "1",
            "subjectId": "followup-11",
            "predicateRef": "demo.cash-homebuyer:touchpoint.marketing_touch",
            "value": false,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-11T13:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-11.marketing_touch"
              }
            ]
          },
          {
            "claimId": "followup-12.property_id",
            "revision": "1",
            "subjectId": "followup-12",
            "predicateRef": "demo.cash-homebuyer:touchpoint.property_id",
            "value": "property-104",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-12T13:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-12.property_id"
              }
            ]
          },
          {
            "claimId": "followup-12.opportunity_id",
            "revision": "1",
            "subjectId": "followup-12",
            "predicateRef": "demo.cash-homebuyer:touchpoint.opportunity_id",
            "value": "acquisition-204",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-12T13:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-12.opportunity_id"
              }
            ]
          },
          {
            "claimId": "followup-12.seller_group_id",
            "revision": "1",
            "subjectId": "followup-12",
            "predicateRef": "demo.cash-homebuyer:touchpoint.seller_group_id",
            "value": "seller-group-14",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-12T13:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-12.seller_group_id"
              }
            ]
          },
          {
            "claimId": "followup-12.event_at_ms",
            "revision": "1",
            "subjectId": "followup-12",
            "predicateRef": "demo.cash-homebuyer:touchpoint.event_at_ms",
            "value": 1775998800000,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-12T13:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-12.event_at_ms"
              }
            ]
          },
          {
            "claimId": "followup-12.evidence_rank",
            "revision": "1",
            "subjectId": "followup-12",
            "predicateRef": "demo.cash-homebuyer:touchpoint.evidence_rank",
            "value": 0,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-12T13:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-12.evidence_rank"
              }
            ]
          },
          {
            "claimId": "followup-12.marketing_touch",
            "revision": "1",
            "subjectId": "followup-12",
            "predicateRef": "demo.cash-homebuyer:touchpoint.marketing_touch",
            "value": false,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-12T13:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-12.marketing_touch"
              }
            ]
          },
          {
            "claimId": "followup-13.property_id",
            "revision": "1",
            "subjectId": "followup-13",
            "predicateRef": "demo.cash-homebuyer:touchpoint.property_id",
            "value": "property-104",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-13T13:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-13.property_id"
              }
            ]
          },
          {
            "claimId": "followup-13.opportunity_id",
            "revision": "1",
            "subjectId": "followup-13",
            "predicateRef": "demo.cash-homebuyer:touchpoint.opportunity_id",
            "value": "acquisition-204",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-13T13:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-13.opportunity_id"
              }
            ]
          },
          {
            "claimId": "followup-13.seller_group_id",
            "revision": "1",
            "subjectId": "followup-13",
            "predicateRef": "demo.cash-homebuyer:touchpoint.seller_group_id",
            "value": "seller-group-14",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-13T13:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-13.seller_group_id"
              }
            ]
          },
          {
            "claimId": "followup-13.event_at_ms",
            "revision": "1",
            "subjectId": "followup-13",
            "predicateRef": "demo.cash-homebuyer:touchpoint.event_at_ms",
            "value": 1776085200000,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-13T13:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-13.event_at_ms"
              }
            ]
          },
          {
            "claimId": "followup-13.evidence_rank",
            "revision": "1",
            "subjectId": "followup-13",
            "predicateRef": "demo.cash-homebuyer:touchpoint.evidence_rank",
            "value": 0,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-13T13:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-13.evidence_rank"
              }
            ]
          },
          {
            "claimId": "followup-13.marketing_touch",
            "revision": "1",
            "subjectId": "followup-13",
            "predicateRef": "demo.cash-homebuyer:touchpoint.marketing_touch",
            "value": false,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-13T13:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-13.marketing_touch"
              }
            ]
          },
          {
            "claimId": "followup-14.property_id",
            "revision": "1",
            "subjectId": "followup-14",
            "predicateRef": "demo.cash-homebuyer:touchpoint.property_id",
            "value": "property-104",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-14T13:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-14.property_id"
              }
            ]
          },
          {
            "claimId": "followup-14.opportunity_id",
            "revision": "1",
            "subjectId": "followup-14",
            "predicateRef": "demo.cash-homebuyer:touchpoint.opportunity_id",
            "value": "acquisition-204",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-14T13:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-14.opportunity_id"
              }
            ]
          },
          {
            "claimId": "followup-14.seller_group_id",
            "revision": "1",
            "subjectId": "followup-14",
            "predicateRef": "demo.cash-homebuyer:touchpoint.seller_group_id",
            "value": "seller-group-14",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-14T13:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-14.seller_group_id"
              }
            ]
          },
          {
            "claimId": "followup-14.event_at_ms",
            "revision": "1",
            "subjectId": "followup-14",
            "predicateRef": "demo.cash-homebuyer:touchpoint.event_at_ms",
            "value": 1776171600000,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-14T13:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-14.event_at_ms"
              }
            ]
          },
          {
            "claimId": "followup-14.evidence_rank",
            "revision": "1",
            "subjectId": "followup-14",
            "predicateRef": "demo.cash-homebuyer:touchpoint.evidence_rank",
            "value": 0,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-14T13:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-14.evidence_rank"
              }
            ]
          },
          {
            "claimId": "followup-14.marketing_touch",
            "revision": "1",
            "subjectId": "followup-14",
            "predicateRef": "demo.cash-homebuyer:touchpoint.marketing_touch",
            "value": false,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-14T13:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-14.marketing_touch"
              }
            ]
          },
          {
            "claimId": "followup-15.property_id",
            "revision": "1",
            "subjectId": "followup-15",
            "predicateRef": "demo.cash-homebuyer:touchpoint.property_id",
            "value": "property-104",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-15T13:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-15.property_id"
              }
            ]
          },
          {
            "claimId": "followup-15.opportunity_id",
            "revision": "1",
            "subjectId": "followup-15",
            "predicateRef": "demo.cash-homebuyer:touchpoint.opportunity_id",
            "value": "acquisition-204",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-15T13:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-15.opportunity_id"
              }
            ]
          },
          {
            "claimId": "followup-15.seller_group_id",
            "revision": "1",
            "subjectId": "followup-15",
            "predicateRef": "demo.cash-homebuyer:touchpoint.seller_group_id",
            "value": "seller-group-14",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-15T13:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-15.seller_group_id"
              }
            ]
          },
          {
            "claimId": "followup-15.event_at_ms",
            "revision": "1",
            "subjectId": "followup-15",
            "predicateRef": "demo.cash-homebuyer:touchpoint.event_at_ms",
            "value": 1776258000000,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-15T13:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-15.event_at_ms"
              }
            ]
          },
          {
            "claimId": "followup-15.evidence_rank",
            "revision": "1",
            "subjectId": "followup-15",
            "predicateRef": "demo.cash-homebuyer:touchpoint.evidence_rank",
            "value": 0,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-15T13:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-15.evidence_rank"
              }
            ]
          },
          {
            "claimId": "followup-15.marketing_touch",
            "revision": "1",
            "subjectId": "followup-15",
            "predicateRef": "demo.cash-homebuyer:touchpoint.marketing_touch",
            "value": false,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-15T13:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-15.marketing_touch"
              }
            ]
          },
          {
            "claimId": "followup-16.property_id",
            "revision": "1",
            "subjectId": "followup-16",
            "predicateRef": "demo.cash-homebuyer:touchpoint.property_id",
            "value": "property-104",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-16T13:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-16.property_id"
              }
            ]
          },
          {
            "claimId": "followup-16.opportunity_id",
            "revision": "1",
            "subjectId": "followup-16",
            "predicateRef": "demo.cash-homebuyer:touchpoint.opportunity_id",
            "value": "acquisition-204",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-16T13:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-16.opportunity_id"
              }
            ]
          },
          {
            "claimId": "followup-16.seller_group_id",
            "revision": "1",
            "subjectId": "followup-16",
            "predicateRef": "demo.cash-homebuyer:touchpoint.seller_group_id",
            "value": "seller-group-14",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-16T13:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-16.seller_group_id"
              }
            ]
          },
          {
            "claimId": "followup-16.event_at_ms",
            "revision": "1",
            "subjectId": "followup-16",
            "predicateRef": "demo.cash-homebuyer:touchpoint.event_at_ms",
            "value": 1776344400000,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-16T13:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-16.event_at_ms"
              }
            ]
          },
          {
            "claimId": "followup-16.evidence_rank",
            "revision": "1",
            "subjectId": "followup-16",
            "predicateRef": "demo.cash-homebuyer:touchpoint.evidence_rank",
            "value": 0,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-16T13:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-16.evidence_rank"
              }
            ]
          },
          {
            "claimId": "followup-16.marketing_touch",
            "revision": "1",
            "subjectId": "followup-16",
            "predicateRef": "demo.cash-homebuyer:touchpoint.marketing_touch",
            "value": false,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-16T13:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-16.marketing_touch"
              }
            ]
          }
        ]
      },
      "arguments": {
        "property": "property-104",
        "opportunity": "acquisition-204",
        "sellerGroup": "seller-group-14",
        "windowStart": 1772323200000,
        "qualificationAt": 1775746800000,
        "admittedRank": 1
      },
      "receipt": {
        "resultVersion": "t2k.graph-result.v1",
        "status": "complete",
        "value": [
          {
            "touchId": "click-brand",
            "channelId": "search-brand",
            "eventAtMs": 1775646000000,
            "evidenceRank": 0
          },
          {
            "touchId": "click-nonbrand",
            "channelId": "search-nonbrand",
            "eventAtMs": 1775210400000,
            "evidenceRank": 0
          }
        ],
        "authorization": "not_authorized",
        "binding": {
          "runtimeVersion": "t2k.graph-runtime.v1",
          "functionHash": "c0aa7b713a989a49764860e270b776fcbd76416e07891e48a43920029a6aa40d",
          "ontologyResolutionHash": "c1f42aba94b41cc81e2ba87abe71a6263a91a15226cc24ee279c2183f576533f",
          "graphKey": "demo.cash-homebuyer",
          "asOf": "2026-09-15T23:59:59.000Z",
          "snapshotHash": "b158ca826396a1968ca996bf9c99b85b1a2263fcf664782b899349945960a876",
          "argumentsHash": "cd8690f832630034ecce3c948890d1e8f4ac84aebf4d3b80bcff6e7dcae3c8ab"
        },
        "evidence": [
          {
            "claimId": "click-brand.channel_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.channel_id"
              }
            ]
          },
          {
            "claimId": "click-brand.event_at_ms",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.event_at_ms"
              }
            ]
          },
          {
            "claimId": "click-brand.evidence_rank",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.evidence_rank"
              }
            ]
          },
          {
            "claimId": "click-brand.marketing_touch",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.marketing_touch"
              }
            ]
          },
          {
            "claimId": "click-brand.opportunity_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.opportunity_id"
              }
            ]
          },
          {
            "claimId": "click-brand.property_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.property_id"
              }
            ]
          },
          {
            "claimId": "click-brand.seller_group_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.seller_group_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.channel_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.channel_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.event_at_ms",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.event_at_ms"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.evidence_rank",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.evidence_rank"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.marketing_touch",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.marketing_touch"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.opportunity_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.opportunity_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.property_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.property_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.seller_group_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.seller_group_id"
              }
            ]
          },
          {
            "claimId": "followup-11.event_at_ms",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-11.event_at_ms"
              }
            ]
          },
          {
            "claimId": "followup-11.evidence_rank",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-11.evidence_rank"
              }
            ]
          },
          {
            "claimId": "followup-11.marketing_touch",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-11.marketing_touch"
              }
            ]
          },
          {
            "claimId": "followup-11.opportunity_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-11.opportunity_id"
              }
            ]
          },
          {
            "claimId": "followup-11.property_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-11.property_id"
              }
            ]
          },
          {
            "claimId": "followup-11.seller_group_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-11.seller_group_id"
              }
            ]
          },
          {
            "claimId": "followup-12.event_at_ms",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-12.event_at_ms"
              }
            ]
          },
          {
            "claimId": "followup-12.evidence_rank",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-12.evidence_rank"
              }
            ]
          },
          {
            "claimId": "followup-12.marketing_touch",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-12.marketing_touch"
              }
            ]
          },
          {
            "claimId": "followup-12.opportunity_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-12.opportunity_id"
              }
            ]
          },
          {
            "claimId": "followup-12.property_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-12.property_id"
              }
            ]
          },
          {
            "claimId": "followup-12.seller_group_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-12.seller_group_id"
              }
            ]
          },
          {
            "claimId": "followup-13.event_at_ms",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-13.event_at_ms"
              }
            ]
          },
          {
            "claimId": "followup-13.evidence_rank",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-13.evidence_rank"
              }
            ]
          },
          {
            "claimId": "followup-13.marketing_touch",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-13.marketing_touch"
              }
            ]
          },
          {
            "claimId": "followup-13.opportunity_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-13.opportunity_id"
              }
            ]
          },
          {
            "claimId": "followup-13.property_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-13.property_id"
              }
            ]
          },
          {
            "claimId": "followup-13.seller_group_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-13.seller_group_id"
              }
            ]
          },
          {
            "claimId": "followup-14.event_at_ms",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-14.event_at_ms"
              }
            ]
          },
          {
            "claimId": "followup-14.evidence_rank",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-14.evidence_rank"
              }
            ]
          },
          {
            "claimId": "followup-14.marketing_touch",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-14.marketing_touch"
              }
            ]
          },
          {
            "claimId": "followup-14.opportunity_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-14.opportunity_id"
              }
            ]
          },
          {
            "claimId": "followup-14.property_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-14.property_id"
              }
            ]
          },
          {
            "claimId": "followup-14.seller_group_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-14.seller_group_id"
              }
            ]
          },
          {
            "claimId": "followup-15.event_at_ms",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-15.event_at_ms"
              }
            ]
          },
          {
            "claimId": "followup-15.evidence_rank",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-15.evidence_rank"
              }
            ]
          },
          {
            "claimId": "followup-15.marketing_touch",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-15.marketing_touch"
              }
            ]
          },
          {
            "claimId": "followup-15.opportunity_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-15.opportunity_id"
              }
            ]
          },
          {
            "claimId": "followup-15.property_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-15.property_id"
              }
            ]
          },
          {
            "claimId": "followup-15.seller_group_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-15.seller_group_id"
              }
            ]
          },
          {
            "claimId": "followup-16.event_at_ms",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-16.event_at_ms"
              }
            ]
          },
          {
            "claimId": "followup-16.evidence_rank",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-16.evidence_rank"
              }
            ]
          },
          {
            "claimId": "followup-16.marketing_touch",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-16.marketing_touch"
              }
            ]
          },
          {
            "claimId": "followup-16.opportunity_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-16.opportunity_id"
              }
            ]
          },
          {
            "claimId": "followup-16.property_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-16.property_id"
              }
            ]
          },
          {
            "claimId": "followup-16.seller_group_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/followup",
                "locator": "followup-16.seller_group_id"
              }
            ]
          }
        ],
        "supportingClaimIds": [
          "click-brand.channel_id",
          "click-brand.event_at_ms",
          "click-brand.evidence_rank",
          "click-brand.marketing_touch",
          "click-brand.opportunity_id",
          "click-brand.property_id",
          "click-brand.seller_group_id",
          "click-nonbrand.channel_id",
          "click-nonbrand.event_at_ms",
          "click-nonbrand.evidence_rank",
          "click-nonbrand.marketing_touch",
          "click-nonbrand.opportunity_id",
          "click-nonbrand.property_id",
          "click-nonbrand.seller_group_id"
        ],
        "derivations": [
          {
            "rowHash": "694a95e1c5a20b2c4181a07122a2a687fc67128c10a258b2430fa33c69ae9712",
            "claimIds": [
              "click-brand.channel_id",
              "click-brand.event_at_ms",
              "click-brand.evidence_rank",
              "click-brand.marketing_touch",
              "click-brand.opportunity_id",
              "click-brand.property_id",
              "click-brand.seller_group_id"
            ]
          },
          {
            "rowHash": "8a86502664d35468a58d6eb7e6e5c9be4dfb70904e624e59abad3daa6bd71e31",
            "claimIds": [
              "click-nonbrand.channel_id",
              "click-nonbrand.event_at_ms",
              "click-nonbrand.evidence_rank",
              "click-nonbrand.marketing_touch",
              "click-nonbrand.opportunity_id",
              "click-nonbrand.property_id",
              "click-nonbrand.seller_group_id"
            ]
          }
        ],
        "exclusions": [
          {
            "stepId": "eligible",
            "bindings": {
              "touch": "followup-11"
            },
            "reason": "Failed filter conditions: 3, 6",
            "claimIds": [
              "followup-11.event_at_ms",
              "followup-11.evidence_rank",
              "followup-11.marketing_touch",
              "followup-11.opportunity_id",
              "followup-11.property_id",
              "followup-11.seller_group_id"
            ]
          },
          {
            "stepId": "eligible",
            "bindings": {
              "touch": "followup-12"
            },
            "reason": "Failed filter conditions: 3, 6",
            "claimIds": [
              "followup-12.event_at_ms",
              "followup-12.evidence_rank",
              "followup-12.marketing_touch",
              "followup-12.opportunity_id",
              "followup-12.property_id",
              "followup-12.seller_group_id"
            ]
          },
          {
            "stepId": "eligible",
            "bindings": {
              "touch": "followup-13"
            },
            "reason": "Failed filter conditions: 3, 6",
            "claimIds": [
              "followup-13.event_at_ms",
              "followup-13.evidence_rank",
              "followup-13.marketing_touch",
              "followup-13.opportunity_id",
              "followup-13.property_id",
              "followup-13.seller_group_id"
            ]
          },
          {
            "stepId": "eligible",
            "bindings": {
              "touch": "followup-14"
            },
            "reason": "Failed filter conditions: 3, 6",
            "claimIds": [
              "followup-14.event_at_ms",
              "followup-14.evidence_rank",
              "followup-14.marketing_touch",
              "followup-14.opportunity_id",
              "followup-14.property_id",
              "followup-14.seller_group_id"
            ]
          },
          {
            "stepId": "eligible",
            "bindings": {
              "touch": "followup-15"
            },
            "reason": "Failed filter conditions: 3, 6",
            "claimIds": [
              "followup-15.event_at_ms",
              "followup-15.evidence_rank",
              "followup-15.marketing_touch",
              "followup-15.opportunity_id",
              "followup-15.property_id",
              "followup-15.seller_group_id"
            ]
          },
          {
            "stepId": "eligible",
            "bindings": {
              "touch": "followup-16"
            },
            "reason": "Failed filter conditions: 3, 6",
            "claimIds": [
              "followup-16.event_at_ms",
              "followup-16.evidence_rank",
              "followup-16.marketing_touch",
              "followup-16.opportunity_id",
              "followup-16.property_id",
              "followup-16.seller_group_id"
            ]
          }
        ],
        "issues": [],
        "trace": [
          {
            "stepId": "touches",
            "operator": "lookup",
            "inputRows": 0,
            "outputRows": 8,
            "claimIds": [],
            "outputHash": "c55fbd507e72dfa4be1c281bf20769c56680927a97c21e0f59ee3933e73dee7a"
          },
          {
            "stepId": "eligible",
            "operator": "filter",
            "inputRows": 8,
            "outputRows": 2,
            "claimIds": [
              "click-brand.event_at_ms",
              "click-brand.evidence_rank",
              "click-brand.marketing_touch",
              "click-brand.opportunity_id",
              "click-brand.property_id",
              "click-brand.seller_group_id",
              "click-nonbrand.event_at_ms",
              "click-nonbrand.evidence_rank",
              "click-nonbrand.marketing_touch",
              "click-nonbrand.opportunity_id",
              "click-nonbrand.property_id",
              "click-nonbrand.seller_group_id",
              "followup-11.event_at_ms",
              "followup-11.evidence_rank",
              "followup-11.marketing_touch",
              "followup-11.opportunity_id",
              "followup-11.property_id",
              "followup-11.seller_group_id",
              "followup-12.event_at_ms",
              "followup-12.evidence_rank",
              "followup-12.marketing_touch",
              "followup-12.opportunity_id",
              "followup-12.property_id",
              "followup-12.seller_group_id",
              "followup-13.event_at_ms",
              "followup-13.evidence_rank",
              "followup-13.marketing_touch",
              "followup-13.opportunity_id",
              "followup-13.property_id",
              "followup-13.seller_group_id",
              "followup-14.event_at_ms",
              "followup-14.evidence_rank",
              "followup-14.marketing_touch",
              "followup-14.opportunity_id",
              "followup-14.property_id",
              "followup-14.seller_group_id",
              "followup-15.event_at_ms",
              "followup-15.evidence_rank",
              "followup-15.marketing_touch",
              "followup-15.opportunity_id",
              "followup-15.property_id",
              "followup-15.seller_group_id",
              "followup-16.event_at_ms",
              "followup-16.evidence_rank",
              "followup-16.marketing_touch",
              "followup-16.opportunity_id",
              "followup-16.property_id",
              "followup-16.seller_group_id"
            ],
            "outputHash": "8864bff38933853cc1e817ba21ea80f93b0b754a138347c03d066fddef7ec24b"
          },
          {
            "stepId": "rows",
            "operator": "project",
            "inputRows": 2,
            "outputRows": 2,
            "claimIds": [
              "click-brand.channel_id",
              "click-brand.event_at_ms",
              "click-brand.evidence_rank",
              "click-nonbrand.channel_id",
              "click-nonbrand.event_at_ms",
              "click-nonbrand.evidence_rank"
            ],
            "outputHash": "078dbc75a2ac1b1ea6e98b028bdb1c2655ebf9eac5681b4b98c9e64ac4242bac"
          }
        ],
        "work": 291,
        "resultHash": "9a465b0d4243c93ac9990e31edc0aa3aaa1c02809a884ef1597fb52595bceb64"
      }
    },
    "canceled|observed|contract": {
      "graph": {
        "snapshotVersion": "t2k.reasoning-graph.v1",
        "graphKey": "demo.cash-homebuyer",
        "asOf": "2026-05-15T23:59:59Z",
        "ontologyResolutionHash": "c1f42aba94b41cc81e2ba87abe71a6263a91a15226cc24ee279c2183f576533f",
        "coverage": "complete",
        "entities": [
          {
            "entityId": "click-nonbrand",
            "typeRef": "demo.cash-homebuyer:touchpoint"
          },
          {
            "entityId": "click-brand",
            "typeRef": "demo.cash-homebuyer:touchpoint"
          }
        ],
        "claims": [
          {
            "claimId": "click-nonbrand.property_id",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.property_id",
            "value": "property-104",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.property_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.opportunity_id",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.opportunity_id",
            "value": "acquisition-204",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.opportunity_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.seller_group_id",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.seller_group_id",
            "value": "seller-group-14",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.seller_group_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.channel_id",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.channel_id",
            "value": "search-nonbrand",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.channel_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.event_at_ms",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.event_at_ms",
            "value": 1775210400000,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.event_at_ms"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.evidence_rank",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.evidence_rank",
            "value": 0,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.evidence_rank"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.marketing_touch",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.marketing_touch",
            "value": true,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.marketing_touch"
              }
            ]
          },
          {
            "claimId": "click-brand.property_id",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.property_id",
            "value": "property-104",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.property_id"
              }
            ]
          },
          {
            "claimId": "click-brand.opportunity_id",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.opportunity_id",
            "value": "acquisition-204",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.opportunity_id"
              }
            ]
          },
          {
            "claimId": "click-brand.seller_group_id",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.seller_group_id",
            "value": "seller-group-14",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.seller_group_id"
              }
            ]
          },
          {
            "claimId": "click-brand.channel_id",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.channel_id",
            "value": "search-brand",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.channel_id"
              }
            ]
          },
          {
            "claimId": "click-brand.event_at_ms",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.event_at_ms",
            "value": 1775646000000,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.event_at_ms"
              }
            ]
          },
          {
            "claimId": "click-brand.evidence_rank",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.evidence_rank",
            "value": 0,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.evidence_rank"
              }
            ]
          },
          {
            "claimId": "click-brand.marketing_touch",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.marketing_touch",
            "value": true,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.marketing_touch"
              }
            ]
          }
        ]
      },
      "arguments": {
        "property": "property-104",
        "opportunity": "acquisition-204",
        "sellerGroup": "seller-group-14",
        "windowStart": 1772323200000,
        "qualificationAt": 1775746800000,
        "admittedRank": 0
      },
      "receipt": {
        "resultVersion": "t2k.graph-result.v1",
        "status": "complete",
        "value": [
          {
            "touchId": "click-brand",
            "channelId": "search-brand",
            "eventAtMs": 1775646000000,
            "evidenceRank": 0
          },
          {
            "touchId": "click-nonbrand",
            "channelId": "search-nonbrand",
            "eventAtMs": 1775210400000,
            "evidenceRank": 0
          }
        ],
        "authorization": "not_authorized",
        "binding": {
          "runtimeVersion": "t2k.graph-runtime.v1",
          "functionHash": "c0aa7b713a989a49764860e270b776fcbd76416e07891e48a43920029a6aa40d",
          "ontologyResolutionHash": "c1f42aba94b41cc81e2ba87abe71a6263a91a15226cc24ee279c2183f576533f",
          "graphKey": "demo.cash-homebuyer",
          "asOf": "2026-05-15T23:59:59.000Z",
          "snapshotHash": "ce0d1ea1084615732b662e32ce6b69ae77ea2a75405f6d796be27a207e8b6267",
          "argumentsHash": "42e0e7d41d126edcc85e8694a0a6c610ab82f2484d117738872465ddbc3c08ac"
        },
        "evidence": [
          {
            "claimId": "click-brand.channel_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.channel_id"
              }
            ]
          },
          {
            "claimId": "click-brand.event_at_ms",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.event_at_ms"
              }
            ]
          },
          {
            "claimId": "click-brand.evidence_rank",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.evidence_rank"
              }
            ]
          },
          {
            "claimId": "click-brand.marketing_touch",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.marketing_touch"
              }
            ]
          },
          {
            "claimId": "click-brand.opportunity_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.opportunity_id"
              }
            ]
          },
          {
            "claimId": "click-brand.property_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.property_id"
              }
            ]
          },
          {
            "claimId": "click-brand.seller_group_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.seller_group_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.channel_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.channel_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.event_at_ms",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.event_at_ms"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.evidence_rank",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.evidence_rank"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.marketing_touch",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.marketing_touch"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.opportunity_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.opportunity_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.property_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.property_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.seller_group_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.seller_group_id"
              }
            ]
          }
        ],
        "supportingClaimIds": [
          "click-brand.channel_id",
          "click-brand.event_at_ms",
          "click-brand.evidence_rank",
          "click-brand.marketing_touch",
          "click-brand.opportunity_id",
          "click-brand.property_id",
          "click-brand.seller_group_id",
          "click-nonbrand.channel_id",
          "click-nonbrand.event_at_ms",
          "click-nonbrand.evidence_rank",
          "click-nonbrand.marketing_touch",
          "click-nonbrand.opportunity_id",
          "click-nonbrand.property_id",
          "click-nonbrand.seller_group_id"
        ],
        "derivations": [
          {
            "rowHash": "694a95e1c5a20b2c4181a07122a2a687fc67128c10a258b2430fa33c69ae9712",
            "claimIds": [
              "click-brand.channel_id",
              "click-brand.event_at_ms",
              "click-brand.evidence_rank",
              "click-brand.marketing_touch",
              "click-brand.opportunity_id",
              "click-brand.property_id",
              "click-brand.seller_group_id"
            ]
          },
          {
            "rowHash": "8a86502664d35468a58d6eb7e6e5c9be4dfb70904e624e59abad3daa6bd71e31",
            "claimIds": [
              "click-nonbrand.channel_id",
              "click-nonbrand.event_at_ms",
              "click-nonbrand.evidence_rank",
              "click-nonbrand.marketing_touch",
              "click-nonbrand.opportunity_id",
              "click-nonbrand.property_id",
              "click-nonbrand.seller_group_id"
            ]
          }
        ],
        "exclusions": [],
        "issues": [],
        "trace": [
          {
            "stepId": "touches",
            "operator": "lookup",
            "inputRows": 0,
            "outputRows": 2,
            "claimIds": [],
            "outputHash": "b5e54beeeb9e33347b6c6703bc8db26cc46e26ee22225bf368b569bf7d8f21c2"
          },
          {
            "stepId": "eligible",
            "operator": "filter",
            "inputRows": 2,
            "outputRows": 2,
            "claimIds": [
              "click-brand.event_at_ms",
              "click-brand.evidence_rank",
              "click-brand.marketing_touch",
              "click-brand.opportunity_id",
              "click-brand.property_id",
              "click-brand.seller_group_id",
              "click-nonbrand.event_at_ms",
              "click-nonbrand.evidence_rank",
              "click-nonbrand.marketing_touch",
              "click-nonbrand.opportunity_id",
              "click-nonbrand.property_id",
              "click-nonbrand.seller_group_id"
            ],
            "outputHash": "8864bff38933853cc1e817ba21ea80f93b0b754a138347c03d066fddef7ec24b"
          },
          {
            "stepId": "rows",
            "operator": "project",
            "inputRows": 2,
            "outputRows": 2,
            "claimIds": [
              "click-brand.channel_id",
              "click-brand.event_at_ms",
              "click-brand.evidence_rank",
              "click-nonbrand.channel_id",
              "click-nonbrand.event_at_ms",
              "click-nonbrand.evidence_rank"
            ],
            "outputHash": "078dbc75a2ac1b1ea6e98b028bdb1c2655ebf9eac5681b4b98c9e64ac4242bac"
          }
        ],
        "work": 87,
        "resultHash": "37ad81418ecafaad100396e0fa2dfa2e2d6edb6daf02b903eaa808e00e17ec09"
      }
    },
    "canceled|observed|acquired": {
      "graph": {
        "snapshotVersion": "t2k.reasoning-graph.v1",
        "graphKey": "demo.cash-homebuyer",
        "asOf": "2026-06-15T23:59:59Z",
        "ontologyResolutionHash": "c1f42aba94b41cc81e2ba87abe71a6263a91a15226cc24ee279c2183f576533f",
        "coverage": "complete",
        "entities": [
          {
            "entityId": "click-nonbrand",
            "typeRef": "demo.cash-homebuyer:touchpoint"
          },
          {
            "entityId": "click-brand",
            "typeRef": "demo.cash-homebuyer:touchpoint"
          }
        ],
        "claims": [
          {
            "claimId": "click-nonbrand.property_id",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.property_id",
            "value": "property-104",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.property_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.opportunity_id",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.opportunity_id",
            "value": "acquisition-204",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.opportunity_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.seller_group_id",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.seller_group_id",
            "value": "seller-group-14",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.seller_group_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.channel_id",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.channel_id",
            "value": "search-nonbrand",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.channel_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.event_at_ms",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.event_at_ms",
            "value": 1775210400000,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.event_at_ms"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.evidence_rank",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.evidence_rank",
            "value": 0,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.evidence_rank"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.marketing_touch",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.marketing_touch",
            "value": true,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.marketing_touch"
              }
            ]
          },
          {
            "claimId": "click-brand.property_id",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.property_id",
            "value": "property-104",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.property_id"
              }
            ]
          },
          {
            "claimId": "click-brand.opportunity_id",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.opportunity_id",
            "value": "acquisition-204",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.opportunity_id"
              }
            ]
          },
          {
            "claimId": "click-brand.seller_group_id",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.seller_group_id",
            "value": "seller-group-14",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.seller_group_id"
              }
            ]
          },
          {
            "claimId": "click-brand.channel_id",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.channel_id",
            "value": "search-brand",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.channel_id"
              }
            ]
          },
          {
            "claimId": "click-brand.event_at_ms",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.event_at_ms",
            "value": 1775646000000,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.event_at_ms"
              }
            ]
          },
          {
            "claimId": "click-brand.evidence_rank",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.evidence_rank",
            "value": 0,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.evidence_rank"
              }
            ]
          },
          {
            "claimId": "click-brand.marketing_touch",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.marketing_touch",
            "value": true,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.marketing_touch"
              }
            ]
          }
        ]
      },
      "arguments": {
        "property": "property-104",
        "opportunity": "acquisition-204",
        "sellerGroup": "seller-group-14",
        "windowStart": 1772323200000,
        "qualificationAt": 1775746800000,
        "admittedRank": 0
      },
      "receipt": {
        "resultVersion": "t2k.graph-result.v1",
        "status": "complete",
        "value": [
          {
            "touchId": "click-brand",
            "channelId": "search-brand",
            "eventAtMs": 1775646000000,
            "evidenceRank": 0
          },
          {
            "touchId": "click-nonbrand",
            "channelId": "search-nonbrand",
            "eventAtMs": 1775210400000,
            "evidenceRank": 0
          }
        ],
        "authorization": "not_authorized",
        "binding": {
          "runtimeVersion": "t2k.graph-runtime.v1",
          "functionHash": "c0aa7b713a989a49764860e270b776fcbd76416e07891e48a43920029a6aa40d",
          "ontologyResolutionHash": "c1f42aba94b41cc81e2ba87abe71a6263a91a15226cc24ee279c2183f576533f",
          "graphKey": "demo.cash-homebuyer",
          "asOf": "2026-06-15T23:59:59.000Z",
          "snapshotHash": "8614b18e51d70dfc8c55b9f4989358baf3b75ba545043f35d1ca34aab74403ae",
          "argumentsHash": "42e0e7d41d126edcc85e8694a0a6c610ab82f2484d117738872465ddbc3c08ac"
        },
        "evidence": [
          {
            "claimId": "click-brand.channel_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.channel_id"
              }
            ]
          },
          {
            "claimId": "click-brand.event_at_ms",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.event_at_ms"
              }
            ]
          },
          {
            "claimId": "click-brand.evidence_rank",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.evidence_rank"
              }
            ]
          },
          {
            "claimId": "click-brand.marketing_touch",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.marketing_touch"
              }
            ]
          },
          {
            "claimId": "click-brand.opportunity_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.opportunity_id"
              }
            ]
          },
          {
            "claimId": "click-brand.property_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.property_id"
              }
            ]
          },
          {
            "claimId": "click-brand.seller_group_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.seller_group_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.channel_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.channel_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.event_at_ms",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.event_at_ms"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.evidence_rank",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.evidence_rank"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.marketing_touch",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.marketing_touch"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.opportunity_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.opportunity_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.property_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.property_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.seller_group_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.seller_group_id"
              }
            ]
          }
        ],
        "supportingClaimIds": [
          "click-brand.channel_id",
          "click-brand.event_at_ms",
          "click-brand.evidence_rank",
          "click-brand.marketing_touch",
          "click-brand.opportunity_id",
          "click-brand.property_id",
          "click-brand.seller_group_id",
          "click-nonbrand.channel_id",
          "click-nonbrand.event_at_ms",
          "click-nonbrand.evidence_rank",
          "click-nonbrand.marketing_touch",
          "click-nonbrand.opportunity_id",
          "click-nonbrand.property_id",
          "click-nonbrand.seller_group_id"
        ],
        "derivations": [
          {
            "rowHash": "694a95e1c5a20b2c4181a07122a2a687fc67128c10a258b2430fa33c69ae9712",
            "claimIds": [
              "click-brand.channel_id",
              "click-brand.event_at_ms",
              "click-brand.evidence_rank",
              "click-brand.marketing_touch",
              "click-brand.opportunity_id",
              "click-brand.property_id",
              "click-brand.seller_group_id"
            ]
          },
          {
            "rowHash": "8a86502664d35468a58d6eb7e6e5c9be4dfb70904e624e59abad3daa6bd71e31",
            "claimIds": [
              "click-nonbrand.channel_id",
              "click-nonbrand.event_at_ms",
              "click-nonbrand.evidence_rank",
              "click-nonbrand.marketing_touch",
              "click-nonbrand.opportunity_id",
              "click-nonbrand.property_id",
              "click-nonbrand.seller_group_id"
            ]
          }
        ],
        "exclusions": [],
        "issues": [],
        "trace": [
          {
            "stepId": "touches",
            "operator": "lookup",
            "inputRows": 0,
            "outputRows": 2,
            "claimIds": [],
            "outputHash": "b5e54beeeb9e33347b6c6703bc8db26cc46e26ee22225bf368b569bf7d8f21c2"
          },
          {
            "stepId": "eligible",
            "operator": "filter",
            "inputRows": 2,
            "outputRows": 2,
            "claimIds": [
              "click-brand.event_at_ms",
              "click-brand.evidence_rank",
              "click-brand.marketing_touch",
              "click-brand.opportunity_id",
              "click-brand.property_id",
              "click-brand.seller_group_id",
              "click-nonbrand.event_at_ms",
              "click-nonbrand.evidence_rank",
              "click-nonbrand.marketing_touch",
              "click-nonbrand.opportunity_id",
              "click-nonbrand.property_id",
              "click-nonbrand.seller_group_id"
            ],
            "outputHash": "8864bff38933853cc1e817ba21ea80f93b0b754a138347c03d066fddef7ec24b"
          },
          {
            "stepId": "rows",
            "operator": "project",
            "inputRows": 2,
            "outputRows": 2,
            "claimIds": [
              "click-brand.channel_id",
              "click-brand.event_at_ms",
              "click-brand.evidence_rank",
              "click-nonbrand.channel_id",
              "click-nonbrand.event_at_ms",
              "click-nonbrand.evidence_rank"
            ],
            "outputHash": "078dbc75a2ac1b1ea6e98b028bdb1c2655ebf9eac5681b4b98c9e64ac4242bac"
          }
        ],
        "work": 87,
        "resultHash": "af68bdca86f0c3b18dd21c7273bee72ce5087dafd94f15466f5c99eacb111798"
      }
    },
    "canceled|observed|resale": {
      "graph": {
        "snapshotVersion": "t2k.reasoning-graph.v1",
        "graphKey": "demo.cash-homebuyer",
        "asOf": "2026-09-15T23:59:59Z",
        "ontologyResolutionHash": "c1f42aba94b41cc81e2ba87abe71a6263a91a15226cc24ee279c2183f576533f",
        "coverage": "complete",
        "entities": [
          {
            "entityId": "click-nonbrand",
            "typeRef": "demo.cash-homebuyer:touchpoint"
          },
          {
            "entityId": "click-brand",
            "typeRef": "demo.cash-homebuyer:touchpoint"
          }
        ],
        "claims": [
          {
            "claimId": "click-nonbrand.property_id",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.property_id",
            "value": "property-104",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.property_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.opportunity_id",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.opportunity_id",
            "value": "acquisition-204",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.opportunity_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.seller_group_id",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.seller_group_id",
            "value": "seller-group-14",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.seller_group_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.channel_id",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.channel_id",
            "value": "search-nonbrand",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.channel_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.event_at_ms",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.event_at_ms",
            "value": 1775210400000,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.event_at_ms"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.evidence_rank",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.evidence_rank",
            "value": 0,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.evidence_rank"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.marketing_touch",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.marketing_touch",
            "value": true,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.marketing_touch"
              }
            ]
          },
          {
            "claimId": "click-brand.property_id",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.property_id",
            "value": "property-104",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.property_id"
              }
            ]
          },
          {
            "claimId": "click-brand.opportunity_id",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.opportunity_id",
            "value": "acquisition-204",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.opportunity_id"
              }
            ]
          },
          {
            "claimId": "click-brand.seller_group_id",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.seller_group_id",
            "value": "seller-group-14",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.seller_group_id"
              }
            ]
          },
          {
            "claimId": "click-brand.channel_id",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.channel_id",
            "value": "search-brand",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.channel_id"
              }
            ]
          },
          {
            "claimId": "click-brand.event_at_ms",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.event_at_ms",
            "value": 1775646000000,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.event_at_ms"
              }
            ]
          },
          {
            "claimId": "click-brand.evidence_rank",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.evidence_rank",
            "value": 0,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.evidence_rank"
              }
            ]
          },
          {
            "claimId": "click-brand.marketing_touch",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.marketing_touch",
            "value": true,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.marketing_touch"
              }
            ]
          }
        ]
      },
      "arguments": {
        "property": "property-104",
        "opportunity": "acquisition-204",
        "sellerGroup": "seller-group-14",
        "windowStart": 1772323200000,
        "qualificationAt": 1775746800000,
        "admittedRank": 0
      },
      "receipt": {
        "resultVersion": "t2k.graph-result.v1",
        "status": "complete",
        "value": [
          {
            "touchId": "click-brand",
            "channelId": "search-brand",
            "eventAtMs": 1775646000000,
            "evidenceRank": 0
          },
          {
            "touchId": "click-nonbrand",
            "channelId": "search-nonbrand",
            "eventAtMs": 1775210400000,
            "evidenceRank": 0
          }
        ],
        "authorization": "not_authorized",
        "binding": {
          "runtimeVersion": "t2k.graph-runtime.v1",
          "functionHash": "c0aa7b713a989a49764860e270b776fcbd76416e07891e48a43920029a6aa40d",
          "ontologyResolutionHash": "c1f42aba94b41cc81e2ba87abe71a6263a91a15226cc24ee279c2183f576533f",
          "graphKey": "demo.cash-homebuyer",
          "asOf": "2026-09-15T23:59:59.000Z",
          "snapshotHash": "1812bf10a3af3876d044992b2c96a4b9d6abfe5b128ffff513334ce269884dc8",
          "argumentsHash": "42e0e7d41d126edcc85e8694a0a6c610ab82f2484d117738872465ddbc3c08ac"
        },
        "evidence": [
          {
            "claimId": "click-brand.channel_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.channel_id"
              }
            ]
          },
          {
            "claimId": "click-brand.event_at_ms",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.event_at_ms"
              }
            ]
          },
          {
            "claimId": "click-brand.evidence_rank",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.evidence_rank"
              }
            ]
          },
          {
            "claimId": "click-brand.marketing_touch",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.marketing_touch"
              }
            ]
          },
          {
            "claimId": "click-brand.opportunity_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.opportunity_id"
              }
            ]
          },
          {
            "claimId": "click-brand.property_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.property_id"
              }
            ]
          },
          {
            "claimId": "click-brand.seller_group_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.seller_group_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.channel_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.channel_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.event_at_ms",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.event_at_ms"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.evidence_rank",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.evidence_rank"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.marketing_touch",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.marketing_touch"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.opportunity_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.opportunity_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.property_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.property_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.seller_group_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.seller_group_id"
              }
            ]
          }
        ],
        "supportingClaimIds": [
          "click-brand.channel_id",
          "click-brand.event_at_ms",
          "click-brand.evidence_rank",
          "click-brand.marketing_touch",
          "click-brand.opportunity_id",
          "click-brand.property_id",
          "click-brand.seller_group_id",
          "click-nonbrand.channel_id",
          "click-nonbrand.event_at_ms",
          "click-nonbrand.evidence_rank",
          "click-nonbrand.marketing_touch",
          "click-nonbrand.opportunity_id",
          "click-nonbrand.property_id",
          "click-nonbrand.seller_group_id"
        ],
        "derivations": [
          {
            "rowHash": "694a95e1c5a20b2c4181a07122a2a687fc67128c10a258b2430fa33c69ae9712",
            "claimIds": [
              "click-brand.channel_id",
              "click-brand.event_at_ms",
              "click-brand.evidence_rank",
              "click-brand.marketing_touch",
              "click-brand.opportunity_id",
              "click-brand.property_id",
              "click-brand.seller_group_id"
            ]
          },
          {
            "rowHash": "8a86502664d35468a58d6eb7e6e5c9be4dfb70904e624e59abad3daa6bd71e31",
            "claimIds": [
              "click-nonbrand.channel_id",
              "click-nonbrand.event_at_ms",
              "click-nonbrand.evidence_rank",
              "click-nonbrand.marketing_touch",
              "click-nonbrand.opportunity_id",
              "click-nonbrand.property_id",
              "click-nonbrand.seller_group_id"
            ]
          }
        ],
        "exclusions": [],
        "issues": [],
        "trace": [
          {
            "stepId": "touches",
            "operator": "lookup",
            "inputRows": 0,
            "outputRows": 2,
            "claimIds": [],
            "outputHash": "b5e54beeeb9e33347b6c6703bc8db26cc46e26ee22225bf368b569bf7d8f21c2"
          },
          {
            "stepId": "eligible",
            "operator": "filter",
            "inputRows": 2,
            "outputRows": 2,
            "claimIds": [
              "click-brand.event_at_ms",
              "click-brand.evidence_rank",
              "click-brand.marketing_touch",
              "click-brand.opportunity_id",
              "click-brand.property_id",
              "click-brand.seller_group_id",
              "click-nonbrand.event_at_ms",
              "click-nonbrand.evidence_rank",
              "click-nonbrand.marketing_touch",
              "click-nonbrand.opportunity_id",
              "click-nonbrand.property_id",
              "click-nonbrand.seller_group_id"
            ],
            "outputHash": "8864bff38933853cc1e817ba21ea80f93b0b754a138347c03d066fddef7ec24b"
          },
          {
            "stepId": "rows",
            "operator": "project",
            "inputRows": 2,
            "outputRows": 2,
            "claimIds": [
              "click-brand.channel_id",
              "click-brand.event_at_ms",
              "click-brand.evidence_rank",
              "click-nonbrand.channel_id",
              "click-nonbrand.event_at_ms",
              "click-nonbrand.evidence_rank"
            ],
            "outputHash": "078dbc75a2ac1b1ea6e98b028bdb1c2655ebf9eac5681b4b98c9e64ac4242bac"
          }
        ],
        "work": 87,
        "resultHash": "44d4b2ab8d7210697eec584a39463625ba5208270192afda2c234c9dc57afdd8"
      }
    },
    "canceled|reported|contract": {
      "graph": {
        "snapshotVersion": "t2k.reasoning-graph.v1",
        "graphKey": "demo.cash-homebuyer",
        "asOf": "2026-05-15T23:59:59Z",
        "ontologyResolutionHash": "c1f42aba94b41cc81e2ba87abe71a6263a91a15226cc24ee279c2183f576533f",
        "coverage": "complete",
        "entities": [
          {
            "entityId": "click-nonbrand",
            "typeRef": "demo.cash-homebuyer:touchpoint"
          },
          {
            "entityId": "click-brand",
            "typeRef": "demo.cash-homebuyer:touchpoint"
          }
        ],
        "claims": [
          {
            "claimId": "click-nonbrand.property_id",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.property_id",
            "value": "property-104",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.property_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.opportunity_id",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.opportunity_id",
            "value": "acquisition-204",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.opportunity_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.seller_group_id",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.seller_group_id",
            "value": "seller-group-14",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.seller_group_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.channel_id",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.channel_id",
            "value": "search-nonbrand",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.channel_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.event_at_ms",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.event_at_ms",
            "value": 1775210400000,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.event_at_ms"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.evidence_rank",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.evidence_rank",
            "value": 0,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.evidence_rank"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.marketing_touch",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.marketing_touch",
            "value": true,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.marketing_touch"
              }
            ]
          },
          {
            "claimId": "click-brand.property_id",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.property_id",
            "value": "property-104",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.property_id"
              }
            ]
          },
          {
            "claimId": "click-brand.opportunity_id",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.opportunity_id",
            "value": "acquisition-204",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.opportunity_id"
              }
            ]
          },
          {
            "claimId": "click-brand.seller_group_id",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.seller_group_id",
            "value": "seller-group-14",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.seller_group_id"
              }
            ]
          },
          {
            "claimId": "click-brand.channel_id",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.channel_id",
            "value": "search-brand",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.channel_id"
              }
            ]
          },
          {
            "claimId": "click-brand.event_at_ms",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.event_at_ms",
            "value": 1775646000000,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.event_at_ms"
              }
            ]
          },
          {
            "claimId": "click-brand.evidence_rank",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.evidence_rank",
            "value": 0,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.evidence_rank"
              }
            ]
          },
          {
            "claimId": "click-brand.marketing_touch",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.marketing_touch",
            "value": true,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.marketing_touch"
              }
            ]
          }
        ]
      },
      "arguments": {
        "property": "property-104",
        "opportunity": "acquisition-204",
        "sellerGroup": "seller-group-14",
        "windowStart": 1772323200000,
        "qualificationAt": 1775746800000,
        "admittedRank": 1
      },
      "receipt": {
        "resultVersion": "t2k.graph-result.v1",
        "status": "complete",
        "value": [
          {
            "touchId": "click-brand",
            "channelId": "search-brand",
            "eventAtMs": 1775646000000,
            "evidenceRank": 0
          },
          {
            "touchId": "click-nonbrand",
            "channelId": "search-nonbrand",
            "eventAtMs": 1775210400000,
            "evidenceRank": 0
          }
        ],
        "authorization": "not_authorized",
        "binding": {
          "runtimeVersion": "t2k.graph-runtime.v1",
          "functionHash": "c0aa7b713a989a49764860e270b776fcbd76416e07891e48a43920029a6aa40d",
          "ontologyResolutionHash": "c1f42aba94b41cc81e2ba87abe71a6263a91a15226cc24ee279c2183f576533f",
          "graphKey": "demo.cash-homebuyer",
          "asOf": "2026-05-15T23:59:59.000Z",
          "snapshotHash": "ce0d1ea1084615732b662e32ce6b69ae77ea2a75405f6d796be27a207e8b6267",
          "argumentsHash": "cd8690f832630034ecce3c948890d1e8f4ac84aebf4d3b80bcff6e7dcae3c8ab"
        },
        "evidence": [
          {
            "claimId": "click-brand.channel_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.channel_id"
              }
            ]
          },
          {
            "claimId": "click-brand.event_at_ms",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.event_at_ms"
              }
            ]
          },
          {
            "claimId": "click-brand.evidence_rank",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.evidence_rank"
              }
            ]
          },
          {
            "claimId": "click-brand.marketing_touch",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.marketing_touch"
              }
            ]
          },
          {
            "claimId": "click-brand.opportunity_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.opportunity_id"
              }
            ]
          },
          {
            "claimId": "click-brand.property_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.property_id"
              }
            ]
          },
          {
            "claimId": "click-brand.seller_group_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.seller_group_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.channel_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.channel_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.event_at_ms",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.event_at_ms"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.evidence_rank",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.evidence_rank"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.marketing_touch",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.marketing_touch"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.opportunity_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.opportunity_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.property_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.property_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.seller_group_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.seller_group_id"
              }
            ]
          }
        ],
        "supportingClaimIds": [
          "click-brand.channel_id",
          "click-brand.event_at_ms",
          "click-brand.evidence_rank",
          "click-brand.marketing_touch",
          "click-brand.opportunity_id",
          "click-brand.property_id",
          "click-brand.seller_group_id",
          "click-nonbrand.channel_id",
          "click-nonbrand.event_at_ms",
          "click-nonbrand.evidence_rank",
          "click-nonbrand.marketing_touch",
          "click-nonbrand.opportunity_id",
          "click-nonbrand.property_id",
          "click-nonbrand.seller_group_id"
        ],
        "derivations": [
          {
            "rowHash": "694a95e1c5a20b2c4181a07122a2a687fc67128c10a258b2430fa33c69ae9712",
            "claimIds": [
              "click-brand.channel_id",
              "click-brand.event_at_ms",
              "click-brand.evidence_rank",
              "click-brand.marketing_touch",
              "click-brand.opportunity_id",
              "click-brand.property_id",
              "click-brand.seller_group_id"
            ]
          },
          {
            "rowHash": "8a86502664d35468a58d6eb7e6e5c9be4dfb70904e624e59abad3daa6bd71e31",
            "claimIds": [
              "click-nonbrand.channel_id",
              "click-nonbrand.event_at_ms",
              "click-nonbrand.evidence_rank",
              "click-nonbrand.marketing_touch",
              "click-nonbrand.opportunity_id",
              "click-nonbrand.property_id",
              "click-nonbrand.seller_group_id"
            ]
          }
        ],
        "exclusions": [],
        "issues": [],
        "trace": [
          {
            "stepId": "touches",
            "operator": "lookup",
            "inputRows": 0,
            "outputRows": 2,
            "claimIds": [],
            "outputHash": "b5e54beeeb9e33347b6c6703bc8db26cc46e26ee22225bf368b569bf7d8f21c2"
          },
          {
            "stepId": "eligible",
            "operator": "filter",
            "inputRows": 2,
            "outputRows": 2,
            "claimIds": [
              "click-brand.event_at_ms",
              "click-brand.evidence_rank",
              "click-brand.marketing_touch",
              "click-brand.opportunity_id",
              "click-brand.property_id",
              "click-brand.seller_group_id",
              "click-nonbrand.event_at_ms",
              "click-nonbrand.evidence_rank",
              "click-nonbrand.marketing_touch",
              "click-nonbrand.opportunity_id",
              "click-nonbrand.property_id",
              "click-nonbrand.seller_group_id"
            ],
            "outputHash": "8864bff38933853cc1e817ba21ea80f93b0b754a138347c03d066fddef7ec24b"
          },
          {
            "stepId": "rows",
            "operator": "project",
            "inputRows": 2,
            "outputRows": 2,
            "claimIds": [
              "click-brand.channel_id",
              "click-brand.event_at_ms",
              "click-brand.evidence_rank",
              "click-nonbrand.channel_id",
              "click-nonbrand.event_at_ms",
              "click-nonbrand.evidence_rank"
            ],
            "outputHash": "078dbc75a2ac1b1ea6e98b028bdb1c2655ebf9eac5681b4b98c9e64ac4242bac"
          }
        ],
        "work": 87,
        "resultHash": "b983200dfc08bf82074c9ac66084fd86f7510dc80fc4faf80802c24dc44512c9"
      }
    },
    "canceled|reported|acquired": {
      "graph": {
        "snapshotVersion": "t2k.reasoning-graph.v1",
        "graphKey": "demo.cash-homebuyer",
        "asOf": "2026-06-15T23:59:59Z",
        "ontologyResolutionHash": "c1f42aba94b41cc81e2ba87abe71a6263a91a15226cc24ee279c2183f576533f",
        "coverage": "complete",
        "entities": [
          {
            "entityId": "click-nonbrand",
            "typeRef": "demo.cash-homebuyer:touchpoint"
          },
          {
            "entityId": "click-brand",
            "typeRef": "demo.cash-homebuyer:touchpoint"
          }
        ],
        "claims": [
          {
            "claimId": "click-nonbrand.property_id",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.property_id",
            "value": "property-104",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.property_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.opportunity_id",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.opportunity_id",
            "value": "acquisition-204",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.opportunity_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.seller_group_id",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.seller_group_id",
            "value": "seller-group-14",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.seller_group_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.channel_id",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.channel_id",
            "value": "search-nonbrand",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.channel_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.event_at_ms",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.event_at_ms",
            "value": 1775210400000,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.event_at_ms"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.evidence_rank",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.evidence_rank",
            "value": 0,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.evidence_rank"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.marketing_touch",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.marketing_touch",
            "value": true,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.marketing_touch"
              }
            ]
          },
          {
            "claimId": "click-brand.property_id",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.property_id",
            "value": "property-104",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.property_id"
              }
            ]
          },
          {
            "claimId": "click-brand.opportunity_id",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.opportunity_id",
            "value": "acquisition-204",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.opportunity_id"
              }
            ]
          },
          {
            "claimId": "click-brand.seller_group_id",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.seller_group_id",
            "value": "seller-group-14",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.seller_group_id"
              }
            ]
          },
          {
            "claimId": "click-brand.channel_id",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.channel_id",
            "value": "search-brand",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.channel_id"
              }
            ]
          },
          {
            "claimId": "click-brand.event_at_ms",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.event_at_ms",
            "value": 1775646000000,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.event_at_ms"
              }
            ]
          },
          {
            "claimId": "click-brand.evidence_rank",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.evidence_rank",
            "value": 0,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.evidence_rank"
              }
            ]
          },
          {
            "claimId": "click-brand.marketing_touch",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.marketing_touch",
            "value": true,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.marketing_touch"
              }
            ]
          }
        ]
      },
      "arguments": {
        "property": "property-104",
        "opportunity": "acquisition-204",
        "sellerGroup": "seller-group-14",
        "windowStart": 1772323200000,
        "qualificationAt": 1775746800000,
        "admittedRank": 1
      },
      "receipt": {
        "resultVersion": "t2k.graph-result.v1",
        "status": "complete",
        "value": [
          {
            "touchId": "click-brand",
            "channelId": "search-brand",
            "eventAtMs": 1775646000000,
            "evidenceRank": 0
          },
          {
            "touchId": "click-nonbrand",
            "channelId": "search-nonbrand",
            "eventAtMs": 1775210400000,
            "evidenceRank": 0
          }
        ],
        "authorization": "not_authorized",
        "binding": {
          "runtimeVersion": "t2k.graph-runtime.v1",
          "functionHash": "c0aa7b713a989a49764860e270b776fcbd76416e07891e48a43920029a6aa40d",
          "ontologyResolutionHash": "c1f42aba94b41cc81e2ba87abe71a6263a91a15226cc24ee279c2183f576533f",
          "graphKey": "demo.cash-homebuyer",
          "asOf": "2026-06-15T23:59:59.000Z",
          "snapshotHash": "8614b18e51d70dfc8c55b9f4989358baf3b75ba545043f35d1ca34aab74403ae",
          "argumentsHash": "cd8690f832630034ecce3c948890d1e8f4ac84aebf4d3b80bcff6e7dcae3c8ab"
        },
        "evidence": [
          {
            "claimId": "click-brand.channel_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.channel_id"
              }
            ]
          },
          {
            "claimId": "click-brand.event_at_ms",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.event_at_ms"
              }
            ]
          },
          {
            "claimId": "click-brand.evidence_rank",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.evidence_rank"
              }
            ]
          },
          {
            "claimId": "click-brand.marketing_touch",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.marketing_touch"
              }
            ]
          },
          {
            "claimId": "click-brand.opportunity_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.opportunity_id"
              }
            ]
          },
          {
            "claimId": "click-brand.property_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.property_id"
              }
            ]
          },
          {
            "claimId": "click-brand.seller_group_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.seller_group_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.channel_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.channel_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.event_at_ms",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.event_at_ms"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.evidence_rank",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.evidence_rank"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.marketing_touch",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.marketing_touch"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.opportunity_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.opportunity_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.property_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.property_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.seller_group_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.seller_group_id"
              }
            ]
          }
        ],
        "supportingClaimIds": [
          "click-brand.channel_id",
          "click-brand.event_at_ms",
          "click-brand.evidence_rank",
          "click-brand.marketing_touch",
          "click-brand.opportunity_id",
          "click-brand.property_id",
          "click-brand.seller_group_id",
          "click-nonbrand.channel_id",
          "click-nonbrand.event_at_ms",
          "click-nonbrand.evidence_rank",
          "click-nonbrand.marketing_touch",
          "click-nonbrand.opportunity_id",
          "click-nonbrand.property_id",
          "click-nonbrand.seller_group_id"
        ],
        "derivations": [
          {
            "rowHash": "694a95e1c5a20b2c4181a07122a2a687fc67128c10a258b2430fa33c69ae9712",
            "claimIds": [
              "click-brand.channel_id",
              "click-brand.event_at_ms",
              "click-brand.evidence_rank",
              "click-brand.marketing_touch",
              "click-brand.opportunity_id",
              "click-brand.property_id",
              "click-brand.seller_group_id"
            ]
          },
          {
            "rowHash": "8a86502664d35468a58d6eb7e6e5c9be4dfb70904e624e59abad3daa6bd71e31",
            "claimIds": [
              "click-nonbrand.channel_id",
              "click-nonbrand.event_at_ms",
              "click-nonbrand.evidence_rank",
              "click-nonbrand.marketing_touch",
              "click-nonbrand.opportunity_id",
              "click-nonbrand.property_id",
              "click-nonbrand.seller_group_id"
            ]
          }
        ],
        "exclusions": [],
        "issues": [],
        "trace": [
          {
            "stepId": "touches",
            "operator": "lookup",
            "inputRows": 0,
            "outputRows": 2,
            "claimIds": [],
            "outputHash": "b5e54beeeb9e33347b6c6703bc8db26cc46e26ee22225bf368b569bf7d8f21c2"
          },
          {
            "stepId": "eligible",
            "operator": "filter",
            "inputRows": 2,
            "outputRows": 2,
            "claimIds": [
              "click-brand.event_at_ms",
              "click-brand.evidence_rank",
              "click-brand.marketing_touch",
              "click-brand.opportunity_id",
              "click-brand.property_id",
              "click-brand.seller_group_id",
              "click-nonbrand.event_at_ms",
              "click-nonbrand.evidence_rank",
              "click-nonbrand.marketing_touch",
              "click-nonbrand.opportunity_id",
              "click-nonbrand.property_id",
              "click-nonbrand.seller_group_id"
            ],
            "outputHash": "8864bff38933853cc1e817ba21ea80f93b0b754a138347c03d066fddef7ec24b"
          },
          {
            "stepId": "rows",
            "operator": "project",
            "inputRows": 2,
            "outputRows": 2,
            "claimIds": [
              "click-brand.channel_id",
              "click-brand.event_at_ms",
              "click-brand.evidence_rank",
              "click-nonbrand.channel_id",
              "click-nonbrand.event_at_ms",
              "click-nonbrand.evidence_rank"
            ],
            "outputHash": "078dbc75a2ac1b1ea6e98b028bdb1c2655ebf9eac5681b4b98c9e64ac4242bac"
          }
        ],
        "work": 87,
        "resultHash": "c88fa17158addb166c0645767874f7d9130c2a7a3f76308ab7586b0a4ac23dc7"
      }
    },
    "canceled|reported|resale": {
      "graph": {
        "snapshotVersion": "t2k.reasoning-graph.v1",
        "graphKey": "demo.cash-homebuyer",
        "asOf": "2026-09-15T23:59:59Z",
        "ontologyResolutionHash": "c1f42aba94b41cc81e2ba87abe71a6263a91a15226cc24ee279c2183f576533f",
        "coverage": "complete",
        "entities": [
          {
            "entityId": "click-nonbrand",
            "typeRef": "demo.cash-homebuyer:touchpoint"
          },
          {
            "entityId": "click-brand",
            "typeRef": "demo.cash-homebuyer:touchpoint"
          }
        ],
        "claims": [
          {
            "claimId": "click-nonbrand.property_id",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.property_id",
            "value": "property-104",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.property_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.opportunity_id",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.opportunity_id",
            "value": "acquisition-204",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.opportunity_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.seller_group_id",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.seller_group_id",
            "value": "seller-group-14",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.seller_group_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.channel_id",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.channel_id",
            "value": "search-nonbrand",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.channel_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.event_at_ms",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.event_at_ms",
            "value": 1775210400000,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.event_at_ms"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.evidence_rank",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.evidence_rank",
            "value": 0,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.evidence_rank"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.marketing_touch",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.marketing_touch",
            "value": true,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.marketing_touch"
              }
            ]
          },
          {
            "claimId": "click-brand.property_id",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.property_id",
            "value": "property-104",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.property_id"
              }
            ]
          },
          {
            "claimId": "click-brand.opportunity_id",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.opportunity_id",
            "value": "acquisition-204",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.opportunity_id"
              }
            ]
          },
          {
            "claimId": "click-brand.seller_group_id",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.seller_group_id",
            "value": "seller-group-14",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.seller_group_id"
              }
            ]
          },
          {
            "claimId": "click-brand.channel_id",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.channel_id",
            "value": "search-brand",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.channel_id"
              }
            ]
          },
          {
            "claimId": "click-brand.event_at_ms",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.event_at_ms",
            "value": 1775646000000,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.event_at_ms"
              }
            ]
          },
          {
            "claimId": "click-brand.evidence_rank",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.evidence_rank",
            "value": 0,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.evidence_rank"
              }
            ]
          },
          {
            "claimId": "click-brand.marketing_touch",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.marketing_touch",
            "value": true,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.marketing_touch"
              }
            ]
          }
        ]
      },
      "arguments": {
        "property": "property-104",
        "opportunity": "acquisition-204",
        "sellerGroup": "seller-group-14",
        "windowStart": 1772323200000,
        "qualificationAt": 1775746800000,
        "admittedRank": 1
      },
      "receipt": {
        "resultVersion": "t2k.graph-result.v1",
        "status": "complete",
        "value": [
          {
            "touchId": "click-brand",
            "channelId": "search-brand",
            "eventAtMs": 1775646000000,
            "evidenceRank": 0
          },
          {
            "touchId": "click-nonbrand",
            "channelId": "search-nonbrand",
            "eventAtMs": 1775210400000,
            "evidenceRank": 0
          }
        ],
        "authorization": "not_authorized",
        "binding": {
          "runtimeVersion": "t2k.graph-runtime.v1",
          "functionHash": "c0aa7b713a989a49764860e270b776fcbd76416e07891e48a43920029a6aa40d",
          "ontologyResolutionHash": "c1f42aba94b41cc81e2ba87abe71a6263a91a15226cc24ee279c2183f576533f",
          "graphKey": "demo.cash-homebuyer",
          "asOf": "2026-09-15T23:59:59.000Z",
          "snapshotHash": "1812bf10a3af3876d044992b2c96a4b9d6abfe5b128ffff513334ce269884dc8",
          "argumentsHash": "cd8690f832630034ecce3c948890d1e8f4ac84aebf4d3b80bcff6e7dcae3c8ab"
        },
        "evidence": [
          {
            "claimId": "click-brand.channel_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.channel_id"
              }
            ]
          },
          {
            "claimId": "click-brand.event_at_ms",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.event_at_ms"
              }
            ]
          },
          {
            "claimId": "click-brand.evidence_rank",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.evidence_rank"
              }
            ]
          },
          {
            "claimId": "click-brand.marketing_touch",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.marketing_touch"
              }
            ]
          },
          {
            "claimId": "click-brand.opportunity_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.opportunity_id"
              }
            ]
          },
          {
            "claimId": "click-brand.property_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.property_id"
              }
            ]
          },
          {
            "claimId": "click-brand.seller_group_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.seller_group_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.channel_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.channel_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.event_at_ms",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.event_at_ms"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.evidence_rank",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.evidence_rank"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.marketing_touch",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.marketing_touch"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.opportunity_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.opportunity_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.property_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.property_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.seller_group_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.seller_group_id"
              }
            ]
          }
        ],
        "supportingClaimIds": [
          "click-brand.channel_id",
          "click-brand.event_at_ms",
          "click-brand.evidence_rank",
          "click-brand.marketing_touch",
          "click-brand.opportunity_id",
          "click-brand.property_id",
          "click-brand.seller_group_id",
          "click-nonbrand.channel_id",
          "click-nonbrand.event_at_ms",
          "click-nonbrand.evidence_rank",
          "click-nonbrand.marketing_touch",
          "click-nonbrand.opportunity_id",
          "click-nonbrand.property_id",
          "click-nonbrand.seller_group_id"
        ],
        "derivations": [
          {
            "rowHash": "694a95e1c5a20b2c4181a07122a2a687fc67128c10a258b2430fa33c69ae9712",
            "claimIds": [
              "click-brand.channel_id",
              "click-brand.event_at_ms",
              "click-brand.evidence_rank",
              "click-brand.marketing_touch",
              "click-brand.opportunity_id",
              "click-brand.property_id",
              "click-brand.seller_group_id"
            ]
          },
          {
            "rowHash": "8a86502664d35468a58d6eb7e6e5c9be4dfb70904e624e59abad3daa6bd71e31",
            "claimIds": [
              "click-nonbrand.channel_id",
              "click-nonbrand.event_at_ms",
              "click-nonbrand.evidence_rank",
              "click-nonbrand.marketing_touch",
              "click-nonbrand.opportunity_id",
              "click-nonbrand.property_id",
              "click-nonbrand.seller_group_id"
            ]
          }
        ],
        "exclusions": [],
        "issues": [],
        "trace": [
          {
            "stepId": "touches",
            "operator": "lookup",
            "inputRows": 0,
            "outputRows": 2,
            "claimIds": [],
            "outputHash": "b5e54beeeb9e33347b6c6703bc8db26cc46e26ee22225bf368b569bf7d8f21c2"
          },
          {
            "stepId": "eligible",
            "operator": "filter",
            "inputRows": 2,
            "outputRows": 2,
            "claimIds": [
              "click-brand.event_at_ms",
              "click-brand.evidence_rank",
              "click-brand.marketing_touch",
              "click-brand.opportunity_id",
              "click-brand.property_id",
              "click-brand.seller_group_id",
              "click-nonbrand.event_at_ms",
              "click-nonbrand.evidence_rank",
              "click-nonbrand.marketing_touch",
              "click-nonbrand.opportunity_id",
              "click-nonbrand.property_id",
              "click-nonbrand.seller_group_id"
            ],
            "outputHash": "8864bff38933853cc1e817ba21ea80f93b0b754a138347c03d066fddef7ec24b"
          },
          {
            "stepId": "rows",
            "operator": "project",
            "inputRows": 2,
            "outputRows": 2,
            "claimIds": [
              "click-brand.channel_id",
              "click-brand.event_at_ms",
              "click-brand.evidence_rank",
              "click-nonbrand.channel_id",
              "click-nonbrand.event_at_ms",
              "click-nonbrand.evidence_rank"
            ],
            "outputHash": "078dbc75a2ac1b1ea6e98b028bdb1c2655ebf9eac5681b4b98c9e64ac4242bac"
          }
        ],
        "work": 87,
        "resultHash": "565816838d126cc6cfee981c62bf01fb0947e7451f9b8344ce47b57c7f14d05f"
      }
    },
    "missing-costs|observed|contract": {
      "graph": {
        "snapshotVersion": "t2k.reasoning-graph.v1",
        "graphKey": "demo.cash-homebuyer",
        "asOf": "2026-05-15T23:59:59Z",
        "ontologyResolutionHash": "c1f42aba94b41cc81e2ba87abe71a6263a91a15226cc24ee279c2183f576533f",
        "coverage": "complete",
        "entities": [
          {
            "entityId": "click-nonbrand",
            "typeRef": "demo.cash-homebuyer:touchpoint"
          },
          {
            "entityId": "click-brand",
            "typeRef": "demo.cash-homebuyer:touchpoint"
          }
        ],
        "claims": [
          {
            "claimId": "click-nonbrand.property_id",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.property_id",
            "value": "property-104",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.property_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.opportunity_id",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.opportunity_id",
            "value": "acquisition-204",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.opportunity_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.seller_group_id",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.seller_group_id",
            "value": "seller-group-14",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.seller_group_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.channel_id",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.channel_id",
            "value": "search-nonbrand",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.channel_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.event_at_ms",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.event_at_ms",
            "value": 1775210400000,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.event_at_ms"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.evidence_rank",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.evidence_rank",
            "value": 0,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.evidence_rank"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.marketing_touch",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.marketing_touch",
            "value": true,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.marketing_touch"
              }
            ]
          },
          {
            "claimId": "click-brand.property_id",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.property_id",
            "value": "property-104",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.property_id"
              }
            ]
          },
          {
            "claimId": "click-brand.opportunity_id",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.opportunity_id",
            "value": "acquisition-204",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.opportunity_id"
              }
            ]
          },
          {
            "claimId": "click-brand.seller_group_id",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.seller_group_id",
            "value": "seller-group-14",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.seller_group_id"
              }
            ]
          },
          {
            "claimId": "click-brand.channel_id",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.channel_id",
            "value": "search-brand",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.channel_id"
              }
            ]
          },
          {
            "claimId": "click-brand.event_at_ms",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.event_at_ms",
            "value": 1775646000000,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.event_at_ms"
              }
            ]
          },
          {
            "claimId": "click-brand.evidence_rank",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.evidence_rank",
            "value": 0,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.evidence_rank"
              }
            ]
          },
          {
            "claimId": "click-brand.marketing_touch",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.marketing_touch",
            "value": true,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.marketing_touch"
              }
            ]
          }
        ]
      },
      "arguments": {
        "property": "property-104",
        "opportunity": "acquisition-204",
        "sellerGroup": "seller-group-14",
        "windowStart": 1772323200000,
        "qualificationAt": 1775746800000,
        "admittedRank": 0
      },
      "receipt": {
        "resultVersion": "t2k.graph-result.v1",
        "status": "complete",
        "value": [
          {
            "touchId": "click-brand",
            "channelId": "search-brand",
            "eventAtMs": 1775646000000,
            "evidenceRank": 0
          },
          {
            "touchId": "click-nonbrand",
            "channelId": "search-nonbrand",
            "eventAtMs": 1775210400000,
            "evidenceRank": 0
          }
        ],
        "authorization": "not_authorized",
        "binding": {
          "runtimeVersion": "t2k.graph-runtime.v1",
          "functionHash": "c0aa7b713a989a49764860e270b776fcbd76416e07891e48a43920029a6aa40d",
          "ontologyResolutionHash": "c1f42aba94b41cc81e2ba87abe71a6263a91a15226cc24ee279c2183f576533f",
          "graphKey": "demo.cash-homebuyer",
          "asOf": "2026-05-15T23:59:59.000Z",
          "snapshotHash": "ce0d1ea1084615732b662e32ce6b69ae77ea2a75405f6d796be27a207e8b6267",
          "argumentsHash": "42e0e7d41d126edcc85e8694a0a6c610ab82f2484d117738872465ddbc3c08ac"
        },
        "evidence": [
          {
            "claimId": "click-brand.channel_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.channel_id"
              }
            ]
          },
          {
            "claimId": "click-brand.event_at_ms",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.event_at_ms"
              }
            ]
          },
          {
            "claimId": "click-brand.evidence_rank",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.evidence_rank"
              }
            ]
          },
          {
            "claimId": "click-brand.marketing_touch",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.marketing_touch"
              }
            ]
          },
          {
            "claimId": "click-brand.opportunity_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.opportunity_id"
              }
            ]
          },
          {
            "claimId": "click-brand.property_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.property_id"
              }
            ]
          },
          {
            "claimId": "click-brand.seller_group_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.seller_group_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.channel_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.channel_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.event_at_ms",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.event_at_ms"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.evidence_rank",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.evidence_rank"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.marketing_touch",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.marketing_touch"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.opportunity_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.opportunity_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.property_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.property_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.seller_group_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.seller_group_id"
              }
            ]
          }
        ],
        "supportingClaimIds": [
          "click-brand.channel_id",
          "click-brand.event_at_ms",
          "click-brand.evidence_rank",
          "click-brand.marketing_touch",
          "click-brand.opportunity_id",
          "click-brand.property_id",
          "click-brand.seller_group_id",
          "click-nonbrand.channel_id",
          "click-nonbrand.event_at_ms",
          "click-nonbrand.evidence_rank",
          "click-nonbrand.marketing_touch",
          "click-nonbrand.opportunity_id",
          "click-nonbrand.property_id",
          "click-nonbrand.seller_group_id"
        ],
        "derivations": [
          {
            "rowHash": "694a95e1c5a20b2c4181a07122a2a687fc67128c10a258b2430fa33c69ae9712",
            "claimIds": [
              "click-brand.channel_id",
              "click-brand.event_at_ms",
              "click-brand.evidence_rank",
              "click-brand.marketing_touch",
              "click-brand.opportunity_id",
              "click-brand.property_id",
              "click-brand.seller_group_id"
            ]
          },
          {
            "rowHash": "8a86502664d35468a58d6eb7e6e5c9be4dfb70904e624e59abad3daa6bd71e31",
            "claimIds": [
              "click-nonbrand.channel_id",
              "click-nonbrand.event_at_ms",
              "click-nonbrand.evidence_rank",
              "click-nonbrand.marketing_touch",
              "click-nonbrand.opportunity_id",
              "click-nonbrand.property_id",
              "click-nonbrand.seller_group_id"
            ]
          }
        ],
        "exclusions": [],
        "issues": [],
        "trace": [
          {
            "stepId": "touches",
            "operator": "lookup",
            "inputRows": 0,
            "outputRows": 2,
            "claimIds": [],
            "outputHash": "b5e54beeeb9e33347b6c6703bc8db26cc46e26ee22225bf368b569bf7d8f21c2"
          },
          {
            "stepId": "eligible",
            "operator": "filter",
            "inputRows": 2,
            "outputRows": 2,
            "claimIds": [
              "click-brand.event_at_ms",
              "click-brand.evidence_rank",
              "click-brand.marketing_touch",
              "click-brand.opportunity_id",
              "click-brand.property_id",
              "click-brand.seller_group_id",
              "click-nonbrand.event_at_ms",
              "click-nonbrand.evidence_rank",
              "click-nonbrand.marketing_touch",
              "click-nonbrand.opportunity_id",
              "click-nonbrand.property_id",
              "click-nonbrand.seller_group_id"
            ],
            "outputHash": "8864bff38933853cc1e817ba21ea80f93b0b754a138347c03d066fddef7ec24b"
          },
          {
            "stepId": "rows",
            "operator": "project",
            "inputRows": 2,
            "outputRows": 2,
            "claimIds": [
              "click-brand.channel_id",
              "click-brand.event_at_ms",
              "click-brand.evidence_rank",
              "click-nonbrand.channel_id",
              "click-nonbrand.event_at_ms",
              "click-nonbrand.evidence_rank"
            ],
            "outputHash": "078dbc75a2ac1b1ea6e98b028bdb1c2655ebf9eac5681b4b98c9e64ac4242bac"
          }
        ],
        "work": 87,
        "resultHash": "37ad81418ecafaad100396e0fa2dfa2e2d6edb6daf02b903eaa808e00e17ec09"
      }
    },
    "missing-costs|observed|acquired": {
      "graph": {
        "snapshotVersion": "t2k.reasoning-graph.v1",
        "graphKey": "demo.cash-homebuyer",
        "asOf": "2026-06-15T23:59:59Z",
        "ontologyResolutionHash": "c1f42aba94b41cc81e2ba87abe71a6263a91a15226cc24ee279c2183f576533f",
        "coverage": "complete",
        "entities": [
          {
            "entityId": "click-nonbrand",
            "typeRef": "demo.cash-homebuyer:touchpoint"
          },
          {
            "entityId": "click-brand",
            "typeRef": "demo.cash-homebuyer:touchpoint"
          }
        ],
        "claims": [
          {
            "claimId": "click-nonbrand.property_id",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.property_id",
            "value": "property-104",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.property_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.opportunity_id",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.opportunity_id",
            "value": "acquisition-204",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.opportunity_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.seller_group_id",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.seller_group_id",
            "value": "seller-group-14",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.seller_group_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.channel_id",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.channel_id",
            "value": "search-nonbrand",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.channel_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.event_at_ms",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.event_at_ms",
            "value": 1775210400000,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.event_at_ms"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.evidence_rank",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.evidence_rank",
            "value": 0,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.evidence_rank"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.marketing_touch",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.marketing_touch",
            "value": true,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.marketing_touch"
              }
            ]
          },
          {
            "claimId": "click-brand.property_id",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.property_id",
            "value": "property-104",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.property_id"
              }
            ]
          },
          {
            "claimId": "click-brand.opportunity_id",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.opportunity_id",
            "value": "acquisition-204",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.opportunity_id"
              }
            ]
          },
          {
            "claimId": "click-brand.seller_group_id",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.seller_group_id",
            "value": "seller-group-14",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.seller_group_id"
              }
            ]
          },
          {
            "claimId": "click-brand.channel_id",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.channel_id",
            "value": "search-brand",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.channel_id"
              }
            ]
          },
          {
            "claimId": "click-brand.event_at_ms",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.event_at_ms",
            "value": 1775646000000,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.event_at_ms"
              }
            ]
          },
          {
            "claimId": "click-brand.evidence_rank",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.evidence_rank",
            "value": 0,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.evidence_rank"
              }
            ]
          },
          {
            "claimId": "click-brand.marketing_touch",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.marketing_touch",
            "value": true,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.marketing_touch"
              }
            ]
          }
        ]
      },
      "arguments": {
        "property": "property-104",
        "opportunity": "acquisition-204",
        "sellerGroup": "seller-group-14",
        "windowStart": 1772323200000,
        "qualificationAt": 1775746800000,
        "admittedRank": 0
      },
      "receipt": {
        "resultVersion": "t2k.graph-result.v1",
        "status": "complete",
        "value": [
          {
            "touchId": "click-brand",
            "channelId": "search-brand",
            "eventAtMs": 1775646000000,
            "evidenceRank": 0
          },
          {
            "touchId": "click-nonbrand",
            "channelId": "search-nonbrand",
            "eventAtMs": 1775210400000,
            "evidenceRank": 0
          }
        ],
        "authorization": "not_authorized",
        "binding": {
          "runtimeVersion": "t2k.graph-runtime.v1",
          "functionHash": "c0aa7b713a989a49764860e270b776fcbd76416e07891e48a43920029a6aa40d",
          "ontologyResolutionHash": "c1f42aba94b41cc81e2ba87abe71a6263a91a15226cc24ee279c2183f576533f",
          "graphKey": "demo.cash-homebuyer",
          "asOf": "2026-06-15T23:59:59.000Z",
          "snapshotHash": "8614b18e51d70dfc8c55b9f4989358baf3b75ba545043f35d1ca34aab74403ae",
          "argumentsHash": "42e0e7d41d126edcc85e8694a0a6c610ab82f2484d117738872465ddbc3c08ac"
        },
        "evidence": [
          {
            "claimId": "click-brand.channel_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.channel_id"
              }
            ]
          },
          {
            "claimId": "click-brand.event_at_ms",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.event_at_ms"
              }
            ]
          },
          {
            "claimId": "click-brand.evidence_rank",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.evidence_rank"
              }
            ]
          },
          {
            "claimId": "click-brand.marketing_touch",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.marketing_touch"
              }
            ]
          },
          {
            "claimId": "click-brand.opportunity_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.opportunity_id"
              }
            ]
          },
          {
            "claimId": "click-brand.property_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.property_id"
              }
            ]
          },
          {
            "claimId": "click-brand.seller_group_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.seller_group_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.channel_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.channel_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.event_at_ms",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.event_at_ms"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.evidence_rank",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.evidence_rank"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.marketing_touch",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.marketing_touch"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.opportunity_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.opportunity_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.property_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.property_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.seller_group_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.seller_group_id"
              }
            ]
          }
        ],
        "supportingClaimIds": [
          "click-brand.channel_id",
          "click-brand.event_at_ms",
          "click-brand.evidence_rank",
          "click-brand.marketing_touch",
          "click-brand.opportunity_id",
          "click-brand.property_id",
          "click-brand.seller_group_id",
          "click-nonbrand.channel_id",
          "click-nonbrand.event_at_ms",
          "click-nonbrand.evidence_rank",
          "click-nonbrand.marketing_touch",
          "click-nonbrand.opportunity_id",
          "click-nonbrand.property_id",
          "click-nonbrand.seller_group_id"
        ],
        "derivations": [
          {
            "rowHash": "694a95e1c5a20b2c4181a07122a2a687fc67128c10a258b2430fa33c69ae9712",
            "claimIds": [
              "click-brand.channel_id",
              "click-brand.event_at_ms",
              "click-brand.evidence_rank",
              "click-brand.marketing_touch",
              "click-brand.opportunity_id",
              "click-brand.property_id",
              "click-brand.seller_group_id"
            ]
          },
          {
            "rowHash": "8a86502664d35468a58d6eb7e6e5c9be4dfb70904e624e59abad3daa6bd71e31",
            "claimIds": [
              "click-nonbrand.channel_id",
              "click-nonbrand.event_at_ms",
              "click-nonbrand.evidence_rank",
              "click-nonbrand.marketing_touch",
              "click-nonbrand.opportunity_id",
              "click-nonbrand.property_id",
              "click-nonbrand.seller_group_id"
            ]
          }
        ],
        "exclusions": [],
        "issues": [],
        "trace": [
          {
            "stepId": "touches",
            "operator": "lookup",
            "inputRows": 0,
            "outputRows": 2,
            "claimIds": [],
            "outputHash": "b5e54beeeb9e33347b6c6703bc8db26cc46e26ee22225bf368b569bf7d8f21c2"
          },
          {
            "stepId": "eligible",
            "operator": "filter",
            "inputRows": 2,
            "outputRows": 2,
            "claimIds": [
              "click-brand.event_at_ms",
              "click-brand.evidence_rank",
              "click-brand.marketing_touch",
              "click-brand.opportunity_id",
              "click-brand.property_id",
              "click-brand.seller_group_id",
              "click-nonbrand.event_at_ms",
              "click-nonbrand.evidence_rank",
              "click-nonbrand.marketing_touch",
              "click-nonbrand.opportunity_id",
              "click-nonbrand.property_id",
              "click-nonbrand.seller_group_id"
            ],
            "outputHash": "8864bff38933853cc1e817ba21ea80f93b0b754a138347c03d066fddef7ec24b"
          },
          {
            "stepId": "rows",
            "operator": "project",
            "inputRows": 2,
            "outputRows": 2,
            "claimIds": [
              "click-brand.channel_id",
              "click-brand.event_at_ms",
              "click-brand.evidence_rank",
              "click-nonbrand.channel_id",
              "click-nonbrand.event_at_ms",
              "click-nonbrand.evidence_rank"
            ],
            "outputHash": "078dbc75a2ac1b1ea6e98b028bdb1c2655ebf9eac5681b4b98c9e64ac4242bac"
          }
        ],
        "work": 87,
        "resultHash": "af68bdca86f0c3b18dd21c7273bee72ce5087dafd94f15466f5c99eacb111798"
      }
    },
    "missing-costs|observed|resale": {
      "graph": {
        "snapshotVersion": "t2k.reasoning-graph.v1",
        "graphKey": "demo.cash-homebuyer",
        "asOf": "2026-09-15T23:59:59Z",
        "ontologyResolutionHash": "c1f42aba94b41cc81e2ba87abe71a6263a91a15226cc24ee279c2183f576533f",
        "coverage": "complete",
        "entities": [
          {
            "entityId": "click-nonbrand",
            "typeRef": "demo.cash-homebuyer:touchpoint"
          },
          {
            "entityId": "click-brand",
            "typeRef": "demo.cash-homebuyer:touchpoint"
          }
        ],
        "claims": [
          {
            "claimId": "click-nonbrand.property_id",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.property_id",
            "value": "property-104",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.property_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.opportunity_id",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.opportunity_id",
            "value": "acquisition-204",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.opportunity_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.seller_group_id",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.seller_group_id",
            "value": "seller-group-14",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.seller_group_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.channel_id",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.channel_id",
            "value": "search-nonbrand",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.channel_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.event_at_ms",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.event_at_ms",
            "value": 1775210400000,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.event_at_ms"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.evidence_rank",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.evidence_rank",
            "value": 0,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.evidence_rank"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.marketing_touch",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.marketing_touch",
            "value": true,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.marketing_touch"
              }
            ]
          },
          {
            "claimId": "click-brand.property_id",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.property_id",
            "value": "property-104",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.property_id"
              }
            ]
          },
          {
            "claimId": "click-brand.opportunity_id",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.opportunity_id",
            "value": "acquisition-204",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.opportunity_id"
              }
            ]
          },
          {
            "claimId": "click-brand.seller_group_id",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.seller_group_id",
            "value": "seller-group-14",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.seller_group_id"
              }
            ]
          },
          {
            "claimId": "click-brand.channel_id",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.channel_id",
            "value": "search-brand",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.channel_id"
              }
            ]
          },
          {
            "claimId": "click-brand.event_at_ms",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.event_at_ms",
            "value": 1775646000000,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.event_at_ms"
              }
            ]
          },
          {
            "claimId": "click-brand.evidence_rank",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.evidence_rank",
            "value": 0,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.evidence_rank"
              }
            ]
          },
          {
            "claimId": "click-brand.marketing_touch",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.marketing_touch",
            "value": true,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.marketing_touch"
              }
            ]
          }
        ]
      },
      "arguments": {
        "property": "property-104",
        "opportunity": "acquisition-204",
        "sellerGroup": "seller-group-14",
        "windowStart": 1772323200000,
        "qualificationAt": 1775746800000,
        "admittedRank": 0
      },
      "receipt": {
        "resultVersion": "t2k.graph-result.v1",
        "status": "complete",
        "value": [
          {
            "touchId": "click-brand",
            "channelId": "search-brand",
            "eventAtMs": 1775646000000,
            "evidenceRank": 0
          },
          {
            "touchId": "click-nonbrand",
            "channelId": "search-nonbrand",
            "eventAtMs": 1775210400000,
            "evidenceRank": 0
          }
        ],
        "authorization": "not_authorized",
        "binding": {
          "runtimeVersion": "t2k.graph-runtime.v1",
          "functionHash": "c0aa7b713a989a49764860e270b776fcbd76416e07891e48a43920029a6aa40d",
          "ontologyResolutionHash": "c1f42aba94b41cc81e2ba87abe71a6263a91a15226cc24ee279c2183f576533f",
          "graphKey": "demo.cash-homebuyer",
          "asOf": "2026-09-15T23:59:59.000Z",
          "snapshotHash": "1812bf10a3af3876d044992b2c96a4b9d6abfe5b128ffff513334ce269884dc8",
          "argumentsHash": "42e0e7d41d126edcc85e8694a0a6c610ab82f2484d117738872465ddbc3c08ac"
        },
        "evidence": [
          {
            "claimId": "click-brand.channel_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.channel_id"
              }
            ]
          },
          {
            "claimId": "click-brand.event_at_ms",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.event_at_ms"
              }
            ]
          },
          {
            "claimId": "click-brand.evidence_rank",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.evidence_rank"
              }
            ]
          },
          {
            "claimId": "click-brand.marketing_touch",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.marketing_touch"
              }
            ]
          },
          {
            "claimId": "click-brand.opportunity_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.opportunity_id"
              }
            ]
          },
          {
            "claimId": "click-brand.property_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.property_id"
              }
            ]
          },
          {
            "claimId": "click-brand.seller_group_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.seller_group_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.channel_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.channel_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.event_at_ms",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.event_at_ms"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.evidence_rank",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.evidence_rank"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.marketing_touch",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.marketing_touch"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.opportunity_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.opportunity_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.property_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.property_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.seller_group_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.seller_group_id"
              }
            ]
          }
        ],
        "supportingClaimIds": [
          "click-brand.channel_id",
          "click-brand.event_at_ms",
          "click-brand.evidence_rank",
          "click-brand.marketing_touch",
          "click-brand.opportunity_id",
          "click-brand.property_id",
          "click-brand.seller_group_id",
          "click-nonbrand.channel_id",
          "click-nonbrand.event_at_ms",
          "click-nonbrand.evidence_rank",
          "click-nonbrand.marketing_touch",
          "click-nonbrand.opportunity_id",
          "click-nonbrand.property_id",
          "click-nonbrand.seller_group_id"
        ],
        "derivations": [
          {
            "rowHash": "694a95e1c5a20b2c4181a07122a2a687fc67128c10a258b2430fa33c69ae9712",
            "claimIds": [
              "click-brand.channel_id",
              "click-brand.event_at_ms",
              "click-brand.evidence_rank",
              "click-brand.marketing_touch",
              "click-brand.opportunity_id",
              "click-brand.property_id",
              "click-brand.seller_group_id"
            ]
          },
          {
            "rowHash": "8a86502664d35468a58d6eb7e6e5c9be4dfb70904e624e59abad3daa6bd71e31",
            "claimIds": [
              "click-nonbrand.channel_id",
              "click-nonbrand.event_at_ms",
              "click-nonbrand.evidence_rank",
              "click-nonbrand.marketing_touch",
              "click-nonbrand.opportunity_id",
              "click-nonbrand.property_id",
              "click-nonbrand.seller_group_id"
            ]
          }
        ],
        "exclusions": [],
        "issues": [],
        "trace": [
          {
            "stepId": "touches",
            "operator": "lookup",
            "inputRows": 0,
            "outputRows": 2,
            "claimIds": [],
            "outputHash": "b5e54beeeb9e33347b6c6703bc8db26cc46e26ee22225bf368b569bf7d8f21c2"
          },
          {
            "stepId": "eligible",
            "operator": "filter",
            "inputRows": 2,
            "outputRows": 2,
            "claimIds": [
              "click-brand.event_at_ms",
              "click-brand.evidence_rank",
              "click-brand.marketing_touch",
              "click-brand.opportunity_id",
              "click-brand.property_id",
              "click-brand.seller_group_id",
              "click-nonbrand.event_at_ms",
              "click-nonbrand.evidence_rank",
              "click-nonbrand.marketing_touch",
              "click-nonbrand.opportunity_id",
              "click-nonbrand.property_id",
              "click-nonbrand.seller_group_id"
            ],
            "outputHash": "8864bff38933853cc1e817ba21ea80f93b0b754a138347c03d066fddef7ec24b"
          },
          {
            "stepId": "rows",
            "operator": "project",
            "inputRows": 2,
            "outputRows": 2,
            "claimIds": [
              "click-brand.channel_id",
              "click-brand.event_at_ms",
              "click-brand.evidence_rank",
              "click-nonbrand.channel_id",
              "click-nonbrand.event_at_ms",
              "click-nonbrand.evidence_rank"
            ],
            "outputHash": "078dbc75a2ac1b1ea6e98b028bdb1c2655ebf9eac5681b4b98c9e64ac4242bac"
          }
        ],
        "work": 87,
        "resultHash": "44d4b2ab8d7210697eec584a39463625ba5208270192afda2c234c9dc57afdd8"
      }
    },
    "missing-costs|reported|contract": {
      "graph": {
        "snapshotVersion": "t2k.reasoning-graph.v1",
        "graphKey": "demo.cash-homebuyer",
        "asOf": "2026-05-15T23:59:59Z",
        "ontologyResolutionHash": "c1f42aba94b41cc81e2ba87abe71a6263a91a15226cc24ee279c2183f576533f",
        "coverage": "complete",
        "entities": [
          {
            "entityId": "click-nonbrand",
            "typeRef": "demo.cash-homebuyer:touchpoint"
          },
          {
            "entityId": "click-brand",
            "typeRef": "demo.cash-homebuyer:touchpoint"
          }
        ],
        "claims": [
          {
            "claimId": "click-nonbrand.property_id",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.property_id",
            "value": "property-104",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.property_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.opportunity_id",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.opportunity_id",
            "value": "acquisition-204",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.opportunity_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.seller_group_id",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.seller_group_id",
            "value": "seller-group-14",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.seller_group_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.channel_id",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.channel_id",
            "value": "search-nonbrand",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.channel_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.event_at_ms",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.event_at_ms",
            "value": 1775210400000,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.event_at_ms"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.evidence_rank",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.evidence_rank",
            "value": 0,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.evidence_rank"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.marketing_touch",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.marketing_touch",
            "value": true,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.marketing_touch"
              }
            ]
          },
          {
            "claimId": "click-brand.property_id",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.property_id",
            "value": "property-104",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.property_id"
              }
            ]
          },
          {
            "claimId": "click-brand.opportunity_id",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.opportunity_id",
            "value": "acquisition-204",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.opportunity_id"
              }
            ]
          },
          {
            "claimId": "click-brand.seller_group_id",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.seller_group_id",
            "value": "seller-group-14",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.seller_group_id"
              }
            ]
          },
          {
            "claimId": "click-brand.channel_id",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.channel_id",
            "value": "search-brand",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.channel_id"
              }
            ]
          },
          {
            "claimId": "click-brand.event_at_ms",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.event_at_ms",
            "value": 1775646000000,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.event_at_ms"
              }
            ]
          },
          {
            "claimId": "click-brand.evidence_rank",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.evidence_rank",
            "value": 0,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.evidence_rank"
              }
            ]
          },
          {
            "claimId": "click-brand.marketing_touch",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.marketing_touch",
            "value": true,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.marketing_touch"
              }
            ]
          }
        ]
      },
      "arguments": {
        "property": "property-104",
        "opportunity": "acquisition-204",
        "sellerGroup": "seller-group-14",
        "windowStart": 1772323200000,
        "qualificationAt": 1775746800000,
        "admittedRank": 1
      },
      "receipt": {
        "resultVersion": "t2k.graph-result.v1",
        "status": "complete",
        "value": [
          {
            "touchId": "click-brand",
            "channelId": "search-brand",
            "eventAtMs": 1775646000000,
            "evidenceRank": 0
          },
          {
            "touchId": "click-nonbrand",
            "channelId": "search-nonbrand",
            "eventAtMs": 1775210400000,
            "evidenceRank": 0
          }
        ],
        "authorization": "not_authorized",
        "binding": {
          "runtimeVersion": "t2k.graph-runtime.v1",
          "functionHash": "c0aa7b713a989a49764860e270b776fcbd76416e07891e48a43920029a6aa40d",
          "ontologyResolutionHash": "c1f42aba94b41cc81e2ba87abe71a6263a91a15226cc24ee279c2183f576533f",
          "graphKey": "demo.cash-homebuyer",
          "asOf": "2026-05-15T23:59:59.000Z",
          "snapshotHash": "ce0d1ea1084615732b662e32ce6b69ae77ea2a75405f6d796be27a207e8b6267",
          "argumentsHash": "cd8690f832630034ecce3c948890d1e8f4ac84aebf4d3b80bcff6e7dcae3c8ab"
        },
        "evidence": [
          {
            "claimId": "click-brand.channel_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.channel_id"
              }
            ]
          },
          {
            "claimId": "click-brand.event_at_ms",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.event_at_ms"
              }
            ]
          },
          {
            "claimId": "click-brand.evidence_rank",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.evidence_rank"
              }
            ]
          },
          {
            "claimId": "click-brand.marketing_touch",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.marketing_touch"
              }
            ]
          },
          {
            "claimId": "click-brand.opportunity_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.opportunity_id"
              }
            ]
          },
          {
            "claimId": "click-brand.property_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.property_id"
              }
            ]
          },
          {
            "claimId": "click-brand.seller_group_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.seller_group_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.channel_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.channel_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.event_at_ms",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.event_at_ms"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.evidence_rank",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.evidence_rank"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.marketing_touch",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.marketing_touch"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.opportunity_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.opportunity_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.property_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.property_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.seller_group_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.seller_group_id"
              }
            ]
          }
        ],
        "supportingClaimIds": [
          "click-brand.channel_id",
          "click-brand.event_at_ms",
          "click-brand.evidence_rank",
          "click-brand.marketing_touch",
          "click-brand.opportunity_id",
          "click-brand.property_id",
          "click-brand.seller_group_id",
          "click-nonbrand.channel_id",
          "click-nonbrand.event_at_ms",
          "click-nonbrand.evidence_rank",
          "click-nonbrand.marketing_touch",
          "click-nonbrand.opportunity_id",
          "click-nonbrand.property_id",
          "click-nonbrand.seller_group_id"
        ],
        "derivations": [
          {
            "rowHash": "694a95e1c5a20b2c4181a07122a2a687fc67128c10a258b2430fa33c69ae9712",
            "claimIds": [
              "click-brand.channel_id",
              "click-brand.event_at_ms",
              "click-brand.evidence_rank",
              "click-brand.marketing_touch",
              "click-brand.opportunity_id",
              "click-brand.property_id",
              "click-brand.seller_group_id"
            ]
          },
          {
            "rowHash": "8a86502664d35468a58d6eb7e6e5c9be4dfb70904e624e59abad3daa6bd71e31",
            "claimIds": [
              "click-nonbrand.channel_id",
              "click-nonbrand.event_at_ms",
              "click-nonbrand.evidence_rank",
              "click-nonbrand.marketing_touch",
              "click-nonbrand.opportunity_id",
              "click-nonbrand.property_id",
              "click-nonbrand.seller_group_id"
            ]
          }
        ],
        "exclusions": [],
        "issues": [],
        "trace": [
          {
            "stepId": "touches",
            "operator": "lookup",
            "inputRows": 0,
            "outputRows": 2,
            "claimIds": [],
            "outputHash": "b5e54beeeb9e33347b6c6703bc8db26cc46e26ee22225bf368b569bf7d8f21c2"
          },
          {
            "stepId": "eligible",
            "operator": "filter",
            "inputRows": 2,
            "outputRows": 2,
            "claimIds": [
              "click-brand.event_at_ms",
              "click-brand.evidence_rank",
              "click-brand.marketing_touch",
              "click-brand.opportunity_id",
              "click-brand.property_id",
              "click-brand.seller_group_id",
              "click-nonbrand.event_at_ms",
              "click-nonbrand.evidence_rank",
              "click-nonbrand.marketing_touch",
              "click-nonbrand.opportunity_id",
              "click-nonbrand.property_id",
              "click-nonbrand.seller_group_id"
            ],
            "outputHash": "8864bff38933853cc1e817ba21ea80f93b0b754a138347c03d066fddef7ec24b"
          },
          {
            "stepId": "rows",
            "operator": "project",
            "inputRows": 2,
            "outputRows": 2,
            "claimIds": [
              "click-brand.channel_id",
              "click-brand.event_at_ms",
              "click-brand.evidence_rank",
              "click-nonbrand.channel_id",
              "click-nonbrand.event_at_ms",
              "click-nonbrand.evidence_rank"
            ],
            "outputHash": "078dbc75a2ac1b1ea6e98b028bdb1c2655ebf9eac5681b4b98c9e64ac4242bac"
          }
        ],
        "work": 87,
        "resultHash": "b983200dfc08bf82074c9ac66084fd86f7510dc80fc4faf80802c24dc44512c9"
      }
    },
    "missing-costs|reported|acquired": {
      "graph": {
        "snapshotVersion": "t2k.reasoning-graph.v1",
        "graphKey": "demo.cash-homebuyer",
        "asOf": "2026-06-15T23:59:59Z",
        "ontologyResolutionHash": "c1f42aba94b41cc81e2ba87abe71a6263a91a15226cc24ee279c2183f576533f",
        "coverage": "complete",
        "entities": [
          {
            "entityId": "click-nonbrand",
            "typeRef": "demo.cash-homebuyer:touchpoint"
          },
          {
            "entityId": "click-brand",
            "typeRef": "demo.cash-homebuyer:touchpoint"
          }
        ],
        "claims": [
          {
            "claimId": "click-nonbrand.property_id",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.property_id",
            "value": "property-104",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.property_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.opportunity_id",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.opportunity_id",
            "value": "acquisition-204",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.opportunity_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.seller_group_id",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.seller_group_id",
            "value": "seller-group-14",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.seller_group_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.channel_id",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.channel_id",
            "value": "search-nonbrand",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.channel_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.event_at_ms",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.event_at_ms",
            "value": 1775210400000,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.event_at_ms"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.evidence_rank",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.evidence_rank",
            "value": 0,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.evidence_rank"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.marketing_touch",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.marketing_touch",
            "value": true,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.marketing_touch"
              }
            ]
          },
          {
            "claimId": "click-brand.property_id",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.property_id",
            "value": "property-104",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.property_id"
              }
            ]
          },
          {
            "claimId": "click-brand.opportunity_id",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.opportunity_id",
            "value": "acquisition-204",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.opportunity_id"
              }
            ]
          },
          {
            "claimId": "click-brand.seller_group_id",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.seller_group_id",
            "value": "seller-group-14",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.seller_group_id"
              }
            ]
          },
          {
            "claimId": "click-brand.channel_id",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.channel_id",
            "value": "search-brand",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.channel_id"
              }
            ]
          },
          {
            "claimId": "click-brand.event_at_ms",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.event_at_ms",
            "value": 1775646000000,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.event_at_ms"
              }
            ]
          },
          {
            "claimId": "click-brand.evidence_rank",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.evidence_rank",
            "value": 0,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.evidence_rank"
              }
            ]
          },
          {
            "claimId": "click-brand.marketing_touch",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.marketing_touch",
            "value": true,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.marketing_touch"
              }
            ]
          }
        ]
      },
      "arguments": {
        "property": "property-104",
        "opportunity": "acquisition-204",
        "sellerGroup": "seller-group-14",
        "windowStart": 1772323200000,
        "qualificationAt": 1775746800000,
        "admittedRank": 1
      },
      "receipt": {
        "resultVersion": "t2k.graph-result.v1",
        "status": "complete",
        "value": [
          {
            "touchId": "click-brand",
            "channelId": "search-brand",
            "eventAtMs": 1775646000000,
            "evidenceRank": 0
          },
          {
            "touchId": "click-nonbrand",
            "channelId": "search-nonbrand",
            "eventAtMs": 1775210400000,
            "evidenceRank": 0
          }
        ],
        "authorization": "not_authorized",
        "binding": {
          "runtimeVersion": "t2k.graph-runtime.v1",
          "functionHash": "c0aa7b713a989a49764860e270b776fcbd76416e07891e48a43920029a6aa40d",
          "ontologyResolutionHash": "c1f42aba94b41cc81e2ba87abe71a6263a91a15226cc24ee279c2183f576533f",
          "graphKey": "demo.cash-homebuyer",
          "asOf": "2026-06-15T23:59:59.000Z",
          "snapshotHash": "8614b18e51d70dfc8c55b9f4989358baf3b75ba545043f35d1ca34aab74403ae",
          "argumentsHash": "cd8690f832630034ecce3c948890d1e8f4ac84aebf4d3b80bcff6e7dcae3c8ab"
        },
        "evidence": [
          {
            "claimId": "click-brand.channel_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.channel_id"
              }
            ]
          },
          {
            "claimId": "click-brand.event_at_ms",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.event_at_ms"
              }
            ]
          },
          {
            "claimId": "click-brand.evidence_rank",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.evidence_rank"
              }
            ]
          },
          {
            "claimId": "click-brand.marketing_touch",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.marketing_touch"
              }
            ]
          },
          {
            "claimId": "click-brand.opportunity_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.opportunity_id"
              }
            ]
          },
          {
            "claimId": "click-brand.property_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.property_id"
              }
            ]
          },
          {
            "claimId": "click-brand.seller_group_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.seller_group_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.channel_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.channel_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.event_at_ms",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.event_at_ms"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.evidence_rank",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.evidence_rank"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.marketing_touch",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.marketing_touch"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.opportunity_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.opportunity_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.property_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.property_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.seller_group_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.seller_group_id"
              }
            ]
          }
        ],
        "supportingClaimIds": [
          "click-brand.channel_id",
          "click-brand.event_at_ms",
          "click-brand.evidence_rank",
          "click-brand.marketing_touch",
          "click-brand.opportunity_id",
          "click-brand.property_id",
          "click-brand.seller_group_id",
          "click-nonbrand.channel_id",
          "click-nonbrand.event_at_ms",
          "click-nonbrand.evidence_rank",
          "click-nonbrand.marketing_touch",
          "click-nonbrand.opportunity_id",
          "click-nonbrand.property_id",
          "click-nonbrand.seller_group_id"
        ],
        "derivations": [
          {
            "rowHash": "694a95e1c5a20b2c4181a07122a2a687fc67128c10a258b2430fa33c69ae9712",
            "claimIds": [
              "click-brand.channel_id",
              "click-brand.event_at_ms",
              "click-brand.evidence_rank",
              "click-brand.marketing_touch",
              "click-brand.opportunity_id",
              "click-brand.property_id",
              "click-brand.seller_group_id"
            ]
          },
          {
            "rowHash": "8a86502664d35468a58d6eb7e6e5c9be4dfb70904e624e59abad3daa6bd71e31",
            "claimIds": [
              "click-nonbrand.channel_id",
              "click-nonbrand.event_at_ms",
              "click-nonbrand.evidence_rank",
              "click-nonbrand.marketing_touch",
              "click-nonbrand.opportunity_id",
              "click-nonbrand.property_id",
              "click-nonbrand.seller_group_id"
            ]
          }
        ],
        "exclusions": [],
        "issues": [],
        "trace": [
          {
            "stepId": "touches",
            "operator": "lookup",
            "inputRows": 0,
            "outputRows": 2,
            "claimIds": [],
            "outputHash": "b5e54beeeb9e33347b6c6703bc8db26cc46e26ee22225bf368b569bf7d8f21c2"
          },
          {
            "stepId": "eligible",
            "operator": "filter",
            "inputRows": 2,
            "outputRows": 2,
            "claimIds": [
              "click-brand.event_at_ms",
              "click-brand.evidence_rank",
              "click-brand.marketing_touch",
              "click-brand.opportunity_id",
              "click-brand.property_id",
              "click-brand.seller_group_id",
              "click-nonbrand.event_at_ms",
              "click-nonbrand.evidence_rank",
              "click-nonbrand.marketing_touch",
              "click-nonbrand.opportunity_id",
              "click-nonbrand.property_id",
              "click-nonbrand.seller_group_id"
            ],
            "outputHash": "8864bff38933853cc1e817ba21ea80f93b0b754a138347c03d066fddef7ec24b"
          },
          {
            "stepId": "rows",
            "operator": "project",
            "inputRows": 2,
            "outputRows": 2,
            "claimIds": [
              "click-brand.channel_id",
              "click-brand.event_at_ms",
              "click-brand.evidence_rank",
              "click-nonbrand.channel_id",
              "click-nonbrand.event_at_ms",
              "click-nonbrand.evidence_rank"
            ],
            "outputHash": "078dbc75a2ac1b1ea6e98b028bdb1c2655ebf9eac5681b4b98c9e64ac4242bac"
          }
        ],
        "work": 87,
        "resultHash": "c88fa17158addb166c0645767874f7d9130c2a7a3f76308ab7586b0a4ac23dc7"
      }
    },
    "missing-costs|reported|resale": {
      "graph": {
        "snapshotVersion": "t2k.reasoning-graph.v1",
        "graphKey": "demo.cash-homebuyer",
        "asOf": "2026-09-15T23:59:59Z",
        "ontologyResolutionHash": "c1f42aba94b41cc81e2ba87abe71a6263a91a15226cc24ee279c2183f576533f",
        "coverage": "complete",
        "entities": [
          {
            "entityId": "click-nonbrand",
            "typeRef": "demo.cash-homebuyer:touchpoint"
          },
          {
            "entityId": "click-brand",
            "typeRef": "demo.cash-homebuyer:touchpoint"
          }
        ],
        "claims": [
          {
            "claimId": "click-nonbrand.property_id",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.property_id",
            "value": "property-104",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.property_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.opportunity_id",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.opportunity_id",
            "value": "acquisition-204",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.opportunity_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.seller_group_id",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.seller_group_id",
            "value": "seller-group-14",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.seller_group_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.channel_id",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.channel_id",
            "value": "search-nonbrand",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.channel_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.event_at_ms",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.event_at_ms",
            "value": 1775210400000,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.event_at_ms"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.evidence_rank",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.evidence_rank",
            "value": 0,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.evidence_rank"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.marketing_touch",
            "revision": "1",
            "subjectId": "click-nonbrand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.marketing_touch",
            "value": true,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-03T10:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.marketing_touch"
              }
            ]
          },
          {
            "claimId": "click-brand.property_id",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.property_id",
            "value": "property-104",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.property_id"
              }
            ]
          },
          {
            "claimId": "click-brand.opportunity_id",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.opportunity_id",
            "value": "acquisition-204",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.opportunity_id"
              }
            ]
          },
          {
            "claimId": "click-brand.seller_group_id",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.seller_group_id",
            "value": "seller-group-14",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.seller_group_id"
              }
            ]
          },
          {
            "claimId": "click-brand.channel_id",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.channel_id",
            "value": "search-brand",
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.channel_id"
              }
            ]
          },
          {
            "claimId": "click-brand.event_at_ms",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.event_at_ms",
            "value": 1775646000000,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.event_at_ms"
              }
            ]
          },
          {
            "claimId": "click-brand.evidence_rank",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.evidence_rank",
            "value": 0,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.evidence_rank"
              }
            ]
          },
          {
            "claimId": "click-brand.marketing_touch",
            "revision": "1",
            "subjectId": "click-brand",
            "predicateRef": "demo.cash-homebuyer:touchpoint.marketing_touch",
            "value": true,
            "status": "accepted",
            "polarity": "positive",
            "observedAt": "2026-04-08T11:00:00Z",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.marketing_touch"
              }
            ]
          }
        ]
      },
      "arguments": {
        "property": "property-104",
        "opportunity": "acquisition-204",
        "sellerGroup": "seller-group-14",
        "windowStart": 1772323200000,
        "qualificationAt": 1775746800000,
        "admittedRank": 1
      },
      "receipt": {
        "resultVersion": "t2k.graph-result.v1",
        "status": "complete",
        "value": [
          {
            "touchId": "click-brand",
            "channelId": "search-brand",
            "eventAtMs": 1775646000000,
            "evidenceRank": 0
          },
          {
            "touchId": "click-nonbrand",
            "channelId": "search-nonbrand",
            "eventAtMs": 1775210400000,
            "evidenceRank": 0
          }
        ],
        "authorization": "not_authorized",
        "binding": {
          "runtimeVersion": "t2k.graph-runtime.v1",
          "functionHash": "c0aa7b713a989a49764860e270b776fcbd76416e07891e48a43920029a6aa40d",
          "ontologyResolutionHash": "c1f42aba94b41cc81e2ba87abe71a6263a91a15226cc24ee279c2183f576533f",
          "graphKey": "demo.cash-homebuyer",
          "asOf": "2026-09-15T23:59:59.000Z",
          "snapshotHash": "1812bf10a3af3876d044992b2c96a4b9d6abfe5b128ffff513334ce269884dc8",
          "argumentsHash": "cd8690f832630034ecce3c948890d1e8f4ac84aebf4d3b80bcff6e7dcae3c8ab"
        },
        "evidence": [
          {
            "claimId": "click-brand.channel_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.channel_id"
              }
            ]
          },
          {
            "claimId": "click-brand.event_at_ms",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.event_at_ms"
              }
            ]
          },
          {
            "claimId": "click-brand.evidence_rank",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.evidence_rank"
              }
            ]
          },
          {
            "claimId": "click-brand.marketing_touch",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.marketing_touch"
              }
            ]
          },
          {
            "claimId": "click-brand.opportunity_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.opportunity_id"
              }
            ]
          },
          {
            "claimId": "click-brand.property_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.property_id"
              }
            ]
          },
          {
            "claimId": "click-brand.seller_group_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-brand.seller_group_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.channel_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.channel_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.event_at_ms",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.event_at_ms"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.evidence_rank",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.evidence_rank"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.marketing_touch",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.marketing_touch"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.opportunity_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.opportunity_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.property_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.property_id"
              }
            ]
          },
          {
            "claimId": "click-nonbrand.seller_group_id",
            "revision": "1",
            "status": "accepted",
            "polarity": "positive",
            "evidence": [
              {
                "sourceRef": "synthetic://cash-homebuyer/touch",
                "locator": "click-nonbrand.seller_group_id"
              }
            ]
          }
        ],
        "supportingClaimIds": [
          "click-brand.channel_id",
          "click-brand.event_at_ms",
          "click-brand.evidence_rank",
          "click-brand.marketing_touch",
          "click-brand.opportunity_id",
          "click-brand.property_id",
          "click-brand.seller_group_id",
          "click-nonbrand.channel_id",
          "click-nonbrand.event_at_ms",
          "click-nonbrand.evidence_rank",
          "click-nonbrand.marketing_touch",
          "click-nonbrand.opportunity_id",
          "click-nonbrand.property_id",
          "click-nonbrand.seller_group_id"
        ],
        "derivations": [
          {
            "rowHash": "694a95e1c5a20b2c4181a07122a2a687fc67128c10a258b2430fa33c69ae9712",
            "claimIds": [
              "click-brand.channel_id",
              "click-brand.event_at_ms",
              "click-brand.evidence_rank",
              "click-brand.marketing_touch",
              "click-brand.opportunity_id",
              "click-brand.property_id",
              "click-brand.seller_group_id"
            ]
          },
          {
            "rowHash": "8a86502664d35468a58d6eb7e6e5c9be4dfb70904e624e59abad3daa6bd71e31",
            "claimIds": [
              "click-nonbrand.channel_id",
              "click-nonbrand.event_at_ms",
              "click-nonbrand.evidence_rank",
              "click-nonbrand.marketing_touch",
              "click-nonbrand.opportunity_id",
              "click-nonbrand.property_id",
              "click-nonbrand.seller_group_id"
            ]
          }
        ],
        "exclusions": [],
        "issues": [],
        "trace": [
          {
            "stepId": "touches",
            "operator": "lookup",
            "inputRows": 0,
            "outputRows": 2,
            "claimIds": [],
            "outputHash": "b5e54beeeb9e33347b6c6703bc8db26cc46e26ee22225bf368b569bf7d8f21c2"
          },
          {
            "stepId": "eligible",
            "operator": "filter",
            "inputRows": 2,
            "outputRows": 2,
            "claimIds": [
              "click-brand.event_at_ms",
              "click-brand.evidence_rank",
              "click-brand.marketing_touch",
              "click-brand.opportunity_id",
              "click-brand.property_id",
              "click-brand.seller_group_id",
              "click-nonbrand.event_at_ms",
              "click-nonbrand.evidence_rank",
              "click-nonbrand.marketing_touch",
              "click-nonbrand.opportunity_id",
              "click-nonbrand.property_id",
              "click-nonbrand.seller_group_id"
            ],
            "outputHash": "8864bff38933853cc1e817ba21ea80f93b0b754a138347c03d066fddef7ec24b"
          },
          {
            "stepId": "rows",
            "operator": "project",
            "inputRows": 2,
            "outputRows": 2,
            "claimIds": [
              "click-brand.channel_id",
              "click-brand.event_at_ms",
              "click-brand.evidence_rank",
              "click-nonbrand.channel_id",
              "click-nonbrand.event_at_ms",
              "click-nonbrand.evidence_rank"
            ],
            "outputHash": "078dbc75a2ac1b1ea6e98b028bdb1c2655ebf9eac5681b4b98c9e64ac4242bac"
          }
        ],
        "work": 87,
        "resultHash": "565816838d126cc6cfee981c62bf01fb0947e7451f9b8344ce47b57c7f14d05f"
      }
    }
  },
  "budgetProfiles": [
    {
      "id": "capacity-ready",
      "label": "Capacity available",
      "requestedAcquisitions": 3,
      "availableCapital": 840000,
      "capitalPerAcquisition": 210000,
      "renovationSlots": 4,
      "plannedAssessments": 12,
      "assessmentSlots": 16,
      "capitalSlots": 4,
      "capacity": 4,
      "status": "ready_for_review",
      "reasons": [
        "The stated capital and renovation capacity can accommodate the planning target. This is not a forecast of acquisitions."
      ],
      "authority": "not_authorized",
      "scope": "hypothetical_capacity_check",
      "currency": "USD",
      "assumptions": [
        "The acquisition target and planned assessments are human planning inputs, not marketing forecasts.",
        "Available capital is ring-fenced purchase capital only; renovation, holding and advertising funds require separate review."
      ]
    },
    {
      "id": "capital-limited",
      "label": "Capital limited",
      "requestedAcquisitions": 3,
      "availableCapital": 350000,
      "capitalPerAcquisition": 210000,
      "renovationSlots": 4,
      "plannedAssessments": 12,
      "assessmentSlots": 16,
      "capitalSlots": 1,
      "capacity": 1,
      "status": "constrained",
      "reasons": [
        "Available capital supports 1 purchase slot at the stated reserve per acquisition."
      ],
      "authority": "not_authorized",
      "scope": "hypothetical_capacity_check",
      "currency": "USD",
      "assumptions": [
        "The acquisition target and planned assessments are human planning inputs, not marketing forecasts.",
        "Available capital is ring-fenced purchase capital only; renovation, holding and advertising funds require separate review."
      ]
    },
    {
      "id": "capacity-limited",
      "label": "Operating capacity limited",
      "requestedAcquisitions": 3,
      "availableCapital": 840000,
      "capitalPerAcquisition": 210000,
      "renovationSlots": 1,
      "plannedAssessments": 12,
      "assessmentSlots": 8,
      "capitalSlots": 4,
      "capacity": 1,
      "status": "constrained",
      "reasons": [
        "Only 1 renovation slot is available.",
        "Only 8 assessment slots are available for the 12 planned assessments."
      ],
      "authority": "not_authorized",
      "scope": "hypothetical_capacity_check",
      "currency": "USD",
      "assumptions": [
        "The acquisition target and planned assessments are human planning inputs, not marketing forecasts.",
        "Available capital is ring-fenced purchase capital only; renovation, holding and advertising funds require separate review."
      ]
    }
  ],
  "budgetPlans": [
    {
      "id": "maintain",
      "label": "Keep the current mix",
      "total": 90000,
      "baselineTotal": 90000,
      "period": "One hypothetical month",
      "scope": "Four fictional service areas",
      "authorship": "hand_authored",
      "forecastStatus": "not_computed",
      "currency": "USD",
      "channels": [
        {
          "id": "direct_mail",
          "label": "Direct mail",
          "baseline": 40000,
          "proposed": 40000,
          "minimum": 20000,
          "maximum": 50000
        },
        {
          "id": "paid_search",
          "label": "Paid search",
          "baseline": 32000,
          "proposed": 32000,
          "minimum": 20000,
          "maximum": 50000
        },
        {
          "id": "paid_social",
          "label": "Paid social",
          "baseline": 18000,
          "proposed": 18000,
          "minimum": 10000,
          "maximum": 30000
        }
      ],
      "proposedTotal": 90000,
      "status": "within_bounds",
      "reasons": [
        "The proposed mix preserves total spend and stays within the declared channel bounds. Model suitability and business approval still require review."
      ],
      "authority": "not_authorized"
    },
    {
      "id": "shift",
      "label": "Move $9,000 from mail to search",
      "total": 90000,
      "baselineTotal": 90000,
      "period": "One hypothetical month",
      "scope": "Four fictional service areas",
      "authorship": "hand_authored",
      "forecastStatus": "not_computed",
      "currency": "USD",
      "channels": [
        {
          "id": "direct_mail",
          "label": "Direct mail",
          "baseline": 40000,
          "proposed": 31000,
          "minimum": 20000,
          "maximum": 50000
        },
        {
          "id": "paid_search",
          "label": "Paid search",
          "baseline": 32000,
          "proposed": 41000,
          "minimum": 20000,
          "maximum": 50000
        },
        {
          "id": "paid_social",
          "label": "Paid social",
          "baseline": 18000,
          "proposed": 18000,
          "minimum": 10000,
          "maximum": 30000
        }
      ],
      "proposedTotal": 90000,
      "status": "within_bounds",
      "reasons": [
        "The proposed mix preserves total spend and stays within the declared channel bounds. Model suitability and business approval still require review."
      ],
      "authority": "not_authorized"
    },
    {
      "id": "over-limit",
      "label": "Try a shift beyond the limits",
      "total": 90000,
      "baselineTotal": 90000,
      "period": "One hypothetical month",
      "scope": "Four fictional service areas",
      "authorship": "hand_authored",
      "forecastStatus": "not_computed",
      "currency": "USD",
      "channels": [
        {
          "id": "direct_mail",
          "label": "Direct mail",
          "baseline": 40000,
          "proposed": 10000,
          "minimum": 20000,
          "maximum": 50000
        },
        {
          "id": "paid_search",
          "label": "Paid search",
          "baseline": 32000,
          "proposed": 62000,
          "minimum": 20000,
          "maximum": 50000
        },
        {
          "id": "paid_social",
          "label": "Paid social",
          "baseline": 18000,
          "proposed": 18000,
          "minimum": 10000,
          "maximum": 30000
        }
      ],
      "proposedTotal": 90000,
      "status": "outside_bounds",
      "reasons": [
        "Direct mail falls outside the declared $20,000–$50,000 range.",
        "Paid search falls outside the declared $20,000–$50,000 range."
      ],
      "authority": "not_authorized"
    }
  ]
}
