Schemas / Paper (articles / citations)
rig.paper.citation
v0.31.0 · draft 3 fields 2 required
Fields
| Field | Type | Meaning | |
|---|---|---|---|
citing |
entity | required | The work that contains the reference |
cited |
entity | required | The work referred to (paper, book, or other named work) |
locator |
string | optional | Optional. Page or section cited (737, p. 12) |
One bibliographic citation: this work cites that work. Format when present.
Field meanings follow CSL cite items and ISO 690 (the reference relationship, not a formatted footnote string).
citing and cited are required.
Do not store a formatted bibliography string here. The cited work carries its own title, identifiers, and authors. A second citation is another entity.
JSON Schema
Resolves at https://rig.works/schemas/rig.paper.citation.schema.json —
raw file.
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://rig.works/schemas/rig.paper.citation.schema.json",
"title": "rig.paper.citation",
"type": "object",
"additionalProperties": false,
"properties": {
"citing": {
"$ref": "./_defs.schema.json#/$defs/entity"
},
"cited": {
"$ref": "./_defs.schema.json#/$defs/entity"
},
"locator": {
"$ref": "./_defs.schema.json#/$defs/string"
}
},
"required": [
"citing",
"cited"
],
"description": "One bibliographic citation. Field meanings follow CSL / ISO 690 (this work cites that work)."
}