UNPKG

nhcx-fhir-coverage-eligibility

Version:

NHCX FHIR CoverageEligibilityRequest resource creation and validation library.

40 lines 1.25 kB
/** * FHIR Reference * https://www.hl7.org/fhir/references.html * A reference from one resource to another. */ export interface Reference { /** * Literal reference, Relative, internal or absolute URL. * FHIR Path: Reference.reference * Cardinality: 0..1 (optional) * Type: string * Description: A reference to another resource (by URL or relative path). */ reference?: string; /** * Type the reference refers to (e.g., "Patient"). * FHIR Path: Reference.type * Cardinality: 0..1 (optional) * Type: uri * Description: The type of the referenced resource. */ type?: string; /** * Logical reference, when literal reference is not known. * FHIR Path: Reference.identifier * Cardinality: 0..1 (optional) * Type: Identifier * Description: An identifier for the referenced resource. */ identifier?: import('./Identifier').Identifier; /** * Plain text narrative that identifies the resource. * FHIR Path: Reference.display * Cardinality: 0..1 (optional) * Type: string * Description: Plain text narrative that identifies the resource. */ display?: string; } //# sourceMappingURL=Reference.d.ts.map