是否可以对FOAF(http://xmlns.com/foaf/spec/)中找到的类进行子类化? 我试过类似下面代码的东西,但我不确定这是否是正确的方法。
<rdfs:Class rdf:ID="user">
<rdfs:subClassOf rdf:resource="http://xmlns.com/foaf/0.1/#Agent" />
<rdfs:comment>
The class of users, subclass of foaf:Agent.
</rdfs:comment>
</rdfs:Class>
答案 0 :(得分:3)
您的代码段虽然不是完整的RDF文档,但却是使yourdoc#user
成为http://xmlns.com/foaf/0.1/#Agent
的子类的正确方法。但是,后一类不是FOAF Agent类。 FOAF代理类由URI http://xmlns.com/foaf/0.1/Agent
标识(没有#
)。查看实际的FOAF ontology可能很有用,因为您可以看到它如何定义Agent的子类。例如,它声明了foaf:与
<rdfs:Class rdf:about="http://xmlns.com/foaf/0.1/Organization" rdfs:label="Organization" rdfs:comment="An organization." vs:term_status="stable">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<rdfs:subClassOf rdf:resource="http://xmlns.com/foaf/0.1/Agent"/>
<rdfs:isDefinedBy rdf:resource="http://xmlns.com/foaf/0.1/"/>
<owl:disjointWith rdf:resource="http://xmlns.com/foaf/0.1/Person"/>
<owl:disjointWith rdf:resource="http://xmlns.com/foaf/0.1/Document"/>
</rdfs:Class>
如果你是手写这个,那么在Turtle或N3序列化中工作要容易得多,那就是:
foaf:Organization a rdfs:Class , owl:Class ;
rdfs:comment "An organization." ;
rdfs:isDefinedBy foaf: ;
rdfs:label "Organization" ;
rdfs:subClassOf foaf:Agent ;
owl:disjointWith foaf:Person , foaf:Document ;
vs:term_status "stable" .