我可以为 OWL 中的特定 class 创建数据类型 属性 吗?

Can I create datatype property for particular class in OWL?

有点像.. 假设我有一个 class 名为 Instructor.

现在,我需要有一个数据类型属性只链接到讲师,比如薪水,instructor_name..

这个的 RDF 结构是什么?这样的事情可能吗?

添加 rdfs:domain 有效!

<!-- Define the salary property -->
<owl:DatatypeProperty rdf:about="http://www.example.com/sample#salary">
    <rdfs:domain rdf:resource="http://www.example.com/sample#instructor" />
</owl:DatatypeProperty>