|
| 1 | +#General Namespaces |
| 2 | +@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#>. |
| 3 | +@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>. |
| 4 | +@prefix owl: <http://www.w3.org/2002/07/owl#>. |
| 5 | +@prefix foaf: <http://xmlns.com/foaf/0.1/>. |
| 6 | +@prefix dcterms: <http://purl.org/dc/terms/>. |
| 7 | +@prefix dctypes: <http://purl.org/dc/dcmitype/>. |
| 8 | +@prefix vs: <http://www.w3.org/2003/06/sw-vocab-status/ns#> . |
| 9 | +@prefix xsd: <http://www.w3.org/2001/XMLSchema#>. |
| 10 | +@prefix ex: <http://www.example.org/dowl#>. |
| 11 | + |
| 12 | +############################################################################ |
| 13 | +# General description of the schema |
| 14 | +############################################################################ |
| 15 | + |
| 16 | +<http://www.example.org/dowl/> |
| 17 | + a owl:Ontology; |
| 18 | + dcterms:title "An Example"@en ; |
| 19 | + rdfs:comment "This is a simple example"@en ; |
| 20 | + foaf:maker <http://www.ldodds.com#me> ; |
| 21 | + foaf:maker <http://www.example.org/unknown> ; |
| 22 | + dcterms:created "2010-02-19"^^xsd:date ; |
| 23 | + dcterms:modified "2010-09-28"^^xsd:date . |
| 24 | + |
| 25 | +<http://www.ldodds.com#me> a foaf:Person ; |
| 26 | + foaf:name "Leigh Dodds" . |
| 27 | + |
| 28 | +<http://www.example.org/unknown> a foaf:Person . |
| 29 | + |
| 30 | +############################################################################ |
| 31 | +# Classes |
| 32 | +############################################################################ |
| 33 | + |
| 34 | +ex:SomeClass |
| 35 | + a owl:Class; |
| 36 | + rdfs:label "Some Class"@en; |
| 37 | + rdfs:comment "A Class of Things."@en; |
| 38 | + rdfs:seeAlso <http://en.wikipedia.org/>; |
| 39 | + vs:term_status "testing". |
| 40 | + |
| 41 | +############################################################################ |
| 42 | +# Object Properties |
| 43 | +############################################################################ |
| 44 | + |
| 45 | +ex:objectProperty |
| 46 | + a owl:ObjectProperty; |
| 47 | + rdfs:label "object property"@en; |
| 48 | + rdfs:comment "associates Some Class with another thing"@en; |
| 49 | + rdfs:range ex:SomeClass; |
| 50 | + rdfs:domain ex:SomeClass; |
| 51 | + vs:term_status "testing". |
0 commit comments