Column |
---|
Example 10 Status |
---|
| colour | Green | title
New | Get the latest version of the Systolic Blood Pressure SDTM Dataset Specialization. /mdr/specializations/sdtm/datasetspecializations/SYSBP
Code Block |
---|
language | yml |
---|
linenumbers | true |
---|
| {
"_links": {
"parentBiomedicalConcept": {
"href": "/mdr/bc/biomedicalconcepts/C25298",
"title": "Systolic Blood Pressure",
"type": "Biomedical Concept"
},
"parentPackage": {
"href": "/mdr/specializations/sdtm/packages/2023-07-06/datasetspecializations",
"title": "SDTM Dataset Specialization Package Effective 2023-07-06",
"type": "SDTM Dataset Specialization Package"
},
"self": {
"href": "/mdr/specializations/sdtm/datasetspecializations/SYSBP",
"title": "Systolic Blood Pressure",
"type": "SDTM Dataset Specialization"
}
},
|
| Lines 2-18: A list of HATEOAS links to related resources, such as self, parent package, and parent biomedical concept. A note on parent biomedical concept: In this example, Systolic Blood Pressure is the parent biomedical concept to this SDTM dataset specialization. parentBiomedicalConcept will not be present if no parent is available at the time of publication. | Code Block |
---|
language | yml |
---|
firstline | 19 |
---|
linenumbers | true |
---|
| "variables": [
...
{
"name": "VSORRESU",
"dateElementConceptId": "C49669",
"isNonStandard": false,
"codelist": {
"conceptId": "C66770",
"submissionValue": "VSRESU",
"href": "https://ncithesaurus.nci.nih.gov/...&code=C66770"
},
"assignedTerm": {
"conceptId": "C49670",
"value": "mmHg"
},
"role": "Qualifier",
"relationship": {
"subject": "VSORRESU",
"linkingPhrase": "is the unit for the value in",
"predicateTerm": "IS_UNIT_FOR",
"object": "VSORRES"
},
"mandatoryVariable": true,
"mandatoryValue": false,
"vlmTarget": true
},
|
| Line 19: Beginning of a variable (or, data element) list that comprise this Systolic Blood Pressure SDTM dataset specialization. Lines 21-44: VSORRESU (Line 21) is a variable on the list. codelist (Lines 33-37) shows controlled terminology metadata for this variable. relationship (Lines 27-32) shows how this variable is related to another variable in the format of (subject, predicate, object): VSORRESU IS_UNIT_FOR VSORRES . | Code Block |
---|
language | yml |
---|
firstline | 45 |
---|
linenumbers | true |
---|
| {
"name": "VSSTRESN",
"dateElementConceptId": "C173522",
"isNonStandard": false,
"role": "Qualifier",
"dataType": "integer",
"length": 3,
"relationship": {
"subject": "VSSTRESN",
"linkingPhrase": "is the result of the test in",
"predicateTerm": "IS_RESULT_OF",
"object": "VSTESTCD"
},
"mandatoryVariable": false,
"mandatoryValue": false,
"vlmTarget": true
},
...
], |
| Lines 45-61: VSSTRESN (Line 45) is the next variable on the list. It has an integer as datatype with a preconfigured length of 3. relationship (Lines 53-58) shows how this variable is related to another variable in the format of (subject, predicate, object): VSSTRESN IS_RESULT_OF VSTESTCD . | Code Block |
---|
language | yml |
---|
firstline | 64 |
---|
linenumbers | true |
---|
| "datasetSpecializationId": "SYSBP",
"domain": "VS",
"sdtmigStartVersion": "3-2",
"sdtmigEndVersion": "",
"shortName": "Systolic Blood Pressure",
"source": "VS.VSTESTCD"
} |
| Lines 64-70: Metadata about the SDTM dataset specialization. |
|