Skip to content

Instantly share code, notes, and snippets.

@bdarcus
Forked from zepinglee/analyze-macros.py
Created June 23, 2023 22:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bdarcus/87c11e2f9fff2c85ccfed2f2082ad679 to your computer and use it in GitHub Desktop.
Save bdarcus/87c11e2f9fff2c85ccfed2f2082ad679 to your computer and use it in GitHub Desktop.
from collections import Counter
import glob
import os
import xml.etree.ElementTree as ET
# from lxml import etree as ET
import yaml
CSL_STYLES_DIR = '../styles'
NSMAP = {'cs': 'http://purl.org/net/xbiblio/csl'}
def canonicalize_csl_element(element):
for if_tag in element.findall('.//cs:choose/*', namespaces=NSMAP):
for attr in ['is-numeric', 'is-uncertain-date', 'locator', 'position', 'type', 'variable']:
value = if_tag.get(attr)
if value:
sorted_value = ' '.join(sorted(value.split()))
if_tag.set(attr, sorted_value)
def main():
macro_name_counter = Counter()
macro_counter_by_name = dict() # dict[str, Counter]
for path in sorted(glob.glob(os.path.join(CSL_STYLES_DIR, '*.csl'))):
# print(path)
root = ET.parse(path).getroot()
macros = root.findall('cs:macro', namespaces=NSMAP)
for macro in macros:
canonicalize_csl_element(macro)
name = macro.get('name')
macro_str = ET.tostring(macro, encoding='unicode')
macro_str = ET.canonicalize(macro_str, strip_text=True)
macro_name_counter[name] += 1
if name not in macro_counter_by_name:
macro_counter_by_name[name] = Counter()
macro_counter_by_name[name][macro_str] += 1
output = dict()
items = list(macro_name_counter.items())
items.sort(key=lambda x: x[0])
items.sort(key=lambda x: x[1], reverse=True)
for name, count in items:
macro_counter = macro_counter_by_name[name]
assert macro_counter.total() == count
num_most_common_macros = macro_counter.most_common(1)[0][1]
output[name] = {
'total': count,
'most-common': num_most_common_macros,
'is-unique': num_most_common_macros == count,
}
with open('unique-macro-names.yaml', 'w') as f:
yaml.dump(output, f, sort_keys=False)
if __name__ == '__main__':
main()
publisher:
total: 2255
most-common: 379
is-unique: false
author:
total: 2158
most-common: 74
is-unique: false
title:
total: 2017
most-common: 130
is-unique: false
edition:
total: 2012
most-common: 700
is-unique: false
access:
total: 1685
most-common: 39
is-unique: false
editor:
total: 1634
most-common: 91
is-unique: false
author-short:
total: 1182
most-common: 58
is-unique: false
year-date:
total: 779
most-common: 323
is-unique: false
issued:
total: 777
most-common: 61
is-unique: false
locators:
total: 709
most-common: 14
is-unique: false
container-title:
total: 684
most-common: 41
is-unique: false
pages:
total: 634
most-common: 49
is-unique: false
event:
total: 622
most-common: 122
is-unique: false
container-contributors:
total: 524
most-common: 17
is-unique: false
secondary-contributors:
total: 518
most-common: 38
is-unique: false
date:
total: 416
most-common: 44
is-unique: false
container:
total: 412
most-common: 23
is-unique: false
citation-locator:
total: 382
most-common: 117
is-unique: false
issued-year:
total: 349
most-common: 98
is-unique: false
translator:
total: 317
most-common: 55
is-unique: false
anon:
total: 298
most-common: 199
is-unique: false
issue:
total: 268
most-common: 17
is-unique: false
archive:
total: 255
most-common: 100
is-unique: false
editor-translator:
total: 255
most-common: 28
is-unique: false
volume:
total: 244
most-common: 31
is-unique: false
contributors-short:
total: 239
most-common: 36
is-unique: false
collection-title:
total: 238
most-common: 63
is-unique: false
journal-location:
total: 208
most-common: 43
is-unique: false
point-locators:
total: 208
most-common: 44
is-unique: false
recipient:
total: 208
most-common: 54
is-unique: false
interviewer:
total: 207
most-common: 95
is-unique: false
accessed-date:
total: 205
most-common: 46
is-unique: false
title-short:
total: 202
most-common: 13
is-unique: false
page:
total: 199
most-common: 23
is-unique: false
contributors:
total: 197
most-common: 14
is-unique: false
collection:
total: 196
most-common: 17
is-unique: false
description:
total: 194
most-common: 30
is-unique: false
locator:
total: 179
most-common: 16
is-unique: false
issued-sort:
total: 162
most-common: 79
is-unique: false
legal-cites:
total: 157
most-common: 41
is-unique: false
locators-chapter:
total: 150
most-common: 25
is-unique: false
report-details:
total: 141
most-common: 112
is-unique: false
day-month:
total: 119
most-common: 102
is-unique: false
format:
total: 117
most-common: 43
is-unique: false
container-prefix:
total: 115
most-common: 48
is-unique: false
recipient-note:
total: 115
most-common: 41
is-unique: false
locators-newspaper:
total: 114
most-common: 52
is-unique: false
journal-title:
total: 113
most-common: 25
is-unique: false
accessed:
total: 111
most-common: 12
is-unique: false
original-date:
total: 109
most-common: 59
is-unique: false
point-locators-subsequent:
total: 107
most-common: 20
is-unique: false
recipient-short:
total: 106
most-common: 38
is-unique: false
title-note:
total: 104
most-common: 12
is-unique: false
contributors-note:
total: 103
most-common: 24
is-unique: false
genre:
total: 102
most-common: 36
is-unique: false
edition-note:
total: 100
most-common: 25
is-unique: false
issue-note:
total: 99
most-common: 8
is-unique: false
access-note:
total: 98
most-common: 10
is-unique: false
container-title-note:
total: 97
most-common: 8
is-unique: false
locators-article:
total: 97
most-common: 23
is-unique: false
archive-note:
total: 91
most-common: 35
is-unique: false
author-count:
total: 91
most-common: 52
is-unique: false
container-author:
total: 88
most-common: 13
is-unique: false
locators-note:
total: 88
most-common: 13
is-unique: false
contributors-sort:
total: 86
most-common: 27
is-unique: false
number:
total: 85
most-common: 30
is-unique: false
collection-title-journal:
total: 84
most-common: 81
is-unique: false
container-contributors-note:
total: 81
most-common: 37
is-unique: false
secondary-contributors-note:
total: 78
most-common: 44
is-unique: false
description-note:
total: 76
most-common: 27
is-unique: false
year:
total: 76
most-common: 36
is-unique: false
title-plus-extra:
total: 75
most-common: 40
is-unique: false
interviewer-note:
total: 74
most-common: 32
is-unique: false
publisher-place:
total: 72
most-common: 10
is-unique: false
edition_book:
total: 70
most-common: 41
is-unique: false
publisher_thesis:
total: 70
most-common: 66
is-unique: false
edition_chapter:
total: 67
most-common: 65
is-unique: false
author-bib:
total: 66
most-common: 13
is-unique: false
url:
total: 66
most-common: 5
is-unique: false
medium:
total: 59
most-common: 18
is-unique: false
originally-published:
total: 56
most-common: 26
is-unique: false
series:
total: 54
most-common: 31
is-unique: false
case-locator-subsequent:
total: 51
most-common: 41
is-unique: false
published-date:
total: 51
most-common: 15
is-unique: false
book-container:
total: 50
most-common: 9
is-unique: false
editor-short:
total: 50
most-common: 3
is-unique: false
place:
total: 50
most-common: 19
is-unique: false
volumes:
total: 49
most-common: 21
is-unique: false
collection-details:
total: 48
most-common: 45
is-unique: false
reprint:
total: 48
most-common: 46
is-unique: false
locators-note-join-with-comma:
total: 47
most-common: 36
is-unique: false
chapter-marker:
total: 46
most-common: 45
is-unique: false
date-disambiguate:
total: 46
most-common: 35
is-unique: false
issue-note-join-with-comma:
total: 46
most-common: 25
is-unique: false
issue-join-with-comma:
total: 45
most-common: 31
is-unique: false
locators-join-with-comma:
total: 45
most-common: 37
is-unique: false
locators-join-with-period:
total: 45
most-common: 37
is-unique: false
locators-join-with-space:
total: 45
most-common: 40
is-unique: false
point-locators-join-with-comma:
total: 45
most-common: 36
is-unique: false
doi:
total: 44
most-common: 14
is-unique: false
issue-join-with-space:
total: 44
most-common: 37
is-unique: false
issue-note-join-with-space:
total: 44
most-common: 24
is-unique: false
number-of-pages:
total: 44
most-common: 9
is-unique: false
reprint-note:
total: 44
most-common: 44
is-unique: true
issue-join-with-period:
total: 43
most-common: 28
is-unique: false
locators-journal-join-with-comma:
total: 43
most-common: 38
is-unique: false
locators-note-join-with-space:
total: 42
most-common: 37
is-unique: false
case-pinpoint-subsequent:
total: 41
most-common: 38
is-unique: false
event-note:
total: 40
most-common: 31
is-unique: false
point-locators-join-with-colon:
total: 40
most-common: 37
is-unique: false
isbn:
total: 39
most-common: 11
is-unique: false
journal:
total: 39
most-common: 5
is-unique: false
locators-journal-join-with-colon:
total: 39
most-common: 27
is-unique: false
online:
total: 39
most-common: 6
is-unique: false
version:
total: 39
most-common: 22
is-unique: false
container-booklike:
total: 38
most-common: 11
is-unique: false
locators-booklike:
total: 38
most-common: 19
is-unique: false
secondary-contributors-booklike:
total: 38
most-common: 17
is-unique: false
author-citation:
total: 37
most-common: 6
is-unique: false
responsability:
total: 36
most-common: 10
is-unique: false
pageref:
total: 34
most-common: 5
is-unique: false
full-issued:
total: 33
most-common: 29
is-unique: false
locators-journal:
total: 33
most-common: 12
is-unique: false
pub-place:
total: 33
most-common: 12
is-unique: false
substitute-title:
total: 33
most-common: 29
is-unique: false
container-responsability:
total: 32
most-common: 6
is-unique: false
patent-number:
total: 32
most-common: 14
is-unique: false
date-in-text:
total: 31
most-common: 19
is-unique: false
publication-history:
total: 31
most-common: 20
is-unique: false
volref:
total: 31
most-common: 5
is-unique: false
URL:
total: 30
most-common: 4
is-unique: false
author-note:
total: 30
most-common: 5
is-unique: false
editor-note:
total: 30
most-common: 10
is-unique: false
note:
total: 30
most-common: 19
is-unique: false
title-and-descriptions:
total: 30
most-common: 19
is-unique: false
author-sort:
total: 29
most-common: 6
is-unique: false
issuance:
total: 29
most-common: 2
is-unique: false
original-published:
total: 27
most-common: 16
is-unique: false
scale:
total: 27
most-common: 6
is-unique: false
year-parenth:
total: 27
most-common: 21
is-unique: false
pageno:
total: 25
most-common: 4
is-unique: false
yearpage:
total: 25
most-common: 2
is-unique: false
access-date:
total: 24
most-common: 15
is-unique: false
contributors-long:
total: 24
most-common: 1
is-unique: false
issue-map-graphic:
total: 24
most-common: 21
is-unique: false
volume-booklike:
total: 24
most-common: 19
is-unique: false
date-bib:
total: 23
most-common: 11
is-unique: false
translator-note:
total: 23
most-common: 10
is-unique: false
abstract:
total: 22
most-common: 22
is-unique: true
author-intext:
total: 22
most-common: 10
is-unique: false
reviewed-title:
total: 22
most-common: 20
is-unique: false
bracketed:
total: 20
most-common: 17
is-unique: false
bracketed-container:
total: 20
most-common: 20
is-unique: true
bracketed-intext:
total: 20
most-common: 16
is-unique: false
container-periodical:
total: 20
most-common: 9
is-unique: false
database-location:
total: 20
most-common: 20
is-unique: true
date-intext:
total: 20
most-common: 13
is-unique: false
date-sort-date:
total: 20
most-common: 19
is-unique: false
date-sort-group:
total: 20
most-common: 19
is-unique: false
legal_case:
total: 20
most-common: 15
is-unique: false
locators-specific-note:
total: 20
most-common: 10
is-unique: false
parenthetical:
total: 20
most-common: 14
is-unique: false
parenthetical-container:
total: 20
most-common: 20
is-unique: true
secondary-contributors-periodical:
total: 20
most-common: 17
is-unique: false
title-intext:
total: 20
most-common: 14
is-unique: false
title-long:
total: 20
most-common: 4
is-unique: false
yearpage-bib:
total: 20
most-common: 2
is-unique: false
archive_location:
total: 19
most-common: 15
is-unique: false
author-bibliography:
total: 19
most-common: 2
is-unique: false
container-editor:
total: 19
most-common: 5
is-unique: false
event-title:
total: 19
most-common: 19
is-unique: true
format-intext:
total: 19
most-common: 19
is-unique: true
issued-citation:
total: 19
most-common: 18
is-unique: false
reviewed-title-intext:
total: 19
most-common: 14
is-unique: false
year-date-short:
total: 19
most-common: 12
is-unique: false
container-contributors-booklike:
total: 18
most-common: 7
is-unique: false
description-report:
total: 18
most-common: 15
is-unique: false
editor-container-title:
total: 18
most-common: 2
is-unique: false
format-report:
total: 18
most-common: 16
is-unique: false
format-short:
total: 18
most-common: 10
is-unique: false
issn:
total: 18
most-common: 7
is-unique: false
page-range:
total: 18
most-common: 6
is-unique: false
title-sort-substitute:
total: 18
most-common: 15
is-unique: false
book-publisher:
total: 17
most-common: 6
is-unique: false
chapter-info:
total: 17
most-common: 5
is-unique: false
collection-editor:
total: 17
most-common: 4
is-unique: false
container-legal:
total: 17
most-common: 17
is-unique: true
date-legal:
total: 17
most-common: 17
is-unique: true
number-volumes:
total: 17
most-common: 17
is-unique: true
review:
total: 17
most-common: 13
is-unique: false
secondary-responsability:
total: 17
most-common: 11
is-unique: false
sort-key:
total: 17
most-common: 5
is-unique: false
secondary-container-contributors:
total: 16
most-common: 2
is-unique: false
volume-book:
total: 16
most-common: 8
is-unique: false
day-date:
total: 15
most-common: 11
is-unique: false
director:
total: 15
most-common: 3
is-unique: false
archive-location:
total: 14
most-common: 4
is-unique: false
author-last:
total: 14
most-common: 3
is-unique: false
complete-reference:
total: 14
most-common: 2
is-unique: false
conference:
total: 14
most-common: 7
is-unique: false
extra:
total: 14
most-common: 3
is-unique: false
publisher-collection:
total: 14
most-common: 6
is-unique: false
composer:
total: 13
most-common: 5
is-unique: false
full-date:
total: 13
most-common: 12
is-unique: false
pageref-subsequent:
total: 13
most-common: 10
is-unique: false
secondary-collection-contributors:
total: 13
most-common: 4
is-unique: false
translator2:
total: 13
most-common: 8
is-unique: false
container-contributors-short:
total: 12
most-common: 7
is-unique: false
creator-short:
total: 12
most-common: 5
is-unique: false
editor2:
total: 12
most-common: 3
is-unique: false
editors:
total: 12
most-common: 1
is-unique: false
publisher-group:
total: 12
most-common: 6
is-unique: false
section:
total: 12
most-common: 8
is-unique: false
status:
total: 12
most-common: 3
is-unique: false
thesis:
total: 12
most-common: 2
is-unique: false
book-volume:
total: 11
most-common: 6
is-unique: false
collection-title-number:
total: 11
most-common: 8
is-unique: false
container-title-volume:
total: 11
most-common: 3
is-unique: false
creator-year-long:
total: 11
most-common: 2
is-unique: false
creator-year-short:
total: 11
most-common: 6
is-unique: false
illustrator:
total: 11
most-common: 8
is-unique: false
location:
total: 11
most-common: 3
is-unique: false
noauthor_title:
total: 11
most-common: 8
is-unique: false
number-of-volumes:
total: 11
most-common: 2
is-unique: false
online-url:
total: 11
most-common: 2
is-unique: false
publication-place-publisher:
total: 11
most-common: 6
is-unique: false
publisher-info:
total: 11
most-common: 9
is-unique: false
sort-key1:
total: 11
most-common: 11
is-unique: true
sort-key2:
total: 11
most-common: 11
is-unique: true
type-number:
total: 11
most-common: 8
is-unique: false
DOI:
total: 10
most-common: 2
is-unique: false
bill-detail:
total: 10
most-common: 5
is-unique: false
case-issue-subsequent:
total: 10
most-common: 10
is-unique: true
date-issued:
total: 10
most-common: 8
is-unique: false
date-issued-no-parentheses:
total: 10
most-common: 10
is-unique: true
date-issued-year:
total: 10
most-common: 7
is-unique: false
date-m-d:
total: 10
most-common: 10
is-unique: true
event-date:
total: 10
most-common: 2
is-unique: false
event-place:
total: 10
most-common: 6
is-unique: false
newspaper-edition:
total: 10
most-common: 6
is-unique: false
publication:
total: 10
most-common: 2
is-unique: false
author-in-citation:
total: 9
most-common: 8
is-unique: false
author-or-editor:
total: 9
most-common: 2
is-unique: false
author-short-in-citation:
total: 9
most-common: 9
is-unique: true
author-year-title:
total: 9
most-common: 4
is-unique: false
book-details:
total: 9
most-common: 3
is-unique: false
cite-author:
total: 9
most-common: 2
is-unique: false
collection-number:
total: 9
most-common: 2
is-unique: false
date-access:
total: 9
most-common: 3
is-unique: false
date-parenthesis:
total: 9
most-common: 3
is-unique: false
edition-no:
total: 9
most-common: 6
is-unique: false
in:
total: 9
most-common: 5
is-unique: false
issued-full:
total: 9
most-common: 9
is-unique: true
journal-volume:
total: 9
most-common: 4
is-unique: false
online-access:
total: 9
most-common: 1
is-unique: false
primary-title:
total: 9
most-common: 5
is-unique: false
sort-type:
total: 9
most-common: 3
is-unique: false
year-in-citation:
total: 9
most-common: 9
is-unique: true
alt-publisher:
total: 8
most-common: 3
is-unique: false
article-case-info:
total: 8
most-common: 3
is-unique: false
artwork-description:
total: 8
most-common: 8
is-unique: true
author-long:
total: 8
most-common: 1
is-unique: false
authors:
total: 8
most-common: 2
is-unique: false
autor-editor-note:
total: 8
most-common: 5
is-unique: false
broadcast-container:
total: 8
most-common: 6
is-unique: false
container-creator:
total: 8
most-common: 2
is-unique: false
container-information:
total: 8
most-common: 3
is-unique: false
creator:
total: 8
most-common: 2
is-unique: false
issued-date:
total: 8
most-common: 6
is-unique: false
issued-legislation:
total: 8
most-common: 4
is-unique: false
loc-cite:
total: 8
most-common: 3
is-unique: false
locator-with-label:
total: 8
most-common: 6
is-unique: false
pages-article:
total: 8
most-common: 3
is-unique: false
responsibility:
total: 8
most-common: 1
is-unique: false
type-description:
total: 8
most-common: 3
is-unique: false
url-web-documents-only:
total: 8
most-common: 4
is-unique: false
ISBN:
total: 7
most-common: 3
is-unique: false
artwork:
total: 7
most-common: 5
is-unique: false
book:
total: 7
most-common: 2
is-unique: false
book-series:
total: 7
most-common: 4
is-unique: false
chapter:
total: 7
most-common: 2
is-unique: false
container-responsibility:
total: 7
most-common: 3
is-unique: false
day-month-date:
total: 7
most-common: 5
is-unique: false
dimensions:
total: 7
most-common: 5
is-unique: false
editor-bib:
total: 7
most-common: 1
is-unique: false
firstpage-locator:
total: 7
most-common: 4
is-unique: false
genre-online-marker:
total: 7
most-common: 2
is-unique: false
identifier:
total: 7
most-common: 2
is-unique: false
identifier-for-subsequent:
total: 7
most-common: 3
is-unique: false
legal-detail:
total: 7
most-common: 7
is-unique: true
locators-subsequent:
total: 7
most-common: 5
is-unique: false
manuscript-catchall:
total: 7
most-common: 7
is-unique: true
page-bib:
total: 7
most-common: 2
is-unique: false
page-first:
total: 7
most-common: 3
is-unique: false
secondary-contributor:
total: 7
most-common: 6
is-unique: false
series-title:
total: 7
most-common: 6
is-unique: false
subsequent-reference:
total: 7
most-common: 2
is-unique: false
titre:
total: 7
most-common: 3
is-unique: false
urlref:
total: 7
most-common: 4
is-unique: false
anonymous:
total: 6
most-common: 1
is-unique: false
article-in-periodical-layout:
total: 6
most-common: 3
is-unique: false
author-chapter:
total: 6
most-common: 5
is-unique: false
author-last-names:
total: 6
most-common: 6
is-unique: true
authorcount:
total: 6
most-common: 6
is-unique: true
citation-layout:
total: 6
most-common: 3
is-unique: false
collection-title-note:
total: 6
most-common: 3
is-unique: false
container-collection-event-volume:
total: 6
most-common: 3
is-unique: false
container-full:
total: 6
most-common: 2
is-unique: false
container-title1:
total: 6
most-common: 1
is-unique: false
contributors-full:
total: 6
most-common: 1
is-unique: false
creator-for-subsequent:
total: 6
most-common: 2
is-unique: false
disambiguate:
total: 6
most-common: 3
is-unique: false
editor-chapter:
total: 6
most-common: 3
is-unique: false
editor-container:
total: 6
most-common: 2
is-unique: false
entry-layout:
total: 6
most-common: 5
is-unique: false
issue-pagination-locator:
total: 6
most-common: 3
is-unique: false
issued1:
total: 6
most-common: 3
is-unique: false
locator-cit:
total: 6
most-common: 3
is-unique: false
medium_designation:
total: 6
most-common: 2
is-unique: false
monograph-layout:
total: 6
most-common: 3
is-unique: false
numberOfVolumes:
total: 6
most-common: 6
is-unique: true
pages-chapter:
total: 6
most-common: 4
is-unique: false
patent-inventor:
total: 6
most-common: 5
is-unique: false
patent-layout:
total: 6
most-common: 3
is-unique: false
periodical-publishing:
total: 6
most-common: 2
is-unique: false
place-and-publisher:
total: 6
most-common: 2
is-unique: false
publication-details:
total: 6
most-common: 2
is-unique: false
publishing:
total: 6
most-common: 2
is-unique: false
serial-layout:
total: 6
most-common: 3
is-unique: false
series-editor:
total: 6
most-common: 3
is-unique: false
sort-by-type:
total: 6
most-common: 3
is-unique: false
thesis-report-genre:
total: 6
most-common: 5
is-unique: false
title1:
total: 6
most-common: 2
is-unique: false
url-non-web-documents:
total: 6
most-common: 4
is-unique: false
volume-or-medium:
total: 6
most-common: 2
is-unique: false
year-volume-issue:
total: 6
most-common: 6
is-unique: true
article-details:
total: 5
most-common: 2
is-unique: false
artwork-info:
total: 5
most-common: 5
is-unique: true
auteurs:
total: 5
most-common: 1
is-unique: false
auteurs-secondaires:
total: 5
most-common: 1
is-unique: false
author-commentary:
total: 5
most-common: 5
is-unique: true
author-container:
total: 5
most-common: 5
is-unique: true
author-opcit:
total: 5
most-common: 2
is-unique: false
authority:
total: 5
most-common: 3
is-unique: false
call-number:
total: 5
most-common: 3
is-unique: false
chapter-in-book-layout:
total: 5
most-common: 3
is-unique: false
cite-editor:
total: 5
most-common: 3
is-unique: false
city:
total: 5
most-common: 5
is-unique: true
collection-editor-note:
total: 5
most-common: 2
is-unique: false
conditionalusetitle:
total: 5
most-common: 3
is-unique: false
container-contributors-full:
total: 5
most-common: 1
is-unique: false
container-details:
total: 5
most-common: 1
is-unique: false
container-phrase:
total: 5
most-common: 3
is-unique: false
contributors-bib:
total: 5
most-common: 1
is-unique: false
date-news:
total: 5
most-common: 3
is-unique: false
date-publication:
total: 5
most-common: 2
is-unique: false
date1:
total: 5
most-common: 5
is-unique: true
edition-issued:
total: 5
most-common: 2
is-unique: false
editor-collection:
total: 5
most-common: 4
is-unique: false
entry:
total: 5
most-common: 5
is-unique: true
issued-full-date:
total: 5
most-common: 2
is-unique: false
issued-year-month-day:
total: 5
most-common: 2
is-unique: false
journal-date:
total: 5
most-common: 4
is-unique: false
journal-info:
total: 5
most-common: 2
is-unique: false
journalname-year:
total: 5
most-common: 5
is-unique: true
lieu-edition:
total: 5
most-common: 2
is-unique: false
locator-citation:
total: 5
most-common: 3
is-unique: false
locator-or-pages:
total: 5
most-common: 3
is-unique: false
looseleaf:
total: 5
most-common: 4
is-unique: false
noauthor_editor:
total: 5
most-common: 5
is-unique: true
other-contributors:
total: 5
most-common: 2
is-unique: false
pagination:
total: 5
most-common: 1
is-unique: false
printers:
total: 5
most-common: 2
is-unique: false
proceedings-editor:
total: 5
most-common: 3
is-unique: false
published:
total: 5
most-common: 1
is-unique: false
publisher-place-year:
total: 5
most-common: 2
is-unique: false
quoted:
total: 5
most-common: 1
is-unique: false
recipient-show:
total: 5
most-common: 5
is-unique: true
refpages:
total: 5
most-common: 3
is-unique: false
rest-of-bib:
total: 5
most-common: 2
is-unique: false
sort:
total: 5
most-common: 4
is-unique: false
translatedby:
total: 5
most-common: 3
is-unique: false
type-code:
total: 5
most-common: 3
is-unique: false
type-sorting:
total: 5
most-common: 2
is-unique: false
u__author:
total: 5
most-common: 2
is-unique: false
u__issued:
total: 5
most-common: 4
is-unique: false
url-doi:
total: 5
most-common: 3
is-unique: false
voljournal:
total: 5
most-common: 2
is-unique: false
volume-issue:
total: 5
most-common: 2
is-unique: false
volume-number:
total: 5
most-common: 2
is-unique: false
year-issued:
total: 5
most-common: 5
is-unique: true
URI:
total: 4
most-common: 2
is-unique: false
URLaccess:
total: 4
most-common: 2
is-unique: false
access-value:
total: 4
most-common: 4
is-unique: true
auteurs-court:
total: 4
most-common: 1
is-unique: false
auteurs-ouvrage:
total: 4
most-common: 1
is-unique: false
author-cit:
total: 4
most-common: 2
is-unique: false
author-ibid:
total: 4
most-common: 1
is-unique: false
author-with-initials:
total: 4
most-common: 3
is-unique: false
authors1:
total: 4
most-common: 1
is-unique: false
b__author-year-title:
total: 4
most-common: 3
is-unique: false
b__collection_container:
total: 4
most-common: 1
is-unique: false
b__publication-statement:
total: 4
most-common: 2
is-unique: false
bibliography-reference:
total: 4
most-common: 1
is-unique: false
bookauthor:
total: 4
most-common: 2
is-unique: false
c__author-short:
total: 4
most-common: 2
is-unique: false
c__issued:
total: 4
most-common: 4
is-unique: true
citation:
total: 4
most-common: 1
is-unique: false
citation-number:
total: 4
most-common: 3
is-unique: false
cite-date:
total: 4
most-common: 4
is-unique: true
cite-locator:
total: 4
most-common: 3
is-unique: false
container-author-short:
total: 4
most-common: 2
is-unique: false
container-chapter-journal:
total: 4
most-common: 1
is-unique: false
container-editor-short:
total: 4
most-common: 2
is-unique: false
container-other:
total: 4
most-common: 3
is-unique: false
container-short:
total: 4
most-common: 3
is-unique: false
container2-location:
total: 4
most-common: 2
is-unique: false
container2-title:
total: 4
most-common: 4
is-unique: true
contributors-notes:
total: 4
most-common: 1
is-unique: false
contributors-short-biblio:
total: 4
most-common: 1
is-unique: false
contributors-short-citation:
total: 4
most-common: 1
is-unique: false
date-newspaper:
total: 4
most-common: 2
is-unique: false
date-reference:
total: 4
most-common: 3
is-unique: false
date-short:
total: 4
most-common: 2
is-unique: false
e-resource:
total: 4
most-common: 2
is-unique: false
editeur:
total: 4
most-common: 1
is-unique: false
edition-volume:
total: 4
most-common: 2
is-unique: false
editor-author:
total: 4
most-common: 2
is-unique: false
editor-short-bib:
total: 4
most-common: 1
is-unique: false
editor-translator-verb-comma:
total: 4
most-common: 3
is-unique: false
editor-translator-verb-period:
total: 4
most-common: 3
is-unique: false
editors1:
total: 4
most-common: 1
is-unique: false
encyclopedia-article:
total: 4
most-common: 4
is-unique: true
hasUrl:
total: 4
most-common: 4
is-unique: true
indication-localisation:
total: 4
most-common: 2
is-unique: false
issued-bib:
total: 4
most-common: 2
is-unique: false
journal-no-author:
total: 4
most-common: 4
is-unique: true
locator-or-period:
total: 4
most-common: 4
is-unique: true
page-chapter:
total: 4
most-common: 2
is-unique: false
pages-chapitre:
total: 4
most-common: 2
is-unique: false
patent-authority-number:
total: 4
most-common: 4
is-unique: true
personal-communication:
total: 4
most-common: 4
is-unique: true
place-date:
total: 4
most-common: 1
is-unique: false
publication-date:
total: 4
most-common: 1
is-unique: false
publisher-date:
total: 4
most-common: 3
is-unique: false
publisher-year:
total: 4
most-common: 2
is-unique: false
short-container-contributors:
total: 4
most-common: 2
is-unique: false
short-title-note:
total: 4
most-common: 1
is-unique: false
signed-dictionary-bib:
total: 4
most-common: 3
is-unique: false
submitted:
total: 4
most-common: 3
is-unique: false
title-chapter-special:
total: 4
most-common: 3
is-unique: false
titre-ouvrage:
total: 4
most-common: 1
is-unique: false
translator-bib:
total: 4
most-common: 2
is-unique: false
type-acces:
total: 4
most-common: 2
is-unique: false
u__collection:
total: 4
most-common: 2
is-unique: false
u__event:
total: 4
most-common: 4
is-unique: true
u__publisher:
total: 4
most-common: 3
is-unique: false
u__title:
total: 4
most-common: 3
is-unique: false
url-or-doi:
total: 4
most-common: 4
is-unique: true
vol_iss:
total: 4
most-common: 4
is-unique: true
web:
total: 4
most-common: 2
is-unique: false
web_availibility:
total: 4
most-common: 3
is-unique: false
webpage-date:
total: 4
most-common: 4
is-unique: true
year-suffix:
total: 4
most-common: 4
is-unique: true
Author:
total: 3
most-common: 2
is-unique: false
ISSN:
total: 3
most-common: 1
is-unique: false
access-expression:
total: 3
most-common: 3
is-unique: true
additional-main-contributors:
total: 3
most-common: 1
is-unique: false
additional-secondary-contributors:
total: 3
most-common: 2
is-unique: false
at_page:
total: 3
most-common: 2
is-unique: false
author-cite:
total: 3
most-common: 1
is-unique: false
b__container:
total: 3
most-common: 2
is-unique: false
bill-number:
total: 3
most-common: 3
is-unique: true
book-author:
total: 3
most-common: 1
is-unique: false
book-edited:
total: 3
most-common: 1
is-unique: false
citation-reference:
total: 3
most-common: 1
is-unique: false
cited:
total: 3
most-common: 2
is-unique: false
conference-paper:
total: 3
most-common: 2
is-unique: false
container-author-reviewed-author-and-editor-translator:
total: 3
most-common: 3
is-unique: true
container-online:
total: 3
most-common: 3
is-unique: true
container-title-extra:
total: 3
most-common: 1
is-unique: false
container-title2:
total: 3
most-common: 2
is-unique: false
court:
total: 3
most-common: 3
is-unique: true
date-original:
total: 3
most-common: 2
is-unique: false
date-pages-and-collection:
total: 3
most-common: 2
is-unique: false
dictionary:
total: 3
most-common: 3
is-unique: true
disambiguate-chapter:
total: 3
most-common: 3
is-unique: true
editor-biblio:
total: 3
most-common: 1
is-unique: false
editor-bibliography:
total: 3
most-common: 2
is-unique: false
editor-detail:
total: 3
most-common: 1
is-unique: false
editor-sort:
total: 3
most-common: 2
is-unique: false
editor-transl:
total: 3
most-common: 1
is-unique: false
editor-translator-verb-short-comma:
total: 3
most-common: 2
is-unique: false
editors-when-author:
total: 3
most-common: 1
is-unique: false
encyclopedia:
total: 3
most-common: 2
is-unique: false
entryencyclo-bib:
total: 3
most-common: 2
is-unique: false
entryencyclo-note:
total: 3
most-common: 2
is-unique: false
exlocators:
total: 3
most-common: 3
is-unique: true
extra-info:
total: 3
most-common: 1
is-unique: false
extras:
total: 3
most-common: 1
is-unique: false
firstedition-bib:
total: 3
most-common: 1
is-unique: false
internet-location:
total: 3
most-common: 2
is-unique: false
interviewer-short:
total: 3
most-common: 2
is-unique: false
issued-long:
total: 3
most-common: 2
is-unique: false
journal-locators:
total: 3
most-common: 1
is-unique: false
jurisdiction:
total: 3
most-common: 3
is-unique: true
language-sort:
total: 3
most-common: 3
is-unique: true
locator-comma:
total: 3
most-common: 2
is-unique: false
locator-first:
total: 3
most-common: 1
is-unique: false
locator-following:
total: 3
most-common: 1
is-unique: false
locator-space:
total: 3
most-common: 2
is-unique: false
locator-subsequent:
total: 3
most-common: 2
is-unique: false
locators-bib-join-with-comma:
total: 3
most-common: 2
is-unique: false
locators-title:
total: 3
most-common: 3
is-unique: true
looseleaf-note:
total: 3
most-common: 3
is-unique: true
main-contributors-cite-long:
total: 3
most-common: 1
is-unique: false
main-contributors-cite-short:
total: 3
most-common: 1
is-unique: false
main-date:
total: 3
most-common: 1
is-unique: false
main-title-addendum:
total: 3
most-common: 2
is-unique: false
main-title-long:
total: 3
most-common: 1
is-unique: false
main-title-short:
total: 3
most-common: 1
is-unique: false
material:
total: 3
most-common: 2
is-unique: false
media:
total: 3
most-common: 2
is-unique: false
media-details:
total: 3
most-common: 2
is-unique: false
medium-online:
total: 3
most-common: 1
is-unique: false
net-link:
total: 3
most-common: 3
is-unique: true
number-map:
total: 3
most-common: 3
is-unique: true
number-non-map-non-numeric:
total: 3
most-common: 3
is-unique: true
number-non-map-or-number:
total: 3
most-common: 3
is-unique: true
onusig:
total: 3
most-common: 3
is-unique: true
op-cit:
total: 3
most-common: 3
is-unique: true
original-publisher:
total: 3
most-common: 3
is-unique: true
pages-books:
total: 3
most-common: 2
is-unique: false
pages-citation:
total: 3
most-common: 2
is-unique: false
patent:
total: 3
most-common: 2
is-unique: false
performer:
total: 3
most-common: 1
is-unique: false
pinpoint:
total: 3
most-common: 1
is-unique: false
publi_place:
total: 3
most-common: 1
is-unique: false
publisher-note:
total: 3
most-common: 2
is-unique: false
publisher-thesis:
total: 3
most-common: 1
is-unique: false
publisher_and_year:
total: 3
most-common: 2
is-unique: false
publisher_chapter:
total: 3
most-common: 2
is-unique: false
publishing-house:
total: 3
most-common: 3
is-unique: true
render-article-journal:
total: 3
most-common: 2
is-unique: false
render-article-newspaper:
total: 3
most-common: 2
is-unique: false
render-bill:
total: 3
most-common: 2
is-unique: false
render-book:
total: 3
most-common: 2
is-unique: false
render-case:
total: 3
most-common: 2
is-unique: false
render-chapter:
total: 3
most-common: 1
is-unique: false
render-report:
total: 3
most-common: 1
is-unique: false
render-thesis:
total: 3
most-common: 1
is-unique: false
render-webpage:
total: 3
most-common: 2
is-unique: false
report:
total: 3
most-common: 2
is-unique: false
secondary-contrib:
total: 3
most-common: 2
is-unique: false
secondary-title:
total: 3
most-common: 1
is-unique: false
secondary-title-addendum:
total: 3
most-common: 1
is-unique: false
serie-with-number:
total: 3
most-common: 1
is-unique: false
short-reference:
total: 3
most-common: 2
is-unique: false
signed-dictionary-note:
total: 3
most-common: 3
is-unique: true
sort-by-contributors:
total: 3
most-common: 2
is-unique: false
source:
total: 3
most-common: 1
is-unique: false
tertiary-contributors:
total: 3
most-common: 2
is-unique: false
tertiary-title:
total: 3
most-common: 1
is-unique: false
thesis-type:
total: 3
most-common: 2
is-unique: false
title-extra:
total: 3
most-common: 1
is-unique: false
title2:
total: 3
most-common: 2
is-unique: false
translation-illustration:
total: 3
most-common: 2
is-unique: false
translator-short:
total: 3
most-common: 1
is-unique: false
translator-sort:
total: 3
most-common: 2
is-unique: false
translators1:
total: 3
most-common: 1
is-unique: false
u__access:
total: 3
most-common: 1
is-unique: false
u__type:
total: 3
most-common: 3
is-unique: true
unsigned-dictionary-note:
total: 3
most-common: 3
is-unique: true
url-with-date:
total: 3
most-common: 2
is-unique: false
url_doi:
total: 3
most-common: 1
is-unique: false
volnumber:
total: 3
most-common: 2
is-unique: false
volume-and-issue:
total: 3
most-common: 1
is-unique: false
volume-edition:
total: 3
most-common: 1
is-unique: false
volume-for-books:
total: 3
most-common: 1
is-unique: false
volume-info:
total: 3
most-common: 2
is-unique: false
volume-lowercase:
total: 3
most-common: 2
is-unique: false
webpage:
total: 3
most-common: 2
is-unique: false
year-cite:
total: 3
most-common: 3
is-unique: true
Author-Short:
total: 2
most-common: 2
is-unique: true
Author-sort:
total: 2
most-common: 2
is-unique: true
access-info:
total: 2
most-common: 1
is-unique: false
access-note-online-reference:
total: 2
most-common: 1
is-unique: false
accessSeries:
total: 2
most-common: 2
is-unique: true
accessed-year-month-day:
total: 2
most-common: 1
is-unique: false
anthology:
total: 2
most-common: 1
is-unique: false
archival-details:
total: 2
most-common: 1
is-unique: false
article-journal-bib:
total: 2
most-common: 2
is-unique: true
article-journal-note:
total: 2
most-common: 2
is-unique: true
article-magazine-bib:
total: 2
most-common: 2
is-unique: true
article-magazine-note:
total: 2
most-common: 2
is-unique: true
article-newspaper-bib:
total: 2
most-common: 2
is-unique: true
article-newspaper-note:
total: 2
most-common: 2
is-unique: true
articles:
total: 2
most-common: 2
is-unique: true
author-date:
total: 2
most-common: 1
is-unique: false
author-ea:
total: 2
most-common: 1
is-unique: false
author-first:
total: 2
most-common: 1
is-unique: false
author-full:
total: 2
most-common: 1
is-unique: false
author-inv:
total: 2
most-common: 1
is-unique: false
author-ref:
total: 2
most-common: 2
is-unique: true
author-sub:
total: 2
most-common: 1
is-unique: false
author-subsequent:
total: 2
most-common: 1
is-unique: false
authors-note:
total: 2
most-common: 1
is-unique: false
authors-short:
total: 2
most-common: 1
is-unique: false
autori-bibliografia:
total: 2
most-common: 1
is-unique: false
autori-libro-generale-bibliografia:
total: 2
most-common: 2
is-unique: true
autori-nota:
total: 2
most-common: 1
is-unique: false
availability:
total: 2
most-common: 1
is-unique: false
available-from-access:
total: 2
most-common: 1
is-unique: false
b__edition:
total: 2
most-common: 2
is-unique: true
b__locators:
total: 2
most-common: 1
is-unique: false
bill-bib:
total: 2
most-common: 2
is-unique: true
bill-note:
total: 2
most-common: 1
is-unique: false
blog-info:
total: 2
most-common: 1
is-unique: false
book-bib:
total: 2
most-common: 2
is-unique: true
book-note:
total: 2
most-common: 2
is-unique: true
broadcast-details:
total: 2
most-common: 2
is-unique: true
byzantine-author:
total: 2
most-common: 2
is-unique: true
case:
total: 2
most-common: 2
is-unique: true
case-bib:
total: 2
most-common: 2
is-unique: true
case-date:
total: 2
most-common: 2
is-unique: true
case-note:
total: 2
most-common: 1
is-unique: false
chapter-bib:
total: 2
most-common: 2
is-unique: true
chapter-no:
total: 2
most-common: 2
is-unique: true
chapter-note:
total: 2
most-common: 2
is-unique: true
chapter-number:
total: 2
most-common: 2
is-unique: true
chapter-pages:
total: 2
most-common: 1
is-unique: false
chapter-prefix:
total: 2
most-common: 2
is-unique: true
chapter-specifics:
total: 2
most-common: 1
is-unique: false
cite-year:
total: 2
most-common: 1
is-unique: false
collana-e-numero:
total: 2
most-common: 2
is-unique: true
collection-editor2:
total: 2
most-common: 2
is-unique: true
collection-info:
total: 2
most-common: 1
is-unique: false
container-author2:
total: 2
most-common: 2
is-unique: true
container-bib:
total: 2
most-common: 1
is-unique: false
container-producers:
total: 2
most-common: 1
is-unique: false
container-producers-short:
total: 2
most-common: 1
is-unique: false
container-review:
total: 2
most-common: 2
is-unique: true
container-title0:
total: 2
most-common: 2
is-unique: true
container-translator:
total: 2
most-common: 2
is-unique: true
container_author:
total: 2
most-common: 2
is-unique: true
contrib-court:
total: 2
most-common: 1
is-unique: false
contributeurs-tri:
total: 2
most-common: 2
is-unique: true
contributor-short:
total: 2
most-common: 1
is-unique: false
contributors-bibliography:
total: 2
most-common: 2
is-unique: true
contributors-reviewers:
total: 2
most-common: 2
is-unique: true
contributors-reviewers-short:
total: 2
most-common: 2
is-unique: true
creator-bib:
total: 2
most-common: 2
is-unique: true
data-accesso-sito:
total: 2
most-common: 1
is-unique: false
date-and-pages:
total: 2
most-common: 2
is-unique: true
date-day-month:
total: 2
most-common: 2
is-unique: true
date-full:
total: 2
most-common: 2
is-unique: true
date-note:
total: 2
most-common: 2
is-unique: true
date-responsability:
total: 2
most-common: 2
is-unique: true
date-year:
total: 2
most-common: 1
is-unique: false
edited-volume:
total: 2
most-common: 1
is-unique: false
edition-if-not-unveraendert:
total: 2
most-common: 2
is-unique: true
edition-if-unveraendert:
total: 2
most-common: 2
is-unique: true
editor-book:
total: 2
most-common: 1
is-unique: false
editor-encyclopedia:
total: 2
most-common: 1
is-unique: false
editor-notes:
total: 2
most-common: 1
is-unique: false
editor-text:
total: 2
most-common: 1
is-unique: false
editor-transl-long:
total: 2
most-common: 1
is-unique: false
editor-translator-note:
total: 2
most-common: 1
is-unique: false
editori-libro-generale-bibliografia:
total: 2
most-common: 1
is-unique: false
entrydic-bib:
total: 2
most-common: 2
is-unique: true
entrydic-note:
total: 2
most-common: 2
is-unique: true
event-name:
total: 2
most-common: 2
is-unique: true
event-or-publisher-place:
total: 2
most-common: 2
is-unique: true
event-year-month-day:
total: 2
most-common: 2
is-unique: true
first-edition:
total: 2
most-common: 1
is-unique: false
firstedition-ndbp:
total: 2
most-common: 1
is-unique: false
graph-or-figure:
total: 2
most-common: 2
is-unique: true
imprenta:
total: 2
most-common: 2
is-unique: true
imprenta-locators:
total: 2
most-common: 1
is-unique: false
in-text-contributors:
total: 2
most-common: 1
is-unique: false
in-text-date:
total: 2
most-common: 1
is-unique: false
inbook:
total: 2
most-common: 1
is-unique: false
informazioni-articolo:
total: 2
most-common: 2
is-unique: true
informazioni-libro:
total: 2
most-common: 2
is-unique: true
informazioni-manoscritto:
total: 2
most-common: 2
is-unique: true
internet:
total: 2
most-common: 1
is-unique: false
internet-locator:
total: 2
most-common: 1
is-unique: false
issue-number:
total: 2
most-common: 2
is-unique: true
issued-no-parenthesis:
total: 2
most-common: 2
is-unique: true
issued-parts:
total: 2
most-common: 1
is-unique: false
issued-short:
total: 2
most-common: 1
is-unique: false
issued-year-month-day-short:
total: 2
most-common: 1
is-unique: false
italicised-title:
total: 2
most-common: 2
is-unique: true
journal-issue:
total: 2
most-common: 1
is-unique: false
journal-page:
total: 2
most-common: 2
is-unique: true
journal-pages:
total: 2
most-common: 2
is-unique: true
legal:
total: 2
most-common: 2
is-unique: true
legal-case-opinion:
total: 2
most-common: 2
is-unique: true
legislation-bib:
total: 2
most-common: 2
is-unique: true
legislation-note:
total: 2
most-common: 1
is-unique: false
locator-basic:
total: 2
most-common: 2
is-unique: true
locator-or-page:
total: 2
most-common: 2
is-unique: true
locators-con-pp:
total: 2
most-common: 2
is-unique: true
locators-multimedia:
total: 2
most-common: 2
is-unique: true
locators-multimedia-with-space:
total: 2
most-common: 2
is-unique: true
locators-specific-note-short:
total: 2
most-common: 2
is-unique: true
luogo-data-edizione-libro:
total: 2
most-common: 1
is-unique: false
mapinfo:
total: 2
most-common: 1
is-unique: false
name-macro:
total: 2
most-common: 1
is-unique: false
no-author:
total: 2
most-common: 1
is-unique: false
noauthor:
total: 2
most-common: 2
is-unique: true
notes:
total: 2
most-common: 2
is-unique: true
number-of-volumes-only:
total: 2
most-common: 2
is-unique: true
number-of-volumes-optional:
total: 2
most-common: 2
is-unique: true
numero-collection:
total: 2
most-common: 1
is-unique: false
onuventa:
total: 2
most-common: 1
is-unique: false
orig-date:
total: 2
most-common: 2
is-unique: true
original:
total: 2
most-common: 1
is-unique: false
original-author:
total: 2
most-common: 2
is-unique: true
original-title:
total: 2
most-common: 2
is-unique: true
page-and-locator:
total: 2
most-common: 1
is-unique: false
page-book:
total: 2
most-common: 1
is-unique: false
page1:
total: 2
most-common: 1
is-unique: false
pageField:
total: 2
most-common: 1
is-unique: false
pages-book-chapter:
total: 2
most-common: 2
is-unique: true
pagine-citate-nota:
total: 2
most-common: 2
is-unique: true
pagnumber:
total: 2
most-common: 2
is-unique: true
patent-specifics:
total: 2
most-common: 2
is-unique: true
pmcid:
total: 2
most-common: 2
is-unique: true
point-locator:
total: 2
most-common: 1
is-unique: false
presentation:
total: 2
most-common: 1
is-unique: false
producers:
total: 2
most-common: 1
is-unique: false
producers-short:
total: 2
most-common: 1
is-unique: false
pub-place-bib:
total: 2
most-common: 1
is-unique: false
publication-title:
total: 2
most-common: 1
is-unique: false
publication_source:
total: 2
most-common: 2
is-unique: true
publisher-and-place:
total: 2
most-common: 1
is-unique: false
publisher-book:
total: 2
most-common: 1
is-unique: false
publisher-book-journal:
total: 2
most-common: 1
is-unique: false
publisher-book-magazine-newspaper:
total: 2
most-common: 1
is-unique: false
publisher2:
total: 2
most-common: 1
is-unique: false
publisher_block:
total: 2
most-common: 2
is-unique: true
referenceDate:
total: 2
most-common: 1
is-unique: false
render-article-magazine:
total: 2
most-common: 2
is-unique: true
render-dictionary:
total: 2
most-common: 2
is-unique: true
render-encyclopedia:
total: 2
most-common: 2
is-unique: true
render-legislation:
total: 2
most-common: 2
is-unique: true
render-manuscript:
total: 2
most-common: 2
is-unique: true
render-patent:
total: 2
most-common: 2
is-unique: true
render-song:
total: 2
most-common: 2
is-unique: true
retrieved-from:
total: 2
most-common: 2
is-unique: true
reviewer:
total: 2
most-common: 1
is-unique: false
reviewer-short:
total: 2
most-common: 1
is-unique: false
secondaryAuthor:
total: 2
most-common: 1
is-unique: false
series-details:
total: 2
most-common: 2
is-unique: true
series-episode:
total: 2
most-common: 2
is-unique: true
series-info:
total: 2
most-common: 2
is-unique: true
series-title-journal:
total: 2
most-common: 2
is-unique: true
short-form:
total: 2
most-common: 2
is-unique: true
short-title:
total: 2
most-common: 2
is-unique: true
single-quote-title:
total: 2
most-common: 2
is-unique: true
sort-date:
total: 2
most-common: 1
is-unique: false
standard-title:
total: 2
most-common: 2
is-unique: true
submitted-long:
total: 2
most-common: 2
is-unique: true
substitute-author:
total: 2
most-common: 2
is-unique: true
technical-report:
total: 2
most-common: 2
is-unique: true
thecontainer:
total: 2
most-common: 1
is-unique: false
thesis-bib:
total: 2
most-common: 1
is-unique: false
thesis-note:
total: 2
most-common: 1
is-unique: false
time_data:
total: 2
most-common: 1
is-unique: false
title-archive:
total: 2
most-common: 2
is-unique: true
title-bib-sort:
total: 2
most-common: 2
is-unique: true
title-book:
total: 2
most-common: 1
is-unique: false
title-citation:
total: 2
most-common: 2
is-unique: true
title-online:
total: 2
most-common: 1
is-unique: false
title-sort:
total: 2
most-common: 2
is-unique: true
title-subtitle:
total: 2
most-common: 2
is-unique: true
titleField:
total: 2
most-common: 1
is-unique: false
titolo-bibliografia:
total: 2
most-common: 1
is-unique: false
titolo-libro-generale-bibliografia:
total: 2
most-common: 2
is-unique: true
titolo-nota:
total: 2
most-common: 2
is-unique: true
titre-collection:
total: 2
most-common: 1
is-unique: false
translation:
total: 2
most-common: 2
is-unique: true
translator-author-editor:
total: 2
most-common: 1
is-unique: false
translator-author-editor-short:
total: 2
most-common: 1
is-unique: false
translator-long:
total: 2
most-common: 1
is-unique: false
treaty-catchall:
total: 2
most-common: 2
is-unique: true
type:
total: 2
most-common: 1
is-unique: false
u__edition:
total: 2
most-common: 2
is-unique: true
u__journal-locators:
total: 2
most-common: 1
is-unique: false
u__locators:
total: 2
most-common: 2
is-unique: true
url-accessed:
total: 2
most-common: 1
is-unique: false
volume-and-collection-title:
total: 2
most-common: 1
is-unique: false
volume-issue-page:
total: 2
most-common: 2
is-unique: true
volume-numero:
total: 2
most-common: 2
is-unique: true
volume-or-number:
total: 2
most-common: 2
is-unique: true
volume_singlepublication:
total: 2
most-common: 1
is-unique: false
website:
total: 2
most-common: 1
is-unique: false
website-title:
total: 2
most-common: 2
is-unique: true
year-bibliography:
total: 2
most-common: 2
is-unique: true
year-citation:
total: 2
most-common: 2
is-unique: true
year-date-bibliography:
total: 2
most-common: 1
is-unique: false
year-date-citation:
total: 2
most-common: 2
is-unique: true
year-short:
total: 2
most-common: 2
is-unique: true
year-sort:
total: 2
most-common: 1
is-unique: false
Archive:
total: 1
most-common: 1
is-unique: true
Bibliography-Sort:
total: 1
most-common: 1
is-unique: true
Cite-and-URL:
total: 1
most-common: 1
is-unique: true
Collection:
total: 1
most-common: 1
is-unique: true
DOI-URL:
total: 1
most-common: 1
is-unique: true
DOI-or-URL:
total: 1
most-common: 1
is-unique: true
Ebenda:
total: 1
most-common: 1
is-unique: true
Edition-Publisher-Issued:
total: 1
most-common: 1
is-unique: true
ISBN-ISSN:
total: 1
most-common: 1
is-unique: true
Institution-city:
total: 1
most-common: 1
is-unique: true
Locator:
total: 1
most-common: 1
is-unique: true
Locator-or-Page:
total: 1
most-common: 1
is-unique: true
Page-URL:
total: 1
most-common: 1
is-unique: true
Title:
total: 1
most-common: 1
is-unique: true
Title-in-title:
total: 1
most-common: 1
is-unique: true
Title-subsequent:
total: 1
most-common: 1
is-unique: true
URL-access-date:
total: 1
most-common: 1
is-unique: true
Volume-Issue:
total: 1
most-common: 1
is-unique: true
Volume-alpha:
total: 1
most-common: 1
is-unique: true
acces-url:
total: 1
most-common: 1
is-unique: true
access-URL:
total: 1
most-common: 1
is-unique: true
access-bib:
total: 1
most-common: 1
is-unique: true
access-info-lowercase:
total: 1
most-common: 1
is-unique: true
access-link:
total: 1
most-common: 1
is-unique: true
access-zh:
total: 1
most-common: 1
is-unique: true
access2:
total: 1
most-common: 1
is-unique: true
additional-info:
total: 1
most-common: 1
is-unique: true
additionaldate:
total: 1
most-common: 1
is-unique: true
alphabetize:
total: 1
most-common: 1
is-unique: true
annee:
total: 1
most-common: 1
is-unique: true
anon-bib:
total: 1
most-common: 1
is-unique: true
anon-note:
total: 1
most-common: 1
is-unique: true
anonyme:
total: 1
most-common: 1
is-unique: true
archival-details-subsequent:
total: 1
most-common: 1
is-unique: true
archive-note-largest-to-smallest:
total: 1
most-common: 1
is-unique: true
article:
total: 1
most-common: 1
is-unique: true
article-info:
total: 1
most-common: 1
is-unique: true
article-journal:
total: 1
most-common: 1
is-unique: true
article-magazine:
total: 1
most-common: 1
is-unique: true
article-newspaper:
total: 1
most-common: 1
is-unique: true
article-pageref-pages:
total: 1
most-common: 1
is-unique: true
article-rendering:
total: 1
most-common: 1
is-unique: true
auteur:
total: 1
most-common: 1
is-unique: true
auteur-contenant:
total: 1
most-common: 1
is-unique: true
auteur-court:
total: 1
most-common: 1
is-unique: true
auteurs-trices-dans-le-texte:
total: 1
most-common: 1
is-unique: true
auteurs-trices-dans-references:
total: 1
most-common: 1
is-unique: true
author-article-journal:
total: 1
most-common: 1
is-unique: true
author-article-newspaper:
total: 1
most-common: 1
is-unique: true
author-b:
total: 1
most-common: 1
is-unique: true
author-biblio:
total: 1
most-common: 1
is-unique: true
author-book:
total: 1
most-common: 1
is-unique: true
author-editor:
total: 1
most-common: 1
is-unique: true
author-init:
total: 1
most-common: 1
is-unique: true
author-inline-citation:
total: 1
most-common: 1
is-unique: true
author-names-full:
total: 1
most-common: 1
is-unique: true
author-names-short:
total: 1
most-common: 1
is-unique: true
author-ndbp:
total: 1
most-common: 1
is-unique: true
author-number:
total: 1
most-common: 1
is-unique: true
author-or-publication:
total: 1
most-common: 1
is-unique: true
author-referencelist:
total: 1
most-common: 1
is-unique: true
author-short-bibliography:
total: 1
most-common: 1
is-unique: true
author-short-call:
total: 1
most-common: 1
is-unique: true
author-short-or-editor:
total: 1
most-common: 1
is-unique: true
author-short-or-publication:
total: 1
most-common: 1
is-unique: true
author-short-subsequent:
total: 1
most-common: 1
is-unique: true
author-short-zh:
total: 1
most-common: 1
is-unique: true
author-special:
total: 1
most-common: 1
is-unique: true
author-substitute:
total: 1
most-common: 1
is-unique: true
author-webpage:
total: 1
most-common: 1
is-unique: true
author-year:
total: 1
most-common: 1
is-unique: true
author-year-short:
total: 1
most-common: 1
is-unique: true
author-zh:
total: 1
most-common: 1
is-unique: true
author1:
total: 1
most-common: 1
is-unique: true
author_short:
total: 1
most-common: 1
is-unique: true
author_title-bibliography:
total: 1
most-common: 1
is-unique: true
author_title-citations:
total: 1
most-common: 1
is-unique: true
authority-sort:
total: 1
most-common: 1
is-unique: true
authors-bib:
total: 1
most-common: 1
is-unique: true
authors-inline:
total: 1
most-common: 1
is-unique: true
available:
total: 1
most-common: 1
is-unique: true
b__access:
total: 1
most-common: 1
is-unique: true
b__author:
total: 1
most-common: 1
is-unique: true
b__in-editor-container:
total: 1
most-common: 1
is-unique: true
b__label:
total: 1
most-common: 1
is-unique: true
b__locator:
total: 1
most-common: 1
is-unique: true
b__online:
total: 1
most-common: 1
is-unique: true
band-aus-reihe:
total: 1
most-common: 1
is-unique: true
bib-film:
total: 1
most-common: 1
is-unique: true
bib-point-locators-join-with-comma:
total: 1
most-common: 1
is-unique: true
bibliography:
total: 1
most-common: 1
is-unique: true
bibliography-reference-long:
total: 1
most-common: 1
is-unique: true
bibliography-reference-title:
total: 1
most-common: 1
is-unique: true
bibliography-year:
total: 1
most-common: 1
is-unique: true
blog-post-date:
total: 1
most-common: 1
is-unique: true
book-access:
total: 1
most-common: 1
is-unique: true
book-chapter-volume:
total: 1
most-common: 1
is-unique: true
book-citation:
total: 1
most-common: 1
is-unique: true
book-rendering:
total: 1
most-common: 1
is-unique: true
book_author-bib:
total: 1
most-common: 1
is-unique: true
book_author-ndbp:
total: 1
most-common: 1
is-unique: true
book_suffix:
total: 1
most-common: 1
is-unique: true
broadcast:
total: 1
most-common: 1
is-unique: true
broadcast-info:
total: 1
most-common: 1
is-unique: true
carte-geo:
total: 1
most-common: 1
is-unique: true
case-law:
total: 1
most-common: 1
is-unique: true
case-medium-neutral:
total: 1
most-common: 1
is-unique: true
case-patent-ref:
total: 1
most-common: 1
is-unique: true
chapter-nbr-page:
total: 1
most-common: 1
is-unique: true
chapter-rendering:
total: 1
most-common: 1
is-unique: true
citation-date:
total: 1
most-common: 1
is-unique: true
citation-layout-zh:
total: 1
most-common: 1
is-unique: true
citation-reference-ibid:
total: 1
most-common: 1
is-unique: true
citation-reference-ibid-locator:
total: 1
most-common: 1
is-unique: true
citation-reference-normal:
total: 1
most-common: 1
is-unique: true
citation-reference-subsequent:
total: 1
most-common: 1
is-unique: true
citation-title:
total: 1
most-common: 1
is-unique: true
citations:
total: 1
most-common: 1
is-unique: true
cite-author-biblio:
total: 1
most-common: 1
is-unique: true
cite-film:
total: 1
most-common: 1
is-unique: true
cite-ibid:
total: 1
most-common: 1
is-unique: true
cite-ibid-with-locator:
total: 1
most-common: 1
is-unique: true
cite-short:
total: 1
most-common: 1
is-unique: true
citeKey:
total: 1
most-common: 1
is-unique: true
citeissued:
total: 1
most-common: 1
is-unique: true
collection-booklike:
total: 1
most-common: 1
is-unique: true
collection-with-number:
total: 1
most-common: 1
is-unique: true
composer-bib:
total: 1
most-common: 1
is-unique: true
computerprogram:
total: 1
most-common: 1
is-unique: true
conference-container:
total: 1
most-common: 1
is-unique: true
conference-nbr-page:
total: 1
most-common: 1
is-unique: true
container-article:
total: 1
most-common: 1
is-unique: true
container-author-bib:
total: 1
most-common: 1
is-unique: true
container-author-names-full:
total: 1
most-common: 1
is-unique: true
container-author-reviewed-author-and-editor-translator-short:
total: 1
most-common: 1
is-unique: true
container-author-short-bib:
total: 1
most-common: 1
is-unique: true
container-author-title:
total: 1
most-common: 1
is-unique: true
container-book:
total: 1
most-common: 1
is-unique: true
container-book-infos:
total: 1
most-common: 1
is-unique: true
container-chapter:
total: 1
most-common: 1
is-unique: true
container-contributors-bibliography:
total: 1
most-common: 1
is-unique: true
container-contributors-notes:
total: 1
most-common: 1
is-unique: true
container-editor-bib:
total: 1
most-common: 1
is-unique: true
container-editors:
total: 1
most-common: 1
is-unique: true
container-info:
total: 1
most-common: 1
is-unique: true
container-jnl:
total: 1
most-common: 1
is-unique: true
container-journal:
total: 1
most-common: 1
is-unique: true
container-journal-Infos:
total: 1
most-common: 1
is-unique: true
container-ndbp:
total: 1
most-common: 1
is-unique: true
container-official-pubs:
total: 1
most-common: 1
is-unique: true
container-pages:
total: 1
most-common: 1
is-unique: true
container-prefix-note:
total: 1
most-common: 1
is-unique: true
container-primary-contributor:
total: 1
most-common: 1
is-unique: true
container-producers-surname:
total: 1
most-common: 1
is-unique: true
container-publication:
total: 1
most-common: 1
is-unique: true
container-title-italic:
total: 1
most-common: 1
is-unique: true
container-title-online:
total: 1
most-common: 1
is-unique: true
container-title-short:
total: 1
most-common: 1
is-unique: true
container-zh:
total: 1
most-common: 1
is-unique: true
container_conference:
total: 1
most-common: 1
is-unique: true
content-title:
total: 1
most-common: 1
is-unique: true
contributor-long:
total: 1
most-common: 1
is-unique: true
contributor-statements:
total: 1
most-common: 1
is-unique: true
contributors-count:
total: 1
most-common: 1
is-unique: true
contributors-first:
total: 1
most-common: 1
is-unique: true
contributors-in-text:
total: 1
most-common: 1
is-unique: true
contributors-reviewers-bibliography:
total: 1
most-common: 1
is-unique: true
court-vol:
total: 1
most-common: 1
is-unique: true
creator-for-short-references:
total: 1
most-common: 1
is-unique: true
creator-long:
total: 1
most-common: 1
is-unique: true
credits:
total: 1
most-common: 1
is-unique: true
current-publisher_location_year:
total: 1
most-common: 1
is-unique: true
custom:
total: 1
most-common: 1
is-unique: true
date-acces:
total: 1
most-common: 1
is-unique: true
date-and-edition:
total: 1
most-common: 1
is-unique: true
date-annee:
total: 1
most-common: 1
is-unique: true
date-biblio:
total: 1
most-common: 1
is-unique: true
date-bibliography:
total: 1
most-common: 1
is-unique: true
date-comma:
total: 1
most-common: 1
is-unique: true
date-et-en-ligne:
total: 1
most-common: 1
is-unique: true
date-in-parentheses:
total: 1
most-common: 1
is-unique: true
date-issue-long:
total: 1
most-common: 1
is-unique: true
date-legal-case:
total: 1
most-common: 1
is-unique: true
date-ndbp:
total: 1
most-common: 1
is-unique: true
date-pages:
total: 1
most-common: 1
is-unique: true
date-pages-no-collection:
total: 1
most-common: 1
is-unique: true
date-parentheses:
total: 1
most-common: 1
is-unique: true
date-periodical:
total: 1
most-common: 1
is-unique: true
date-range:
total: 1
most-common: 1
is-unique: true
date-sort:
total: 1
most-common: 1
is-unique: true
date_aaaa:
total: 1
most-common: 1
is-unique: true
date_aaaa-mm-jj:
total: 1
most-common: 1
is-unique: true
datepub:
total: 1
most-common: 1
is-unique: true
day-month-note:
total: 1
most-common: 1
is-unique: true
day-month-year:
total: 1
most-common: 1
is-unique: true
description-audio-note:
total: 1
most-common: 1
is-unique: true
descriptors:
total: 1
most-common: 1
is-unique: true
details-motion-picture:
total: 1
most-common: 1
is-unique: true
details-rapport:
total: 1
most-common: 1
is-unique: true
director-min:
total: 1
most-common: 1
is-unique: true
disambiguation:
total: 1
most-common: 1
is-unique: true
display-order:
total: 1
most-common: 1
is-unique: true
document:
total: 1
most-common: 1
is-unique: true
document-identifier:
total: 1
most-common: 1
is-unique: true
document-identifier-short:
total: 1
most-common: 1
is-unique: true
doi-note:
total: 1
most-common: 1
is-unique: true
doi-or-url:
total: 1
most-common: 1
is-unique: true
doi-pmid:
total: 1
most-common: 1
is-unique: true
doi-url:
total: 1
most-common: 1
is-unique: true
edby:
total: 1
most-common: 1
is-unique: true
edition-newspaper:
total: 1
most-common: 1
is-unique: true
edition-number:
total: 1
most-common: 1
is-unique: true
edition-short:
total: 1
most-common: 1
is-unique: true
edition-zh:
total: 1
most-common: 1
is-unique: true
editor-citation:
total: 1
most-common: 1
is-unique: true
editor-in:
total: 1
most-common: 1
is-unique: true
editor-names-full:
total: 1
most-common: 1
is-unique: true
editor-names-short:
total: 1
most-common: 1
is-unique: true
editor-ndbp:
total: 1
most-common: 1
is-unique: true
editor-or-publisher:
total: 1
most-common: 1
is-unique: true
editor-prefix:
total: 1
most-common: 1
is-unique: true
editor-refs:
total: 1
most-common: 1
is-unique: true
editor-short-call:
total: 1
most-common: 1
is-unique: true
editor-text-short:
total: 1
most-common: 1
is-unique: true
editor-zh:
total: 1
most-common: 1
is-unique: true
ednum:
total: 1
most-common: 1
is-unique: true
en-ligne:
total: 1
most-common: 1
is-unique: true
encyclopediaTitle:
total: 1
most-common: 1
is-unique: true
enligne:
total: 1
most-common: 1
is-unique: true
entry-encyclopedia-nbr-page:
total: 1
most-common: 1
is-unique: true
epub-type:
total: 1
most-common: 1
is-unique: true
event-conference:
total: 1
most-common: 1
is-unique: true
event-date-year:
total: 1
most-common: 1
is-unique: true
event-genre:
total: 1
most-common: 1
is-unique: true
exact-date:
total: 1
most-common: 1
is-unique: true
extended-date:
total: 1
most-common: 1
is-unique: true
ffh-place:
total: 1
most-common: 1
is-unique: true
ffh-publisher:
total: 1
most-common: 1
is-unique: true
first-citation:
total: 1
most-common: 1
is-unique: true
first-reference-note-number:
total: 1
most-common: 1
is-unique: true
footnote-reference:
total: 1
most-common: 1
is-unique: true
formatage-particulier-pour-les-dates:
total: 1
most-common: 1
is-unique: true
full-accessed:
total: 1
most-common: 1
is-unique: true
fulltitle:
total: 1
most-common: 1
is-unique: true
generic-citation:
total: 1
most-common: 1
is-unique: true
genre-format:
total: 1
most-common: 1
is-unique: true
genre-marker:
total: 1
most-common: 1
is-unique: true
geographic-location:
total: 1
most-common: 1
is-unique: true
graphicmediumandmore:
total: 1
most-common: 1
is-unique: true
identifier-for-short-references:
total: 1
most-common: 1
is-unique: true
imprenta-bibliography:
total: 1
most-common: 1
is-unique: true
in-and-container:
total: 1
most-common: 1
is-unique: true
in-text-cont:
total: 1
most-common: 1
is-unique: true
in-text-locators:
total: 1
most-common: 1
is-unique: true
in-text-middle:
total: 1
most-common: 1
is-unique: true
in-text-short:
total: 1
most-common: 1
is-unique: true
in-text-subsequent:
total: 1
most-common: 1
is-unique: true
inarticle:
total: 1
most-common: 1
is-unique: true
inline-citation:
total: 1
most-common: 1
is-unique: true
inmagazine:
total: 1
most-common: 1
is-unique: true
inmonograph:
total: 1
most-common: 1
is-unique: true
internet-bib:
total: 1
most-common: 1
is-unique: true
internet-ndbp:
total: 1
most-common: 1
is-unique: true
interview:
total: 1
most-common: 1
is-unique: true
interview-long:
total: 1
most-common: 1
is-unique: true
interview-short:
total: 1
most-common: 1
is-unique: true
issuance-zh:
total: 1
most-common: 1
is-unique: true
issue-bib:
total: 1
most-common: 1
is-unique: true
issue-map-graphic-note:
total: 1
most-common: 1
is-unique: true
issue-serial:
total: 1
most-common: 1
is-unique: true
issue-zh:
total: 1
most-common: 1
is-unique: true
issue_periodical:
total: 1
most-common: 1
is-unique: true
issued-day:
total: 1
most-common: 1
is-unique: true
issued-general:
total: 1
most-common: 1
is-unique: true
issued-month:
total: 1
most-common: 1
is-unique: true
issued-month-year:
total: 1
most-common: 1
is-unique: true
issued-note:
total: 1
most-common: 1
is-unique: true
issued-place:
total: 1
most-common: 1
is-unique: true
issued-year-bib:
total: 1
most-common: 1
is-unique: true
issued-year-text:
total: 1
most-common: 1
is-unique: true
journal-article-number:
total: 1
most-common: 1
is-unique: true
journal-citation:
total: 1
most-common: 1
is-unique: true
journal-details:
total: 1
most-common: 1
is-unique: true
journal-locator:
total: 1
most-common: 1
is-unique: true
journal-nbr-page:
total: 1
most-common: 1
is-unique: true
law-number:
total: 1
most-common: 1
is-unique: true
legislation-issued-short:
total: 1
most-common: 1
is-unique: true
legislation-report:
total: 1
most-common: 1
is-unique: true
length-bib:
total: 1
most-common: 1
is-unique: true
length-cit:
total: 1
most-common: 1
is-unique: true
letter:
total: 1
most-common: 1
is-unique: true
localisation-revue:
total: 1
most-common: 1
is-unique: true
location-periodical:
total: 1
most-common: 1
is-unique: true
locator-here:
total: 1
most-common: 1
is-unique: true
locator-or-page-zh:
total: 1
most-common: 1
is-unique: true
locator-or-pages-or-number-of-pages:
total: 1
most-common: 1
is-unique: true
locator-periodical:
total: 1
most-common: 1
is-unique: true
locator-range:
total: 1
most-common: 1
is-unique: true
locator-zh:
total: 1
most-common: 1
is-unique: true
locators-article-note:
total: 1
most-common: 1
is-unique: true
locators-bibliography:
total: 1
most-common: 1
is-unique: true
locators-chapter-comma:
total: 1
most-common: 1
is-unique: true
locators-dictionary:
total: 1
most-common: 1
is-unique: true
locators-journal-bibliography:
total: 1
most-common: 1
is-unique: true
locators-note-join-with-period:
total: 1
most-common: 1
is-unique: true
locators-official-pubs:
total: 1
most-common: 1
is-unique: true
locators-pages:
total: 1
most-common: 1
is-unique: true
locators-serial:
total: 1
most-common: 1
is-unique: true
locators-specific:
total: 1
most-common: 1
is-unique: true
main-title-full:
total: 1
most-common: 1
is-unique: true
maison:
total: 1
most-common: 1
is-unique: true
make-citation:
total: 1
most-common: 1
is-unique: true
man-archive:
total: 1
most-common: 1
is-unique: true
map:
total: 1
most-common: 1
is-unique: true
medium-format:
total: 1
most-common: 1
is-unique: true
memoire-these:
total: 1
most-common: 1
is-unique: true
mimeo:
total: 1
most-common: 1
is-unique: true
month:
total: 1
most-common: 1
is-unique: true
month-date:
total: 1
most-common: 1
is-unique: true
month-day:
total: 1
most-common: 1
is-unique: true
motionpictureformat:
total: 1
most-common: 1
is-unique: true
multiple-volumes:
total: 1
most-common: 1
is-unique: true
name:
total: 1
most-common: 1
is-unique: true
name-short-macro:
total: 1
most-common: 1
is-unique: true
name-translator:
total: 1
most-common: 1
is-unique: true
nb-pages:
total: 1
most-common: 1
is-unique: true
nb-vol-bib:
total: 1
most-common: 1
is-unique: true
nbr-page:
total: 1
most-common: 1
is-unique: true
news:
total: 1
most-common: 1
is-unique: true
newspaper-container:
total: 1
most-common: 1
is-unique: true
newspaper-webpage:
total: 1
most-common: 1
is-unique: true
no-ibid:
total: 1
most-common: 1
is-unique: true
no-pages:
total: 1
most-common: 1
is-unique: true
noauthoreditorissued:
total: 1
most-common: 1
is-unique: true
noauthortitle:
total: 1
most-common: 1
is-unique: true
nombre_volume:
total: 1
most-common: 1
is-unique: true
nor-case:
total: 1
most-common: 1
is-unique: true
nor-legislation:
total: 1
most-common: 1
is-unique: true
note-article-journal:
total: 1
most-common: 1
is-unique: true
note-article-magazine:
total: 1
most-common: 1
is-unique: true
note-article-newspaper:
total: 1
most-common: 1
is-unique: true
note-book:
total: 1
most-common: 1
is-unique: true
note-chapter:
total: 1
most-common: 1
is-unique: true
note-thesis:
total: 1
most-common: 1
is-unique: true
number-and-year:
total: 1
most-common: 1
is-unique: true
number-journal-long:
total: 1
most-common: 1
is-unique: true
number-journal-short:
total: 1
most-common: 1
is-unique: true
number-note:
total: 1
most-common: 1
is-unique: true
number-page-order:
total: 1
most-common: 1
is-unique: true
number-pages:
total: 1
most-common: 1
is-unique: true
numero:
total: 1
most-common: 1
is-unique: true
numero-edition:
total: 1
most-common: 1
is-unique: true
numpage:
total: 1
most-common: 1
is-unique: true
off-pubs-printing:
total: 1
most-common: 1
is-unique: true
online-date:
total: 1
most-common: 1
is-unique: true
opus-citatum:
total: 1
most-common: 1
is-unique: true
opus-title:
total: 1
most-common: 1
is-unique: true
original-note:
total: 1
most-common: 1
is-unique: true
original-publication-date:
total: 1
most-common: 1
is-unique: true
original-publisher-place:
total: 1
most-common: 1
is-unique: true
original-publisher_location_year:
total: 1
most-common: 1
is-unique: true
original_date:
total: 1
most-common: 1
is-unique: true
original_date-short:
total: 1
most-common: 1
is-unique: true
originators:
total: 1
most-common: 1
is-unique: true
origyear-chapter:
total: 1
most-common: 1
is-unique: true
origyear-reprint:
total: 1
most-common: 1
is-unique: true
page-etc:
total: 1
most-common: 1
is-unique: true
page-nbr:
total: 1
most-common: 1
is-unique: true
page-num:
total: 1
most-common: 1
is-unique: true
page_chapter:
total: 1
most-common: 1
is-unique: true
page_first:
total: 1
most-common: 1
is-unique: true
pagecount:
total: 1
most-common: 1
is-unique: true
pagenumbers:
total: 1
most-common: 1
is-unique: true
pages-bibliography:
total: 1
most-common: 1
is-unique: true
pages-chapter-conf:
total: 1
most-common: 1
is-unique: true
pages-chapter-note:
total: 1
most-common: 1
is-unique: true
pages-label:
total: 1
most-common: 1
is-unique: true
pages-note:
total: 1
most-common: 1
is-unique: true
paper-conf:
total: 1
most-common: 1
is-unique: true
paper-conference-layout:
total: 1
most-common: 1
is-unique: true
part:
total: 1
most-common: 1
is-unique: true
part-article:
total: 1
most-common: 1
is-unique: true
part-media:
total: 1
most-common: 1
is-unique: true
part-monograph:
total: 1
most-common: 1
is-unique: true
part-paper-conference:
total: 1
most-common: 1
is-unique: true
part-webpage:
total: 1
most-common: 1
is-unique: true
parution:
total: 1
most-common: 1
is-unique: true
periodical:
total: 1
most-common: 1
is-unique: true
periodical-date:
total: 1
most-common: 1
is-unique: true
place-publisher-issued:
total: 1
most-common: 1
is-unique: true
place-year:
total: 1
most-common: 1
is-unique: true
pmid:
total: 1
most-common: 1
is-unique: true
point-locators-note:
total: 1
most-common: 1
is-unique: true
point-locators-subsequent-ibid:
total: 1
most-common: 1
is-unique: true
preface-author:
total: 1
most-common: 1
is-unique: true
primary-contributor:
total: 1
most-common: 1
is-unique: true
primary-contributor-citations:
total: 1
most-common: 1
is-unique: true
primary-contributor-short:
total: 1
most-common: 1
is-unique: true
primary-contributors:
total: 1
most-common: 1
is-unique: true
printing:
total: 1
most-common: 1
is-unique: true
proceeding-editor:
total: 1
most-common: 1
is-unique: true
producers-surname:
total: 1
most-common: 1
is-unique: true
program-version:
total: 1
most-common: 1
is-unique: true
pub-info:
total: 1
most-common: 1
is-unique: true
pub-place-ndbp:
total: 1
most-common: 1
is-unique: true
publication_date:
total: 1
most-common: 1
is-unique: true
publication_date-long:
total: 1
most-common: 1
is-unique: true
publication_info:
total: 1
most-common: 1
is-unique: true
publisher-article:
total: 1
most-common: 1
is-unique: true
publisher-monograph:
total: 1
most-common: 1
is-unique: true
publisher-place_and_publisher_and_year:
total: 1
most-common: 1
is-unique: true
publisher-short:
total: 1
most-common: 1
is-unique: true
publisher-zh:
total: 1
most-common: 1
is-unique: true
publisher_book:
total: 1
most-common: 1
is-unique: true
publisher_location_year:
total: 1
most-common: 1
is-unique: true
recipient-name:
total: 1
most-common: 1
is-unique: true
recipient-prefix:
total: 1
most-common: 1
is-unique: true
reference-book-etc-long:
total: 1
most-common: 1
is-unique: true
reference-book-etc-short:
total: 1
most-common: 1
is-unique: true
reference-legal-long:
total: 1
most-common: 1
is-unique: true
reference-legal-short:
total: 1
most-common: 1
is-unique: true
reference-legislative-footnote:
total: 1
most-common: 1
is-unique: true
reference-legislative-long:
total: 1
most-common: 1
is-unique: true
reference-legislative-short:
total: 1
most-common: 1
is-unique: true
reference-publication-details:
total: 1
most-common: 1
is-unique: true
remains-long:
total: 1
most-common: 1
is-unique: true
remains-short:
total: 1
most-common: 1
is-unique: true
report-institutional-author:
total: 1
most-common: 1
is-unique: true
report-note:
total: 1
most-common: 1
is-unique: true
report-number:
total: 1
most-common: 1
is-unique: true
report-patent-numbers:
total: 1
most-common: 1
is-unique: true
reporter:
total: 1
most-common: 1
is-unique: true
reprint-term:
total: 1
most-common: 1
is-unique: true
responsability-citation:
total: 1
most-common: 1
is-unique: true
review-title:
total: 1
most-common: 1
is-unique: true
reviewed-author:
total: 1
most-common: 1
is-unique: true
reviewer-bibliography:
total: 1
most-common: 1
is-unique: true
sans-auteur:
total: 1
most-common: 1
is-unique: true
scientific-editor:
total: 1
most-common: 1
is-unique: true
scientific-editor-name:
total: 1
most-common: 1
is-unique: true
second-date:
total: 1
most-common: 1
is-unique: true
secondary-authors:
total: 1
most-common: 1
is-unique: true
secondary-contributor-zh:
total: 1
most-common: 1
is-unique: true
secondary-contributors-chapter:
total: 1
most-common: 1
is-unique: true
secondary-contributors-short:
total: 1
most-common: 1
is-unique: true
secondary-producers:
total: 1
most-common: 1
is-unique: true
secondary-title-long:
total: 1
most-common: 1
is-unique: true
section-zh:
total: 1
most-common: 1
is-unique: true
series-and-number:
total: 1
most-common: 1
is-unique: true
series-genre:
total: 1
most-common: 1
is-unique: true
series_number:
total: 1
most-common: 1
is-unique: true
show-access:
total: 1
most-common: 1
is-unique: true
showNote:
total: 1
most-common: 1
is-unique: true
size:
total: 1
most-common: 1
is-unique: true
size-artwork:
total: 1
most-common: 1
is-unique: true
sort-bibliography:
total: 1
most-common: 1
is-unique: true
sort-key-1:
total: 1
most-common: 1
is-unique: true
sort-key-2:
total: 1
most-common: 1
is-unique: true
sort-key-3:
total: 1
most-common: 1
is-unique: true
sort-key-4:
total: 1
most-common: 1
is-unique: true
sort-order-when-same-type:
total: 1
most-common: 1
is-unique: true
sort-term:
total: 1
most-common: 1
is-unique: true
sort-title-author:
total: 1
most-common: 1
is-unique: true
sort_key:
total: 1
most-common: 1
is-unique: true
sort_keys:
total: 1
most-common: 1
is-unique: true
sortnames:
total: 1
most-common: 1
is-unique: true
source-biblio:
total: 1
most-common: 1
is-unique: true
source-long:
total: 1
most-common: 1
is-unique: true
source-manuscrite:
total: 1
most-common: 1
is-unique: true
source-short:
total: 1
most-common: 1
is-unique: true
source-zh:
total: 1
most-common: 1
is-unique: true
speech-details:
total: 1
most-common: 1
is-unique: true
status-article-patent:
total: 1
most-common: 1
is-unique: true
statute-law:
total: 1
most-common: 1
is-unique: true
studio:
total: 1
most-common: 1
is-unique: true
thesis-director:
total: 1
most-common: 1
is-unique: true
thesis-genre:
total: 1
most-common: 1
is-unique: true
thesis-issued:
total: 1
most-common: 1
is-unique: true
thesis-layout:
total: 1
most-common: 1
is-unique: true
thesis-number:
total: 1
most-common: 1
is-unique: true
thesis-title:
total: 1
most-common: 1
is-unique: true
title-and-collection:
total: 1
most-common: 1
is-unique: true
title-and-container:
total: 1
most-common: 1
is-unique: true
title-and-genre:
total: 1
most-common: 1
is-unique: true
title-and-printing:
total: 1
most-common: 1
is-unique: true
title-article:
total: 1
most-common: 1
is-unique: true
title-bib:
total: 1
most-common: 1
is-unique: true
title-block:
total: 1
most-common: 1
is-unique: true
title-chapter-complete-ref:
total: 1
most-common: 1
is-unique: true
title-dictionary:
total: 1
most-common: 1
is-unique: true
title-editor:
total: 1
most-common: 1
is-unique: true
title-event:
total: 1
most-common: 1
is-unique: true
title-italic:
total: 1
most-common: 1
is-unique: true
title-label:
total: 1
most-common: 1
is-unique: true
title-normal:
total: 1
most-common: 1
is-unique: true
title-paper-conference:
total: 1
most-common: 1
is-unique: true
title-short-announce:
total: 1
most-common: 1
is-unique: true
title-short-bibliography:
total: 1
most-common: 1
is-unique: true
title-short-flag:
total: 1
most-common: 1
is-unique: true
title-short-italic:
total: 1
most-common: 1
is-unique: true
title-statements:
total: 1
most-common: 1
is-unique: true
title-subsequent:
total: 1
most-common: 1
is-unique: true
title-substitute:
total: 1
most-common: 1
is-unique: true
title-zh:
total: 1
most-common: 1
is-unique: true
title_volumes:
total: 1
most-common: 1
is-unique: true
titles-encyclopedia:
total: 1
most-common: 1
is-unique: true
titre-contenant:
total: 1
most-common: 1
is-unique: true
traductor:
total: 1
most-common: 1
is-unique: true
transby:
total: 1
most-common: 1
is-unique: true
translation-details:
total: 1
most-common: 1
is-unique: true
translator-biblio:
total: 1
most-common: 1
is-unique: true
translator-editor:
total: 1
most-common: 1
is-unique: true
translator-ndbp:
total: 1
most-common: 1
is-unique: true
tri:
total: 1
most-common: 1
is-unique: true
type-order:
total: 1
most-common: 1
is-unique: true
type-sort:
total: 1
most-common: 1
is-unique: true
u__author-short:
total: 1
most-common: 1
is-unique: true
u__date:
total: 1
most-common: 1
is-unique: true
u__edition-publisher-place-date:
total: 1
most-common: 1
is-unique: true
u__magazine-locators:
total: 1
most-common: 1
is-unique: true
u__noauthor:
total: 1
most-common: 1
is-unique: true
un-sales:
total: 1
most-common: 1
is-unique: true
vol:
total: 1
most-common: 1
is-unique: true
vol-page:
total: 1
most-common: 1
is-unique: true
vol-pages:
total: 1
most-common: 1
is-unique: true
volume-macro:
total: 1
most-common: 1
is-unique: true
volume-note:
total: 1
most-common: 1
is-unique: true
volume-page:
total: 1
most-common: 1
is-unique: true
volume-pages:
total: 1
most-common: 1
is-unique: true
volume-romans:
total: 1
most-common: 1
is-unique: true
volume-series:
total: 1
most-common: 1
is-unique: true
volume-zh:
total: 1
most-common: 1
is-unique: true
volume1:
total: 1
most-common: 1
is-unique: true
volume_periodical:
total: 1
most-common: 1
is-unique: true
webpage-details:
total: 1
most-common: 1
is-unique: true
webpage-info:
total: 1
most-common: 1
is-unique: true
webpage-information:
total: 1
most-common: 1
is-unique: true
webpage-layout:
total: 1
most-common: 1
is-unique: true
webpage-title:
total: 1
most-common: 1
is-unique: true
webpage_suffix:
total: 1
most-common: 1
is-unique: true
webpageinfo:
total: 1
most-common: 1
is-unique: true
year-bib:
total: 1
most-common: 1
is-unique: true
year-date-bib:
total: 1
most-common: 1
is-unique: true
year-date-blank:
total: 1
most-common: 1
is-unique: true
year-date-cite:
total: 1
most-common: 1
is-unique: true
year-date-complete:
total: 1
most-common: 1
is-unique: true
year-date-four:
total: 1
most-common: 1
is-unique: true
year-date-inline:
total: 1
most-common: 1
is-unique: true
year-date-legislation:
total: 1
most-common: 1
is-unique: true
year-date-long:
total: 1
most-common: 1
is-unique: true
year-date-three:
total: 1
most-common: 1
is-unique: true
year-date-two:
total: 1
most-common: 1
is-unique: true
year-date_book:
total: 1
most-common: 1
is-unique: true
year-date_chapter:
total: 1
most-common: 1
is-unique: true
year-date_journal:
total: 1
most-common: 1
is-unique: true
year-date_patent:
total: 1
most-common: 1
is-unique: true
year-date_thesis:
total: 1
most-common: 1
is-unique: true
year-date_webpage:
total: 1
most-common: 1
is-unique: true
year-dot:
total: 1
most-common: 1
is-unique: true
year-or-no-year:
total: 1
most-common: 1
is-unique: true
year-original:
total: 1
most-common: 1
is-unique: true
year-place:
total: 1
most-common: 1
is-unique: true
year-publication:
total: 1
most-common: 1
is-unique: true
year-sort-note:
total: 1
most-common: 1
is-unique: true
year-translation:
total: 1
most-common: 1
is-unique: true
yearpage-ndbp:
total: 1
most-common: 1
is-unique: true
zotero2bibtexType:
total: 1
most-common: 1
is-unique: true
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment