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