Showing
3 changed files
with
83 additions
and
8 deletions
| 1 | +# baseURI: http://www.reportinghub.no/examples/system/exampleLogEvents | ||
| 2 | +# imports: http://www.reportinghub.no/system/schema/logging | ||
| 3 | + | ||
| 4 | +@prefix : <http://www.reportinghub.no/examples/system/exampleLogEvents#> . | ||
| 5 | +@prefix dcterms: <http://purl.org/dc/terms/> . | ||
| 6 | +@prefix log: <http://www.reportinghub.no/system/schema/logging#> . | ||
| 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 report: <http://www.reportinghub.no/system/schema/reporting#> . | ||
| 11 | +@prefix sioc: <http://rdfs.org/sioc/ns#> . | ||
| 12 | +@prefix xsd: <http://www.w3.org/2001/XMLSchema#> . | ||
| 13 | + | ||
| 14 | +<http://www.reportinghub.no/examples/system/exampleLogEvents> | ||
| 15 | + rdf:type owl:Ontology ; | ||
| 16 | + owl:imports <http://www.reportinghub.no/system/schema/logging> ; | ||
| 17 | + owl:versionInfo "Created with TopBraid Composer"^^xsd:string . | ||
| 18 | + | ||
| 19 | +log:FactPagesUpdateEvent_1 | ||
| 20 | + rdf:type log:FactPagesUpdateEvent ; | ||
| 21 | + rdfs:label "Fact pages update event 1"^^xsd:string ; | ||
| 22 | + dcterms:created "2011-11-11T00:00:00"^^xsd:dateTime ; | ||
| 23 | + sioc:id "1"^^xsd:string ; | ||
| 24 | + log:initiatedBy "system"^^xsd:string ; | ||
| 25 | + log:onBehalfOf "system"^^xsd:string ; | ||
| 26 | + log:outcome "success"^^xsd:string . | ||
| 27 | + | ||
| 28 | +log:PasswordChangeEvent_1 | ||
| 29 | + rdf:type log:PasswordChangeEvent ; | ||
| 30 | + rdfs:label "Password change event 1"^^xsd:string ; | ||
| 31 | + dcterms:created "2011-11-11T00:00:01"^^xsd:dateTime ; | ||
| 32 | + sioc:id "2"^^xsd:string ; | ||
| 33 | + log:initiatedBy "JohnDoe"^^xsd:string ; | ||
| 34 | + log:onBehalfOf "Aldi"^^xsd:string ; | ||
| 35 | + log:outcome "success"^^xsd:string . | ||
| 36 | + | ||
| 37 | +log:ReportDownloadEvent_1 | ||
| 38 | + rdf:type log:ReportDownloadEvent ; | ||
| 39 | + rdfs:label "Report download event 1"^^xsd:string ; | ||
| 40 | + dcterms:created "2011-11-13T00:00:00"^^xsd:dateTime ; | ||
| 41 | + sioc:id "3"^^xsd:string ; | ||
| 42 | + log:dateFrom "2011-07-21"^^xsd:date ; | ||
| 43 | + log:dateTo "2011-07-21"^^xsd:date ; | ||
| 44 | + log:initiatedBy "JohnDoe"^^xsd:string ; | ||
| 45 | + log:onBehalfOf "Aldi"^^xsd:string ; | ||
| 46 | + log:outcome "success"^^xsd:string ; | ||
| 47 | + log:ownerId "123"^^xsd:string ; | ||
| 48 | + log:reportType report:DDR ; | ||
| 49 | + report:format report:HTMLFormat ; | ||
| 50 | + report:wellBoreId "1024"^^xsd:string . | ||
| 51 | + | ||
| 52 | +log:ReportUploadEvent_1 | ||
| 53 | + rdf:type log:ReportUploadEvent ; | ||
| 54 | + rdfs:label "Report upload event 1"^^xsd:string ; | ||
| 55 | + dcterms:created "2011-11-14T00:00:00"^^xsd:dateTime ; | ||
| 56 | + sioc:id "4"^^xsd:string ; | ||
| 57 | + log:initiatedBy "JohnDoe"^^xsd:string ; | ||
| 58 | + log:onBehalfOf "Aldi"^^xsd:string ; | ||
| 59 | + log:outcome "success"^^xsd:string ; | ||
| 60 | + log:reportType report:DDR ; | ||
| 61 | + log:wellBoreName "XY-2"^^xsd:string ; | ||
| 62 | + report:format report:HTMLFormat . | ||
| 63 | + | ||
| 64 | +log:ReportValidationEvent_1 | ||
| 65 | + rdf:type log:ReportValidationEvent ; | ||
| 66 | + rdfs:label "Report validation event 1"^^xsd:string ; | ||
| 67 | + dcterms:created "2011-11-14T00:00:00"^^xsd:dateTime ; | ||
| 68 | + sioc:id "5"^^xsd:string ; | ||
| 69 | + log:initiatedBy "JohnDoe"^^xsd:string ; | ||
| 70 | + log:onBehalfOf "Aldi"^^xsd:string ; | ||
| 71 | + log:outcome "user-error"^^xsd:string ; | ||
| 72 | + log:reportType report:DDR . |
| ... | @@ -36,17 +36,17 @@ log:LogEvent | ... | @@ -36,17 +36,17 @@ log:LogEvent |
| 36 | rdfs:subClassOf | 36 | rdfs:subClassOf |
| 37 | [ rdf:type owl:Restriction ; | 37 | [ rdf:type owl:Restriction ; |
| 38 | owl:cardinality "1"^^xsd:nonNegativeInteger ; | 38 | owl:cardinality "1"^^xsd:nonNegativeInteger ; |
| 39 | - owl:onProperty <http://rdfs.org/sioc/ns#id> | 39 | + owl:onProperty rdfs:comment |
| 40 | ] ; | 40 | ] ; |
| 41 | rdfs:subClassOf | 41 | rdfs:subClassOf |
| 42 | [ rdf:type owl:Restriction ; | 42 | [ rdf:type owl:Restriction ; |
| 43 | - owl:allValuesFrom xsd:string ; | 43 | + owl:cardinality "1"^^xsd:nonNegativeInteger ; |
| 44 | owl:onProperty <http://rdfs.org/sioc/ns#id> | 44 | owl:onProperty <http://rdfs.org/sioc/ns#id> |
| 45 | ] ; | 45 | ] ; |
| 46 | rdfs:subClassOf | 46 | rdfs:subClassOf |
| 47 | [ rdf:type owl:Restriction ; | 47 | [ rdf:type owl:Restriction ; |
| 48 | - owl:cardinality "1"^^xsd:nonNegativeInteger ; | 48 | + owl:allValuesFrom xsd:string ; |
| 49 | - owl:onProperty rdfs:comment | 49 | + owl:onProperty <http://rdfs.org/sioc/ns#id> |
| 50 | ] . | 50 | ] . |
| 51 | 51 | ||
| 52 | log:PasswordChangeEvent | 52 | log:PasswordChangeEvent |
| ... | @@ -66,12 +66,12 @@ log:ReportDownloadEvent | ... | @@ -66,12 +66,12 @@ log:ReportDownloadEvent |
| 66 | rdfs:subClassOf | 66 | rdfs:subClassOf |
| 67 | [ rdf:type owl:Restriction ; | 67 | [ rdf:type owl:Restriction ; |
| 68 | owl:cardinality "1"^^xsd:nonNegativeInteger ; | 68 | owl:cardinality "1"^^xsd:nonNegativeInteger ; |
| 69 | - owl:onProperty <http://www.reportinghub.no/system/schema/reporting#wellBoreId> | 69 | + owl:onProperty <http://www.reportinghub.no/system/schema/reporting#format> |
| 70 | ] ; | 70 | ] ; |
| 71 | rdfs:subClassOf | 71 | rdfs:subClassOf |
| 72 | [ rdf:type owl:Restriction ; | 72 | [ rdf:type owl:Restriction ; |
| 73 | owl:cardinality "1"^^xsd:nonNegativeInteger ; | 73 | owl:cardinality "1"^^xsd:nonNegativeInteger ; |
| 74 | - owl:onProperty <http://www.reportinghub.no/system/schema/reporting#format> | 74 | + owl:onProperty <http://www.reportinghub.no/system/schema/reporting#wellBoreId> |
| 75 | ] . | 75 | ] . |
| 76 | 76 | ||
| 77 | log:ReportEvent | 77 | log:ReportEvent |
| ... | @@ -110,14 +110,14 @@ log:initiatedBy | ... | @@ -110,14 +110,14 @@ log:initiatedBy |
| 110 | rdf:type owl:DatatypeProperty ; | 110 | rdf:type owl:DatatypeProperty ; |
| 111 | rdfs:comment "The name of the user logged in."^^xsd:string ; | 111 | rdfs:comment "The name of the user logged in."^^xsd:string ; |
| 112 | rdfs:domain log:LogEvent ; | 112 | rdfs:domain log:LogEvent ; |
| 113 | - rdfs:label "initiated by"^^xsd:string ; | 113 | + rdfs:label "user"^^xsd:string ; |
| 114 | rdfs:range xsd:string . | 114 | rdfs:range xsd:string . |
| 115 | 115 | ||
| 116 | log:onBehalfOf | 116 | log:onBehalfOf |
| 117 | rdf:type owl:DatatypeProperty ; | 117 | rdf:type owl:DatatypeProperty ; |
| 118 | rdfs:comment "The name of the company that the user has been logged in for."^^xsd:string ; | 118 | rdfs:comment "The name of the company that the user has been logged in for."^^xsd:string ; |
| 119 | rdfs:domain log:LogEvent ; | 119 | rdfs:domain log:LogEvent ; |
| 120 | - rdfs:label "on behalf of"^^xsd:string ; | 120 | + rdfs:label "company"^^xsd:string ; |
| 121 | rdfs:range xsd:string . | 121 | rdfs:range xsd:string . |
| 122 | 122 | ||
| 123 | log:outcome | 123 | log:outcome |
| ... | @@ -163,6 +163,9 @@ log:xml | ... | @@ -163,6 +163,9 @@ log:xml |
| 163 | rdfs:label "xml"^^xsd:string ; | 163 | rdfs:label "xml"^^xsd:string ; |
| 164 | rdfs:range xsd:string . | 164 | rdfs:range xsd:string . |
| 165 | 165 | ||
| 166 | +<http://www.reportinghub.no/system/schema/reporting#format> | ||
| 167 | + rdfs:range <http://www.reportinghub.no/system/schema/reporting#Format> . | ||
| 168 | + | ||
| 166 | <http://www.reportinghub.no/system/schema/reporting#uploadedDocument> | 169 | <http://www.reportinghub.no/system/schema/reporting#uploadedDocument> |
| 167 | rdf:type owl:ObjectProperty ; | 170 | rdf:type owl:ObjectProperty ; |
| 168 | rdfs:domain log:ReportUploadEvent ; | 171 | rdfs:domain log:ReportUploadEvent ; | ... | ... |
This diff is collapsed. Click to expand it.
-
Please register or login to post a comment