Showing
2 changed files
with
347 additions
and
300 deletions
| 1 | -# baseURI: http://www.reportinghub.no/system/schema/reporting | 1 | +# baseURI: http://www.reportinghub.no/system/schema/reporting |
| 2 | -# imports: http://purl.org/dc/terms/ | 2 | +# imports: http://purl.org/dc/terms/ |
| 3 | -# imports: http://www.reportinghub.no/np/schema/1.0/npd | 3 | +# imports: http://www.reportinghub.no/np/schema/1.0/npd |
| 4 | - | 4 | + |
| 5 | -@prefix foaf: <http://xmlns.com/foaf/0.1/> . | 5 | +# c14n-version: 3 |
| 6 | -@prefix owl: <http://www.w3.org/2002/07/owl#> . | 6 | +@prefix foaf: <http://xmlns.com/foaf/0.1/> . |
| 7 | -@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> . | 7 | +@prefix owl: <http://www.w3.org/2002/07/owl#> . |
| 8 | -@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> . | 8 | +@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> . |
| 9 | -@prefix report: <http://www.reportinghub.no/system/schema/reporting#> . | 9 | +@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> . |
| 10 | -@prefix sioc: <http://rdfs.org/sioc/ns#> . | 10 | +@prefix report: <http://www.reportinghub.no/system/schema/reporting#> . |
| 11 | -@prefix xsd: <http://www.w3.org/2001/XMLSchema#> . | 11 | +@prefix sioc: <http://rdfs.org/sioc/ns#> . |
| 12 | - | 12 | +@prefix xsd: <http://www.w3.org/2001/XMLSchema#> . |
| 13 | sioc:id | 13 | sioc:id |
| 14 | - rdf:type owl:DatatypeProperty ; | 14 | + rdf:type owl:DatatypeProperty ; |
| 15 | - rdfs:label "id"^^xsd:string . | 15 | + rdfs:label "id"^^xsd:string ; |
| 16 | - | 16 | +. |
| 17 | <http://www.reportinghub.no/system/schema/reporting> | 17 | <http://www.reportinghub.no/system/schema/reporting> |
| 18 | - rdf:type owl:Ontology ; | 18 | + rdf:type owl:Ontology ; |
| 19 | - rdfs:comment "The schema of metadata kept by the ReportingHub system to keep track of submitted reports. The starting point is the class foaf:Document."^^xsd:string ; | 19 | + rdfs:comment "The schema of metadata kept by the ReportingHub system to keep track of submitted reports. The starting point is the class foaf:Document."^^xsd:string ; |
| 20 | - owl:imports <http://purl.org/dc/terms/> , <http://www.reportinghub.no/np/schema/1.0/npd> ; | 20 | + owl:imports <http://purl.org/dc/terms/> ; |
| 21 | - owl:versionInfo "0.2.0"^^xsd:string . | 21 | + owl:imports <http://www.reportinghub.no/np/schema/1.0/npd> ; |
| 22 | - | 22 | + owl:versionInfo "0.2.0"^^xsd:string ; |
| 23 | +. | ||
| 23 | report:AbstractDR | 24 | report:AbstractDR |
| 24 | - rdf:type report:ReportClass ; | 25 | + rdf:type report:ReportClass ; |
| 25 | - rdfs:comment "Abstract base class for various types of daily reports."^^xsd:string ; | 26 | + rdfs:comment "Abstract base class for various types of daily reports."^^xsd:string ; |
| 26 | - rdfs:label "Daily report"^^xsd:string ; | 27 | + rdfs:label "Daily report"^^xsd:string ; |
| 27 | - rdfs:subClassOf report:AbstractReport ; | 28 | + rdfs:subClassOf report:AbstractReport ; |
| 28 | - rdfs:subClassOf | 29 | + rdfs:subClassOf [ |
| 29 | - [ rdf:type owl:Restriction ; | 30 | + rdf:type owl:Restriction ; |
| 30 | - owl:cardinality "1"^^xsd:nonNegativeInteger ; | 31 | + owl:allValuesFrom xsd:date ; |
| 31 | - owl:onProperty <http://purl.org/dc/terms/created> | 32 | + owl:onProperty <http://purl.org/dc/terms/date> ; |
| 32 | - ] ; | 33 | + ] ; |
| 33 | - rdfs:subClassOf | 34 | + rdfs:subClassOf [ |
| 34 | - [ rdf:type owl:Restriction ; | 35 | + rdf:type owl:Restriction ; |
| 35 | - owl:allValuesFrom xsd:dateTime ; | 36 | + owl:allValuesFrom xsd:dateTime ; |
| 36 | - owl:onProperty <http://purl.org/dc/terms/created> | 37 | + owl:onProperty <http://purl.org/dc/terms/created> ; |
| 37 | - ] ; | 38 | + ] ; |
| 38 | - rdfs:subClassOf | 39 | + rdfs:subClassOf [ |
| 39 | - [ rdf:type owl:Restriction ; | 40 | + rdf:type owl:Restriction ; |
| 40 | - owl:cardinality "1"^^xsd:nonNegativeInteger ; | 41 | + owl:allValuesFrom xsd:string ; |
| 41 | - owl:onProperty <http://purl.org/dc/terms/date> | 42 | + owl:onProperty sioc:id ; |
| 42 | - ] ; | 43 | + ] ; |
| 43 | - rdfs:subClassOf | 44 | + rdfs:subClassOf [ |
| 44 | - [ rdf:type owl:Restriction ; | 45 | + rdf:type owl:Restriction ; |
| 45 | - owl:allValuesFrom xsd:date ; | 46 | + owl:cardinality "1"^^xsd:nonNegativeInteger ; |
| 46 | - owl:onProperty <http://purl.org/dc/terms/date> | 47 | + owl:onProperty <http://purl.org/dc/terms/created> ; |
| 47 | - ] ; | 48 | + ] ; |
| 48 | - rdfs:subClassOf | 49 | + rdfs:subClassOf [ |
| 49 | - [ rdf:type owl:Restriction ; | 50 | + rdf:type owl:Restriction ; |
| 50 | - owl:cardinality "1"^^xsd:nonNegativeInteger ; | 51 | + owl:cardinality "1"^^xsd:nonNegativeInteger ; |
| 51 | - owl:onProperty sioc:id | 52 | + owl:onProperty <http://purl.org/dc/terms/date> ; |
| 52 | - ] ; | 53 | + ] ; |
| 53 | - rdfs:subClassOf | 54 | + rdfs:subClassOf [ |
| 54 | - [ rdf:type owl:Restriction ; | 55 | + rdf:type owl:Restriction ; |
| 55 | - owl:allValuesFrom xsd:string ; | 56 | + owl:cardinality "1"^^xsd:nonNegativeInteger ; |
| 56 | - owl:onProperty sioc:id | 57 | + owl:onProperty sioc:id ; |
| 57 | - ] . | 58 | + ] ; |
| 58 | - | 59 | +. |
| 59 | report:AbstractMPR | 60 | report:AbstractMPR |
| 60 | - rdf:type report:ReportClass ; | 61 | + rdf:type report:ReportClass ; |
| 61 | - rdfs:label "Monthly Production Report"^^xsd:string ; | 62 | + rdfs:label "Monthly Production Report"^^xsd:string ; |
| 62 | - rdfs:subClassOf report:AbstractReport . | 63 | + rdfs:subClassOf report:AbstractReport ; |
| 63 | - | 64 | +. |
| 64 | report:AbstractReport | 65 | report:AbstractReport |
| 65 | - rdf:type owl:Class ; | 66 | + rdf:type owl:Class ; |
| 66 | - rdfs:label "Any report"^^xsd:string ; | 67 | + rdfs:label "Any report"^^xsd:string ; |
| 67 | - rdfs:subClassOf foaf:Document . | 68 | + rdfs:subClassOf foaf:Document ; |
| 68 | - | 69 | +. |
| 69 | report:DDR | 70 | report:DDR |
| 70 | - rdf:type report:ReportClass ; | 71 | + rdf:type report:ReportClass ; |
| 71 | - rdfs:comment "The metadata about a Daily Drilling Report."^^xsd:string ; | 72 | + rdfs:comment "The metadata about a Daily Drilling Report."^^xsd:string ; |
| 72 | - rdfs:label "DDR 1.1"^^xsd:string ; | 73 | + rdfs:label "DDR 1.1"^^xsd:string ; |
| 73 | - rdfs:subClassOf report:AbstractDR ; | 74 | + rdfs:subClassOf report:AbstractDR ; |
| 74 | - rdfs:subClassOf | 75 | + rdfs:subClassOf [ |
| 75 | - [ rdf:type owl:Restriction ; | 76 | + rdf:type owl:Restriction ; |
| 76 | - owl:cardinality "1"^^xsd:nonNegativeInteger ; | 77 | + owl:cardinality "1"^^xsd:nonNegativeInteger ; |
| 77 | - owl:onProperty report:wellBoreId | 78 | + owl:onProperty report:wellBoreId ; |
| 78 | - ] ; | 79 | + ] ; |
| 79 | - rdfs:subClassOf | 80 | + rdfs:subClassOf [ |
| 80 | - [ rdf:type owl:Restriction ; | 81 | + rdf:type owl:Restriction ; |
| 81 | - owl:cardinality "1"^^xsd:nonNegativeInteger ; | 82 | + owl:cardinality "1"^^xsd:nonNegativeInteger ; |
| 82 | - owl:onProperty report:xml | 83 | + owl:onProperty report:xml ; |
| 83 | - ] . | 84 | + ] ; |
| 84 | - | 85 | +. |
| 85 | report:DPR | 86 | report:DPR |
| 86 | - rdf:type report:ReportClass ; | 87 | + rdf:type report:ReportClass ; |
| 87 | - rdfs:comment "The metadata about a Daily Production Report."^^xsd:string ; | 88 | + rdfs:comment "The metadata about a Daily Production Report."^^xsd:string ; |
| 88 | - rdfs:label "DPR 1.0"^^xsd:string ; | 89 | + rdfs:label "DPR 1.0"^^xsd:string ; |
| 89 | - rdfs:subClassOf report:AbstractDR ; | 90 | + rdfs:subClassOf report:AbstractDR ; |
| 90 | - rdfs:subClassOf | 91 | + rdfs:subClassOf [ |
| 91 | - [ rdf:type owl:Restriction ; | 92 | + rdf:type owl:Restriction ; |
| 92 | - owl:cardinality "1"^^xsd:nonNegativeInteger ; | 93 | + owl:cardinality "1"^^xsd:nonNegativeInteger ; |
| 93 | - owl:onProperty report:owner | 94 | + owl:onProperty report:owner ; |
| 94 | - ] . | 95 | + ] ; |
| 95 | - | 96 | +. |
| 96 | report:DPR2 | 97 | report:DPR2 |
| 97 | - rdf:type report:ReportClass ; | 98 | + rdf:type report:ReportClass ; |
| 98 | - rdfs:label "DPR 2.0"^^xsd:string ; | 99 | + rdfs:label "DPR 2.0"^^xsd:string ; |
| 99 | - rdfs:subClassOf report:AbstractDR . | 100 | + rdfs:subClassOf report:AbstractDR ; |
| 100 | - | 101 | +. |
| 101 | report:Format | 102 | report:Format |
| 102 | - rdf:type owl:Class ; | 103 | + rdf:type owl:Class ; |
| 103 | - rdfs:label "Format"^^xsd:string ; | 104 | + rdfs:label "Format"^^xsd:string ; |
| 104 | - rdfs:subClassOf owl:Thing . | 105 | + rdfs:subClassOf owl:Thing ; |
| 105 | - | 106 | +. |
| 106 | report:HTMLFormat | 107 | report:HTMLFormat |
| 107 | - rdf:type report:Format ; | 108 | + rdf:type report:Format ; |
| 108 | - rdfs:label "HTMLFormat"^^xsd:string . | 109 | + rdfs:label "HTMLFormat"^^xsd:string ; |
| 109 | - | 110 | +. |
| 110 | report:MPRG | 111 | report:MPRG |
| 111 | - rdf:type report:ReportClass ; | 112 | + rdf:type report:ReportClass ; |
| 112 | - rdfs:label "MPR Gov 1.0"^^xsd:string ; | 113 | + rdfs:label "MPR Gov 1.0"^^xsd:string ; |
| 113 | - rdfs:subClassOf report:AbstractMPR . | 114 | + rdfs:subClassOf report:AbstractMPR ; |
| 114 | - | 115 | +. |
| 115 | report:MPRP | 116 | report:MPRP |
| 116 | - rdf:type report:ReportClass ; | 117 | + rdf:type report:ReportClass ; |
| 117 | - rdfs:label "MPR Partner 1.0"^^xsd:string ; | 118 | + rdfs:label "MPR Partner 1.0"^^xsd:string ; |
| 118 | - rdfs:subClassOf report:AbstractMPR . | 119 | + rdfs:subClassOf report:AbstractMPR ; |
| 119 | - | 120 | +. |
| 120 | report:NPTR | 121 | report:NPTR |
| 121 | - rdf:type report:ReportClass ; | 122 | + rdf:type report:ReportClass ; |
| 122 | - rdfs:comment "Metadata about a Non-Productive Time Report."^^xsd:string ; | 123 | + rdfs:comment "Metadata about a Non-Productive Time Report."^^xsd:string ; |
| 123 | - rdfs:label "NPTR"^^xsd:string ; | 124 | + rdfs:label "NPTR"^^xsd:string ; |
| 124 | - rdfs:subClassOf foaf:Document . | 125 | + rdfs:subClassOf foaf:Document ; |
| 125 | - | 126 | +. |
| 126 | report:PDFFormat | 127 | report:PDFFormat |
| 127 | - rdf:type report:Format ; | 128 | + rdf:type report:Format ; |
| 128 | - rdfs:label "PDFFormat"^^xsd:string . | 129 | + rdfs:label "PDFFormat"^^xsd:string ; |
| 129 | - | 130 | +. |
| 130 | report:ReportClass | 131 | report:ReportClass |
| 131 | - rdf:type rdfs:Class ; | 132 | + rdf:type rdfs:Class ; |
| 132 | - rdfs:comment "Metaclass for the various report types."^^xsd:string ; | 133 | + rdfs:comment "Metaclass for the various report types."^^xsd:string ; |
| 133 | - rdfs:label "Report class"^^xsd:string ; | 134 | + rdfs:label "Report class"^^xsd:string ; |
| 134 | - rdfs:subClassOf owl:Class . | 135 | + rdfs:subClassOf owl:Class ; |
| 135 | - | 136 | +. |
| 136 | report:WDR | 137 | report:WDR |
| 137 | - rdf:type report:ReportClass ; | 138 | + rdf:type report:ReportClass ; |
| 138 | - rdfs:comment "Metadata about a Weekly Drilling Report"^^xsd:string ; | 139 | + rdfs:comment "Metadata about a Weekly Drilling Report"^^xsd:string ; |
| 139 | - rdfs:label "WDR"^^xsd:string ; | 140 | + rdfs:label "WDR"^^xsd:string ; |
| 140 | - rdfs:subClassOf foaf:Document . | 141 | + rdfs:subClassOf foaf:Document ; |
| 141 | - | 142 | +. |
| 142 | report:XMLFormat | 143 | report:XMLFormat |
| 143 | - rdf:type report:Format ; | 144 | + rdf:type report:Format ; |
| 144 | - rdfs:label "XMLFormat"^^xsd:string . | 145 | + rdfs:label "XMLFormat"^^xsd:string ; |
| 145 | - | 146 | +. |
| 146 | report:ZipFormat | 147 | report:ZipFormat |
| 147 | - rdf:type report:Format ; | 148 | + rdf:type report:Format ; |
| 148 | - rdfs:label "Zip format"^^xsd:string . | 149 | + rdfs:label "Zip format"^^xsd:string ; |
| 149 | - | 150 | +. |
| 151 | +report:containsParts | ||
| 152 | + rdf:type owl:DatatypeProperty ; | ||
| 153 | + rdfs:comment "Comma-separated list of names of the parts in alphabetical order (e.g. \"Cargo,Stock\")."^^xsd:string ; | ||
| 154 | + rdfs:domain report:MPRG ; | ||
| 155 | + rdfs:label "contains parts"^^xsd:string ; | ||
| 156 | + rdfs:range xsd:string ; | ||
| 157 | +. | ||
| 150 | report:fieldName | 158 | report:fieldName |
| 151 | - rdf:type owl:DatatypeProperty ; | 159 | + rdf:type owl:DatatypeProperty ; |
| 152 | - rdfs:domain report:AbstractMPR ; | 160 | + rdfs:domain report:AbstractMPR ; |
| 153 | - rdfs:label "field name"^^xsd:string ; | 161 | + rdfs:label "field name"^^xsd:string ; |
| 154 | - rdfs:range xsd:string . | 162 | + rdfs:range xsd:string ; |
| 155 | - | 163 | +. |
| 156 | report:format | 164 | report:format |
| 157 | - rdf:type owl:ObjectProperty ; | 165 | + rdf:type owl:ObjectProperty ; |
| 158 | - rdfs:label "format"^^xsd:string . | 166 | + rdfs:label "format"^^xsd:string ; |
| 159 | - | 167 | +. |
| 160 | report:month | 168 | report:month |
| 161 | - rdf:type owl:DatatypeProperty ; | 169 | + rdf:type owl:DatatypeProperty ; |
| 162 | - rdfs:domain report:MPRG ; | 170 | + rdfs:domain report:MPRG ; |
| 163 | - rdfs:label "month"^^xsd:string ; | 171 | + rdfs:label "month"^^xsd:string ; |
| 164 | - rdfs:range xsd:string . | 172 | + rdfs:range xsd:string ; |
| 165 | - | 173 | +. |
| 166 | report:owner | 174 | report:owner |
| 167 | - rdf:type owl:ObjectProperty ; | 175 | + rdf:type owl:ObjectProperty ; |
| 168 | - rdfs:label "owner"^^xsd:string ; | 176 | + rdfs:label "owner"^^xsd:string ; |
| 169 | - rdfs:range <http://www.reportinghub.no/np/schema/npd#Owner> . | 177 | + rdfs:range <http://www.reportinghub.no/np/schema/npd#Owner> ; |
| 170 | - | 178 | +. |
| 179 | +report:preliminary | ||
| 180 | + rdf:type owl:DatatypeProperty ; | ||
| 181 | + rdfs:domain report:MPRG ; | ||
| 182 | + rdfs:label "preliminary"^^xsd:string ; | ||
| 183 | + rdfs:range xsd:boolean ; | ||
| 184 | +. | ||
| 171 | report:wellBoreId | 185 | report:wellBoreId |
| 172 | - rdf:type owl:DatatypeProperty ; | 186 | + rdf:type owl:DatatypeProperty ; |
| 173 | - rdfs:label "well bore id"^^xsd:string . | 187 | + rdfs:label "well bore id"^^xsd:string ; |
| 174 | - | 188 | +. |
| 175 | report:xml | 189 | report:xml |
| 176 | - rdf:type owl:DatatypeProperty ; | 190 | + rdf:type owl:DatatypeProperty ; |
| 177 | - rdfs:comment "The XML code of a report."^^xsd:string ; | 191 | + rdfs:comment "The XML code of a report."^^xsd:string ; |
| 178 | - rdfs:label "xml"^^xsd:string ; | 192 | + rdfs:label "xml"^^xsd:string ; |
| 179 | - rdfs:range xsd:string . | 193 | + rdfs:range xsd:string ; |
| 180 | - | 194 | +. |
| 181 | foaf:Document | 195 | foaf:Document |
| 182 | - rdf:type rdfs:Class ; | 196 | + rdf:type rdfs:Class ; |
| 183 | - rdfs:label "Document"^^xsd:string . | 197 | + rdfs:label "Document"^^xsd:string ; |
| 198 | +. | ... | ... |
| 1 | -# baseURI: http://www.reportinghub.no/system/swp/reporting | 1 | +# baseURI: http://www.reportinghub.no/system/swp/reporting |
| 2 | -# imports: http://www.reportinghub.no/system/schema/reporting | 2 | +# imports: http://www.reportinghub.no/system/schema/reporting |
| 3 | -# imports: http://www.reportinghub.no/system/swp/SWP-logging | 3 | +# imports: http://www.reportinghub.no/system/swp/SWP-logging |
| 4 | - | 4 | + |
| 5 | -@prefix arg: <http://spinrdf.org/arg#> . | 5 | +# c14n-version: 3 |
| 6 | -@prefix default: <http://uispin.org/default#> . | 6 | +@prefix arg: <http://spinrdf.org/arg#> . |
| 7 | -@prefix html: <http://uispin.org/html#> . | 7 | +@prefix default: <http://uispin.org/default#> . |
| 8 | -@prefix let: <http://uispin.org/let#> . | 8 | +@prefix html: <http://uispin.org/html#> . |
| 9 | -@prefix letrs: <http://uispin.org/letrs#> . | 9 | +@prefix let: <http://uispin.org/let#> . |
| 10 | -@prefix owl: <http://www.w3.org/2002/07/owl#> . | 10 | +@prefix letrs: <http://uispin.org/letrs#> . |
| 11 | -@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> . | 11 | +@prefix owl: <http://www.w3.org/2002/07/owl#> . |
| 12 | -@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> . | 12 | +@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> . |
| 13 | -@prefix report: <http://www.reportinghub.no/system/schema/reporting#> . | 13 | +@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> . |
| 14 | -@prefix sp: <http://spinrdf.org/sp#> . | 14 | +@prefix report: <http://www.reportinghub.no/system/schema/reporting#> . |
| 15 | -@prefix spin: <http://spinrdf.org/spin#> . | 15 | +@prefix sp: <http://spinrdf.org/sp#> . |
| 16 | -@prefix spl: <http://spinrdf.org/spl#> . | 16 | +@prefix spin: <http://spinrdf.org/spin#> . |
| 17 | -@prefix swa: <http://topbraid.org/swa#> . | 17 | +@prefix spl: <http://spinrdf.org/spl#> . |
| 18 | -@prefix ui: <http://uispin.org/ui#> . | 18 | +@prefix swa: <http://topbraid.org/swa#> . |
| 19 | -@prefix xsd: <http://www.w3.org/2001/XMLSchema#> . | 19 | +@prefix ui: <http://uispin.org/ui#> . |
| 20 | - | 20 | +@prefix xsd: <http://www.w3.org/2001/XMLSchema#> . |
| 21 | report:AbstractDR | 21 | report:AbstractDR |
| 22 | - ui:instanceView | 22 | + ui:instanceView [ |
| 23 | - [ rdf:type report:DRFormBody ; | 23 | + rdf:type report:DRFormBody ; |
| 24 | - arg:resource spin:_this ; | 24 | + arg:resource spin:_this ; |
| 25 | - ui:id "search"^^xsd:string | 25 | + ui:id "search"^^xsd:string ; |
| 26 | - ] . | 26 | + ] ; |
| 27 | - | 27 | +. |
| 28 | report:AbstractMPR | 28 | report:AbstractMPR |
| 29 | - swa:keyProperties (<http://purl.org/dc/terms/created> rdf:type report:fieldName <http://rdfs.org/sioc/ns#id>) ; | 29 | + swa:keyProperties ( |
| 30 | - ui:instanceView | 30 | + <http://purl.org/dc/terms/created> |
| 31 | - [ rdf:type report:MPRFormBody ; | 31 | + rdf:type |
| 32 | - arg:resource spin:_this ; | 32 | + report:fieldName |
| 33 | - ui:id "search"^^xsd:string | 33 | + <http://rdfs.org/sioc/ns#id> |
| 34 | - ] . | 34 | + ) ; |
| 35 | - | 35 | + ui:instanceView [ |
| 36 | + rdf:type report:MPRFormBody ; | ||
| 37 | + arg:resource spin:_this ; | ||
| 38 | + ui:id "search"^^xsd:string ; | ||
| 39 | + ] ; | ||
| 40 | +. | ||
| 36 | report:AbstractReport | 41 | report:AbstractReport |
| 37 | - swa:keyProperties (<http://purl.org/dc/terms/created> <http://purl.org/dc/terms/date> rdf:type <http://rdfs.org/sioc/ns#id>) . | 42 | + swa:keyProperties ( |
| 38 | - | 43 | + <http://purl.org/dc/terms/created> |
| 44 | + <http://purl.org/dc/terms/date> | ||
| 45 | + rdf:type | ||
| 46 | + <http://rdfs.org/sioc/ns#id> | ||
| 47 | + ) ; | ||
| 48 | +. | ||
| 39 | report:DDR | 49 | report:DDR |
| 40 | - swa:keyProperties (<http://purl.org/dc/terms/created> <http://purl.org/dc/terms/date> rdf:type report:wellBoreId <http://rdfs.org/sioc/ns#id>) ; | 50 | + swa:keyProperties ( |
| 41 | - ui:instanceView | 51 | + <http://purl.org/dc/terms/created> |
| 42 | - [ rdf:type ui:group ; | 52 | + <http://purl.org/dc/terms/date> |
| 43 | - default:subject spin:_this ; | 53 | + rdf:type |
| 44 | - ui:child | 54 | + report:wellBoreId |
| 45 | - [ rdf:type report:DRFormBody ; | 55 | + <http://rdfs.org/sioc/ns#id> |
| 46 | - arg:resource spin:_this ; | 56 | + ) ; |
| 47 | - ui:childIndex 0 | 57 | + ui:instanceView [ |
| 48 | - ] ; | 58 | + rdf:type ui:group ; |
| 49 | - ui:child | 59 | + default:subject spin:_this ; |
| 50 | - [ rdf:type swa:Object ; | 60 | + ui:child [ |
| 51 | - arg:label "Well bore id"^^xsd:string ; | 61 | + rdf:type swa:Object ; |
| 52 | - arg:predicate report:wellBoreId ; | 62 | + arg:label "Well bore id"^^xsd:string ; |
| 53 | - ui:childIndex 1 | 63 | + arg:predicate report:wellBoreId ; |
| 54 | - ] ; | 64 | + ui:childIndex 1 ; |
| 55 | - ui:id "search"^^xsd:string | 65 | + ] ; |
| 56 | - ] . | 66 | + ui:child [ |
| 57 | - | 67 | + rdf:type report:DRFormBody ; |
| 68 | + arg:resource spin:_this ; | ||
| 69 | + ui:childIndex 0 ; | ||
| 70 | + ] ; | ||
| 71 | + ui:id "search"^^xsd:string ; | ||
| 72 | + ] ; | ||
| 73 | +. | ||
| 58 | report:DPR | 74 | report:DPR |
| 59 | - swa:keyProperties (<http://purl.org/dc/terms/created> <http://purl.org/dc/terms/date> rdf:type report:owner <http://rdfs.org/sioc/ns#id>) ; | 75 | + swa:keyProperties ( |
| 60 | - ui:instanceView | 76 | + <http://purl.org/dc/terms/created> |
| 61 | - [ rdf:type ui:group ; | 77 | + <http://purl.org/dc/terms/date> |
| 62 | - default:subject spin:_this ; | 78 | + rdf:type |
| 63 | - ui:child | 79 | + report:owner |
| 64 | - [ rdf:type report:DRFormBody ; | 80 | + <http://rdfs.org/sioc/ns#id> |
| 65 | - arg:resource spin:_this ; | 81 | + ) ; |
| 66 | - ui:childIndex 0 | 82 | + ui:instanceView [ |
| 67 | - ] ; | 83 | + rdf:type ui:group ; |
| 68 | - ui:id "search"^^xsd:string | 84 | + default:subject spin:_this ; |
| 69 | - ] . | 85 | + ui:child [ |
| 70 | - | 86 | + rdf:type report:DRFormBody ; |
| 87 | + arg:resource spin:_this ; | ||
| 88 | + ui:childIndex 0 ; | ||
| 89 | + ] ; | ||
| 90 | + ui:id "search"^^xsd:string ; | ||
| 91 | + ] ; | ||
| 92 | +. | ||
| 71 | report:DRFormBody | 93 | report:DRFormBody |
| 72 | - rdf:type ui:ResourceViewClass ; | 94 | + rdf:type ui:ResourceViewClass ; |
| 73 | - rdfs:label "DRForm body"^^xsd:string ; | 95 | + ui:prototype [ |
| 74 | - rdfs:subClassOf swa:FormBody ; | 96 | + rdf:type html:Div ; |
| 75 | - ui:prototype | 97 | + default:subject [ |
| 76 | - [ rdf:type html:Div ; | 98 | + sp:varName "resource"^^xsd:string ; |
| 77 | - default:subject | 99 | + ] ; |
| 78 | - [ sp:varName "resource"^^xsd:string | 100 | + ui:child [ |
| 79 | - ] ; | 101 | + rdf:type swa:ColumnLayout ; |
| 80 | - ui:child | 102 | + arg:colWidths "50%,50%"^^xsd:string ; |
| 81 | - [ rdf:type swa:ColumnLayout ; | 103 | + arg:width "600px"^^xsd:string ; |
| 82 | - arg:colWidths "50%,50%"^^xsd:string ; | 104 | + ui:child [ |
| 83 | - arg:width "600px"^^xsd:string ; | 105 | + rdf:type swa:Object ; |
| 84 | - ui:child | 106 | + arg:label "Created"^^xsd:string ; |
| 85 | - [ rdf:type swa:Object ; | 107 | + arg:predicate <http://purl.org/dc/terms/created> ; |
| 86 | - arg:label "Created"^^xsd:string ; | 108 | + ui:childIndex 0 ; |
| 87 | - arg:predicate <http://purl.org/dc/terms/created> ; | 109 | + ] ; |
| 88 | - ui:childIndex 0 | 110 | + ui:child [ |
| 89 | - ] ; | 111 | + rdf:type swa:Object ; |
| 90 | - ui:child | 112 | + arg:label "Date on Report"^^xsd:string ; |
| 91 | - [ rdf:type swa:Object ; | 113 | + arg:predicate <http://purl.org/dc/terms/date> ; |
| 92 | - arg:label "Date on Report"^^xsd:string ; | 114 | + ui:childIndex 1 ; |
| 93 | - arg:predicate <http://purl.org/dc/terms/date> ; | 115 | + ] ; |
| 94 | - ui:childIndex 1 | 116 | + ui:childIndex 0 ; |
| 95 | - ] ; | 117 | + ] ; |
| 96 | - ui:childIndex 0 | 118 | + ] ; |
| 97 | - ] | 119 | + rdfs:label "DRForm body"^^xsd:string ; |
| 98 | - ] . | 120 | + rdfs:subClassOf swa:FormBody ; |
| 99 | - | 121 | +. |
| 100 | report:MPRFormBody | 122 | report:MPRFormBody |
| 101 | - rdf:type ui:ResourceViewClass ; | 123 | + rdf:type ui:ResourceViewClass ; |
| 102 | - rdfs:label "MPR form body"^^xsd:string ; | 124 | + ui:prototype [ |
| 103 | - rdfs:subClassOf swa:FormBody ; | 125 | + rdf:type html:Div ; |
| 104 | - ui:prototype | 126 | + default:subject [ |
| 105 | - [ rdf:type html:Div ; | 127 | + sp:varName "resource"^^xsd:string ; |
| 106 | - default:subject | 128 | + ] ; |
| 107 | - [ sp:varName "resource"^^xsd:string | 129 | + ui:child [ |
| 108 | - ] ; | 130 | + rdf:type swa:ColumnLayout ; |
| 109 | - ui:child | 131 | + arg:colWidths "50%,50%"^^xsd:string ; |
| 110 | - [ rdf:type swa:ColumnLayout ; | 132 | + arg:width "600px"^^xsd:string ; |
| 111 | - arg:colWidths "50%,50%"^^xsd:string ; | 133 | + ui:child [ |
| 112 | - arg:width "600px"^^xsd:string ; | 134 | + rdf:type swa:Object ; |
| 113 | - ui:child | 135 | + arg:label "Created"^^xsd:string ; |
| 114 | - [ rdf:type swa:Object ; | 136 | + arg:predicate <http://purl.org/dc/terms/created> ; |
| 115 | - arg:label "Created"^^xsd:string ; | 137 | + ui:childIndex 0 ; |
| 116 | - arg:predicate <http://purl.org/dc/terms/created> ; | 138 | + ] ; |
| 117 | - ui:childIndex 0 | 139 | + ui:child [ |
| 118 | - ] ; | 140 | + rdf:type swa:Object ; |
| 119 | - ui:child | 141 | + arg:label "Field name"^^xsd:string ; |
| 120 | - [ rdf:type swa:Object ; | 142 | + arg:predicate report:fieldName ; |
| 121 | - arg:label "Field name"^^xsd:string ; | 143 | + ui:childIndex 1 ; |
| 122 | - arg:predicate report:fieldName ; | 144 | + ] ; |
| 123 | - ui:childIndex 1 | 145 | + ui:childIndex 0 ; |
| 124 | - ] ; | 146 | + ] ; |
| 125 | - ui:childIndex 0 | 147 | + ] ; |
| 126 | - ] | 148 | + rdfs:label "MPR form body"^^xsd:string ; |
| 127 | - ] . | 149 | + rdfs:subClassOf swa:FormBody ; |
| 128 | - | 150 | +. |
| 129 | report:MPRG | 151 | report:MPRG |
| 130 | - swa:keyProperties (<http://purl.org/dc/terms/created> rdf:type report:fieldName report:month <http://rdfs.org/sioc/ns#id>) ; | 152 | + swa:keyProperties ( |
| 131 | - ui:instanceView | 153 | + <http://purl.org/dc/terms/created> |
| 132 | - [ rdf:type ui:group ; | 154 | + rdf:type |
| 133 | - default:subject spin:_this ; | 155 | + report:fieldName |
| 134 | - ui:child | 156 | + report:month |
| 135 | - [ rdf:type report:MPRFormBody ; | 157 | + report:preliminary |
| 136 | - arg:resource spin:_this ; | 158 | + report:containsParts |
| 137 | - ui:childIndex 0 | 159 | + <http://rdfs.org/sioc/ns#id> |
| 138 | - ] ; | 160 | + ) ; |
| 139 | - ui:child | 161 | + ui:instanceView [ |
| 140 | - [ rdf:type swa:Object ; | 162 | + rdf:type ui:group ; |
| 141 | - arg:label "Month (yyyy-MM)"^^xsd:string ; | 163 | + default:subject spin:_this ; |
| 142 | - arg:predicate report:month ; | 164 | + ui:child [ |
| 143 | - ui:childIndex 1 | 165 | + rdf:type swa:Object ; |
| 144 | - ] ; | 166 | + arg:label "Month (yyyy-MM)"^^xsd:string ; |
| 145 | - ui:id "search"^^xsd:string | 167 | + arg:predicate report:month ; |
| 146 | - ] . | 168 | + ui:childIndex 1 ; |
| 147 | - | 169 | + ] ; |
| 170 | + ui:child [ | ||
| 171 | + rdf:type report:MPRFormBody ; | ||
| 172 | + arg:resource spin:_this ; | ||
| 173 | + ui:childIndex 0 ; | ||
| 174 | + ] ; | ||
| 175 | + ui:id "search"^^xsd:string ; | ||
| 176 | + ] ; | ||
| 177 | +. | ||
| 148 | <http://www.reportinghub.no/system/swp/reporting> | 178 | <http://www.reportinghub.no/system/swp/reporting> |
| 149 | - rdf:type owl:Ontology ; | 179 | + rdf:type owl:Ontology ; |
| 150 | - owl:imports <http://www.reportinghub.no/system/schema/reporting> , <http://www.reportinghub.no/system/swp/SWP-logging> ; | 180 | + owl:imports <http://www.reportinghub.no/system/schema/reporting> ; |
| 151 | - owl:versionInfo "Created with TopBraid Composer"^^xsd:string . | 181 | + owl:imports <http://www.reportinghub.no/system/swp/SWP-logging> ; |
| 182 | + owl:versionInfo "Created with TopBraid Composer"^^xsd:string ; | ||
| 183 | +. | ... | ... |
-
Please register or login to post a comment