We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
As a user, I want JB4JSON-LD to serialize annotation property values as objects in case they represent individual references.
That is, if the annotation property value is a URI/URL, it should be serialized as an object with a single attribute - @id.
@id
The text was updated successfully, but these errors were encountered:
Example:
class A { @OWLAnnotationProperty(iri = "http://example.org/annotation") private Object annotation; } A a = new A(); a.annotation = URI.create("http://example.org");
Should be serialized as (ID omitted):
{ "http://example.org/annotation": { "@id": "http://example.org" } }
Sorry, something went wrong.
[Feature #13] Serialize reference annotation property values as objec…
5327784
…ts with ID.
[Feature #13] Add support for deserializing object references into an…
6826272
…notation property attributes of type Object.
Implemented in 0.5.0.
No branches or pull requests
As a user, I want JB4JSON-LD to serialize annotation property values as objects in case they represent individual references.
That is, if the annotation property value is a URI/URL, it should be serialized as an object with a single attribute -
@id
.The text was updated successfully, but these errors were encountered: