# How to use Split node using Object key value pair
In this tutorial we will use the split node to split an JSON object based on each key in the root level of the object.
The input JSON Object used in this video is given below.
{
"empid" : 123,
"org" : "kumologica",
"address" : {
"street" : "Everton st",
"unit" : 3,
"state" : "NSW"
}
}