Holger Knublauch

Additional properties to store MPRG metadata

...@@ -2,6 +2,7 @@ ...@@ -2,6 +2,7 @@
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 +# c14n-version: 3
5 @prefix foaf: <http://xmlns.com/foaf/0.1/> . 6 @prefix foaf: <http://xmlns.com/foaf/0.1/> .
6 @prefix owl: <http://www.w3.org/2002/07/owl#> . 7 @prefix owl: <http://www.w3.org/2002/07/owl#> .
7 @prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> . 8 @prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
...@@ -9,175 +10,189 @@ ...@@ -9,175 +10,189 @@
9 @prefix report: <http://www.reportinghub.no/system/schema/reporting#> . 10 @prefix report: <http://www.reportinghub.no/system/schema/reporting#> .
10 @prefix sioc: <http://rdfs.org/sioc/ns#> . 11 @prefix sioc: <http://rdfs.org/sioc/ns#> .
11 @prefix xsd: <http://www.w3.org/2001/XMLSchema#> . 12 @prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
12 -
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 ;
41 + owl:allValuesFrom xsd:string ;
42 + owl:onProperty sioc:id ;
43 + ] ;
44 + rdfs:subClassOf [
45 + rdf:type owl:Restriction ;
40 owl:cardinality "1"^^xsd:nonNegativeInteger ; 46 owl:cardinality "1"^^xsd:nonNegativeInteger ;
41 - owl:onProperty <http://purl.org/dc/terms/date> 47 + owl:onProperty <http://purl.org/dc/terms/created> ;
42 ] ; 48 ] ;
43 - rdfs:subClassOf 49 + rdfs:subClassOf [
44 - [ rdf:type owl:Restriction ; 50 + rdf:type owl:Restriction ;
45 - owl:allValuesFrom xsd:date ; 51 + owl:cardinality "1"^^xsd:nonNegativeInteger ;
46 - owl:onProperty <http://purl.org/dc/terms/date> 52 + owl:onProperty <http://purl.org/dc/terms/date> ;
47 ] ; 53 ] ;
48 - rdfs:subClassOf 54 + rdfs:subClassOf [
49 - [ rdf:type owl:Restriction ; 55 + rdf:type owl:Restriction ;
50 owl:cardinality "1"^^xsd:nonNegativeInteger ; 56 owl:cardinality "1"^^xsd:nonNegativeInteger ;
51 - owl:onProperty sioc:id 57 + owl:onProperty sioc:id ;
52 ] ; 58 ] ;
53 - rdfs:subClassOf 59 +.
54 - [ rdf:type owl:Restriction ;
55 - owl:allValuesFrom xsd:string ;
56 - owl:onProperty sioc:id
57 - ] .
58 -
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 +.
......
...@@ -2,6 +2,7 @@ ...@@ -2,6 +2,7 @@
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 +# c14n-version: 3
5 @prefix arg: <http://spinrdf.org/arg#> . 6 @prefix arg: <http://spinrdf.org/arg#> .
6 @prefix default: <http://uispin.org/default#> . 7 @prefix default: <http://uispin.org/default#> .
7 @prefix html: <http://uispin.org/html#> . 8 @prefix html: <http://uispin.org/html#> .
...@@ -17,135 +18,166 @@ ...@@ -17,135 +18,166 @@
17 @prefix swa: <http://topbraid.org/swa#> . 18 @prefix swa: <http://topbraid.org/swa#> .
18 @prefix ui: <http://uispin.org/ui#> . 19 @prefix ui: <http://uispin.org/ui#> .
19 @prefix xsd: <http://www.w3.org/2001/XMLSchema#> . 20 @prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
20 -
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 + report:fieldName
33 + <http://rdfs.org/sioc/ns#id>
34 + ) ;
35 + ui:instanceView [
36 + rdf:type report:MPRFormBody ;
32 arg:resource spin:_this ; 37 arg:resource spin:_this ;
33 - ui:id "search"^^xsd:string 38 + ui:id "search"^^xsd:string ;
34 - ] . 39 + ] ;
35 - 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>
53 + rdf:type
54 + report:wellBoreId
55 + <http://rdfs.org/sioc/ns#id>
56 + ) ;
57 + ui:instanceView [
58 + rdf:type ui:group ;
43 default:subject spin:_this ; 59 default:subject spin:_this ;
44 - ui:child 60 + ui:child [
45 - [ rdf:type report:DRFormBody ; 61 + rdf:type swa:Object ;
46 - arg:resource spin:_this ;
47 - ui:childIndex 0
48 - ] ;
49 - ui:child
50 - [ rdf:type swa:Object ;
51 arg:label "Well bore id"^^xsd:string ; 62 arg:label "Well bore id"^^xsd:string ;
52 arg:predicate report:wellBoreId ; 63 arg:predicate report:wellBoreId ;
53 - ui:childIndex 1 64 + ui:childIndex 1 ;
54 ] ; 65 ] ;
55 - ui:id "search"^^xsd:string 66 + ui:child [
56 - ] . 67 + rdf:type report:DRFormBody ;
57 - 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>
78 + rdf:type
79 + report:owner
80 + <http://rdfs.org/sioc/ns#id>
81 + ) ;
82 + ui:instanceView [
83 + rdf:type ui:group ;
62 default:subject spin:_this ; 84 default:subject spin:_this ;
63 - ui:child 85 + ui:child [
64 - [ rdf:type report:DRFormBody ; 86 + rdf:type report:DRFormBody ;
65 arg:resource spin:_this ; 87 arg:resource spin:_this ;
66 - ui:childIndex 0 88 + ui:childIndex 0 ;
67 ] ; 89 ] ;
68 - ui:id "search"^^xsd:string 90 + ui:id "search"^^xsd:string ;
69 - ] . 91 + ] ;
70 - 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
78 - [ sp:varName "resource"^^xsd:string
79 ] ; 99 ] ;
80 - ui:child 100 + ui:child [
81 - [ rdf:type swa:ColumnLayout ; 101 + rdf:type swa:ColumnLayout ;
82 arg:colWidths "50%,50%"^^xsd:string ; 102 arg:colWidths "50%,50%"^^xsd:string ;
83 arg:width "600px"^^xsd:string ; 103 arg:width "600px"^^xsd:string ;
84 - ui:child 104 + ui:child [
85 - [ rdf:type swa:Object ; 105 + rdf:type swa:Object ;
86 arg:label "Created"^^xsd:string ; 106 arg:label "Created"^^xsd:string ;
87 arg:predicate <http://purl.org/dc/terms/created> ; 107 arg:predicate <http://purl.org/dc/terms/created> ;
88 - ui:childIndex 0 108 + ui:childIndex 0 ;
89 ] ; 109 ] ;
90 - ui:child 110 + ui:child [
91 - [ rdf:type swa:Object ; 111 + rdf:type swa:Object ;
92 arg:label "Date on Report"^^xsd:string ; 112 arg:label "Date on Report"^^xsd:string ;
93 arg:predicate <http://purl.org/dc/terms/date> ; 113 arg:predicate <http://purl.org/dc/terms/date> ;
94 - ui:childIndex 1 114 + ui:childIndex 1 ;
95 ] ; 115 ] ;
96 - ui:childIndex 0 116 + ui:childIndex 0 ;
97 - ] 117 + ] ;
98 - ] . 118 + ] ;
99 - 119 + rdfs:label "DRForm body"^^xsd:string ;
120 + rdfs:subClassOf swa:FormBody ;
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
107 - [ sp:varName "resource"^^xsd:string
108 ] ; 128 ] ;
109 - ui:child 129 + ui:child [
110 - [ rdf:type swa:ColumnLayout ; 130 + rdf:type swa:ColumnLayout ;
111 arg:colWidths "50%,50%"^^xsd:string ; 131 arg:colWidths "50%,50%"^^xsd:string ;
112 arg:width "600px"^^xsd:string ; 132 arg:width "600px"^^xsd:string ;
113 - ui:child 133 + ui:child [
114 - [ rdf:type swa:Object ; 134 + rdf:type swa:Object ;
115 arg:label "Created"^^xsd:string ; 135 arg:label "Created"^^xsd:string ;
116 arg:predicate <http://purl.org/dc/terms/created> ; 136 arg:predicate <http://purl.org/dc/terms/created> ;
117 - ui:childIndex 0 137 + ui:childIndex 0 ;
118 ] ; 138 ] ;
119 - ui:child 139 + ui:child [
120 - [ rdf:type swa:Object ; 140 + rdf:type swa:Object ;
121 arg:label "Field name"^^xsd:string ; 141 arg:label "Field name"^^xsd:string ;
122 arg:predicate report:fieldName ; 142 arg:predicate report:fieldName ;
123 - ui:childIndex 1 143 + ui:childIndex 1 ;
124 ] ; 144 ] ;
125 - ui:childIndex 0 145 + ui:childIndex 0 ;
126 - ] 146 + ] ;
127 - ] . 147 + ] ;
128 - 148 + rdfs:label "MPR form body"^^xsd:string ;
149 + rdfs:subClassOf swa:FormBody ;
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
155 + report:fieldName
156 + report:month
157 + report:preliminary
158 + report:containsParts
159 + <http://rdfs.org/sioc/ns#id>
160 + ) ;
161 + ui:instanceView [
162 + rdf:type ui:group ;
133 default:subject spin:_this ; 163 default:subject spin:_this ;
134 - ui:child 164 + ui:child [
135 - [ rdf:type report:MPRFormBody ; 165 + rdf:type swa:Object ;
136 - arg:resource spin:_this ;
137 - ui:childIndex 0
138 - ] ;
139 - ui:child
140 - [ rdf:type swa:Object ;
141 arg:label "Month (yyyy-MM)"^^xsd:string ; 166 arg:label "Month (yyyy-MM)"^^xsd:string ;
142 arg:predicate report:month ; 167 arg:predicate report:month ;
143 - ui:childIndex 1 168 + ui:childIndex 1 ;
144 ] ; 169 ] ;
145 - ui:id "search"^^xsd:string 170 + ui:child [
146 - ] . 171 + rdf:type report:MPRFormBody ;
147 - 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 +.
......