Difference between revisions of "AC RDF N3 Prefixes and Class Declarations"

From TDWG Terms Wiki
Jump to: navigation, search
Line 6: Line 6:
 
@prefix owl: <http://www.w3.org/2002/07/owl#> . <br/>
 
@prefix owl: <http://www.w3.org/2002/07/owl#> . <br/>
 
@prefix skos: <http://www.w3.org/2004/02/skos/core#> . <br/>
 
@prefix skos: <http://www.w3.org/2004/02/skos/core#> . <br/>
 +
prefix xsd:  <http://www.w3.org/2001/XMLSchema#> .
  
 
ac-classes:ServiceAccessPoint a rdfs:Class . <br/>
 
ac-classes:ServiceAccessPoint a rdfs:Class . <br/>

Revision as of 02:44, 26 August 2012

@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix dc: <http://purl.org/dc/elements/1.1/> .
@prefix ac: <http://rs.tdwg.org/ac/terms/> .
@prefix ac-classes: <http://rs.tdwg.org/ac/classes/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix skos: <http://www.w3.org/2004/02/skos/core#> .
prefix xsd: <http://www.w3.org/2001/XMLSchema#> .

ac-classes:ServiceAccessPoint a rdfs:Class .

ac-classes:Media a rdfs:Class ;

rdfs:subClassOf
[ a owl:Restriction;
owl:cardinality "1"^^xsd:nonNegativeInteger ;
owl:onProperty <http://purl.org/dc/terms/type> ],
[ a owl:Restriction;
owl:maxCardinality "1"^^xsd:nonNegativeInteger ;
owl:onProperty <http://purl.org/dc/terms/title>] .