V2reportsTaxonomyNamesDescriptor

December 6, 2025 ยท View on GitHub

Properties

NameTypeDescriptionNotes
tax_idstr[optional]
rankV2reportsRankType[optional] [default to V2reportsRankType.NO_RANK]
current_scientific_nameV2reportsNameAndAuthority[optional]
group_namestr[optional]
curator_common_namestr[optional]
other_common_namesList[str][optional]
general_notesList[str][optional]
links_from_typestr[optional]
citationsList[V2reportsTaxonomyNamesDescriptorCitation][optional]
current_scientific_name_is_formalbool[optional]

Example

from ncbi.datasets.openapi.models.v2reports_taxonomy_names_descriptor import V2reportsTaxonomyNamesDescriptor

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

# convert the object into a dict
v2reports_taxonomy_names_descriptor_dict = v2reports_taxonomy_names_descriptor_instance.to_dict()
# create an instance of V2reportsTaxonomyNamesDescriptor from a dict
v2reports_taxonomy_names_descriptor_from_dict = V2reportsTaxonomyNamesDescriptor.from_dict(v2reports_taxonomy_names_descriptor_dict)

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