Files
zui/src/fixtures/sample.zui.json
2026-03-09 15:56:02 +01:00

34 lines
938 B
JSON

{
"version": 1,
"nodes": [
{
"id": "var_001",
"type": "variable",
"position": { "x": 50, "y": 100 },
"data": { "value": "Zoe", "valueType": "string" },
"style": { "width": 224, "height": 180 }
},
{
"id": "cfg_001",
"type": "config",
"position": { "x": 424, "y": 50 },
"data": {
"plantuml": "@startuml\nactor User\nparticipant \"{{ var_001 }}\" as R\nUser -> R : loves\n@enduml\n",
"title": "config-cfg_001"
},
"style": { "width": 320, "height": 320 }
},
{
"id": "rnd_001",
"type": "render",
"position": { "x": 894, "y": 50 },
"data": {},
"style": { "width": 384, "height": 320 }
}
],
"edges": [
{ "id": "e-var_001-cfg_001", "source": "var_001", "target": "cfg_001", "type": "animated" },
{ "id": "e-cfg_001-rnd_001", "source": "cfg_001", "target": "rnd_001", "type": "animated" }
]
}