You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I notice there is a syntax error in the published V2 Credentials Turtle file (here: https://www.w3.org/2018/credentials/vocabulary.ttl), specifically a spurious '@' character on the Object datatype (i.e., ^^@rdf:HTML), that causes any RDF parser to (correctly) blow up:
# Ontology definition
cred: a owl:Ontology ;
dc:title """Verifiable Credentials Vocabulary v2.0"""@en ;
===> dc:description """RDFS [[RDF-SCHEMA]] vocabulary used by the Verifiable Credentials [[VC-DATA-MODEL-2.0]]"""^^@rdf:HTML ;
rdfs:seeAlso <https://www.w3.org/TR/vc-data-model-2.0/> ;
dc:date "2025-02-25"^^xsd:date ;
.
I have just updated the vocabulary references, and it should be o.k. now @pmcb55 and it should be o.k. now. There was a bug in the generation process...
Hi,
I notice there is a syntax error in the published V2 Credentials Turtle file (here: https://www.w3.org/2018/credentials/vocabulary.ttl), specifically a spurious '@' character on the Object datatype (i.e.,
^^@rdf:HTML
), that causes any RDF parser to (correctly) blow up:I had a quick look at the tool I think is used to generate this Turtle representation (i.e., yml2vocab), but it looks fine: https://github.com/w3c/yml2vocab/blob/e465cd586c138b23db29d2c5ce0e5b374cf8a8c0/lib/turtle.ts#L81, so I've no idea where this invalid '@' character is coming from.
I could work around the problem by simply loading the JSON-LD representation instead, so it's not an issue for me - just letting you know.
The text was updated successfully, but these errors were encountered: