I am quite new to working with JSON objects.
I am trying to drill down to the property value: Key Account Manager
in my JSON object
I think it will be something like:
${ JSON.parse(post.localization).values['locale'] }
JSON object:
[
{
jobId: 57,
applyUrl: {
localization: [
{
locale: "en-GB",
value: "https://ohly-v2....."
},
{
locale: "de-DE",
value: "https://ohly-v2...."
}
]
},
adUrl: {
localization: [
{
locale: "en-GB",
value: "https://ohly-v2...."
},
{
locale: "de-DE",
value: "https://ohly-v2...."
}
]
},
timeZone: "Europe/Copenhagen",
mediaId: "cf7b7c03-83fa-499a-95aa-f73a0641e8ae",
advertisements: [
{
default: true,
title: {
localization: [
{
locale: "de-DE",
value: "Key Account Manager"
},
{
locale: "en-GB",
value: "Key Account Manager"
}
]
},
content: {
localization: [
{
locale: "de-DE",
value: "dfhsehrwe5hwejhwrtws"
}
}
]
Is their a website where I can copy and paste my data structure in and it will aid in drilling down to bits I need?