Cleanup making self-contained, added external/schema and updated NPD fact ttl
Showing
3 changed files
with
128 additions
and
45 deletions
This diff could not be displayed because it is too large.
1 | +# Saved by TopBraid on Wed Jul 27 19:35:27 PDT 2011 | ||
2 | +# baseURI: http://www.linkedmodel.org/1.1/schema/ordered | ||
3 | + | ||
4 | +@prefix dc: <http://purl.org/dc/elements/1.1/> . | ||
5 | +@prefix orderd-1.0: <http://www.linkedmodel.org/1.1/schema/ordered#> . | ||
6 | +@prefix ordered: <http://www.linkedmodel.org/schema/ordered#> . | ||
7 | +@prefix owl: <http://www.w3.org/2002/07/owl#> . | ||
8 | +@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> . | ||
9 | +@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> . | ||
10 | +@prefix xsd: <http://www.w3.org/2001/XMLSchema#> . | ||
11 | + | ||
12 | +dc:author | ||
13 | + rdf:type owl:AnnotationProperty ; | ||
14 | + rdfs:label "author"^^xsd:string ; | ||
15 | + rdfs:range xsd:string . | ||
16 | + | ||
17 | +dc:contributor | ||
18 | + rdf:type owl:AnnotationProperty ; | ||
19 | + rdfs:label "contributor"^^xsd:string ; | ||
20 | + rdfs:range xsd:string . | ||
21 | + | ||
22 | +dc:description | ||
23 | + rdf:type owl:AnnotationProperty ; | ||
24 | + rdfs:label "description"^^xsd:string ; | ||
25 | + rdfs:range xsd:string . | ||
26 | + | ||
27 | +dc:rights | ||
28 | + rdf:type owl:AnnotationProperty ; | ||
29 | + rdfs:label "rights"^^xsd:string ; | ||
30 | + rdfs:range xsd:string . | ||
31 | + | ||
32 | +dc:subject | ||
33 | + rdf:type owl:AnnotationProperty ; | ||
34 | + rdfs:label "subject"^^xsd:string ; | ||
35 | + rdfs:range xsd:string . | ||
36 | + | ||
37 | +dc:title | ||
38 | + rdf:type owl:AnnotationProperty ; | ||
39 | + rdfs:label "title"^^xsd:string ; | ||
40 | + rdfs:range xsd:string . | ||
41 | + | ||
42 | +<http://www.linkedmodel.org/1.1/schema/ordered> | ||
43 | + rdf:type owl:Ontology ; | ||
44 | + rdfs:label "Ordering"^^xsd:string ; | ||
45 | + dc:author "Ralph Hodgson"^^xsd:string ; | ||
46 | + dc:description "The 'ordering' ontology is used to express core properties about spatial and temporal ordering."^^xsd:string ; | ||
47 | + dc:subject "Ordering"^^xsd:string ; | ||
48 | + dc:title "The LinkedModel Ordering Ontology"^^xsd:string . | ||
49 | + | ||
50 | +ordered:after | ||
51 | + rdf:type owl:TransitiveProperty , owl:ObjectProperty ; | ||
52 | + rdfs:label "after"^^xsd:string ; | ||
53 | + rdfs:subPropertyOf ordered:temporalRelation ; | ||
54 | + owl:inverseOf ordered:before . | ||
55 | + | ||
56 | +ordered:before | ||
57 | + rdf:type owl:TransitiveProperty , owl:ObjectProperty ; | ||
58 | + rdfs:label "before"^^xsd:string ; | ||
59 | + rdfs:subPropertyOf ordered:temporalRelation ; | ||
60 | + owl:inverseOf ordered:after . | ||
61 | + | ||
62 | +ordered:contains | ||
63 | + rdf:type owl:ObjectProperty ; | ||
64 | + rdfs:label "contains"^^xsd:string ; | ||
65 | + rdfs:subPropertyOf ordered:temporalRelation ; | ||
66 | + owl:inverseOf ordered:during . | ||
67 | + | ||
68 | +ordered:during | ||
69 | + rdf:type owl:ObjectProperty ; | ||
70 | + rdfs:label "during"^^xsd:string ; | ||
71 | + rdfs:subPropertyOf ordered:temporalRelation ; | ||
72 | + owl:inverseOf ordered:contains . | ||
73 | + | ||
74 | +ordered:finishedBy | ||
75 | + rdf:type owl:ObjectProperty ; | ||
76 | + rdfs:label "finished by"^^xsd:string ; | ||
77 | + rdfs:subPropertyOf ordered:temporalRelation ; | ||
78 | + owl:inverseOf ordered:finishs . | ||
79 | + | ||
80 | +ordered:finishs | ||
81 | + rdf:type owl:ObjectProperty ; | ||
82 | + rdfs:label "finishs"^^xsd:string ; | ||
83 | + rdfs:subPropertyOf ordered:temporalRelation ; | ||
84 | + owl:inverseOf ordered:finishedBy . | ||
85 | + | ||
86 | +ordered:first | ||
87 | + rdf:type owl:ObjectProperty ; | ||
88 | + rdfs:label "first"^^xsd:string . | ||
89 | + | ||
90 | +ordered:immediatelyAfter | ||
91 | + rdf:type owl:ObjectProperty ; | ||
92 | + rdfs:label "immediately after"^^xsd:string ; | ||
93 | + rdfs:subPropertyOf ordered:after ; | ||
94 | + owl:inverseOf ordered:immediatelyBefore . | ||
95 | + | ||
96 | +ordered:immediatelyBefore | ||
97 | + rdf:type owl:ObjectProperty ; | ||
98 | + rdfs:label "immediately before"^^xsd:string ; | ||
99 | + rdfs:subPropertyOf ordered:before ; | ||
100 | + owl:inverseOf ordered:immediatelyAfter . | ||
101 | + | ||
102 | +ordered:last | ||
103 | + rdf:type owl:ObjectProperty ; | ||
104 | + rdfs:label "last"^^xsd:string . | ||
105 | + | ||
106 | +ordered:next | ||
107 | + rdf:type owl:ObjectProperty ; | ||
108 | + rdfs:label "next"^^xsd:string ; | ||
109 | + owl:inverseOf ordered:previous . | ||
110 | + | ||
111 | +ordered:overlaps | ||
112 | + rdf:type owl:ObjectProperty ; | ||
113 | + rdfs:label "overlaps"^^xsd:string ; | ||
114 | + rdfs:subPropertyOf ordered:temporalRelation . | ||
115 | + | ||
116 | +ordered:previous | ||
117 | + rdf:type owl:ObjectProperty ; | ||
118 | + rdfs:label "previous"^^xsd:string ; | ||
119 | + owl:inverseOf ordered:next . | ||
120 | + | ||
121 | +ordered:starts | ||
122 | + rdf:type owl:ObjectProperty ; | ||
123 | + rdfs:label "starts"^^xsd:string ; | ||
124 | + rdfs:subPropertyOf ordered:temporalRelation . | ||
125 | + | ||
126 | +ordered:temporalRelation | ||
127 | + rdf:type owl:ObjectProperty ; | ||
128 | + rdfs:label "temporal relation"^^xsd:string . |
1 | -# baseURI: http://www.energistics.org/schemas/abstract | ||
2 | -# imports: http://www.linkedmodel.org/schema/dtype | ||
3 | -# imports: http://www.linkedmodel.org/schema/vaem | ||
4 | - | ||
5 | -@prefix abstract: <http://www.energistics.org/schemas/abstract#> . | ||
6 | -@prefix dc: <http://purl.org/dc/elements/1.1/> . | ||
7 | -@prefix dtype: <http://www.linkedmodel.org/schema/dtype#> . | ||
8 | -@prefix owl: <http://www.w3.org/2002/07/owl#> . | ||
9 | -@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> . | ||
10 | -@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> . | ||
11 | -@prefix skos: <http://www.w3.org/2004/02/skos/core#> . | ||
12 | -@prefix vaem: <http://www.linkedmodel.org/schema/vaem#> . | ||
13 | -@prefix xsd: <http://www.w3.org/2001/XMLSchema#> . | ||
14 | - | ||
15 | -dc:description | ||
16 | - rdfs:label "description"^^xsd:string . | ||
17 | - | ||
18 | -<http://www.energistics.org/schemas/abstract> | ||
19 | - rdf:type owl:Ontology ; | ||
20 | - owl:imports <http://www.linkedmodel.org/schema/vaem> , <http://www.linkedmodel.org/schema/dtype> ; | ||
21 | - owl:versionInfo "Created with TopBraid Composer from the XML Schema http://www.energistics.org/schemas/abstract"^^xsd:string . | ||
22 | - | ||
23 | -abstract:AbstractContextualObject | ||
24 | - rdf:type owl:Class ; | ||
25 | - rdfs:label "Abstract contextual object"^^xsd:string ; | ||
26 | - rdfs:subClassOf abstract:AbstractObject ; | ||
27 | - dc:description "Substitution group for contextual objects."^^xsd:string . | ||
28 | - | ||
29 | -abstract:AbstractDataObject | ||
30 | - rdf:type owl:Class ; | ||
31 | - rdfs:label "Abstract data object"^^xsd:string ; | ||
32 | - rdfs:subClassOf abstract:AbstractObject ; | ||
33 | - dc:description "Substitution group for normative data objects."^^xsd:string . | ||
34 | - | ||
35 | -abstract:AbstractObject | ||
36 | - rdf:type owl:Class ; | ||
37 | - rdfs:label "Abstract object"^^xsd:string ; | ||
38 | - dc:description """The intended abstract supertype of all schema roots | ||
39 | - that may be a member of a substitution group (whether contextual or data). | ||
40 | - The type of root global elements should be extended from this type and the | ||
41 | - root global element should be declared to be a member of one of the above substitution groups."""^^xsd:string . | ||
42 | - | ||
43 | -skos:prefLabel | ||
44 | - rdf:type owl:AnnotationProperty ; | ||
45 | - rdfs:label "pref label"^^xsd:string . |
-
Please register or login to post a comment