Open
Description
{
"@context": {
"name": {
"@id": "@nest",
"@context": {
"first": "http://schema.org/givenName",
"last": "http://schema.org/familyName"
}
}
},
"name": {
"first": "Pierre-Antoine",
"last": "Champin"
}
}
should expand to
[
{
"http://schema.org/givenName": [
{
"@value": "Pierre-Antoine"
}
],
"http://schema.org/familyName": [
{
"@value": "Champin"
}
]
}
]
but in the playground, it expands to an empty list...