Creates an empty JSON object.
It is highly recommended to delete every JSON object from the memory when it is not needed any longer. For every call of JsonObjectCreate should be a call of JsonFree.
Json.bdh
JsonObjectCreate(): number;
Valid handle to a JSON object.
transaction TMain var jsonObject : number; begin jsonObject := JsonObjectCreate(); JsonSetStringProperty(jsonObject, "NewProperty", "New String Value"); ... JsonFree(jsonObject); end TMain;