hazmats
Hazmat Certifications
When requesting a full Carrier profile, the hazmat_data field might contain a list of Hazmat Certification Data from the Pipeline and Hazardous Materials Safety Administration (PHMSA).
Hazmat Object
field | type | description | ||||||||||||
hazmat_id | string | Certificate Identification Number | ||||||||||||
addr_* | string |
| ||||||||||||
duns | string | Dun and Bradstreet Number | ||||||||||||
company_name | string | Name of company holding the hazmat cert | ||||||||||||
contact_name | string | Name of the contact for the hazmat cert | ||||||||||||
start_date | Date | Starting date of hazmat cert | ||||||||||||
end_date | Date | Ending date of hazmat cert | ||||||||||||
date_registered | Date | Date of registration with the PHMSA | ||||||||||||
small_business | boolean | Considedered a small business by the PHMSA | ||||||||||||
air_transport_approved | boolean | Air transport allowed under cert | ||||||||||||
highway_transport_approved | boolean | Highway transport allowed under cert | ||||||||||||
rail_transport_approved | boolean | Rail transport allowed under cert | ||||||||||||
water_transport_approved | boolean | Water transport allowed under cert | ||||||||||||
start_year | string | Year the certification begins | ||||||||||||
end_year | string | year the certification ends |
Examplel Hazmat Certification Data
Here is an example of the type of information that might be contained in a hazmat_data object:
[
{
"hazmat_id": "0245878542FH",
"addr_city": "Houston",
"addr_country": "USA",
"addr_state": "TX",
"addr_street": "4206 Western Ave",
"addr_zip": "91234",
"duns": "1651646843",
"company_name": "Acme Battery Company",
"contact_name": "Elmer Bunny",
"start_date": 2024-02-12T12:00:00.000+00:00,
"end_date": 2024-02-12T12:00:00.000+00:00,
"date_registered": 2024-02-12T12:00:00.000+00:00,
"small_business": false,
"air_transport_approved": true,
"highway_transport_approved": true,
"rail_transport_approved": false,
"water_transport_approved": false,
"end_year": "2025",
"start_year": "2023"
},
]