From 71415a881da649e0c0456090e6ce4ed43c105cd3 Mon Sep 17 00:00:00 2001 From: Alan Orth Date: Mon, 27 Jul 2020 10:47:30 +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. --- cgcore.html | 22 +++++++++++++--------- cgcore.rdf | 6 +++--- examples/scientificPublication.xml | 4 ++-- examples/scientificPublication_simple.json | 4 ++-- 4 files changed, 20 insertions(+), 16 deletions(-) diff --git a/cgcore.html b/cgcore.html index a0c2205..d7ffb05 100644 --- a/cgcore.html +++ b/cgcore.html @@ -23,8 +23,7 @@ - - +

CG Core Metadata Reference Guide

This page provides a list of the metadata elements that are used in the CG Core metadata schema. The CG Core metadata schema is an application profile and is built from existing standards as much as possible. It is an effort led by the Big Data Platform Metadata Working Group of the CGIAR.

@@ -1204,7 +1203,7 @@

Creator

Scientific Publication

@@ -1399,12 +1398,12 @@

Scientific Publication

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

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 +}