更新我已经能够找到一个DublinCore term resource for URI,但在相应的RDF文档中传达的信息范围是“一个URI是一个数据类型”,这比我需要的更加有限. RDF描述如下:
<rdf:Description rdf:about="http://purl.org/dc/terms/URI"> <rdfs:label xml:lang="en">URI</rdfs:label> <rdfs:comment xml:lang="en">The set of IDentifIErs constructed according to the generic Syntax for Uniform Resource IDentifIErs as specifIEd by the Internet Engineering Task Force.</rdfs:comment> <rdfs:isdefinedBy rdf:resource="http://purl.org/dc/terms/"/> <dcterms:issued rdf:datatype="http://www.w3.org/2001/XMLSchema#date">2000-07-11</dcterms:issued> <dcterms:modifIEd rdf:datatype="http://www.w3.org/2001/XMLSchema#date">2008-01-14</dcterms:modifIEd> <rdf:type rdf:resource="http://www.w3.org/2000/01/rdf-schema#Datatype"/> <dcterms:hasversion rdf:resource="http://dublincore.org/usage/terms/history/#URI-003"/> <rdfs:seeAlso rdf:resource="http://www.IEtf.org/rfc/rfc3986.txt"/></rdf:Description>解决方法 w3.org/wiki/URI
我不知道该怎么做,但是在w3.org wiki中有一个URI page包含一个小词汇表,其中包含URI,IRI,Scheme和UWI等类.概念“URI Scheme”的词汇URI将是http://esw.w3.org/topic/Scheme.
硬币
相关的,但可能不完全是你需要的,似乎是CoIN (The Composition of Identifier Names):
The CoIN vocabulary defines a set of classes and propertIEs used to descibe what propertIEs of a resource constitute components of a URI.
(另见:URI Templates)
uri4uri.net
还有uri4uri.net,作为一个愚人节玩笑,为:
URIs,URI fragment IDentifIErs,Internet Domains,Mime Types,file Suffixes,URI Schemes.
请参阅http://uri4uri.net/vocab的词汇表.它包含所有相关URI部分的URI.
包含所有部分的示例http URI将是:http://foo:bar@bbc.co.uk:80/index.html?a=1&b=2
generated Turtle包括:
<http://uri4uri.net/uri/http%3A%2F%2Ffoo%3Abar%40bbc.co.uk%3A80%2Findex.HTML%3Fa%3D1%26b%3D2> rdf:type uriv:URI ; skos:notation "http://foo:bar@bbc.co.uk:80/index.HTML?a=1&b=2"^^<http://www.w3.org/2001/XMLSchema#anyURI> ; uriv:scheme <http://uri4uri.net/scheme/http> ; uriv:host <http://uri4uri.net/domain/bbc.co.uk> ; uriv:port "80"^^<http://www.w3.org/2001/XMLSchema#positiveInteger> ; uriv:user "foo" ; uriv:pass "bar" ; uriv:account <http://uri4uri.net/uri/http%3A%2F%2Ffoo%3Abar%40bbc.co.uk%3A80%2Findex.HTML%3Fa%3D1%26b%3D2#account-foo> ; uriv:path "/index.HTML"^^<http://www.w3.org/2001/XMLSchema#string> ; uriv:suffix <http://uri4uri.net/suffix/HTML> ; uriv:filename "index.HTML"^^<http://www.w3.org/2001/XMLSchema#string> ; uriv:queryString "a=1&b=2"^^<http://www.w3.org/2001/XMLSchema#string> ; uriv:query <http://uri4uri.net/uri/http%3A%2F%2Ffoo%3Abar%40bbc.co.uk%3A80%2Findex.HTML%3Fa%3D1%26b%3D2#query> .总结
以上是内存溢出为你收集整理的用于描述Uri组件的RDF词汇表全部内容,希望文章能够帮你解决用于描述Uri组件的RDF词汇表所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)