Skip to content

Commit

Permalink
Fix two validation errors in PaNET_metadata.ttl (#145)
Browse files Browse the repository at this point in the history
Motivation:

The Apache Jena tool `riot` discovered two problems with the current
content of `PaNET_metadata.ttl`:
  * A multi-line text literal is not allowed for values contained within
  single quotes.
  * The set of assertions are not terminated with a dot.

Modification:

Switch string literal to use long-quote.

Add missing terminating dot.

Result:

The `PaNET_metadata.ttl` file is now valid Turtle.

Closes: #144
  • Loading branch information
paulmillar committed Aug 22, 2024
1 parent 4fab3dc commit b3d9ec4
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions source/PaNET_metadata.ttl
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@
] ;
dcterms:license <https://creativecommons.org/licenses/by/4.0/> ;

rdfs:comment "Photon and Neutron Experimental Techniques: An ontology of techniques within the photon and neutron (PaN) domain.
rdfs:comment """Photon and Neutron Experimental Techniques: An ontology of techniques within the photon and neutron (PaN) domain.
Purpose
Expand All @@ -78,4 +78,5 @@ This project was undertaken under ExPaNDS WP3.2 (https://expands.eu/)
The ontology is can be found here: https://github.com/ExPaNDS-eu/ExPaNDS-experimental-techniques-ontology
Photon and neutron PaN ontologies developed under ExPaNDS are documented here: https://doi.org/10.5281/zenodo.4806026"^^xsd:string ;
Photon and neutron PaN ontologies developed under ExPaNDS are documented here: https://doi.org/10.5281/zenodo.4806026"""^^xsd:string ;
.

0 comments on commit b3d9ec4

Please sign in to comment.