Toggle navigation
Toggle navigation
This project
Loading...
Sign in
data.posccaesar.org
/
npd
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Graphs
Issues
1
Merge Requests
0
Wiki
Network
Create a new issue
Commits
Issue Boards
Authored by
Holger Knublauch
2012-02-22 11:17:05 +1000
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
a724741a0e1e6e066b5020a43941a6202ac5fc77
a724741a
1 parent
a42660e7
New system ontology to store schematron and metadata about them
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
31 additions
and
0 deletions
www.reportinghub.no/system/schema/SCHEMA-schematron.ttl
www.reportinghub.no/system/schema/SCHEMA-schematron.ttl
0 → 100644
View file @
a724741
# baseURI: http://www.reportinghub.no/system/schema/schematron
@prefix
owl:
<http://www.w3.org/2002/07/owl#>
.
@prefix
rdf:
<http://www.w3.org/1999/02/22-rdf-syntax-ns#>
.
@prefix
rdfs:
<http://www.w3.org/2000/01/rdf-schema#>
.
@prefix
schematron:
<http://www.reportinghub.no/system/schema/schematron#>
.
@prefix
xsd:
<http://www.w3.org/2001/XMLSchema#>
.
<http://www.reportinghub.no/system/schema/schematron>
rdf:
type
owl:
Ontology
;
owl:
versionInfo
"0.1.0"
^^
xsd:
string
.
schematron:
File
rdf:
type
owl:
Class
;
rdfs:
comment
"A schematron file as uploaded by the admin. Associated with a field. The content is stored in content."
^^
xsd:
string
;
rdfs:
label
"File"
^^
xsd:
string
;
rdfs:
subClassOf
owl:
Thing
.
schematron:
content
rdf:
type
owl:
DatatypeProperty
;
rdfs:
comment
"The XML content of the schematron file."
^^
xsd:
string
;
rdfs:
domain
schematron:
File
;
rdfs:
label
"content"
^^
xsd:
string
;
rdfs:
range
xsd:
string
.
schematron:
fieldId
rdf:
type
owl:
DatatypeProperty
;
rdfs:
comment
"The NPD id of the Field that the schematron file has been uploaded for."
^^
xsd:
string
;
rdfs:
domain
schematron:
File
;
rdfs:
label
"field id"
^^
xsd:
string
;
rdfs:
range
xsd:
string
.
Please
register
or
login
to post a comment