core.stringify | Medplum

stringify() function

Returns the FHIR JSON string representation of the input value.

Removes properties with empty string values. Removes objects with zero properties.

Does not modify the input value. If the input value does not contain any empty properties, then the original value is returned. Otherwise, a new value is returned with the empty properties removed.

See: FHIR JSON Specification

Signature:

export declare function stringify(value: any, pretty?: boolean): string;

Parameters

Parameter Type Description
value any The input value.
pretty boolean (Optional) Optional flag to pretty-print the JSON.

Returns:

string

The resulting JSON string.