Markus,It looks like an unordered list can use any uri schema in addition to the uuid schema.I am wondering if we can use any schema as we wanted, such as:#activity[<#detail>]<*!:cid:2015-10-01><*!:uuid:0001><#type>/&/"chat"#activity[<#detail>]<*!:cid:2015-10-01><*!:uuid:0002><#type>/&/"search"Thanks,-Ning
Markus,Thanks for the reply.Currently, the annotation does not know how to handle "$is#". Could you point some XDI document about $is# handling?Thanks,-Ning
The heart of ontologies is type relationships, i.e., defining subtypes (subclasses) and supertypes (superclasses). In XDI, these relationships are expressed using XDI type statements. The concept of “type” is already represented in XDI as #, the XDI context symbol for unreserved classes. So an XDI type relation MUST be expressed using the XDI predicate #. An inverse type relation MUST be expressed with the XDI predicate $is#.
XDI type statements fall into two categories:
1. Relationships between subclasses and superclasses. These correspond to rdf:subClassOf relations.
2. Relationships between instances and classes. These correspond to rdf:type relations.
Since the context symbol for an XDI context already indicates whether it is a class or an instance, XDI type relations can express both categories of type statements.
Examples of superclass/subclass relations:
Subject |
Predicate |
Object |
#food |
# |
#fruit |
#fruit |
# |
#apple |
#fruit |
# |
#banana |
#fruit |
# |
#pear |
<$string> |
# |
<#name> |
<$string> |
# |
<#email> |
<$string> |
# |
<#city> |
Examples of subclass/superclass relations:
Subject |
Predicate |
Object |
#fruit |
$is# |
#food |
#apple |
$is# |
#fruit |
#banana |
$is# |
#fruit |
#pear |
$is# |
#fruit |
<#name> |
$is# |
<$string> |
<#email> |
$is# |
<$string> |
<#city> |
$is# |
<$string> |
Examples of class/instance relations:
Subject |
Predicate |
Object |
#carpenter |
# |
=!:uuid:... |
#church |
# |
+!:uuid:... |
#car |
# |
*!:uuid:... |
Examples of instance/class relations:
Subject |
Predicate |
Object |
=!:uuid:... |
$is# |
#carpenter |
+!:uuid:... |
$is# |
#church |
*!:uuid:... |
$is# |
#car |
--
You received this message because you are subscribed to the Google Groups "XDI2" group.
To unsubscribe from this group and stop receiving emails from it, send an email to xdi2+uns...@googlegroups.com.
To post to this group, send email to xd...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/xdi2/CAJF45PQpXf_hGWn1L4XktmE7bR2k8MO73rvVPxiDEJwWpH11Xg%40mail.gmail.com.