JSON module
Admin Guide
Section titled “Admin Guide”Overview
Section titled “Overview”This module introduces a new type of variable that provides both serialization and de-serialization from JSON format.
The variable provides ways to access objects and arrays to add,replace or delete values from the script.
The correct approach is to consider a json object as a hashtable ( you can put (key;value) pairs, and you can delete and get values by key) and a json array as an array ( you can append, delete and replace values).
Since the JSON format can have objects inside other objects you can have multiple nested hashtables or arrays and you can access these using paths.
Dependencies
Section titled “Dependencies”OpenSIPS Modules
Section titled “OpenSIPS Modules”This module does not depend on other modules.
External Libraries or Applications
Section titled “External Libraries or Applications”- libjson The libjson library can be downloaded from: http://oss.metaparadigm.com/json-c/
Exported Parameters
Section titled “Exported Parameters”The module does not export any parameters.
Exported Variables
Section titled “Exported Variables”This module exports the $json(id) variable.
The json variable provides methods to access fields in json objects and to access indexes in json arrays.
Variable lifetime
Section titled “Variable lifetime”The json variables will be available to the process that created them from the moment they were initialized. They will not reset per message or per transaction. If you want to use the on a per message basis you should initialize them each time.
Accessing the $json(id) variable
Section titled “Accessing the $json(id) variable”The grammar that describes the id is:
-
id = name(identifier)*
-
identifier = key | index
-
key = /string | /$var
-
index = [integer] | [$var] | []
The ”[]” index represents appending to the array. It should only be used when trying to set a value and not when trying to get one.
Negative indexes can be used to access an array starting from the end. So ”[-1]” signifies the last element.
Variables can be used as indexes or keys. Variables that will be used as indexes must contain integer values. Variables that will be used as keys should contain string values.
Trying to get a value from a non-existing path (key or value) will return the NULL value and notice messages will be placed in the log describing the value of the json and the path used.
Trying to replace or insert a value in a non-existing path will cause an error in setting the value and notice messages will be printed in the log describing the value of the json and the path used
...$json(obj1/key) = "value"; #replace or insert the (key,value) #pair into the json object;
$json(matrix1[1][2]) = 1; #replace the element at index 2 in the element #at index 1 in an array
xlog("$json(name/key1[0][-1]/key2)"); # a more complex example
......
$json(ar1) := "[1,2,3,4]";
$var(i) = 0;
while( $json(ar1[$var(i)]) ){
#print each value xlog("Found:[$json(ar1[$var(i)])]\n");
#increment each value $json(ar1[$var(i)]) = $json(ar1[$var(i)]) + 1 ;
$var(i) = $var(i) + 1;
}
...Returned values from $json(id)
Section titled “Returned values from $json(id)”If the value specified by the id is an integer it will be returned as an integer value.
If the value specified by the id is a string it will be returned as a string.
If the value specified by the id is any other type of json ( null, boolean, object, array ) the serialized version of the object will be returned as a string value. Using this and the ”:=” operator you can duplicate json objects and put them in other json objects ( for string or integer you may use the ”=” operator).
If the id does not exist a NULL value will be returned.
Operators for the $json(id) variable
Section titled “Operators for the $json(id) variable”There are 2 operators available for this variable.
The ”=” operator
Section titled “The ”=” operator”This will cause the value to be taken as is and be added to the json object ( e.g. string value or integer value ).
Setting a value to NULL will cause it to be deleted.
...$json(array1[]) = 1;......$json(array1[-1]) = NULL;......$json(object1/some_key) = "some_value";...The ”:=” operator
Section titled “The ”:=” operator”This will cause the value to be taken and interpreted as a json object ( e.g. this operator should be used to parse json inputs ).
...$json(array1) := "[]";......$json(array1[]) := "null";$json(array1[]) := "true";$json(array1[]) := "false";......
$json(array) := "[1,2,3]";$json(object) := "{}";$json(object/array) := $json(array) ;
...Exported Functions
Section titled “Exported Functions”json_link(“$json(dest_id)”, “$json(source_id)”)
Section titled “json_link(“$json(dest_id)”, “$json(source_id)”)”This function can be used to link json objects together. This will work simillar to setting a value to an object, the only difference is that the second object is not copied, only a reference is created.
Changes to any of the objects will be visible in both of them.
You can use this method either to create references so each time you access the field you don’t have to go through the full path (for speed efficiency and shorter code), or if you have an object that must be added to many other objects and you don’t want to copy it each time (space and speed efficiency).
You can think of this object exactly as a reference in an object-oriented language. Modifying fields referenced by the variable will cause modifications in all the objects, BUT modifying the variable itsef will not cause any changes to other objects.
...
$json(b) := "[{},{},{}]";
json_link("$json(stub)","$json(b[0])");
$json(stub/ana) = "are"; #add to the stub$json(stub/ar) := "[]";$json(stub/ar[]) = 1;$json(stub/ar[]) = 2;$json(stub/ar[]) = 3;
$json(b[0]/ar[0]) = NULL; # delete from the original object
xlog("\nTest link :\n$json(stub)\n$json(b)\n\n");
/*Output:
Test link :{ "ana": "are", "ar": [ 2, 3 ] }[ { "ana": "are", "ar": [ 2, 3 ] }, { }, { } ]
*/
$json(stub) = NULL; #delete the stub, no change will happen to the source
xlog("\nTest link :\n$json(stub)\n$json(b)\n\n");
/* Output:
Test link :<null>[ { "ana": "are", "ar": [ 2, 3 ] }, { }, { } ]
*/
......
$json(b) := "[1]";
/* NEVER do this, it is meant only to show where problems might occur */json_link("$json(b[0])","$json(b)"); # replace 1 with a reference to b
xlog("\nTest link :\n$json(stub)\n$json(b)\n\n");
/* this will cause OPENSIPS to crash because it will continuously try to get b, then b[0], then b ... */
...Contributors
Section titled “Contributors”By Commit Statistics
Section titled “By Commit Statistics”Top contributors by DevScore(1), authored commits(2) and lines added/removed(3)
| # | Name | DevScore | Commits | Lines++ | Lines— |
|---|---|---|---|---|---|
| 1. | Andrei Dragus | 19 | 4 | 1558 | 14 |
| 2. | Stefan Darius (@dariusstefan) | 11 | 5 | 457 | 80 |
| 3. | Bogdan-Andrei Iancu (@bogdan-iancu) | 4 | 2 | 11 | 14 |
| 4. | Razvan Crainea (@razvancrainea) | 4 | 2 | 1 | 4 |
| 5. | Anca Vamanu | 3 | 1 | 4 | 2 |
(1) DevScore = author_commits + author_lines_added / (project_lines_added / project_commits) + author_lines_deleted / (project_lines_deleted / project_commits)
(2) including any documentation-related commits, excluding merge commits
(3) ignoring whitespace edits, renamed files and auto-generated files
By Commit Activity
Section titled “By Commit Activity”| # | Name | Commit Activity |
|---|---|---|
| 1. | Stefan Darius (@dariusstefan) | Jun 2026 - Jul 2026 |
| 2. | Razvan Crainea (@razvancrainea) | Feb 2012 - Jun 2026 |
| 3. | Bogdan-Andrei Iancu (@bogdan-iancu) | Dec 2010 - Jan 2013 |
| 4. | Anca Vamanu | Sep 2009 - Sep 2009 |
| 5. | Andrei Dragus | Sep 2009 - Sep 2009 |
(1) including any documentation-related commits, excluding merge commits
Documentation
Section titled “Documentation”Contributors
Section titled “Contributors”Last edited by: Razvan Crainea (@razvancrainea), Andrei Dragus.
License
Section titled “License”All documentation files (i.e. .md extension) are licensed under the Creative Common License 4.0