Showing
1 changed file
with
16 additions
and
1 deletions
... | @@ -49,6 +49,17 @@ log:LogEvent | ... | @@ -49,6 +49,17 @@ log:LogEvent |
49 | owl:onProperty <http://rdfs.org/sioc/ns#id> | 49 | owl:onProperty <http://rdfs.org/sioc/ns#id> |
50 | ] . | 50 | ] . |
51 | 51 | ||
52 | +log:NPDUploadEvent | ||
53 | + rdf:type owl:Class ; | ||
54 | + rdfs:comment "Represents the fact that a given XML file has been submitted to NPD."^^xsd:string ; | ||
55 | + rdfs:label "NPDUpload event"^^xsd:string ; | ||
56 | + rdfs:subClassOf log:ReportEvent ; | ||
57 | + rdfs:subClassOf | ||
58 | + [ rdf:type owl:Restriction ; | ||
59 | + owl:cardinality "1"^^xsd:nonNegativeInteger ; | ||
60 | + owl:onProperty log:xml | ||
61 | + ] . | ||
62 | + | ||
52 | log:PasswordChangeEvent | 63 | log:PasswordChangeEvent |
53 | rdf:type owl:Class ; | 64 | rdf:type owl:Class ; |
54 | rdfs:label "Password change event"^^xsd:string ; | 65 | rdfs:label "Password change event"^^xsd:string ; |
... | @@ -85,6 +96,11 @@ log:ReportUploadEvent | ... | @@ -85,6 +96,11 @@ log:ReportUploadEvent |
85 | rdfs:subClassOf log:ReportEvent ; | 96 | rdfs:subClassOf log:ReportEvent ; |
86 | rdfs:subClassOf | 97 | rdfs:subClassOf |
87 | [ rdf:type owl:Restriction ; | 98 | [ rdf:type owl:Restriction ; |
99 | + owl:cardinality "1"^^xsd:nonNegativeInteger ; | ||
100 | + owl:onProperty log:xml | ||
101 | + ] ; | ||
102 | + rdfs:subClassOf | ||
103 | + [ rdf:type owl:Restriction ; | ||
88 | owl:minCardinality "0"^^xsd:nonNegativeInteger ; | 104 | owl:minCardinality "0"^^xsd:nonNegativeInteger ; |
89 | owl:onProperty <http://www.reportinghub.no/system/schema/reporting#format> | 105 | owl:onProperty <http://www.reportinghub.no/system/schema/reporting#format> |
90 | ] . | 106 | ] . |
... | @@ -159,7 +175,6 @@ log:wellBoreName | ... | @@ -159,7 +175,6 @@ log:wellBoreName |
159 | log:xml | 175 | log:xml |
160 | rdf:type owl:DatatypeProperty ; | 176 | rdf:type owl:DatatypeProperty ; |
161 | rdfs:comment "The complete source of the submitted XML document."^^xsd:string ; | 177 | rdfs:comment "The complete source of the submitted XML document."^^xsd:string ; |
162 | - rdfs:domain log:ReportUploadEvent ; | ||
163 | rdfs:label "xml"^^xsd:string ; | 178 | rdfs:label "xml"^^xsd:string ; |
164 | rdfs:range xsd:string . | 179 | rdfs:range xsd:string . |
165 | 180 | ... | ... |
-
Please register or login to post a comment