{
  "description": "Root object",
  "type": "object",
  "properties": {
    "patient_name": {
      "description": "The full name of the patient receiving medical services.",
      "x-alternativeNames": [
        "Patient Name",
        "Name of Patient",
        "Recipient Name"
      ],
      "type": "string"
    },
    "medical_record_number": {
      "description": "A unique identifier assigned to the patient's medical records.",
      "x-alternativeNames": [
        "Medical Record Number",
        "Patient ID",
        "Chart Number"
      ],
      "type": "string"
    },
    "balance_due": {
      "description": "The total outstanding amount that the patient or guarantor needs to pay.",
      "x-alternativeNames": [
        "Balance Due",
        "Amount Due",
        "Pay This Amount"
      ],
      "type": "number"
    }
  },
  "required": [
    "patient_name",
    "medical_record_number",
    "balance_due"
  ]
}