[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Hard to understand","hardToUnderstand","thumb-down"],["Incorrect information or sample code","incorrectInformationOrSampleCode","thumb-down"],["Missing the information/samples I need","missingTheInformationSamplesINeed","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2025-08-29 UTC."],[],[],null,["# REMOVE_PROPERTY function\n\nSee the [supported connectors](/integration-connectors/docs/connector-reference-overview) for Application Integration.\n\nREMOVE_PROPERTY function\n========================\n\n`REMOVE_PROPERTY` function\n--------------------------\n\nSupported data type\n-------------------\n\n\nThe `REMOVE_PROPERTY` function supports the following data type:\n\n- JSON\n\nExample: Remove a property from a JSON object.\n----------------------------------------------\n\n\n**Sample data**: \n\n```\n$var1$ =\n{\n \"name\": \"Alex\",\n \"address\": {\n \"street\": \"1800 Amphibious Blvd\",\n \"city\": \"Mountain View\",\n \"state\": \"CA\",\n \"pincode\": \"94045\"\n }\n} \n```\n\n\u003cbr /\u003e\n\n\n**Usage** : `$var1$.REMOVE_PROPERTY(\"address.street\")`\n\n\nRemove the address.street property from the JSON.\n\n\n**Output**: \n\n```\n{\n \"name\": \"Alex\",\n \"address\": {\n \"city\": \"Mountain View\",\n \"state\": \"CA\",\n \"pincode\": \"94045\"\n }\n}\n```\n\n\u003cbr /\u003e\n\nRecommendation\n--------------\n\n- Learn how to add and configure a [Data Mapping task](/application-integration/docs/configure-data-mapping-task)"]]