JSON is JavaScript Object Notation - a data format based on Javascript objects.
null, true and false all exist in Javascript (and JSON).
json.loads() is a Python function, that converts json into a Python object (or dict, as it's called in Python).
None, True and False are the Python equivalents of the above Javascript primitives. null, true and false do not exist in Python so json.loads() needs to convert them.