DocumentSource

January 4, 2024 ยท View on GitHub

Web of Science document source metadata

Properties

NameTypeDescriptionNotes
source_titlestrSource title[optional]
publish_yearintPublished Year[optional]
publish_monthstrPublished Month[optional]
volumestrVolume[optional]
issuestrIssue[optional]
supplementstrJournal supplement[optional]
special_issuestrJournal special issue[optional]
article_numberstrSource Article Number[optional]
pagesDocumentSourcePages[optional]

Example

from clarivate.wos_starter.client.models.document_source import DocumentSource

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

# convert the object into a dict
document_source_dict = document_source_instance.to_dict()
# create an instance of DocumentSource from a dict
document_source_form_dict = document_source.from_dict(document_source_dict)

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