@empressaio/atom-contract 1.13.0 → 1.14.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,710 @@
1
+ import { z } from "zod";
2
+ import type { AccessPolicy } from "../registration.js";
3
+ import type { AtomTier } from "../conformance/common.js";
4
+ import type { ReasoningChain } from "../reasoning-chain.js";
5
+ import type { ReasoningReadContract } from "../read-contract/reasoning-axes.js";
6
+ import { type CadParcelRollAbsence, type CadRollSourceTier, type ParcelKeyKind, type SiteLayerVerifiedAbsence } from "./common.js";
7
+ /**
8
+ * CAD parcel roll FACT atom — county appraisal roll row or honest absence.
9
+ *
10
+ * Owner fields are gated on `joinPassedOwnerMatchGate`; wrong owner is worse
11
+ * than missing. Cotality is extinguished — writers read county CAD exports only.
12
+ */
13
+ export interface CadParcelRollAtomInstance {
14
+ entityType: "cad-parcel-roll";
15
+ atomDid: string;
16
+ parcelNodeId: string;
17
+ taxYear: number;
18
+ countyFips: string;
19
+ propId: string;
20
+ keyKind: ParcelKeyKind;
21
+ joinPassedOwnerMatchGate: boolean;
22
+ reasoningChain: Extract<ReasoningChain, {
23
+ reasoningKind: "observed";
24
+ }>;
25
+ sourceTier: CadRollSourceTier;
26
+ ownerName?: string;
27
+ ownerMailingAddress?: string;
28
+ situsAddress?: string;
29
+ situsCity?: string;
30
+ situsZip?: string;
31
+ legalDescription?: string;
32
+ exemptionCodes?: ReadonlyArray<string>;
33
+ landValue?: number;
34
+ improvementValue?: number;
35
+ marketValue?: number;
36
+ assessedValue?: number;
37
+ yearBuilt?: number;
38
+ livingAreaSqft?: number;
39
+ landAcres?: string | number;
40
+ propertyUseCode?: string;
41
+ sourceFile?: string;
42
+ absence?: CadParcelRollAbsence;
43
+ verifiedAbsence?: SiteLayerVerifiedAbsence;
44
+ accessPolicy: AccessPolicy;
45
+ sourceCitation: string;
46
+ extractedAt: string;
47
+ asOf?: string;
48
+ sourceVintage?: string;
49
+ verificationStatus: "machine" | "human" | "unsurveyed";
50
+ sourceAdapter: string;
51
+ evaluatedAt: string;
52
+ atomTier: AtomTier;
53
+ readContract?: ReasoningReadContract;
54
+ }
55
+ export declare const CAD_PARCEL_ROLL_SCHEMA: z.ZodEffects<z.ZodObject<{
56
+ atomTier: z.ZodLiteral<AtomTier>;
57
+ readContract: z.ZodOptional<z.ZodReadonly<z.ZodObject<{
58
+ axes: z.ZodReadonly<z.ZodObject<{
59
+ calibratedConfidence: z.ZodReadonly<z.ZodObject<{
60
+ readonly estimate: z.ZodNumber;
61
+ readonly n: z.ZodNumber;
62
+ readonly intervalWidth: z.ZodNumber;
63
+ readonly provenance: z.ZodEnum<["asserted", "backtest", "seed", "live"]>;
64
+ }, "strip", z.ZodTypeAny, {
65
+ estimate: number;
66
+ n: number;
67
+ intervalWidth: number;
68
+ provenance: "asserted" | "backtest" | "seed" | "live";
69
+ }, {
70
+ estimate: number;
71
+ n: number;
72
+ intervalWidth: number;
73
+ provenance: "asserted" | "backtest" | "seed" | "live";
74
+ }>>;
75
+ assertedConfidence: z.ZodReadonly<z.ZodObject<{
76
+ readonly estimate: z.ZodNumber;
77
+ readonly n: z.ZodNumber;
78
+ readonly intervalWidth: z.ZodNumber;
79
+ readonly provenance: z.ZodEnum<["asserted", "backtest", "seed", "live"]>;
80
+ }, "strip", z.ZodTypeAny, {
81
+ estimate: number;
82
+ n: number;
83
+ intervalWidth: number;
84
+ provenance: "asserted" | "backtest" | "seed" | "live";
85
+ }, {
86
+ estimate: number;
87
+ n: number;
88
+ intervalWidth: number;
89
+ provenance: "asserted" | "backtest" | "seed" | "live";
90
+ }>>;
91
+ consequence: z.ZodDiscriminatedUnion<"kind", [z.ZodObject<{
92
+ kind: z.ZodLiteral<"property-risk">;
93
+ stratum: z.ZodEnum<[import("../read-contract/reasoning-axes.js").PropertyRiskStratum, ...import("../read-contract/reasoning-axes.js").PropertyRiskStratum[]]>;
94
+ basis: z.ZodString;
95
+ assertedAt: z.ZodString;
96
+ auditRef: z.ZodOptional<z.ZodString>;
97
+ }, "strip", z.ZodTypeAny, {
98
+ stratum: import("../read-contract/reasoning-axes.js").PropertyRiskStratum;
99
+ assertedAt: string;
100
+ kind: "property-risk";
101
+ basis: string;
102
+ auditRef?: string | undefined;
103
+ }, {
104
+ stratum: import("../read-contract/reasoning-axes.js").PropertyRiskStratum;
105
+ assertedAt: string;
106
+ kind: "property-risk";
107
+ basis: string;
108
+ auditRef?: string | undefined;
109
+ }>, z.ZodObject<{
110
+ kind: z.ZodLiteral<"not-applicable">;
111
+ reason: z.ZodString;
112
+ assertedAt: z.ZodString;
113
+ }, "strip", z.ZodTypeAny, {
114
+ assertedAt: string;
115
+ kind: "not-applicable";
116
+ reason: string;
117
+ }, {
118
+ assertedAt: string;
119
+ kind: "not-applicable";
120
+ reason: string;
121
+ }>]>;
122
+ }, "strip", z.ZodTypeAny, {
123
+ calibratedConfidence: Readonly<{
124
+ estimate: number;
125
+ n: number;
126
+ intervalWidth: number;
127
+ provenance: "asserted" | "backtest" | "seed" | "live";
128
+ }>;
129
+ assertedConfidence: Readonly<{
130
+ estimate: number;
131
+ n: number;
132
+ intervalWidth: number;
133
+ provenance: "asserted" | "backtest" | "seed" | "live";
134
+ }>;
135
+ consequence: {
136
+ stratum: import("../read-contract/reasoning-axes.js").PropertyRiskStratum;
137
+ assertedAt: string;
138
+ kind: "property-risk";
139
+ basis: string;
140
+ auditRef?: string | undefined;
141
+ } | {
142
+ assertedAt: string;
143
+ kind: "not-applicable";
144
+ reason: string;
145
+ };
146
+ }, {
147
+ calibratedConfidence: Readonly<{
148
+ estimate: number;
149
+ n: number;
150
+ intervalWidth: number;
151
+ provenance: "asserted" | "backtest" | "seed" | "live";
152
+ }>;
153
+ assertedConfidence: Readonly<{
154
+ estimate: number;
155
+ n: number;
156
+ intervalWidth: number;
157
+ provenance: "asserted" | "backtest" | "seed" | "live";
158
+ }>;
159
+ consequence: {
160
+ stratum: import("../read-contract/reasoning-axes.js").PropertyRiskStratum;
161
+ assertedAt: string;
162
+ kind: "property-risk";
163
+ basis: string;
164
+ auditRef?: string | undefined;
165
+ } | {
166
+ assertedAt: string;
167
+ kind: "not-applicable";
168
+ reason: string;
169
+ };
170
+ }>>;
171
+ assembledAt: z.ZodString;
172
+ modelAttribution: z.ZodOptional<z.ZodReadonly<z.ZodObject<{
173
+ modelId: z.ZodString;
174
+ modelVersion: z.ZodString;
175
+ promptTemplateVersion: z.ZodString;
176
+ contextTemplateVersion: z.ZodString;
177
+ samplingParams: z.ZodReadonly<z.ZodObject<{
178
+ temperature: z.ZodOptional<z.ZodNumber>;
179
+ topP: z.ZodOptional<z.ZodNumber>;
180
+ maxTokens: z.ZodOptional<z.ZodNumber>;
181
+ seed: z.ZodOptional<z.ZodNumber>;
182
+ }, "strip", z.ZodUnknown, z.objectOutputType<{
183
+ temperature: z.ZodOptional<z.ZodNumber>;
184
+ topP: z.ZodOptional<z.ZodNumber>;
185
+ maxTokens: z.ZodOptional<z.ZodNumber>;
186
+ seed: z.ZodOptional<z.ZodNumber>;
187
+ }, z.ZodUnknown, "strip">, z.objectInputType<{
188
+ temperature: z.ZodOptional<z.ZodNumber>;
189
+ topP: z.ZodOptional<z.ZodNumber>;
190
+ maxTokens: z.ZodOptional<z.ZodNumber>;
191
+ seed: z.ZodOptional<z.ZodNumber>;
192
+ }, z.ZodUnknown, "strip">>>;
193
+ retrievedAtomSetId: z.ZodString;
194
+ }, "strip", z.ZodTypeAny, {
195
+ modelId: string;
196
+ modelVersion: string;
197
+ promptTemplateVersion: string;
198
+ contextTemplateVersion: string;
199
+ samplingParams: Readonly<z.objectOutputType<{
200
+ temperature: z.ZodOptional<z.ZodNumber>;
201
+ topP: z.ZodOptional<z.ZodNumber>;
202
+ maxTokens: z.ZodOptional<z.ZodNumber>;
203
+ seed: z.ZodOptional<z.ZodNumber>;
204
+ }, z.ZodUnknown, "strip">>;
205
+ retrievedAtomSetId: string;
206
+ }, {
207
+ modelId: string;
208
+ modelVersion: string;
209
+ promptTemplateVersion: string;
210
+ contextTemplateVersion: string;
211
+ samplingParams: Readonly<z.objectInputType<{
212
+ temperature: z.ZodOptional<z.ZodNumber>;
213
+ topP: z.ZodOptional<z.ZodNumber>;
214
+ maxTokens: z.ZodOptional<z.ZodNumber>;
215
+ seed: z.ZodOptional<z.ZodNumber>;
216
+ }, z.ZodUnknown, "strip">>;
217
+ retrievedAtomSetId: string;
218
+ }>>>;
219
+ }, "strip", z.ZodTypeAny, {
220
+ axes: Readonly<{
221
+ calibratedConfidence: Readonly<{
222
+ estimate: number;
223
+ n: number;
224
+ intervalWidth: number;
225
+ provenance: "asserted" | "backtest" | "seed" | "live";
226
+ }>;
227
+ assertedConfidence: Readonly<{
228
+ estimate: number;
229
+ n: number;
230
+ intervalWidth: number;
231
+ provenance: "asserted" | "backtest" | "seed" | "live";
232
+ }>;
233
+ consequence: {
234
+ stratum: import("../read-contract/reasoning-axes.js").PropertyRiskStratum;
235
+ assertedAt: string;
236
+ kind: "property-risk";
237
+ basis: string;
238
+ auditRef?: string | undefined;
239
+ } | {
240
+ assertedAt: string;
241
+ kind: "not-applicable";
242
+ reason: string;
243
+ };
244
+ }>;
245
+ assembledAt: string;
246
+ modelAttribution?: Readonly<{
247
+ modelId: string;
248
+ modelVersion: string;
249
+ promptTemplateVersion: string;
250
+ contextTemplateVersion: string;
251
+ samplingParams: Readonly<z.objectOutputType<{
252
+ temperature: z.ZodOptional<z.ZodNumber>;
253
+ topP: z.ZodOptional<z.ZodNumber>;
254
+ maxTokens: z.ZodOptional<z.ZodNumber>;
255
+ seed: z.ZodOptional<z.ZodNumber>;
256
+ }, z.ZodUnknown, "strip">>;
257
+ retrievedAtomSetId: string;
258
+ }> | undefined;
259
+ }, {
260
+ axes: Readonly<{
261
+ calibratedConfidence: Readonly<{
262
+ estimate: number;
263
+ n: number;
264
+ intervalWidth: number;
265
+ provenance: "asserted" | "backtest" | "seed" | "live";
266
+ }>;
267
+ assertedConfidence: Readonly<{
268
+ estimate: number;
269
+ n: number;
270
+ intervalWidth: number;
271
+ provenance: "asserted" | "backtest" | "seed" | "live";
272
+ }>;
273
+ consequence: {
274
+ stratum: import("../read-contract/reasoning-axes.js").PropertyRiskStratum;
275
+ assertedAt: string;
276
+ kind: "property-risk";
277
+ basis: string;
278
+ auditRef?: string | undefined;
279
+ } | {
280
+ assertedAt: string;
281
+ kind: "not-applicable";
282
+ reason: string;
283
+ };
284
+ }>;
285
+ assembledAt: string;
286
+ modelAttribution?: Readonly<{
287
+ modelId: string;
288
+ modelVersion: string;
289
+ promptTemplateVersion: string;
290
+ contextTemplateVersion: string;
291
+ samplingParams: Readonly<z.objectInputType<{
292
+ temperature: z.ZodOptional<z.ZodNumber>;
293
+ topP: z.ZodOptional<z.ZodNumber>;
294
+ maxTokens: z.ZodOptional<z.ZodNumber>;
295
+ seed: z.ZodOptional<z.ZodNumber>;
296
+ }, z.ZodUnknown, "strip">>;
297
+ retrievedAtomSetId: string;
298
+ }> | undefined;
299
+ }>>>;
300
+ sourceVintage: z.ZodOptional<z.ZodString>;
301
+ verificationStatus: z.ZodEnum<["machine", "human", "unsurveyed"]>;
302
+ sourceAdapter: z.ZodString;
303
+ evaluatedAt: z.ZodString;
304
+ sourceCitation: z.ZodString;
305
+ extractedAt: z.ZodString;
306
+ asOf: z.ZodOptional<z.ZodString>;
307
+ entityType: z.ZodLiteral<"cad-parcel-roll">;
308
+ atomDid: z.ZodEffects<z.ZodString, string, string>;
309
+ parcelNodeId: z.ZodEffects<z.ZodString, string, string>;
310
+ taxYear: z.ZodNumber;
311
+ countyFips: z.ZodString;
312
+ propId: z.ZodString;
313
+ keyKind: z.ZodEnum<["prop_id", "geo_id_crosswalk"]>;
314
+ joinPassedOwnerMatchGate: z.ZodBoolean;
315
+ reasoningChain: z.ZodObject<{
316
+ reasoningKind: z.ZodLiteral<"observed">;
317
+ }, "strip", z.ZodTypeAny, {
318
+ reasoningKind: "observed";
319
+ }, {
320
+ reasoningKind: "observed";
321
+ }>;
322
+ sourceTier: z.ZodEnum<["cad-authoritative", "absent"]>;
323
+ ownerName: z.ZodOptional<z.ZodString>;
324
+ ownerMailingAddress: z.ZodOptional<z.ZodString>;
325
+ situsAddress: z.ZodOptional<z.ZodString>;
326
+ situsCity: z.ZodOptional<z.ZodString>;
327
+ situsZip: z.ZodOptional<z.ZodString>;
328
+ legalDescription: z.ZodOptional<z.ZodString>;
329
+ exemptionCodes: z.ZodOptional<z.ZodReadonly<z.ZodArray<z.ZodString, "many">>>;
330
+ landValue: z.ZodOptional<z.ZodNumber>;
331
+ improvementValue: z.ZodOptional<z.ZodNumber>;
332
+ marketValue: z.ZodOptional<z.ZodNumber>;
333
+ assessedValue: z.ZodOptional<z.ZodNumber>;
334
+ yearBuilt: z.ZodOptional<z.ZodNumber>;
335
+ livingAreaSqft: z.ZodOptional<z.ZodNumber>;
336
+ landAcres: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
337
+ propertyUseCode: z.ZodOptional<z.ZodString>;
338
+ sourceFile: z.ZodOptional<z.ZodString>;
339
+ absence: z.ZodOptional<z.ZodObject<{
340
+ kind: z.ZodEnum<["no-cad-row", "join-hold"]>;
341
+ reason: z.ZodString;
342
+ }, "strict", z.ZodTypeAny, {
343
+ kind: "no-cad-row" | "join-hold";
344
+ reason: string;
345
+ }, {
346
+ kind: "no-cad-row" | "join-hold";
347
+ reason: string;
348
+ }>>;
349
+ verifiedAbsence: z.ZodOptional<z.ZodObject<{
350
+ evaluated: z.ZodLiteral<true>;
351
+ provenanceScope: z.ZodArray<z.ZodString, "many">;
352
+ }, "strict", z.ZodTypeAny, {
353
+ evaluated: true;
354
+ provenanceScope: string[];
355
+ }, {
356
+ evaluated: true;
357
+ provenanceScope: string[];
358
+ }>>;
359
+ accessPolicy: z.ZodEnum<["public-free", "public-paid", "platform-internal", "tenant-private", "tenant-shared"]>;
360
+ }, "strip", z.ZodTypeAny, {
361
+ accessPolicy: "public-free" | "public-paid" | "platform-internal" | "tenant-private" | "tenant-shared";
362
+ entityType: "cad-parcel-roll";
363
+ sourceCitation: string;
364
+ extractedAt: string;
365
+ atomDid: string;
366
+ evaluatedAt: string;
367
+ verificationStatus: "machine" | "human" | "unsurveyed";
368
+ sourceAdapter: string;
369
+ countyFips: string;
370
+ propId: string;
371
+ keyKind: "prop_id" | "geo_id_crosswalk";
372
+ parcelNodeId: string;
373
+ reasoningChain: {
374
+ reasoningKind: "observed";
375
+ };
376
+ atomTier: AtomTier;
377
+ sourceTier: "cad-authoritative" | "absent";
378
+ taxYear: number;
379
+ joinPassedOwnerMatchGate: boolean;
380
+ asOf?: string | undefined;
381
+ readContract?: Readonly<{
382
+ axes: Readonly<{
383
+ calibratedConfidence: Readonly<{
384
+ estimate: number;
385
+ n: number;
386
+ intervalWidth: number;
387
+ provenance: "asserted" | "backtest" | "seed" | "live";
388
+ }>;
389
+ assertedConfidence: Readonly<{
390
+ estimate: number;
391
+ n: number;
392
+ intervalWidth: number;
393
+ provenance: "asserted" | "backtest" | "seed" | "live";
394
+ }>;
395
+ consequence: {
396
+ stratum: import("../read-contract/reasoning-axes.js").PropertyRiskStratum;
397
+ assertedAt: string;
398
+ kind: "property-risk";
399
+ basis: string;
400
+ auditRef?: string | undefined;
401
+ } | {
402
+ assertedAt: string;
403
+ kind: "not-applicable";
404
+ reason: string;
405
+ };
406
+ }>;
407
+ assembledAt: string;
408
+ modelAttribution?: Readonly<{
409
+ modelId: string;
410
+ modelVersion: string;
411
+ promptTemplateVersion: string;
412
+ contextTemplateVersion: string;
413
+ samplingParams: Readonly<z.objectOutputType<{
414
+ temperature: z.ZodOptional<z.ZodNumber>;
415
+ topP: z.ZodOptional<z.ZodNumber>;
416
+ maxTokens: z.ZodOptional<z.ZodNumber>;
417
+ seed: z.ZodOptional<z.ZodNumber>;
418
+ }, z.ZodUnknown, "strip">>;
419
+ retrievedAtomSetId: string;
420
+ }> | undefined;
421
+ }> | undefined;
422
+ legalDescription?: string | undefined;
423
+ absence?: {
424
+ kind: "no-cad-row" | "join-hold";
425
+ reason: string;
426
+ } | undefined;
427
+ verifiedAbsence?: {
428
+ evaluated: true;
429
+ provenanceScope: string[];
430
+ } | undefined;
431
+ sourceVintage?: string | undefined;
432
+ ownerName?: string | undefined;
433
+ ownerMailingAddress?: string | undefined;
434
+ situsAddress?: string | undefined;
435
+ situsCity?: string | undefined;
436
+ situsZip?: string | undefined;
437
+ exemptionCodes?: readonly string[] | undefined;
438
+ landValue?: number | undefined;
439
+ improvementValue?: number | undefined;
440
+ marketValue?: number | undefined;
441
+ assessedValue?: number | undefined;
442
+ yearBuilt?: number | undefined;
443
+ livingAreaSqft?: number | undefined;
444
+ landAcres?: string | number | undefined;
445
+ propertyUseCode?: string | undefined;
446
+ sourceFile?: string | undefined;
447
+ }, {
448
+ accessPolicy: "public-free" | "public-paid" | "platform-internal" | "tenant-private" | "tenant-shared";
449
+ entityType: "cad-parcel-roll";
450
+ sourceCitation: string;
451
+ extractedAt: string;
452
+ atomDid: string;
453
+ evaluatedAt: string;
454
+ verificationStatus: "machine" | "human" | "unsurveyed";
455
+ sourceAdapter: string;
456
+ countyFips: string;
457
+ propId: string;
458
+ keyKind: "prop_id" | "geo_id_crosswalk";
459
+ parcelNodeId: string;
460
+ reasoningChain: {
461
+ reasoningKind: "observed";
462
+ };
463
+ atomTier: AtomTier;
464
+ sourceTier: "cad-authoritative" | "absent";
465
+ taxYear: number;
466
+ joinPassedOwnerMatchGate: boolean;
467
+ asOf?: string | undefined;
468
+ readContract?: Readonly<{
469
+ axes: Readonly<{
470
+ calibratedConfidence: Readonly<{
471
+ estimate: number;
472
+ n: number;
473
+ intervalWidth: number;
474
+ provenance: "asserted" | "backtest" | "seed" | "live";
475
+ }>;
476
+ assertedConfidence: Readonly<{
477
+ estimate: number;
478
+ n: number;
479
+ intervalWidth: number;
480
+ provenance: "asserted" | "backtest" | "seed" | "live";
481
+ }>;
482
+ consequence: {
483
+ stratum: import("../read-contract/reasoning-axes.js").PropertyRiskStratum;
484
+ assertedAt: string;
485
+ kind: "property-risk";
486
+ basis: string;
487
+ auditRef?: string | undefined;
488
+ } | {
489
+ assertedAt: string;
490
+ kind: "not-applicable";
491
+ reason: string;
492
+ };
493
+ }>;
494
+ assembledAt: string;
495
+ modelAttribution?: Readonly<{
496
+ modelId: string;
497
+ modelVersion: string;
498
+ promptTemplateVersion: string;
499
+ contextTemplateVersion: string;
500
+ samplingParams: Readonly<z.objectInputType<{
501
+ temperature: z.ZodOptional<z.ZodNumber>;
502
+ topP: z.ZodOptional<z.ZodNumber>;
503
+ maxTokens: z.ZodOptional<z.ZodNumber>;
504
+ seed: z.ZodOptional<z.ZodNumber>;
505
+ }, z.ZodUnknown, "strip">>;
506
+ retrievedAtomSetId: string;
507
+ }> | undefined;
508
+ }> | undefined;
509
+ legalDescription?: string | undefined;
510
+ absence?: {
511
+ kind: "no-cad-row" | "join-hold";
512
+ reason: string;
513
+ } | undefined;
514
+ verifiedAbsence?: {
515
+ evaluated: true;
516
+ provenanceScope: string[];
517
+ } | undefined;
518
+ sourceVintage?: string | undefined;
519
+ ownerName?: string | undefined;
520
+ ownerMailingAddress?: string | undefined;
521
+ situsAddress?: string | undefined;
522
+ situsCity?: string | undefined;
523
+ situsZip?: string | undefined;
524
+ exemptionCodes?: readonly string[] | undefined;
525
+ landValue?: number | undefined;
526
+ improvementValue?: number | undefined;
527
+ marketValue?: number | undefined;
528
+ assessedValue?: number | undefined;
529
+ yearBuilt?: number | undefined;
530
+ livingAreaSqft?: number | undefined;
531
+ landAcres?: string | number | undefined;
532
+ propertyUseCode?: string | undefined;
533
+ sourceFile?: string | undefined;
534
+ }>, {
535
+ accessPolicy: "public-free" | "public-paid" | "platform-internal" | "tenant-private" | "tenant-shared";
536
+ entityType: "cad-parcel-roll";
537
+ sourceCitation: string;
538
+ extractedAt: string;
539
+ atomDid: string;
540
+ evaluatedAt: string;
541
+ verificationStatus: "machine" | "human" | "unsurveyed";
542
+ sourceAdapter: string;
543
+ countyFips: string;
544
+ propId: string;
545
+ keyKind: "prop_id" | "geo_id_crosswalk";
546
+ parcelNodeId: string;
547
+ reasoningChain: {
548
+ reasoningKind: "observed";
549
+ };
550
+ atomTier: AtomTier;
551
+ sourceTier: "cad-authoritative" | "absent";
552
+ taxYear: number;
553
+ joinPassedOwnerMatchGate: boolean;
554
+ asOf?: string | undefined;
555
+ readContract?: Readonly<{
556
+ axes: Readonly<{
557
+ calibratedConfidence: Readonly<{
558
+ estimate: number;
559
+ n: number;
560
+ intervalWidth: number;
561
+ provenance: "asserted" | "backtest" | "seed" | "live";
562
+ }>;
563
+ assertedConfidence: Readonly<{
564
+ estimate: number;
565
+ n: number;
566
+ intervalWidth: number;
567
+ provenance: "asserted" | "backtest" | "seed" | "live";
568
+ }>;
569
+ consequence: {
570
+ stratum: import("../read-contract/reasoning-axes.js").PropertyRiskStratum;
571
+ assertedAt: string;
572
+ kind: "property-risk";
573
+ basis: string;
574
+ auditRef?: string | undefined;
575
+ } | {
576
+ assertedAt: string;
577
+ kind: "not-applicable";
578
+ reason: string;
579
+ };
580
+ }>;
581
+ assembledAt: string;
582
+ modelAttribution?: Readonly<{
583
+ modelId: string;
584
+ modelVersion: string;
585
+ promptTemplateVersion: string;
586
+ contextTemplateVersion: string;
587
+ samplingParams: Readonly<z.objectOutputType<{
588
+ temperature: z.ZodOptional<z.ZodNumber>;
589
+ topP: z.ZodOptional<z.ZodNumber>;
590
+ maxTokens: z.ZodOptional<z.ZodNumber>;
591
+ seed: z.ZodOptional<z.ZodNumber>;
592
+ }, z.ZodUnknown, "strip">>;
593
+ retrievedAtomSetId: string;
594
+ }> | undefined;
595
+ }> | undefined;
596
+ legalDescription?: string | undefined;
597
+ absence?: {
598
+ kind: "no-cad-row" | "join-hold";
599
+ reason: string;
600
+ } | undefined;
601
+ verifiedAbsence?: {
602
+ evaluated: true;
603
+ provenanceScope: string[];
604
+ } | undefined;
605
+ sourceVintage?: string | undefined;
606
+ ownerName?: string | undefined;
607
+ ownerMailingAddress?: string | undefined;
608
+ situsAddress?: string | undefined;
609
+ situsCity?: string | undefined;
610
+ situsZip?: string | undefined;
611
+ exemptionCodes?: readonly string[] | undefined;
612
+ landValue?: number | undefined;
613
+ improvementValue?: number | undefined;
614
+ marketValue?: number | undefined;
615
+ assessedValue?: number | undefined;
616
+ yearBuilt?: number | undefined;
617
+ livingAreaSqft?: number | undefined;
618
+ landAcres?: string | number | undefined;
619
+ propertyUseCode?: string | undefined;
620
+ sourceFile?: string | undefined;
621
+ }, {
622
+ accessPolicy: "public-free" | "public-paid" | "platform-internal" | "tenant-private" | "tenant-shared";
623
+ entityType: "cad-parcel-roll";
624
+ sourceCitation: string;
625
+ extractedAt: string;
626
+ atomDid: string;
627
+ evaluatedAt: string;
628
+ verificationStatus: "machine" | "human" | "unsurveyed";
629
+ sourceAdapter: string;
630
+ countyFips: string;
631
+ propId: string;
632
+ keyKind: "prop_id" | "geo_id_crosswalk";
633
+ parcelNodeId: string;
634
+ reasoningChain: {
635
+ reasoningKind: "observed";
636
+ };
637
+ atomTier: AtomTier;
638
+ sourceTier: "cad-authoritative" | "absent";
639
+ taxYear: number;
640
+ joinPassedOwnerMatchGate: boolean;
641
+ asOf?: string | undefined;
642
+ readContract?: Readonly<{
643
+ axes: Readonly<{
644
+ calibratedConfidence: Readonly<{
645
+ estimate: number;
646
+ n: number;
647
+ intervalWidth: number;
648
+ provenance: "asserted" | "backtest" | "seed" | "live";
649
+ }>;
650
+ assertedConfidence: Readonly<{
651
+ estimate: number;
652
+ n: number;
653
+ intervalWidth: number;
654
+ provenance: "asserted" | "backtest" | "seed" | "live";
655
+ }>;
656
+ consequence: {
657
+ stratum: import("../read-contract/reasoning-axes.js").PropertyRiskStratum;
658
+ assertedAt: string;
659
+ kind: "property-risk";
660
+ basis: string;
661
+ auditRef?: string | undefined;
662
+ } | {
663
+ assertedAt: string;
664
+ kind: "not-applicable";
665
+ reason: string;
666
+ };
667
+ }>;
668
+ assembledAt: string;
669
+ modelAttribution?: Readonly<{
670
+ modelId: string;
671
+ modelVersion: string;
672
+ promptTemplateVersion: string;
673
+ contextTemplateVersion: string;
674
+ samplingParams: Readonly<z.objectInputType<{
675
+ temperature: z.ZodOptional<z.ZodNumber>;
676
+ topP: z.ZodOptional<z.ZodNumber>;
677
+ maxTokens: z.ZodOptional<z.ZodNumber>;
678
+ seed: z.ZodOptional<z.ZodNumber>;
679
+ }, z.ZodUnknown, "strip">>;
680
+ retrievedAtomSetId: string;
681
+ }> | undefined;
682
+ }> | undefined;
683
+ legalDescription?: string | undefined;
684
+ absence?: {
685
+ kind: "no-cad-row" | "join-hold";
686
+ reason: string;
687
+ } | undefined;
688
+ verifiedAbsence?: {
689
+ evaluated: true;
690
+ provenanceScope: string[];
691
+ } | undefined;
692
+ sourceVintage?: string | undefined;
693
+ ownerName?: string | undefined;
694
+ ownerMailingAddress?: string | undefined;
695
+ situsAddress?: string | undefined;
696
+ situsCity?: string | undefined;
697
+ situsZip?: string | undefined;
698
+ exemptionCodes?: readonly string[] | undefined;
699
+ landValue?: number | undefined;
700
+ improvementValue?: number | undefined;
701
+ marketValue?: number | undefined;
702
+ assessedValue?: number | undefined;
703
+ yearBuilt?: number | undefined;
704
+ livingAreaSqft?: number | undefined;
705
+ landAcres?: string | number | undefined;
706
+ propertyUseCode?: string | undefined;
707
+ sourceFile?: string | undefined;
708
+ }>;
709
+ export declare function createCadParcelRoll(input: z.input<typeof CAD_PARCEL_ROLL_SCHEMA>): CadParcelRollAtomInstance;
710
+ //# sourceMappingURL=cad-parcel-roll.d.ts.map