Showing
2 changed files
with
30 additions
and
0 deletions
| ... | @@ -144,6 +144,13 @@ log:url | ... | @@ -144,6 +144,13 @@ log:url |
| 144 | rdfs:label "url"^^xsd:string ; | 144 | rdfs:label "url"^^xsd:string ; |
| 145 | rdfs:range xsd:string . | 145 | rdfs:range xsd:string . |
| 146 | 146 | ||
| 147 | +log:wellBoreName | ||
| 148 | + rdf:type owl:DatatypeProperty ; | ||
| 149 | + rdfs:comment "Points to one or more well bore names that had reports uploaded."^^xsd:string ; | ||
| 150 | + rdfs:domain log:ReportUploadEvent ; | ||
| 151 | + rdfs:label "well bore name"^^xsd:string ; | ||
| 152 | + rdfs:range xsd:string . | ||
| 153 | + | ||
| 147 | log:xml | 154 | log:xml |
| 148 | rdf:type owl:DatatypeProperty ; | 155 | rdf:type owl:DatatypeProperty ; |
| 149 | rdfs:comment "The complete source of the submitted XML document."^^xsd:string ; | 156 | rdfs:comment "The complete source of the submitted XML document."^^xsd:string ; | ... | ... |
| ... | @@ -11,6 +11,7 @@ | ... | @@ -11,6 +11,7 @@ |
| 11 | @prefix sp: <http://spinrdf.org/sp#> . | 11 | @prefix sp: <http://spinrdf.org/sp#> . |
| 12 | @prefix spin: <http://spinrdf.org/spin#> . | 12 | @prefix spin: <http://spinrdf.org/spin#> . |
| 13 | @prefix spl: <http://spinrdf.org/spl#> . | 13 | @prefix spl: <http://spinrdf.org/spl#> . |
| 14 | +@prefix tui: <http://uispin.org/tui#> . | ||
| 14 | @prefix ui: <http://uispin.org/ui#> . | 15 | @prefix ui: <http://uispin.org/ui#> . |
| 15 | @prefix xsd: <http://www.w3.org/2001/XMLSchema#> . | 16 | @prefix xsd: <http://www.w3.org/2001/XMLSchema#> . |
| 16 | 17 | ||
| ... | @@ -109,6 +110,28 @@ | ... | @@ -109,6 +110,28 @@ |
| 109 | ] | 110 | ] |
| 110 | ] | 111 | ] |
| 111 | ] ; | 112 | ] ; |
| 113 | + ui:child | ||
| 114 | + [ rdf:type ui:TextNode ; | ||
| 115 | + ui:childIndex 1 ; | ||
| 116 | + ui:text " "^^xsd:string | ||
| 117 | + ] ; | ||
| 118 | + ui:child | ||
| 119 | + [ rdf:type tui:LabelList ; | ||
| 120 | + ui:childIndex 2 ; | ||
| 121 | + ui:resultSet | ||
| 122 | + [ rdf:type sp:Select ; | ||
| 123 | + sp:orderBy ([ sp:varName "wellBoreName"^^xsd:string | ||
| 124 | + ]) ; | ||
| 125 | + sp:resultVariables ([ sp:varName "wellBoreName"^^xsd:string | ||
| 126 | + ]) ; | ||
| 127 | + sp:where ([ sp:object | ||
| 128 | + [ sp:varName "wellBoreName"^^xsd:string | ||
| 129 | + ] ; | ||
| 130 | + sp:predicate <http://www.reportinghub.no/system/schema/logging#wellBoreName> ; | ||
| 131 | + sp:subject spin:_this | ||
| 132 | + ]) | ||
| 133 | + ] | ||
| 134 | + ] ; | ||
| 112 | ui:id "comments"^^xsd:string | 135 | ui:id "comments"^^xsd:string |
| 113 | ] . | 136 | ] . |
| 114 | 137 | ... | ... |
-
Please register or login to post a comment