How to Reference JSON Value Where Path includes spaces

Options
I am working with some legacy data that include spaces in object names which comes through as the below...
"fields":{
"Bakery Name":"Tasty Bread",
"Job Reference":"4556",
"Bakery Type":"Bread"
}
How can I reference values say "Bakery Name" using dot notation?

I have tried
• fields.Bakery Name
• fields."Bakery Name"
• fields.["Bakery Name"]
• fields["Bakery Name"]

to no avail 😟

What is the correct syntax to reference a value where a name contains spaces?

Any help would be greatly appreciated.

Comments