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
@id
https://json-ld.github.io/json-ld-star/#example-embedded-node-as-subject: If I add another key (eg sex) inside @id:
sex
"@id": { "@id": "bob", "age": 42, "sex": "Male" }, "certainty": 0.8
<<ex:bob :age 42>> :certainty 0.8. <<ex:bob :sex "Male">> :certainty 0.8.
As you can attach lots of annotations, such duplication would seem ill-advised.
The text was updated successfully, but these errors were encountered:
From the Draft Spec, an embedded node describes exactly one property/value pair; effectively a single triple.
Embedded Node An embedded node is a node object describing exactly one property/value pair. The node object MAY be identified as with other node objects (including with an embedded node). The property MUST be either @type or an IRI. The property value MUST be either an IRI, blank node, literal or an embedded node. An embedded node MAY contain other entries that do not, themselves, create directed-arcs, such as @context or @index. An embedded triples is the representation of an embedded triple.
Sorry, something went wrong.
No branches or pull requests
https://json-ld.github.io/json-ld-star/#example-embedded-node-as-subject:
If I add another key (eg
sex
) inside@id
:As you can attach lots of annotations, such duplication would seem ill-advised.
The text was updated successfully, but these errors were encountered: