Skip to main content
Version: v0.0.3

Interface: ProblemConcern

A Problem Concern Act: the clinical-concern wrapper around one or more Problem observations. status is the resolved active/resolved/ inactive state (from the concern statusCode); effectiveTime is the concern window (onset → resolution).

Example

import type { ProblemConcern } from "@cosyte/ccda";
function isActive(c: ProblemConcern): boolean {
return c.status === "active";
}

Properties

effectiveTime?

readonly optional effectiveTime?: IVL_TS


ids

readonly ids: readonly II[]


problems

readonly problems: readonly Problem[]


status

readonly status: ConcernStatus