@welshare/sdk
    Preparing search index...

    Variable DOCUMENT_CATEGORY_CONCEPTSConst

    DOCUMENT_CATEGORY_CONCEPTS: {
        CLINICAL: {
            coding: readonly [
                {
                    code: "clinical-note";
                    display: "Clinical Note";
                    system: "http://hl7.org/fhir/us/core/CodeSystem/us-core-documentreference-category";
                },
            ];
        };
        IMAGING: {
            coding: readonly [
                {
                    code: "imaging";
                    display: "Imaging";
                    system: "http://hl7.org/fhir/us/core/CodeSystem/us-core-documentreference-category";
                },
            ];
        };
        PERSONAL: {
            coding: readonly [
                {
                    code: "personal";
                    display: "Personal Document";
                    system: "http://welshare.health/CodeSystem/custom";
                },
            ];
        };
    } = ...

    Ready-made CodeableConcept objects for document categories. Use these with DocumentReference.category field.

    Type Declaration

    • ReadonlyCLINICAL: {
          coding: readonly [
              {
                  code: "clinical-note";
                  display: "Clinical Note";
                  system: "http://hl7.org/fhir/us/core/CodeSystem/us-core-documentreference-category";
              },
          ];
      }
    • ReadonlyIMAGING: {
          coding: readonly [
              {
                  code: "imaging";
                  display: "Imaging";
                  system: "http://hl7.org/fhir/us/core/CodeSystem/us-core-documentreference-category";
              },
          ];
      }
    • ReadonlyPERSONAL: {
          coding: readonly [
              {
                  code: "personal";
                  display: "Personal Document";
                  system: "http://welshare.health/CodeSystem/custom";
              },
          ];
      }
    import { DOCUMENT_CATEGORY_CONCEPTS } from "@welshare/sdk";

    const docRef = createDocumentReference({
    // ...
    category: [DOCUMENT_CATEGORY_CONCEPTS.PERSONAL],
    });