Document

January 4, 2024 ยท View on GitHub

Properties

NameTypeDescriptionNotes
uidstrWeb of Science Unique Identifier
titlestrDocument title[optional]
typesList[str]Normalized Document Types[optional]
source_typesList[str]Source Document Types[optional]
sourceDocumentSource[optional]
namesDocumentNames[optional]
linksDocumentLinks[optional]
citationsList[DocumentCitationsInner]Times Cited[optional]
identifiersDocumentIdentifiers[optional]
keywordsDocumentKeywords[optional]

Example

from clarivate.wos_starter.client.models.document import Document

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

# convert the object into a dict
document_dict = document_instance.to_dict()
# create an instance of Document from a dict
document_form_dict = document.from_dict(document_dict)

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