article-types:primer leaf node


URI

http://ns.nature.com/article-types/primer

Label

Primer

Description

The :primer article-type denotes a review that describes an important, but usually technically complex, concept in an easily understood way. Accessibility to an audience with a relatively low level of expertise in the subject (no more than basic undergraduate training) is a defining feature.

Implementation

@prefix article-types: <http://ns.nature.com/article-types/> .
@prefix npg: <http://ns.nature.com/terms/> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix skos: <http://www.w3.org/2004/02/skos/core#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .

article-types:primer a npg:ArticleType,
        skos:Concept ;
    npg:hasRoot article-types:research-and-reviews ;
    npg:id "primer" ;
    npg:isLeaf true ;
    npg:isRoot false ;
    npg:treeDepth 2 ;
    rdfs:isDefinedBy article-types: ;
    skos:broader article-types:reviews ;
    skos:definition "The :primer article-type denotes a review that describes an important, but usually technically complex, concept in an easily understood way. Accessibility to an audience with a relatively low level of expertise in the subject (no more than basic undergraduate training) is a defining feature."@en ;
    skos:inScheme article-types: ;
    skos:prefLabel "Primer"@en .