# This vocab.
@prefix xrd:      <http://ontologi.es/xrd#> .

# Stock imports.
@prefix cc:	  <http://creativecommons.org/ns#> .
@prefix dc:       <http://purl.org/dc/terms/> .
@prefix dcmitype: <http://purl.org/dc/dcmitype/> .
@prefix foaf:     <http://xmlns.com/foaf/0.1/> .
@prefix link:     <http://www.w3.org/2006/link#> .
@prefix owl:      <http://www.w3.org/2002/07/owl#> .
@prefix rdf:      <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs:     <http://www.w3.org/2000/01/rdf-schema#> .
@prefix skos:     <http://www.w3.org/2004/02/skos/core#> .
@prefix vs:       <http://www.w3.org/2003/06/sw-vocab-status/ns#> .
@prefix xhv:      <http://www.w3.org/1999/xhtml/vocab#> .
@prefix xsd:      <http://www.w3.org/2001/XMLSchema#> .

xrd:alias
	a rdfs:Property , owl:ObjectProperty ;
	rdfs:label "alias"@en ;
	rdfs:comment "An owl:sameAs-like property, but not as strong. It asserts that the two resources may be considered identical for XRD use cases, but are not necessarily identical/the same in every other regard"@en ;
	rdfs:subPropertyOf rdfs:seeAlso .

xrd:URITemplate
	a rdfs:Datatype ;
	rdfs:label "URI Template"@en ;
	rdfs:comment "A URI Template, mostly following the syntax of xsd:anyURI, but with optional variables in {braces}."@en ;
	rdfs:subClassOf xsd:string .

<http://ontologi.es/xrd#host:>
	rdfs:comment "URIs beginning with this prefix identify host names. e.g. <http://ontologi.es/xrd#host:example.com> identifies the host 'example.com' - but does not identify any particular resource at that domain."@en .
	
xrd:expires
	a rdfs:Property , owl:DatatypeProperty ;
	rdfs:label "expires"@en ;
	rdfs:comment "Indicates the end of a document's validity."@en ;
	rdfs:subPropertyOf dc:date ;
	rdfs:domain foaf:Document ;
	rdfs:range xsd:dateTime .

