Journal

January 4, 2024 ยท View on GitHub

Properties

NameTypeDescriptionNotes
idstrJournal unique identifier[optional]
namestrJournal full name[optional]
jcr_titlestrJournal JCR abbreviation[optional]
iso_titlestrJournal title in (ISO format)[optional]
issnstrJournal ISSN[optional]
previous_issnList[str]Previous ISSNs of the Journal (can be empty)[optional]
e_issnstrJournal eISSN[optional]
linksList[JournalLinksInner]URL to the Web of Science Products[optional]

Example

from clarivate.wos_starter.client.models.journal import Journal

# TODO update the JSON string below
json = "{}"
# create an instance of Journal from a JSON string
journal_instance = Journal.from_json(json)
# print the JSON string representation of the object
print Journal.to_json()

# convert the object into a dict
journal_dict = journal_instance.to_dict()
# create an instance of Journal from a dict
journal_form_dict = journal.from_dict(journal_dict)

[Back to Model list] [Back to API list] [Back to README]