Meddra · Schema
MedDRA Term
A term in the Medical Dictionary for Regulatory Activities (MedDRA) hierarchy
Properties
| Name | Type | Description |
|---|---|---|
| code | integer | MedDRA numeric term code (8 digits) |
| termText | string | Official MedDRA term name |
| level | string | Hierarchy level: SOC=System Organ Class, HLGT=High Level Group Term, HLT=High Level Term, PT=Preferred Term, LLT=Lowest Level Term |
| current | boolean | Whether this term is current and not deprecated/retired |
| primarySOCCode | integer | Code of the primary System Organ Class for this term |
| primarySOCName | string | Name of the primary System Organ Class |
| version | string | MedDRA dictionary version (e.g., 27.0) |
| language | string | ISO 639-1 language code |
| allSOCLinks | array | All SOC associations (a PT can belong to multiple SOCs) |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/meddra/refs/heads/main/json-schema/meddra-term-schema.json",
"title": "MedDRA Term",
"description": "A term in the Medical Dictionary for Regulatory Activities (MedDRA) hierarchy",
"type": "object",
"required": ["code", "termText", "level", "current"],
"properties": {
"code": {
"type": "integer",
"description": "MedDRA numeric term code (8 digits)",
"minimum": 10000000,
"maximum": 99999999
},
"termText": {
"type": "string",
"description": "Official MedDRA term name",
"maxLength": 100
},
"level": {
"type": "string",
"enum": ["SOC", "HLGT", "HLT", "PT", "LLT"],
"description": "Hierarchy level: SOC=System Organ Class, HLGT=High Level Group Term, HLT=High Level Term, PT=Preferred Term, LLT=Lowest Level Term"
},
"current": {
"type": "boolean",
"description": "Whether this term is current and not deprecated/retired"
},
"primarySOCCode": {
"type": "integer",
"description": "Code of the primary System Organ Class for this term"
},
"primarySOCName": {
"type": "string",
"description": "Name of the primary System Organ Class"
},
"version": {
"type": "string",
"description": "MedDRA dictionary version (e.g., 27.0)",
"pattern": "^[0-9]+\\.[0-9]+$"
},
"language": {
"type": "string",
"description": "ISO 639-1 language code",
"default": "en"
},
"allSOCLinks": {
"type": "array",
"description": "All SOC associations (a PT can belong to multiple SOCs)",
"items": {
"type": "object",
"required": ["socCode", "socName", "isPrimary"],
"properties": {
"socCode": {
"type": "integer"
},
"socName": {
"type": "string"
},
"isPrimary": {
"type": "boolean",
"description": "True if this is the primary SOC pathway"
}
}
}
}
},
"$defs": {
"HierarchyLevels": {
"description": "MedDRA 5-level hierarchy",
"type": "string",
"enum": ["SOC", "HLGT", "HLT", "PT", "LLT"],
"x-description": {
"SOC": "System Organ Class — highest level, 27 classes (e.g., Hepatobiliary disorders)",
"HLGT": "High Level Group Term — groups multiple HLTs",
"HLT": "High Level Term — groups related PTs",
"PT": "Preferred Term — distinct medical concept for use in submissions",
"LLT": "Lowest Level Term — verbatim terms mapped to a PT"
}
}
}
}
Work with this as data
Every JSON Schema here is available over the APIs.io API and to AI agents over MCP.
MCP server
One button, every client — Claude, Cursor, VS Code and the rest.
https://apis.io/mcp
Tools for schemas
4 MCP tools reach this
find_json_schemasBrowse and filter every JSON Schema in the catalog.apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.resolveTurn a domain, URL or GitHub org into the provider it belongs to.find_cohortsEvery scored population of providers in the catalog.
Call it yourself
curl for this page
This JSON Schema
curl "https://apis.io/api/v1/json-schemas/meddra-term"
All schemas
curl "https://apis.io/api/v1/json-schemas?limit=25"
Discovery needs no key. Ratings and market analysis are Pro.
Get an API key
Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.
A second provider on the same verified email joins the account you already have.