Cite Group
A group of Cite nodes.
This type allows you to group associated citations together. When some content in a Creative Work
cites more than one reference for a particular piece of text, use a CiteGroup
to encapsulate multiple Cite
nodes. At present we do not give a citationMode
property to a CiteGroup
since they will almost always be parenthetical as opposed to narrative. In other words, it usually only makes sense for individual Cite
nodes to be narrative (although they may be connected together within content
using words such as "and").
This schema type is marked as unstable ⚠️ and is subject to change.
Properties
Name | @id | Type | Description | Inherited from |
---|---|---|---|---|
items | schema:itemListElement | Array of Cite | One or more Cite s to be referenced in the same surrounding text. | CiteGroup |
id | schema:id | string | The identifier for this item. | Entity |
meta | stencila:meta | object | Metadata associated with this item. | Entity |
Examples
{
"type": "Article",
"title": "An example of using the CiteGroup node type",
"authors": [
{
"type": "Person",
"givenNames": [
"Joe"
],
"familyNames": [
"Bloggs"
]
}
],
"content": [
{
"type": "Paragraph",
"content": [
"Citing two articles ",
{
"type": "CiteGroup",
"items": [
{
"type": "Cite",
"target": "some-one-else-1991"
},
{
"type": "Cite",
"target": "updated-works-2009"
}
]
},
"."
]
}
],
"references": [
{
"type": "Article",
"id": "some-one-else-1991",
"title": "Another article by someone else",
"authors": [
{
"type": "Person",
"givenNames": [
"Some",
"One"
],
"familyNames": [
"Else"
]
}
],
"datePublished": "1991"
},
{
"type": "Article",
"id": "update-works-2009",
"title": "A Better Updated Work",
"authors": [
{
"type": "Person",
"givenNames": [
"Some",
"Better"
],
"familyNames": [
"Person"
]
}
],
"datePublished": "2009"
}
]
}
Related
- Parent: Entity
- Descendants: None
Available as
- JSON-LD
- JSON Schema
- Python
class CiteGroup
- TypeScript
interface CiteGroup
- R
class CiteGroup
- Rust
struct CiteGroup
Source
This documentation was generated from CiteGroup.schema.yaml.