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
The Solid Web Access Control ontology - described in Solid WAC allows one to describe essentially rules stating which sets of people can access which sets of resources.
I invented the regex:uriSet relation. I am trying to express that it specifies all resources whose uris match the pattern. This could be expressed in OWL too, but I want to keep things simple and not bring OWL in at this point.
There are a few striking things about these two rules, which made me wonder.
Each rule is making universally quantified statements. <#pub> is saying that all </public/**> resources can by read by anyone. <#family> is stating that that all </family/**> resources can be read by all family members.
A request only needs to satisfy one of those two rules, so we have a disjunction of rules it seems
If none of the rules is satisfied by a request, then it fails.
Put this way it looks like we are dealing with the dual of what Evan Patterson calls in Knowledge Representation in Bicategories of Relations regular logic. Negation, disjunction and universal quantification seem to be present here...
The text was updated successfully, but these errors were encountered:
Yes, indeed. The first two rules are disjunctions with universal quantification. The last rule is a negation, but not a strong negation (as in first-order logic), but a weak negation (as is available in databases and programming languages). "If none of the rules satisfies a request", assumes a closed world where all the rules are known.
Such a weak negation can be added to an implementation, for instance in the form of built-in functions. Notation3 has such built-in functions: log:notIncludes, log:collectAllIn. The EYE implementation of RDF Surfaces supports all Notation3 built-ins.
In the RDF Surfaces specification, for now, we don't mention built-ins and restrict ourselves first on a pure first-order logic expressed as RDF (or an extension thereof).
yes, I see the value of doing this by going down to absolute basics. Especially here, as I have been thinking of using OWL constructs (see some social networking examples) and I think it would really help to understand what is going on and if this creates problems for this use of OWL.
The Solid Web Access Control ontology - described in Solid WAC allows one to describe essentially rules stating which sets of people can access which sets of resources.
I invented the
regex:uriSet
relation. I am trying to express that it specifies all resources whose uris match the pattern. This could be expressed in OWL too, but I want to keep things simple and not bring OWL in at this point.There are a few striking things about these two rules, which made me wonder.
<#pub>
is saying that all</public/**>
resources can by read by anyone.<#family>
is stating that that all</family/**>
resources can be read by all family members.Put this way it looks like we are dealing with the dual of what Evan Patterson calls in Knowledge Representation in Bicategories of Relations regular logic. Negation, disjunction and universal quantification seem to be present here...
The text was updated successfully, but these errors were encountered: