JSON: Delete Key
Remove a single top-level key from an incoming JSON object. A no-op when the
key is absent. Use JSON::Omit to remove several keys at once.
Example
Key: "internal"
Input: {"id": 1, "name": "alice", "internal": true}
Output: {"id": 1, "name": "alice"}
Parameters
Keyrequired
Top-level key to remove. Nested paths are not supported — use
JSON::MergeObjects or JSON::DataModel for tree edits.
Input
JSON Elementrequired
JSON object to operate on. The connector also accepts the Object type. Any non-object input (array, string, number, ...) fails the step with an InvalidInputType error.
Output
JSON Element
The same object minus the configured key.