nhcx-fhir-coverage-eligibility
Version:
NHCX FHIR CoverageEligibilityRequest resource creation and validation library.
24 lines • 853 B
TypeScript
/**
* FHIR CodeableConcept
* https://www.hl7.org/fhir/datatypes.html#CodeableConcept
* A concept that may be defined by a formal reference to a terminology or ontology or may be provided by text.
*/
export interface CodeableConcept {
/**
* Code defined by a terminology system.
* FHIR Path: CodeableConcept.coding
* Cardinality: 0..* (optional, array)
* Type: Coding[]
* Description: A reference to a code defined by a terminology system.
*/
coding?: import('./Coding').Coding[];
/**
* Plain text representation of the concept.
* FHIR Path: CodeableConcept.text
* Cardinality: 0..1 (optional)
* Type: string
* Description: A human language representation of the concept as seen/selected/uttered by the user.
*/
text?: string;
}
//# sourceMappingURL=CodeableConcept.d.ts.map