Hi,
I'm working with a client who use citeproc-java to generate output from a .csl and .jsons I provide them with.
I noticed that Zotero exports variables in the extra field like so:
[
{
"id": "
http://zotero.org/users/452233/items/GSJ3UMHI",
"type": "book",
"note": "original-date: 2012",
"publisher": "Reprint, Sphere",
"title": "A wicked deed",
"author": [
{
"family": "Gregory",
"given": "S."
}
],
"issued": {
"date-parts": [
[
"1999"
]
]
}
}
]
However, using citeproc-java the "original-date" in this case cannot be used.
Changing this to the following, the original-date then gets correctly output.
[
{
"id": "
http://zotero.org/users/452233/items/GSJ3UMHI",
"type": "book",
"note": "original-date: 2012",
"publisher": "Reprint, Sphere",
"title": "A wicked deed",
"author": [
{
"family": "Gregory",
"given": "S."
}
],
"issued": {
"date-parts": [
[
"1999"
]
]
},
"original-date": {
"date-parts": [
[
"1999"
]
]
}
}
]
I'm not sure if this is a bug in cp-java or not ideal the way Zotero exports these variables?
I'd be thankful for our input. :)