ToxProfile
ToxProfile schema from ATSDR API
DiseasesFederal GovernmentPublic HealthToxic SubstancesEnvironmental HealthHazardous Materials
Properties
| Name | Type | Description |
|---|---|---|
| substance_name | string | Name of the hazardous substance. |
| cas_number | string | Chemical Abstracts Service registry number. |
| profile_year | integer | Year the toxicological profile was published or updated. |
| substance_priority_list_rank | integer | Rank on the ATSDR Substance Priority List. |
| health_effects | string | Summary of known health effects from exposure. |
| primary_route_of_exposure | string | Most common route of exposure (ingestion, inhalation, dermal). |
| profile_url | string | URL to the full toxicological profile PDF. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/agency-for-toxic-substances-and-disease-registry/refs/heads/main/json-schema/atsdr-toxic-substance-profiles-tox-profile-schema.json",
"title": "ToxProfile",
"description": "ToxProfile schema from ATSDR API",
"type": "object",
"properties": {
"substance_name": {
"type": "string",
"description": "Name of the hazardous substance.",
"example": "Example Name"
},
"cas_number": {
"type": "string",
"description": "Chemical Abstracts Service registry number.",
"example": "example_value"
},
"profile_year": {
"type": "integer",
"description": "Year the toxicological profile was published or updated.",
"example": 1
},
"substance_priority_list_rank": {
"type": "integer",
"description": "Rank on the ATSDR Substance Priority List.",
"example": 1
},
"health_effects": {
"type": "string",
"description": "Summary of known health effects from exposure.",
"example": "example_value"
},
"primary_route_of_exposure": {
"type": "string",
"description": "Most common route of exposure (ingestion, inhalation, dermal).",
"example": "example_value"
},
"profile_url": {
"type": "string",
"description": "URL to the full toxicological profile PDF.",
"example": "https://example.com"
}
}
}