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
Fix Enola to handle RDF Collections (i.e. ordered lists; with rdf:first and rdf:rest); as-is, it doesn't, yet:
rdf:first
rdf:rest
java.lang.IllegalArgumentException: http://www.w3.org/2002/07/owl#withRestrictions at dev.enola.thing.message.ProtoThingIntoJavaThingBuilderConverter.object(ProtoThingIntoJavaThingBuilderConverter.java:107) at dev.enola.thing.message.ProtoThingIntoJavaThingBuilderConverter.convertInto(ProtoThingIntoJavaThingBuilderConverter.java:72) at dev.enola.thing.message.ProtoThingIntoJavaThingBuilderConverter.convertInto(ProtoThingIntoJavaThingBuilderConverter.java:41) at dev.enola.common.convert.ConverterInto.convertIntoOrThrow(ConverterInto.java:60) at dev.enola.rdf.RdfResourceIntoThingConverter.convert(RdfResourceIntoThingConverter.java:71) at dev.enola.rdf.RdfResourceIntoThingConverter.convert(RdfResourceIntoThingConverter.java:38) at dev.enola.thing.io.Loader.load(Loader.java:55) (...)
for the ( ... ) in in following, from docs/models/linkml/owl/enola.linkml.owl.ttl (which also makes this a pre-req for #731) :
( ... )
docs/models/linkml/owl/enola.linkml.owl.ttl
enola:wikipedia a owl:ObjectProperty, linkml:SlotDefinition ; rdfs:label "wikipedia" ; rdfs:range [ a rdfs:Datatype ; owl:onDatatype xsd:string ; owl:withRestrictions ( [ xsd:pattern "^[a-zA-Z0-9_]+$" ] ) ] ; skos:definition "Wikipedia EN page ID (not URL), e.g. 'Wikipedia' (for https://en.wikipedia.org/wiki/Wikipedia)" ; skos:inScheme enola:ontology .
Nota bene: https://rdf4j.org/documentation/programming/model/#rdf-collections
The text was updated successfully, but these errors were encountered:
fix (core): Work around lack of RDF Collections support (see enola-de…
8f4bbab
…v#759)
a256b6e
fix (core): Work around lack of RDF Collections support (see #759)
8dd09df
No branches or pull requests
Fix Enola to handle RDF Collections (i.e. ordered lists; with
rdf:first
andrdf:rest
); as-is, it doesn't, yet:for the
( ... )
in in following, fromdocs/models/linkml/owl/enola.linkml.owl.ttl
(which also makes this a pre-req for #731) :Nota bene: https://rdf4j.org/documentation/programming/model/#rdf-collections
The text was updated successfully, but these errors were encountered: