$ cat node-template.py

J

JSON Object

// A constant JSON object. Provides a JSON editor that outputs the object unchanged.

Input
Data
template.py
1import json2import sys345def main():6    try:7        raw = json.loads(sys.stdin.read())8        inputs = raw.get("inputs", {})9        value = inputs.get("value")10        if value is None:11            value = {}12        print(json.dumps({"value": value}))13    except Exception as e:14        print(json.dumps({"error": str(e), "errorType": type(e).__name__}), file=sys.stderr)15        sys.exit(1)161718if __name__ == "__main__":19    main()

$ git log --oneline

v1.0.0
HEAD
2026-05-07