...
Code Block | ||
---|---|---|
| ||
"items": [ { "OID": 100, "name": "DM", "label": "Demographics", "type": "float", "length": 10, "fractiondigitsfractionDigits": 3 }, ... ] |
itemData is an array of records with variables values. Each record itself is also represented as an array of variables values.
...
Missing values are represented by empty elements of an arraynull in the case of numeric variables, and an empty string "" in case of character variables: ["MyStudy", "", "DM", null]
The full example of a Dataset-JSON file:
Code Block | ||
---|---|---|
| ||
{ "clinicalData": { "studyOID": "xxx", "metaDataVersionOID": "xxx", "itemGroupData": { "IG.DM": { "records": 600, "name": "DM", "label": "Demographics", "items": [ {"OID": "IT.STUDYID", "name": "STUDYID", "label": "Study identifier", "type": "string", "length": 7}, {"OID": "IT.USUBJID", "name": "USUBJID", "label": "Unique Subject Identifier", "type": "string", "length": 3}, {"OID": "IT.DOMAIN", "name": "DOMAIN", "label": "Domain Identifier", "type": "string", "length": 2}, {"OID": "IT.AGE", "name": "AGE", "label": "Subject Age", "type": "float", "length": 5, "fractiondigitsfractionDigits": 2} ], "itemData": [ ["MyStudy", "001", "DM", 56], ["MyStudy", "002", "DM", 26], ... ] } } }, "referenceData": { ... Same structure as clinical data } } |
...