Hi Peter, thanks for your reply,
I was able to download the document.json file, however I think my question goes the other way.
Before, I would run this query on the document.json file, using Node.js and obtain a list with all the enabling conditions of the questionnaire:
const fs = require(āfsā);
let document = fs.readFileSync(ādocument.jsonā);
let jsondocument = JSON.parse(document);
var jp = require(ājsonpathā);
jp.query(jsondocument, ā$ā¦Children[?(@.ConditionExpression)]ā);
Apparently due to a change in the structure of the document.json file, I run this query and canāt get the enabling conditions anymore. I donāt know if document.json still contains this information or if it is now stored outside of it? I would like to know where I can get it again?