V2reportsTaxonomyNode

July 11, 2026 ยท View on GitHub

Properties

NameTypeDescriptionNotes
tax_idint[optional]
rankV2reportsRankType[optional] [default to V2reportsRankType.NO_RANK]
current_scientific_nameV2reportsNameAndAuthority[optional]
basionymV2reportsNameAndAuthority[optional]
curator_common_namestr[optional]
group_namestr[optional]
has_type_materialbool[optional]
classificationV2reportsClassification[optional]
parentsList[int][optional]
childrenList[int][optional]
countsList[V2reportsTaxonomyNodeCountByType][optional]
genomic_moltypestr[optional]
current_scientific_name_is_formalbool[optional]
secondary_tax_idsList[int][optional]
extinctbool[optional]
genetic_codeV2reportsGeneticCodes[optional]

Example

from ncbi.datasets.openapi.models.v2reports_taxonomy_node import V2reportsTaxonomyNode

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

# convert the object into a dict
v2reports_taxonomy_node_dict = v2reports_taxonomy_node_instance.to_dict()
# create an instance of V2reportsTaxonomyNode from a dict
v2reports_taxonomy_node_from_dict = V2reportsTaxonomyNode.from_dict(v2reports_taxonomy_node_dict)

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