Difference between revisions of "AC RDF N3 Prefixes and Class Declarations"
From TDWG Terms Wiki
Line 1: | Line 1: | ||
+ | <!-- See also http://species-id.net/wiki/Template:MRTG_TermNoComments2 for main term expansions | ||
+ | and http://species-id.net/wiki/Audubon_Core_Term_List_RDF_Version for the full RDF representation | ||
+ | --> | ||
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> . <br/> | @prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> . <br/> | ||
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> . <br/> | @prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> . <br/> | ||
Line 19: | Line 22: | ||
::[ a owl:Restriction; | ::[ a owl:Restriction; | ||
::::owl:maxCardinality "1"^^xsd:nonNegativeInteger ;<br/> | ::::owl:maxCardinality "1"^^xsd:nonNegativeInteger ;<br/> | ||
− | ::::owl:onProperty <http://purl.org/dc/terms/title>] .<br/> | + | ::::owl:onProperty <http://purl.org/dc/terms/title> ], |
+ | ::[ a owl:Restriction; | ||
+ | ::::owl:maxCardinality "1"^^xsd:nonNegativeInteger ;<br/> | ||
+ | ::::owl:onProperty <http://ns.adobe.com/xap/1.0/MetadataDate> ], | ||
+ | ::[ a owl:Restriction; | ||
+ | ::::owl:cardinality "1"^^xsd:nonNegativeInteger ;<br/> | ||
+ | ::::owl:onProperty <http://rs.tdwg.org/ac/terms/metadataLanguage> ], | ||
+ | ::[ a owl:Restriction; | ||
+ | ::::owl:maxCardinality "1"^^xsd:nonNegativeInteger ;<br/> | ||
+ | ::::owl:onProperty <http://rs.tdwg.org/ac/terms/providerManagedID> ], | ||
+ | ::[ a owl:Restriction; | ||
+ | ::::owl:maxCardinality "1"^^xsd:nonNegativeInteger ;<br/> | ||
+ | ::::owl:onProperty <http://ns.adobe.com/xap/1.0/Rating> ], | ||
+ | ::[ a owl:Restriction; | ||
+ | ::::owl:maxCardinality "1"^^xsd:nonNegativeInteger ;<br/> | ||
+ | ::::owl:onProperty <http://purl.org/dc/terms/available> ], | ||
+ | ::[ a owl:Restriction; | ||
+ | ::::owl:cardinality "1"^^xsd:nonNegativeInteger ;<br/> | ||
+ | ::::owl:onProperty <http://purl.org/dc/terms/rights> ], | ||
+ | ::[ a owl:Restriction; | ||
+ | |||
+ | . |
Revision as of 03:23, 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#> .
#### Service Access Point Class ####
ac-classes:ServiceAccessPoint a rdfs:Class .
####Media 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> ],
- owl:cardinality "1"^^xsd:nonNegativeInteger ;
- [ a owl:Restriction;
- owl:maxCardinality "1"^^xsd:nonNegativeInteger ;
- owl:onProperty <http://purl.org/dc/terms/title> ],
- owl:maxCardinality "1"^^xsd:nonNegativeInteger ;
- [ a owl:Restriction;
- owl:maxCardinality "1"^^xsd:nonNegativeInteger ;
- owl:onProperty <http://ns.adobe.com/xap/1.0/MetadataDate> ],
- owl:maxCardinality "1"^^xsd:nonNegativeInteger ;
- [ a owl:Restriction;
- owl:cardinality "1"^^xsd:nonNegativeInteger ;
- owl:onProperty <http://rs.tdwg.org/ac/terms/metadataLanguage> ],
- owl:cardinality "1"^^xsd:nonNegativeInteger ;
- [ a owl:Restriction;
- owl:maxCardinality "1"^^xsd:nonNegativeInteger ;
- owl:onProperty <http://rs.tdwg.org/ac/terms/providerManagedID> ],
- owl:maxCardinality "1"^^xsd:nonNegativeInteger ;
- [ a owl:Restriction;
- owl:maxCardinality "1"^^xsd:nonNegativeInteger ;
- owl:onProperty <http://ns.adobe.com/xap/1.0/Rating> ],
- owl:maxCardinality "1"^^xsd:nonNegativeInteger ;
- [ a owl:Restriction;
- owl:maxCardinality "1"^^xsd:nonNegativeInteger ;
- owl:onProperty <http://purl.org/dc/terms/available> ],
- owl:maxCardinality "1"^^xsd:nonNegativeInteger ;
- [ a owl:Restriction;
- owl:cardinality "1"^^xsd:nonNegativeInteger ;
- owl:onProperty <http://purl.org/dc/terms/rights> ],
- owl:cardinality "1"^^xsd:nonNegativeInteger ;
- [ a owl:Restriction;
- [ a owl:Restriction;
.