From aa29eeb2045e0aaf839286ab812a5f5dc03b9b9d Mon Sep 17 00:00:00 2001 From: Alan Orth Date: Mon, 27 Jul 2020 10:43:20 +0300 Subject: [PATCH] Use reviewStatus instead of peer-reviewed This should indicate the type of review, if any, that a resource has had. Fixes #14. Replaces #23. --- cgcore.html | 14 +++++++------- cgcore.rdf | 6 +++--- examples/scientificPublication.xml | 4 ++-- examples/scientificPublication_simple.json | 4 ++-- 4 files changed, 14 insertions(+), 14 deletions(-) diff --git a/cgcore.html b/cgcore.html index 13a935e..3d7c041 100644 --- a/cgcore.html +++ b/cgcore.html @@ -1204,7 +1204,7 @@

Creator

Scientific Publication

- abstract bibliographicCitation publisher issn isbn peer-reviewed alternative title howpublished journal booktitle chapter pages volume number extent series edition notes audience isPartOf + abstract bibliographicCitation publisher issn isbn reviewStatus alternative title howpublished journal booktitle chapter pages volume number extent series edition notes audience isPartOf
@@ -1399,12 +1399,12 @@

Scientific Publication

- + - + - + - +
- peer-reviewed + reviewStatus
Property
@@ -1413,20 +1413,20 @@

Scientific Publication

Identifier - http://purl.org/cg/terms/peer-reviewed + http://purl.org/cg/terms/reviewStatus
DefinitionIf the resource has been peer reviewedIndicating the type of review the resource has undergone.
CommentsValue should indicate the type of review. Do not use if the resource has not been reviewed.
Examplestrue is peer-reviewed, not used if not
  • Internal
  • Peer
diff --git a/cgcore.rdf b/cgcore.rdf index 4d5329c..6a94345 100644 --- a/cgcore.rdf +++ b/cgcore.rdf @@ -127,7 +127,7 @@ cg:ScientificPublication a rdfs:Class ; owl:onProperty cg:ScientificPublication ], [ a owl:Restriction ; owl:minCardinality 0 ; - owl:onProperty cg:peer-reviewed ], + owl:onProperty cg:reviewStatus ], [ a owl:Restriction ; owl:minCardinality 0 ; owl:onProperty cg:volume ], @@ -236,8 +236,8 @@ cg:pages a rdf:Property ; rdfs:label "pages" ; rdfs:comment "Page numbers" . -cg:peer-reviewed a rdf:Property ; - rdfs:label "peer-reviewed" ; +cg:reviewStatus a rdf:Property ; + rdfs:label "reviewStatus" ; rdfs:comment "If the resource has been peer reviewed" . cg:series a rdf:Property ; diff --git a/examples/scientificPublication.xml b/examples/scientificPublication.xml index 2277336..776bff7 100644 --- a/examples/scientificPublication.xml +++ b/examples/scientificPublication.xml @@ -32,7 +32,7 @@ Open 20/02/2018 DOI_XXXX - true + true xxxxx 12-15 @@ -92,4 +92,4 @@ 2016-2018 - \ No newline at end of file + diff --git a/examples/scientificPublication_simple.json b/examples/scientificPublication_simple.json index 3ea39c6..117adb6 100644 --- a/examples/scientificPublication_simple.json +++ b/examples/scientificPublication_simple.json @@ -29,7 +29,7 @@ "accessRights": "Open", "issued": "20/02/2018", "relation": "DOI_XXXX", - "peer-reviewed": true, + "reviewStatus": true, "bookTitle": "xxxxx", "journalTitle": null, "pages": "12-15", @@ -95,4 +95,4 @@ "temporal": "2016-2018" } } -} \ No newline at end of file +}