create_prescription
Create new patient prescriptions with medication details, dosage instructions, and pharmacy information through clinical workflow integration.
Instructions
Create a new prescription for a patient
Input Schema
Name | Required | Description | Default |
---|---|---|---|
days_supply | Yes | Days supply | |
dosage | Yes | Dosage (e.g., "10mg") | |
frequency | Yes | Frequency (e.g., "twice daily") | |
medication_name | Yes | Medication name | |
notes | No | Additional notes (optional) | |
patient_id | Yes | Patient ID | |
pharmacy_id | No | Pharmacy ID (optional) | |
quantity | Yes | Quantity to dispense | |
refills | Yes | Number of refills | |
route | Yes | Route of administration (e.g., "oral") |
Input Schema (JSON Schema)
{
"properties": {
"days_supply": {
"description": "Days supply",
"type": "string"
},
"dosage": {
"description": "Dosage (e.g., \"10mg\")",
"type": "string"
},
"frequency": {
"description": "Frequency (e.g., \"twice daily\")",
"type": "string"
},
"medication_name": {
"description": "Medication name",
"type": "string"
},
"notes": {
"description": "Additional notes (optional)",
"type": "string"
},
"patient_id": {
"description": "Patient ID",
"type": "string"
},
"pharmacy_id": {
"description": "Pharmacy ID (optional)",
"type": "string"
},
"quantity": {
"description": "Quantity to dispense",
"type": "string"
},
"refills": {
"description": "Number of refills",
"type": "string"
},
"route": {
"description": "Route of administration (e.g., \"oral\")",
"type": "string"
}
},
"required": [
"patient_id",
"medication_name",
"dosage",
"route",
"frequency",
"quantity",
"refills",
"days_supply"
],
"type": "object"
}