Drug
A Drug represents a medication that has been prescribed to a patient or is available over-the-counter.\
Endpoint
https://platform.wellviasolutions.com/clinical/v1/drug\
The Drug Object
Attributes
name string : required
The friendly name of the drug.
upc string : optional
The Universal Product Code.
ndc9 string : optional
The 9 digit National Drug Code identifier.
ndc10 string : optional
The 10 digit National Drug Code identifier.
ndc11 string : optional
The 11 digit National Drug Code identifier.
availableQuantities object : required
A list of quantities the drug is available in.
description string : required
A friendly description of the quantity.
value decimal : required
The precise decimal measurement of the quantity.
quantityUnitOfMeasureCode string : optional
The FDA-specified code representing the unit of measure.
quantityUnitOfMeasureName string : optional
A friendly description of the FDA-specified unit of measure.
rxNorm object : optional
The RxNorm details of the drug.
rxcui string : required
The RxNorm unique identifier of this drug.
name string : required
The RxNorm name of the drug.
type string : required
Specifies if this drug is a Generic or Brand.
route object : optional
Details the drugs' method of consumption.
id numeric : required
The unique identifier of the route.
name string : required
The FDA-specified name of the route.
strengthobject :optional\ Details the strength of the drug.
value string : required
The strength value of the drug.
unit object: required
The unit of measurement used to measure the drugs' strength.
code string: required
The FDA-specified identifier of the unit of measurement.
name string: required
The FDA-specified description of the unit of measurement.
formCode string : required
The NSIT-specified code specifying the drugs' form.
unitOfMeasureCode string : required
The NIST-specified code specifying the drugs' unit of measurement.
formobject :optional\ Details the drugs' form.
fdaFormId numeric : required
The unique identifier of the drug form.
fdaFormName string : required
The FDA-specified name of the drug form.
description string : required
A description of the drug form.
drugKeyobject :required\ An object that can is used to link like drugs together (i.e. brand and generic, etc.)
id string : required
A unique identifier.
name string : required
The top-level name of the drug used to link like drugs together.
isGeneric boolean : required
Specifies if the drug key is a generic drug or brand drug.
Example
{
"name": "Bronkaid 25mg-400mg Caplet",
"upc": "50323000600",
"ndc9": "69536-0425",
"ndc10": "6953642524",
"ndc11": "69536042524",
"availableQuantities": [
{
"description": "6 Tablets",
"value": 6.0000
}
],
"quantityUnitOfMeasureCode": "C48542",
"quantityUnitOfMeasureName": "Tablet",
"rxNorm": {
"rxcui": "1116146",
"name": "ephedrine sulfate 25 MG / guaifenesin 400 MG Oral Tablet",
"type": "generic"
},
"route": {
"id": 1,
"name": "Oral"
},
"strength": {
"value": "25-400",
"unit": {
"code": "mg",
"name": "milligram"
},
"formCode": "C42998",
"unitOfMeasureCode": "C28253"
},
"form": {
"fdaFormId": 37,
"fdaFormName": "Tab",
"description": "Tablet"
},
"drugKey": {
"id": "dkn_a8b44b7fcdf2b5f6d7fee9c6ebfeceed",
"name": "Bronkaid",
"isGeneric": false
}
}Updated 7 months ago
