Interface: DeidManifestEntry
A single value-free manifest entry.
Example
import { type DeidManifestEntry, SAFE_HARBOR_CATEGORIES, DEID_DISPOSITION_CODES } from "@cosyte/deid";
const entry: DeidManifestEntry = {
category: SAFE_HARBOR_CATEGORIES.SSN,
transform: "redact",
locus: "PID-19",
count: 1,
disposition: "removed",
code: DEID_DISPOSITION_CODES.DEID_CATEGORY_REMOVED,
};
Properties
category
readonlycategory:SafeHarborCategory
The Safe Harbor category acted on.
code
readonlycode:DeidDispositionCode
The stable disposition code.
count
readonlycount:number
How many values at this locus/category/disposition were acted on.
disposition
readonlydisposition:"transformed"|"removed"|"blocked"
The disposition.
locus
readonlylocus:string
The format-neutral locus (segment/field index · path · tag) - never a value.
transform
readonlytransform:TransformName
The transform applied.