Data Model Libraries
    Preparing search index...

    Base FHIR code system definition for a particular code defined in an implementation of IFhirCodeEnum.

    interface IFhirCodeDefinition {
        name: string;
        code: string;
        system?: string;
        display?: string;
        definition?: string;
        toJSON: () => string;
    }

    Implemented by

    Index

    Properties

    name: string

    Enum name (all UPPERCASE)

    code: string

    A string pattern that identifies a concept as defined by the code system

    system?: string

    A URI that identifies the system

    display?: string

    A description of the concept as defined by the code system

    definition?: string

    Additional descriptive information about the code

    toJSON: () => string

    Type Declaration

      • (): string
      • Returns string

        the 'code' for this FHIR code definition