Drug products can be found in a variety of packages and package combinations. Refer to the table below for an explanation of the package data structure and its components.
Attribute
Description
package_ndc_code
The eleven digit NDC package code. The first nine digits correspond to the NDC code of the product in this package.
E.g. 12345-6789-10
description
A description of the package form and content.
E.g. 10 in 1 CARTON, 100 mL in 1 VIAL
amount
The quantity of the package contents.
unit
The unit for describing the quantity of the package contents. The unit will be 1 if unitless (i.e. 1 bottle).
form
The form of the package.
E.g. BOTTLE
for_product / for_part
The product contained in the package. Packages that may be found independently or as part of a kit will have the for_product label. Some packages are only found as part of a kit (a package containing multiple products), in this case the label will be for_part instead of for_product. This will be a JSON object with the following attributes:
Packages may be kits, which contain two or more parts. These types of packages will have an array of parts. A part object describes a product, along with its ingredients and packaging, that is contained within the kit. This will be a JSON object with the following attributes:
Attribute
Description
number
ndc_product_code
The nine digit NDC product code for the product in this part.
Packages may be found in a nested structure (i.e. An inner package inside an outer package). This attribute is an array of possible packaging structure(s) described as a series of nested objects, starting at the outermost package. The package objects in the trees contain an abbreviated subset of the package attributes, with an additional content field which contains the nested package, if there is one.
Packages that can be found inside kits will have a part_of array listing the kits containing this package. The kits are described as an abbreviated package object.
"part_of": [
{
"package_ndc_code": "44224-3000-01",
"description": "1 in 1 KIT",
"product": {
"ndc_product_code": "44224-3000",
"name": "Adventure Medical Kits 1-4 Person First Aid"
}
}
]