Schemas / Paper (articles / citations)
rig.paper.article
v0.31.0 · draft 5 fields 0 required
Fields
| Field | Type | Meaning | |
|---|---|---|---|
abstract |
string | optional | Abstract |
pageStart |
string | optional | First page (737, e123) |
pageEnd |
string | optional | Last page |
articleNumber |
string | optional | Article / elocation id |
publishedDate |
string | optional | Publication day or year (YYYY / YYYY-MM / YYYY-MM-DD) |
Article-level metadata. Format when present.
Field meanings follow JATS article-meta. This schema is the article - not the journal issue and not a trade blurb.
All fields optional. Emit what the source has. An empty component is invalid - attach at least one field.
The title is rig.meta.named. Authors are rig.book.contribution (work is this article). Volume and issue are rig.paper.issue. A PDF is rig.media.asset_ref kind document.
JSON Schema
Resolves at https://rig.works/schemas/rig.paper.article.schema.json —
raw file.
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://rig.works/schemas/rig.paper.article.schema.json",
"title": "rig.paper.article",
"type": "object",
"additionalProperties": false,
"properties": {
"abstract": {
"$ref": "./_defs.schema.json#/$defs/string"
},
"pageStart": {
"$ref": "./_defs.schema.json#/$defs/string"
},
"pageEnd": {
"$ref": "./_defs.schema.json#/$defs/string"
},
"articleNumber": {
"$ref": "./_defs.schema.json#/$defs/string"
},
"publishedDate": {
"type": "string",
"pattern": "^[0-9]{4}(-[0-9]{2}(-[0-9]{2})?)?$",
"description": "ISO 8601 date or year (ONIX PublishingDate)."
}
},
"description": "Article body metadata. Field meanings follow JATS article-meta. Title is rig.meta.named.",
"minProperties": 1
}