| name | LightFlow JSON Extract |
| description | Use this skill when working with the lightflow.json_extract workflow that extracts JSON values by dot path. |
| version | 0.1.0 |
LightFlow JSON Extract
Use lightflow.json_extract to extract a JSON value by dot path. Array indexes are numeric path segments.
Workflow
- Workflow id:
lightflow.json_extract
- Runtime:
lightflow.json.extract.
- Input
value: required source JSON; widget json.
- Input
path: required dot path, for example user.name or items.0.title.
- Outputs
value, text, and found.
Usage
lfw run lightflow.json_extract -i value='{"user":{"name":"Ada"}}' -i path=user.name
API Usage
Start lfw serve, then call the workflow through the shared HTTP run contract. Adjust inputs to match the workflow contract above.
curl -sS -X POST http://127.0.0.1:5174/workflows/lightflow.json_extract/run \
-H 'content-type: application/json' \
-d '{"inputs":{}}'