createMedication
Generate medication resources in Medplum FHIR servers by specifying medication codes, names, and forms for accurate healthcare data management.
Instructions
Creates a new medication resource. Requires medication code or identifier.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
code | Yes | The code identifying the medication (e.g., RxNorm, SNOMED CT). | |
display | No | The display name of the medication. | |
form | No | The form of the medication (e.g., tablet, capsule, liquid). |
Input Schema (JSON Schema)
{
"properties": {
"code": {
"description": "The code identifying the medication (e.g., RxNorm, SNOMED CT).",
"type": "string"
},
"display": {
"description": "The display name of the medication.",
"type": "string"
},
"form": {
"description": "The form of the medication (e.g., tablet, capsule, liquid).",
"type": "string"
}
},
"required": [
"code"
],
"type": "object"
}