You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: ce/docs/RuleChainMetaData.md
+16Lines changed: 16 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -15,6 +15,7 @@ A JSON value representing the rule chain metadata.
15
15
|**nodes**|**List\<RuleNode\>**| List of rule node JSON objects ||
16
16
|**connections**|**List\<NodeConnectionInfo\>**| List of JSON objects that represent connections between rule nodes ||
17
17
|**ruleChainConnections**|**List\<RuleChainConnectionInfo\>**| List of JSON objects that represent connections between rule nodes and other rule chains. ||
18
+
|**notes**|**List\<RuleChainNote\>**| List of sticky notes placed on the rule chain canvas |[optional]|
18
19
19
20
20
21
@@ -54,6 +55,21 @@ A JSON value representing the rule chain metadata.
54
55
| additionalInfo | com.fasterxml.jackson.databind.JsonNode | JSON object with the additional information about the connection. ||
55
56
| type | String | Type of the relation. Typically indicated the result of processing by the 'from' rule node. For example, 'Success' or 'Failure' ||
56
57
58
+
#### RuleChainNote
59
+
| Name | Type | Description | Notes |
60
+
|------|------|-------------|-------|
61
+
| id | String | Unique identifier of the note on the canvas |[optional]|
62
+
| x | Integer | Horizontal position of the note on the canvas, in pixels |[optional]|
63
+
| y | Integer | Vertical position of the note on the canvas, in pixels |[optional]|
64
+
| width | Integer | Width of the note, in pixels |[optional]|
65
+
| height | Integer | Height of the note, in pixels |[optional]|
66
+
| content | String | Markdown or HTML content of the note |[optional]|
67
+
| backgroundColor | String | Background color of the note in CSS hex format, e.g. '#FFF9C4' |[optional]|
68
+
| borderColor | String | Border color of the note in CSS hex format, e.g. '#E6C800' |[optional]|
69
+
| borderWidth | Integer | Border width of the note in pixels |[optional]|
70
+
| applyDefaultMarkdownStyle | Boolean | Whether to apply the default markdown stylesheet to the note content |[optional]|
71
+
| markdownCss | String | Custom CSS styles applied to the note content |[optional]|
0 commit comments