import json # Load the dataset (update 'your_file_path.json' with the actual file location) file_path = "/Users/atibaraymond/Downloads/22687585/release_conditions.json" with open(file_path, "r") as file: data = json.load(file) # Display a sample record print(data[0]) # Print the first patient record