用于描述Uri组件的RDF词汇表

sma*_*man 5 rdf uri semantic-web metadata vocabulary

是否有用于描述Uri组件元数据的已知RDF词汇表?(例如计划,权限,查询等)

更新 我已经能够为URI找到DublinCore术语资源,但在相应的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>
Run Code Online (Sandbox Code Playgroud)

uno*_*nor 5

w3.org/wiki/URI

我不知道做的是什么,但在w3.org维基有一个URI页面包含一个小词汇量与像类URI,IRI,Scheme,和UWI.概念"URI Scheme"的词汇URI将是http://esw.w3.org/topic/Scheme.

硬币

相关的,但可能不完全是你需要的,似乎是CoIN(标识符名称的组成):

CoIN词汇表定义了一组类和属性,用于描述资源的哪些属性构成URI的组件.

(另请参阅:URI模板)

uri4uri.net

还有uri4uri.net,作为一个愚人节玩笑创建,用于:

URI,URI片段标识符,Internet域,Mime类型,文件后缀,URI方案.

请参阅http://uri4uri.net/vocab上的词汇.它包含所有相关URI部分的URI.

包含所有部分的示例HTTP URI将是:http:// foo:bar@bbc.co.uk:80/index.html?a = 1&b = 2

生成的龟包括:

<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> .
Run Code Online (Sandbox Code Playgroud)