Holger Knublauch

Added three MPR classes

...@@ -26,25 +26,30 @@ report:AbstractDR ...@@ -26,25 +26,30 @@ report:AbstractDR
26 rdfs:subClassOf foaf:Document ; 26 rdfs:subClassOf foaf:Document ;
27 rdfs:subClassOf 27 rdfs:subClassOf
28 [ rdf:type owl:Restriction ; 28 [ rdf:type owl:Restriction ;
29 - owl:allValuesFrom xsd:string ; 29 + owl:cardinality "1"^^xsd:nonNegativeInteger ;
30 owl:onProperty sioc:id 30 owl:onProperty sioc:id
31 ] ; 31 ] ;
32 rdfs:subClassOf 32 rdfs:subClassOf
33 [ rdf:type owl:Restriction ; 33 [ rdf:type owl:Restriction ;
34 owl:cardinality "1"^^xsd:nonNegativeInteger ; 34 owl:cardinality "1"^^xsd:nonNegativeInteger ;
35 - owl:onProperty <http://purl.org/dc/terms/date> 35 + owl:onProperty <http://purl.org/dc/terms/created>
36 ] ; 36 ] ;
37 rdfs:subClassOf 37 rdfs:subClassOf
38 [ rdf:type owl:Restriction ; 38 [ rdf:type owl:Restriction ;
39 owl:cardinality "1"^^xsd:nonNegativeInteger ; 39 owl:cardinality "1"^^xsd:nonNegativeInteger ;
40 - owl:onProperty <http://purl.org/dc/terms/created> 40 + owl:onProperty <http://purl.org/dc/terms/date>
41 ] ; 41 ] ;
42 rdfs:subClassOf 42 rdfs:subClassOf
43 [ rdf:type owl:Restriction ; 43 [ rdf:type owl:Restriction ;
44 - owl:cardinality "1"^^xsd:nonNegativeInteger ; 44 + owl:allValuesFrom xsd:string ;
45 owl:onProperty sioc:id 45 owl:onProperty sioc:id
46 ] . 46 ] .
47 47
48 +report:AbstractMPR
49 + rdf:type owl:Class ;
50 + rdfs:label "Abstract MPR"^^xsd:string ;
51 + rdfs:subClassOf foaf:Document .
52 +
48 report:DDR 53 report:DDR
49 rdf:type owl:Class ; 54 rdf:type owl:Class ;
50 rdfs:comment "The metadata about a Daily Drilling Report."^^xsd:string ; 55 rdfs:comment "The metadata about a Daily Drilling Report."^^xsd:string ;
...@@ -53,12 +58,12 @@ report:DDR ...@@ -53,12 +58,12 @@ report:DDR
53 rdfs:subClassOf 58 rdfs:subClassOf
54 [ rdf:type owl:Restriction ; 59 [ rdf:type owl:Restriction ;
55 owl:cardinality "1"^^xsd:nonNegativeInteger ; 60 owl:cardinality "1"^^xsd:nonNegativeInteger ;
56 - owl:onProperty report:wellBoreId 61 + owl:onProperty report:xml
57 ] ; 62 ] ;
58 rdfs:subClassOf 63 rdfs:subClassOf
59 [ rdf:type owl:Restriction ; 64 [ rdf:type owl:Restriction ;
60 owl:cardinality "1"^^xsd:nonNegativeInteger ; 65 owl:cardinality "1"^^xsd:nonNegativeInteger ;
61 - owl:onProperty report:xml 66 + owl:onProperty report:wellBoreId
62 ] . 67 ] .
63 68
64 report:DPR 69 report:DPR
...@@ -81,6 +86,21 @@ report:HTMLFormat ...@@ -81,6 +86,21 @@ report:HTMLFormat
81 rdf:type report:Format ; 86 rdf:type report:Format ;
82 rdfs:label "HTMLFormat"^^xsd:string . 87 rdfs:label "HTMLFormat"^^xsd:string .
83 88
89 +report:MPRD
90 + rdf:type owl:Class ;
91 + rdfs:label "MPRD"^^xsd:string ;
92 + rdfs:subClassOf report:AbstractMPR .
93 +
94 +report:MPRG
95 + rdf:type owl:Class ;
96 + rdfs:label "MPRG"^^xsd:string ;
97 + rdfs:subClassOf report:AbstractMPR .
98 +
99 +report:MPRP
100 + rdf:type owl:Class ;
101 + rdfs:label "MPRP"^^xsd:string ;
102 + rdfs:subClassOf report:AbstractMPR .
103 +
84 report:NPTR 104 report:NPTR
85 rdf:type owl:Class ; 105 rdf:type owl:Class ;
86 rdfs:comment "Metadata about a Non-Productive Time Report."^^xsd:string ; 106 rdfs:comment "Metadata about a Non-Productive Time Report."^^xsd:string ;
......