Hi
I’m having a problem creating the correct Clarion structure to match the attached JSON.
Tried the jfiles tool to convert from json to clarion, but only a blank result comes up.
Tried it manually but can’t really figure out how to handle labels with different names (labels as id’s)
Any suggestions?
{
operators: {
operator1: {
top: 20,
left: 20,
properties: {
title: 'Operator 1',
inputs: {},
outputs: {
output_1: {
label: 'Output 1',
}
}
}
},
operator2: {
top: 80,
left: 300,
properties: {
title: 'Operator 2',
inputs: {
input_1: {
label: 'Input 1',
},
input_2: {
label: 'Input 2',
},
},
outputs: {}
}
},
},
links: {
link_1: {
fromOperator: 'operator1',
fromConnector: 'output_1',
toOperator: 'operator2',
toConnector: 'input_2',
},
}
}