Schemas / Paper (articles / citations)
rig.paper.issue
v0.31.0 · draft 5 fields 0 required
Fields
| Field | Type | Meaning | |
|---|---|---|---|
journal |
entity | optional | Journal or proceedings series |
volume |
string | optional | Volume |
issue |
string | optional | Issue / number |
conferenceName |
string | optional | Conference name (proceedings) |
conferencePlace |
string | optional | Conference city / venue |
Issue or proceedings container for an article. Format when present.
Field meanings follow JATS journal-meta / issue-meta and conference proceedings metadata. This schema is the container - not the article.
All fields optional. Emit what the source has. An empty component is invalid - attach at least one field.
Name the journal with rig.meta.named. Its ISSN is rig.book.identifier issn on that same journal entity. Do not put a journal title string here.
JSON Schema
Resolves at https://rig.works/schemas/rig.paper.issue.schema.json —
raw file.
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://rig.works/schemas/rig.paper.issue.schema.json",
"title": "rig.paper.issue",
"type": "object",
"additionalProperties": false,
"properties": {
"journal": {
"$ref": "./_defs.schema.json#/$defs/entity"
},
"volume": {
"$ref": "./_defs.schema.json#/$defs/string"
},
"issue": {
"$ref": "./_defs.schema.json#/$defs/string"
},
"conferenceName": {
"$ref": "./_defs.schema.json#/$defs/string"
},
"conferencePlace": {
"$ref": "./_defs.schema.json#/$defs/string"
}
},
"description": "Issue / proceedings container. Journal is an entity (name + ISSN). Not the article.",
"minProperties": 1
}