This endpoint creates new entries in a Manufacturer-catalog in Kit Check’s Global drug dictionary.
For general background on drug dictionaries in Kit Check, see the Global Drug Dictionary page.
Example
Here’s an example of the request body of the API call to add a dictionary and formulary entry for these two NDCs.
[ { "ndc": "61553-012-05", "manufacturer": "PharMEDium", "display_name": "CEFAZOLIN Sodium 1g/10mL in Sterile Water Inj.", "package": { "description": "Syringe", "size": { "scalar": 10, "uom": "mL" } }, "mixture": { "fill_amount": { "scalar": 10, "uom": "mL" }, "components": [{ "name": "Cefazolin", "concentration": { "scalar": 100, "uom": "mg/mL" } } ] } }, { "ndc": "61553-014-45", "manufacturer": "PharMEDium", "display_name": "CEFAZOLIN Sodium 2g/20mL in Sterile Water Inj.", "package": { "description": "Syringe", "size": { "scalar": 20, "uom": "mL" } }, "mixture": { "fill_amount": { "scalar": 20, "uom": "mL" }, "components": [{ "name": "Cefazolin", "concentration": { "scalar": 100, "uom": "mg/mL" } } ] } } ]
Fields
Field | Data Type | Max Length | Notes |
---|---|---|---|
ndc | string | 10- or 11-digit NDC, plus hyphens | |
manufacturer | string | 50 | |
display_name | string | 50 | |
package | JSON object | ||
description | string, pick one | 50 | Pick one of the following:
|
size (scalar, uom) | float, string | 9.3, 15 | The size refers to the size of the package. This may differ from the fill amount.
For example, in a 10mL syringe that is only half full, the package size would be 10mL. |
mixture | JSON object | ||
fill_amount (scalar, uom) | int, string | 9.3, 15 | The fill amount refers to amount of drug in the package. This may differ from the package size.
For example, in a 10mL syringe that is only half full, the fill amount would be 5mL. |
components | array of JSON objects | ||
name | string | 50 | |
concentration (scalar, uom) | float, string | 15.3, 15 |