Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
RDF 有一种将文字值分配给命名空间的方法:
<owl:cardinality rdf:datatype="&xsd;nonNegativeInteger">1</owl:cardinality>
注意&xsd;对应于xsd命名空间声明的前缀xmlns:xsd = "http://www.w3.org/2001/XMLSchema#"。
&xsd;
xsd
xmlns:xsd = "http://www.w3.org/2001/XMLSchema#"
这是特定于 RDF 的语法还是标准 XML?
它们是XML 实体引用——它是 XML 标准的一部分,而不是 RDF 本身的一部分。