...
- OID - OID of a variable (must correspond to the variable OID in the Define-XML file)
- name - variable name
- label - variable description
- type - type of the variable. One of 'string', 'integer', 'decimal', 'float', 'double', 'boolean'. See ODM types for details.
- length - variable length
fractionDigits - Number of digits to the right of the decimal point when type of the variable is floatdecimal
Attributes length, and fractionDigits are optional.
...
Code Block | ||
---|---|---|
| ||
{ "clinicalData": { "studyOID": "xxx", "metaDataVersionOID": "xxx", "itemGroupData": { "IG.DM": { "records": 600, "name": "DM", "label": "Demographics", "items": [ {"OID": "ITEMGROUPDATASEQ", "name": "ITEMGROUPDATASEQ", "label": "Record identifier", "type": "integer"}, {"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": "floatinteger", "length": 5, "fractiondigits": 2} ], "itemData": [ [1, "MyStudy", "001", "DM", 56], [2, "MyStudy", "002", "DM", 26], ... ] } } }, "referenceData": { ... Same structure as clinical data } } |
...