So you're almost there. JSON is very similar to the data structure called a dictionary. JSON stores "key:value" relationships where keys are unique and values are not. Items are separated by commas. We index into dictionaries and JSON by using the same syntax we use for indexing lists and arrays, which is bracket indexing. To access a value in JSON I would say something like
json_example = {"a":1}
print(json_example["a"]) #would print 1
so...
import json
json_data=open(file_directory).read()
data = json.loads(json_data)
print(data["maps"])