Components All New MacOS Windows Linux iOS
Examples Mac & Win Server Client Guides Statistic FMM Blog Deprecated Old

JSON.AddFalseToObject

Adds a new entry to the object with the given name and a boolean false value.

Component Version macOS Windows Linux Server iOS SDK
JSON 2.7 ✅ Yes ✅ Yes ✅ Yes ✅ Yes ✅ Yes
MBS( "JSON.AddFalseToObject"; json; Name... )   More

Parameters

Parameter Description Example
json A JSON text or reference. {"key": "value"}
Name... The name of the Object property. "length"

Result

Returns JSON code.

Description

Adds a new entry to the object with the given name and a boolean false value.

With version 6, you can pass several parameters to add several entries to the object.
When adding to a JSON reference, the function returns that reference number.

This function takes variable number of parameters. Pass as much parameters as needed separated by the semicolon in FileMaker.
Please repeat Name parameter as often as you need.

Examples

Adds two entries with false to empty array:

MBS( "JSON.AddFalseToObject"; "{}"; "hello"; "world")

Example result:
{ "hello": false, "world": false }

Adds false to object:

MBS( "JSON.AddFalseToObject"; "{}"; "test" )

Example result:
{ "test": false }

See also

Blog Entries

This function is free to use.

Created 18th August 2014, last changed 5th June 2021


JSON.AddBooleanToObject - JSON.AddItemToArray