@prefix foaf: <http://xmlns.com/foaf/0.1/> .
@prefix vann: <http://purl.org/vocab/vann/> .
@prefix vs: <http://www.w3.org/2003/06/sw-vocab-status/ns#> .
@prefix daia: <http://purl.org/ontology/daia/> .
@prefix ssso: <http://purl.org/ontology/ssso#> .
@prefix dso: <http://purl.org/ontology/dso#> .
@prefix schema: <http://schema.org/> .
@prefix voaf: <http://purl.org/vocommons/voaf#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix dct: <http://purl.org/dc/terms/> .
@prefix bibo: <http://purl.org/ontology/bibo/> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix service: <http://purl.org/ontology/service#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix gr: <http://purl.org/goodrelations/v1#> .
@prefix cc: <http://creativecommons.org/ns#> .

<http://purl.org/ontology/dso> cc:license <http://creativecommons.org/licenses/by/3.0/> ;
	dct:creator "Jakob Voß" ;
	dct:description "A micro-ontology that defines a set of typical document-related services such as provided by libraries, museums and archives."@en ;
	dct:modified "2013-12-05"^^xsd:date ;
	dct:title "Document Service Ontology" ;
	vann:preferredNamespacePrefix "dso" ;
	vann:preferredNamespaceUri "http://purl.org/ontology/dso#" ;
	a voaf:Vocabulary , owl:Ontology ;
	rdfs:label "DSO" ;
	owl:versionInfo "0.6.5rev1" .

dso:DocumentService a owl:Class ;
	rdfs:isDefinedBy <http://purl.org/ontology/dso> ;
	rdfs:label "DocumentService"@en ;
	rdfs:seeAlso gr:Offering , ssso:ServiceEvent , schema:Offer ;
	rdfs:subClassOf service:Service ;
	vs:term_status "testing" .

dso:Interloan a owl:Class ;
	rdfs:isDefinedBy <http://purl.org/ontology/dso> ;
	rdfs:label "Interloan"@en ;
	rdfs:subClassOf dso:DocumentService ;
	vs:term_status "testing" .

dso:Loan a owl:Class ;
	rdfs:isDefinedBy <http://purl.org/ontology/dso> ;
	rdfs:label "Loan"@en ;
	rdfs:subClassOf dso:DocumentService ;
	vs:term_status "testing" .

dso:OpenAccess a owl:Class ;
	rdfs:isDefinedBy <http://purl.org/ontology/dso> ;
	rdfs:label "Digitization"@en , "OpenAccess"@en ;
	rdfs:subClassOf dso:DocumentService ;
	vs:term_status "testing" , "unstable" .

dso:Presentation a owl:Class ;
	rdfs:isDefinedBy <http://purl.org/ontology/dso> ;
	rdfs:label "Presentation"@en ;
	rdfs:subClassOf dso:DocumentService ;
	vs:term_status "testing" .

dso:hasDocument a owl:ObjectProperty ;
	rdfs:domain dso:DocumentService ;
	rdfs:isDefinedBy <http://purl.org/ontology/dso> ;
	rdfs:label "hasDocument"@en ;
	rdfs:seeAlso bibo:Document , daia:availableFor , daia:unavailableFor , foaf:Document ;
	owl:inverseOf dso:hasService ;
	vs:term_status "testing" .

dso:hasService a owl:ObjectProperty ;
	rdfs:isDefinedBy <http://purl.org/ontology/dso> ;
	rdfs:label "hasService"@en ;
	rdfs:range dso:DocumentService ;
	rdfs:seeAlso bibo:Document , daia:availableFor , daia:unavailableFor , foaf:Document ;
	owl:inverseOf dso:hasDocument ;
	vs:term_status "testing" .
