For the SDTMIG and the SENDIG, the general observations class serves as a container for Interventions, Events, and Findings classes. Datasets belong to their respective general observation classes, such as Exposure (EX) to Interventions, Adverse Events (AE) to Events, and Laboratory Test Results (LB) to Findings. Therefore, no datasets will be listed under General Observations Class in the API response. In other words, when applying this JSON Path against the response from /mdr/sdtmig/{version} , it yields an empty result: $..classes[?(@.name=="General Observations")].datasets . They are available in each of the three general observation classes. For example, an excerpt from the API response for this query /mdr/sdtmig/3-2/classes/Events : Code Block |
---|
| "datasets": [
{
"ordinal": "10",
"name": "AE",
...
},
{
"ordinal": "11",
"name": "CE",
"label": "Clinical Events",
...
},
{
"ordinal": "12",
"name": "DS",
"label": "Disposition",
...
},
...
] |
|