http://rescs.org/dash/article/ArticleShape
An article, such as a news article or piece of investigative report. Newspapers and magazines have articles of many different types and this is intended to cover them all.\\n\\nSee also [blog post](http://blog.schema.org/2014/09/schemaorg-support-for-bibliographic_2.html).
Instances of schema:Article can have the following properties:
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix schema: <http://schema.org/> .
@prefix sh: <http://www.w3.org/ns/shacl#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
<http://rescs.org/dash/article/ArticleShape> a sh:NodeShape ;
rdfs:label "Article"^^xsd:string ;
rdfs:comment "An article, such as a news article or piece of investigative report. Newspapers and magazines have articles of many different types and this is intended to cover them all.\\\\n\\\\nSee also [blog post](http://blog.schema.org/2014/09/schemaorg-support-for-bibliographic_2.html)."^^xsd:string ;
sh:and ( [ sh:node <http://rescs.org/dash/creativework/CreativeWorkShape> ] [ sh:property [ sh:description "The page on which the work starts; for example \\\"135\\\" or \\\"xiii\\\"" ;
sh:maxCount 1 ;
sh:name "pageStart" ;
sh:or ( [ sh:datatype xsd:string ] [ sh:datatype xsd:integer ] ) ;
sh:path schema:pageStart ],
[ sh:description "The page on which the work ends; for example \\\"138\\\" or \\\"xvi\\\"." ;
sh:maxCount 1 ;
sh:name "pageEnd" ;
sh:or ( [ sh:datatype xsd:string ] [ sh:datatype xsd:integer ] ) ;
sh:path schema:pageEnd ],
[ sh:datatype xsd:string ;
sh:description "The actual body of the article." ;
sh:maxCount 1 ;
sh:name "articleBody" ;
sh:path schema:articleBody ] ] ) ;
sh:targetClass schema:Article .