-
Notifications
You must be signed in to change notification settings - Fork 61
New issue
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
epos-dcat-ap_shapes update test on dcat:accessURL #302
Comments
@sgrellet I corrected your WP15 RDF file. |
@rpaciello indeed a webservice having 1 entrypoint can have several hydra:operation(s). That's the case for all OGC services (don’t have time today to type it in our ttl). In the proposed approach you allow to provide a different entrypoint value through the hydra:template (or copy/pasting that value could cause an issue for maintenance). Best would be, for us, at the client level to 'concatenate' But we’ll talk about this afterwards the demonstrator :) |
I agree with this change. By using the relative path in Operation we would also avoid duplications when the same Webservice is deployed in multiple sites. |
Testing on WP15 files, Shacl playground complains about
dcat:accessURL pointing to a epos:WebService;
However a epos:WebService; is a rdfs:subClassOf rdfs:Resource ;
it seems the subtyping is not taken into account.
=> Need to add [
sh:class epos:WebService;
]
to the following test
sh:property [
sh:path dcat:accessURL ;
sh:or (
[
sh:class rdfs:Resource ;
]
[
sh:class hydra:Operation ;
]
[
sh:datatype xsd:anyURI ;
]
) ;
sh:minCount 1 ;
] ;
The text was updated successfully, but these errors were encountered: