add processor to pull field out of struct

This commit is contained in:
Joel Wetzell
2026-03-01 21:47:31 -06:00
parent b653179e6d
commit 533fe150c8
3 changed files with 245 additions and 0 deletions

View File

@@ -741,6 +741,26 @@
"required": ["type", "params"],
"additionalProperties": false
},
{
"type": "object",
"properties": {
"type": {
"type": "string",
"const": "struct.field.get"
},
"params": {
"type": "object",
"properties": {
"name": {
"type": "string"
}
},
"required": ["name"]
}
},
"required": ["type", "params"],
"additionalProperties": false
},
{
"type": "object",
"properties": {