Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  • 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', '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 float

Code Block
languagejs
"items": [    
    {
        "OID": 100"ITEMGROUPDATASEQ",
        "name": "DMITEMGROUPDATASEQ",
        "label": "DemographicsRecord identifier",
        "type": "floatinteger",
		"length": 10,
		"fractionDigits": 3
    },
    {
        "OID": "IT.DM.STUDYID",
        "name": "STUDYID",
        "label": "Study Identifier",
        "type": "string",
        "length": 12
    },
    ...
]

itemData is an array of records with variables values. Each record itself is also represented as an array of variables valuesarray of variables values. The first value is a unique sequence number for each record in the dataset.

Code Block
languagejs
"itemData": [
   [1, "MyStudy", "001", "DM", 56],
   [2, "MyStudy", "002", "DM", 26],
]

...

Code Block
languagejs
{
    "clinicalData": {
        "studyOID": "xxx",
        "metaDataVersionOID": "xxx",

        "itemGroupData": {
            "IG.DM": {
                "itemGroupDatarecords": {600,
            "IG.DM    "name": {"DM",
                "recordslabel": 600"Demographics",
                "nameitems": "DM",[
                    {"OID":     "ITEMGROUPDATASEQ", "name": "ITEMGROUPDATASEQ", "label": "DemographicsRecord identifier",
                "items"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": "float", "length": 5, "fractionDigits": 2}
                ],
                "itemData": [
                    [1, "MyStudy", "001", "DM", 56],
                    [2, "MyStudy", "002", "DM", 26],
                    ...
                ]
            }
        }
    },
    "referenceData": {
        ... Same structure as clinical data
    }
}

...