JSON
Blueprint nodes for json operations.
20 nodesMake JSON Object
PureCreates a JSON object string from parallel arrays of keys and string values.
MakeJsonObjectMap To JSON Object
PureCreates a JSON object string from a string-to-string map.
MapToJsonObjectMake JSON Array
PureWraps an array of strings into a JSON array string.
MakeJsonArrayJSON Set String Field
CallableSets or replaces a string field in a JSON object. Creates the field if it does not exist.
JsonSetStringFieldJSON Set Number Field
CallableSets or replaces a numeric field in a JSON object.
JsonSetNumberFieldJSON Set Bool Field
CallableSets or replaces a boolean field in a JSON object.
JsonSetBoolFieldJSON Remove Field
CallableRemoves a top-level field from a JSON object string.
JsonRemoveFieldJSON Merge Objects
CallableMerges two JSON objects. Fields from the second object overwrite matching fields in the first.
JsonMergeObjectsJSON Get String
PureReads a string field from a JSON object by key.
JsonGetStringJSON Get Float
PureReads a float field from a JSON object by key.
JsonGetFloatJSON Get Int
PureReads an integer field from a JSON object by key.
JsonGetIntJSON Get Bool
PureReads a boolean field from a JSON object by key.
JsonGetBoolJSON Get String Array
PureReads a string array field from a JSON object by key.
JsonGetStringArrayJSON Get Nested Object
PureReads a nested JSON object field as a JSON string.
JsonGetNestedObjectJSON Get Path
PureReads a value at a dot-separated path through nested JSON objects (e.g., "player.stats.health").
JsonGetPathIs Valid JSON
PureReturns true if the string is valid, parseable JSON.
IsValidJsonJSON Get All Keys
PureReturns all top-level field names from a JSON object.
JsonGetAllKeysJSON Object To Map
PureConverts a JSON object's top-level fields to a string map. Non-string values are serialized to their JSON text.
JsonObjectToMapJSON Pretty Print
PureReformats compact JSON with indentation and line breaks for readability.
JsonPrettyPrintJSON Minify
PureStrips all whitespace from a JSON string, producing the most compact representation.
JsonMinify