Data Models
biokb_ipni.db.models
Module defining the database models for the biokb_ipni application.
Family
Bases: Base
Family model representing family information in the database.
Attributes:
| Name | Type | Description |
|---|---|---|
id |
str
|
Primary key identifier for the family. |
family_name |
str
|
Name of the family. |
tax_id |
Optional[int]
|
NCBI Taxon ID associated with the family. |
names |
list[Name]
|
Relationship to associated names. |
Source code in biokb_ipni/db/models.py
224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 | |
name_ids
property
Get a list of associated name IDs.
names_short
property
Get a list of dicts with name and ID.
Location
Bases: Base
Location model representing geographical locations in the database.
Attributes:
| Name | Type | Description |
|---|---|---|
id |
int
|
Primary key identifier for the location. |
locality |
Optional[str]
|
Locality description of the location. |
latitude |
Optional[float]
|
Latitude coordinate of the location. |
longitude |
Optional[float]
|
Longitude coordinate of the location. |
Source code in biokb_ipni/db/models.py
17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 | |
Name
Bases: Base
Name model representing a scientific name in the database.
Attributes:
| Name | Type | Description |
|---|---|---|
id |
str
|
Primary key identifier for the name. |
rank |
str
|
Taxonomic rank of the name. |
scientific_name |
str
|
The scientific name. |
authorship |
Optional[str]
|
Authorship information for the name. |
status |
str
|
Status of the name (e.g., accepted, synonym). |
published_in_year |
Optional[int]
|
Year the name was published. |
published_in_page |
Optional[int]
|
Page number where the name was published. |
remarks |
Optional[str]
|
Additional remarks about the name. |
reference_id |
Optional[str]
|
Foreign key to the associated reference. |
family_id |
Optional[int]
|
Foreign key to the family. |
tax_id |
Optional[int]
|
NCBI Taxon ID associated with the name. |
family |
Family
|
Relationship to the associated family. |
reference |
Reference
|
Relationship to the associated reference. |
type_materials |
list[TypeMaterial]
|
Relationship to associated type materials. |
primary_relations |
list[NameRelation]
|
Relationships where this name is the primary name. |
related_relations |
list[NameRelation]
|
Relationships where this name is the related name. |
Source code in biokb_ipni/db/models.py
45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 | |
family_name
property
Get the family name associated with this name.
NameRelation
Bases: Base
NameRelation model representing relationships between names in the database.
Attributes:
| Name | Type | Description |
|---|---|---|
id |
int
|
Primary key identifier for the name relation. |
type |
str
|
Type of relationship between the names. |
related_name_id |
Optional[str]
|
Foreign key to the related name. |
name_id |
Optional[str]
|
Foreign key to the primary name. |
related_name |
Name
|
Relationship to the related name. |
name |
Name
|
Relationship to the primary name. |
Source code in biokb_ipni/db/models.py
264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 | |
Reference
Bases: Base
Reference model representing bibliographic references in the database.
Attributes:
| Name | Type | Description |
|---|---|---|
id |
str
|
Primary key identifier for the reference. |
doi |
Optional[str]
|
Digital Object Identifier for the reference. |
alternative_id |
Optional[str]
|
Alternative identifier for the reference. |
citation |
Optional[str]
|
Citation string for the reference. |
title |
str
|
Title of the reference. |
author |
Optional[str]
|
Author(s) of the reference. |
issued |
Optional[str]
|
Publication date of the reference. |
volume |
Optional[str]
|
Volume number of the reference. |
issue |
Optional[str]
|
Issue number of the reference. |
page |
Optional[str]
|
Page numbers of the reference. |
issn |
Optional[str]
|
ISSN of the reference. |
isbn |
Optional[str]
|
ISBN of the reference. |
link |
Optional[str]
|
URL link to the reference. |
remarks |
Optional[str]
|
Additional remarks about the reference. |
names |
list[Name]
|
Relationship to associated names. |
Source code in biokb_ipni/db/models.py
135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 | |
name_ids
property
Get a list of associated name IDs.
names_short
property
Get a list of dicts with name and ID.
TypeMaterial
Bases: Base
TypeMaterial model representing type material information in the database.
Attributes:
| Name | Type | Description |
|---|---|---|
id |
int
|
Primary key identifier for the type material. |
citation |
Optional[str]
|
Citation for the type material. |
status |
Optional[str]
|
Status of the type material. |
institution_code |
Optional[str]
|
Institution code where the type material is held. |
catalog_number |
Optional[str]
|
Catalog number of the type material. |
collector |
Optional[str]
|
Collector of the type material. |
date |
Optional[date]
|
Date of collection of the type material. |
remarks |
Optional[str]
|
Additional remarks about the type material. |
name_id |
str
|
Foreign key to the associated name. |
location_id |
Optional[int]
|
Foreign key to the location. |
name |
Name
|
Relationship to the associated name. |
location |
Optional[Location]
|
Relationship to the location. |
Source code in biokb_ipni/db/models.py
308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 | |