diff options
author | Bryan Newbold <bnewbold@robocracy.org> | 2018-11-19 23:43:00 -0800 |
---|---|---|
committer | Bryan Newbold <bnewbold@robocracy.org> | 2018-11-19 23:43:00 -0800 |
commit | 456a4deab80d027fb5015269058cd6518680ea8e (patch) | |
tree | 9fa5e361e84633caf36d55d9bdc40f78182663bb | |
parent | bf38120563df9c41484067556533b139f9e9de3e (diff) | |
download | fatcat-456a4deab80d027fb5015269058cd6518680ea8e.tar.gz fatcat-456a4deab80d027fb5015269058cd6518680ea8e.zip |
monograph isn't a CSL type
-rw-r--r-- | notes/schema/work_release_types.txt | 2 | ||||
-rw-r--r-- | python/fatcat_tools/importers/crossref.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/notes/schema/work_release_types.txt b/notes/schema/work_release_types.txt index 150a7ae3..4011ec91 100644 --- a/notes/schema/work_release_types.txt +++ b/notes/schema/work_release_types.txt @@ -79,7 +79,7 @@ crossref work types (https://api.crossref.org/types): - dissertation => thesis - edited-book => book - journal-article => article-journal -- monograph => monograph +- monograph => book - other => <blank> - peer-review => peer_review (or blank) - posted-content => post (or more specific) diff --git a/python/fatcat_tools/importers/crossref.py b/python/fatcat_tools/importers/crossref.py index d0a69cd6..475afdb0 100644 --- a/python/fatcat_tools/importers/crossref.py +++ b/python/fatcat_tools/importers/crossref.py @@ -20,7 +20,7 @@ CROSSREF_TYPE_MAP = { 'dissertation': 'thesis', 'edited-book': 'book', 'journal-article': 'article-journal', - 'monograph': 'monograph', + 'monograph': 'book', 'other': None, 'peer-review': 'peer_review', 'posted-content': 'post', |