medflow-terminology

Communication - Category

This is the category when used with a FHIR Communication resource.

http://terminology.medflow.care/1.0/Communication/category

[
  {
    "id": 1,
    "display": "Contact Form",
    "code": "contact-form",
    "definition": "A form for contacting the practice on its website."
  },
  {
    "id": 2,
    "display": "Referral Form",
    "code": "referral-form",
    "definition": "A form for referring patients on the practice's website."
  },
  {
    "id": 3,
    "display": "New Patient Appointment Form",
    "code": "new-patient-appointment-form",
    "definition": "A form for scheduling new patient appointments on the practice's website."
  },
  {
    "id": 4,
    "display": "Existing Patient Appointment Form",
    "code": "existing-patient-appointment-form",
    "definition": "A form for scheduling appointments for existing patients on the practice's website."
  },
  {
    "id": 5,
    "display": "Appointment Rescheduling Form",
    "code": "appointment-rescheduling-form",
    "definition": "A form for rescheduling existing appointments on the practice's website."
  },
  {
    "id": 6,
    "display": "Appointment Cancellation Form",
    "code": "appointment-cancellation-form",
    "definition": "A form for canceling appointments on the practice's website."
  },
  {
    "id": 7,
    "display": "Prescription Refill Request Form",
    "code": "prescription-refill-request-form",
    "definition": "A form for requesting prescription refills on the practice's website."
  },
  {
    "id": 8,
    "display": "Medical Record Request Form",
    "code": "medical-record-request-form",
    "definition": "A form for requesting medical records on the practice's website."
  },
  {
    "id": 9,
    "display": "Feedback Form",
    "code": "feedback-form",
    "definition": "A form for providing feedback on the practice's website."
  },
  {
    "id": 10,
    "display": "Billing Inquiry Form",
    "code": "billing-inquiry-form",
    "definition": "A form for billing inquiries on the practice's website."
  },
  {
    "id": 11,
    "display": "Insurance Information Update Form",
    "code": "insurance-information-update-form",
    "definition": "A form for updating insurance information on the practice's website."
  },
  {
    "id": 12,
    "display": "Marketing Form",
    "code": "marketing-form",
    "definition": "A form for marketing inquiries related to a marketing campaign run by the practice."
  }
]

Example Usage

{
  "resourceType": "Communication",
  "status": "completed",
  "category": [
    {
      "coding": [
        {
          "system": "http://terminology.medflow.care/1.0/Communication/category",
          "code": "contact-form",
          "display": "Contact Form"
        }
      ]
    }
  ],
  "sender": {
    "identifier": {
      "system": "http://example.org/anonymous",
      "value": "anonymous"
    }
  },
  "recipient": [
    {
      "reference": "Organization/example-org"
    }
  ],
  "payload": [
    {
      "contentString": "Name: John Doe"
    },
    {
      "contentString": "Email: johndoe@example.com"
    },
    {
      "contentString": "Phone Number: +1234567890"
    },
    {
      "contentString": "Questions, Comments, or Concerns: Need help scheduling an appointment."
    },
    {
      "contentString": "How did you hear about us?: Social Media"
    }
  ],
  "sent": "2024-05-16T09:00:00Z"
}