Why is it not possible to specify more than one @JsonldNamespace in a class using the library? As far as I am correctly informed, this is possible according to the json-ld convention. So how can I do this using this library?
"@context": {
"schema": "http://schema.org/",
"ex": "http://example.org/"
},
"@id": "http://example.org/person#1",
"@type": "schema:Person",
"schema:givenName": "John",
"schema:familyName": "Doe",
"schema:name": "John Doe",
"schema:jobTitle": "Software Engineer"
}
Why is it not possible to specify more than one @JsonldNamespace in a class using the library? As far as I am correctly informed, this is possible according to the json-ld convention. So how can I do this using this library?