ReproNim / reproschema-py

Apache License 2.0
2 stars 8 forks source link

[FIX] debugging redcap2reproschema during converting HBCD #61

Closed yibeichan closed 2 months ago

yibeichan commented 2 months ago

fixed the following

result from old code:

"responseOptions": {
        "choices": [
            {
                "name": {
                    "en": "1,"
                },
                "value": 0
            }
        ],
        "valueType": [
            "xsd:integer"
        ]
    },

result from new code:

"responseOptions": {
        "choices": [
            {
                "name": {
                    "en": ""
                },
                "value": 1
            }
        ],
        "valueType": [
            "xsd:integer"
        ]
    },