File size: 1,561 Bytes
869adb6 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 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 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 |
from pydantic import BaseModel, Field
from typing import Literal, List, Union, Optional
# Define common anomalies as a Literal type
CommonAnomaliesSimple = Literal[
'injury',
'abnormal position'
]
# --- Beak-related Anomalies ---
class BeakAnomaly(BaseModel):
type: Literal['beak']
anomaly_type: List[Literal[
'adhesion/discharge',
CommonAnomaliesSimple
]]
# --- Body-related Anomalies ---
class BodyAnomaly(BaseModel):
type: Literal['body']
anomaly_type: List[Literal[
CommonAnomaliesSimple
]]
# --- Feathers/Wings/Tail-related Anomalies ---
class FeathersWingsTailAnomaly(BaseModel):
type: Literal['feathers/wings/tail']
anomaly_type: List[Literal[
'feather and skin change',
CommonAnomaliesSimple
]]
# --- Head-related Anomalies (including eyes) ---
class HeadAnomaly(BaseModel):
type: Literal['head incl. eyes']
anomaly_type: List[Literal[
'eye changes',
CommonAnomaliesSimple
]]
# --- Legs-related Anomalies ---
class LegAnomaly(BaseModel):
type: Literal['legs']
anomaly_type: List[Literal[
CommonAnomaliesSimple
]]
# Union of all possible anomaly types for specific body parts
AnomalyTypeSimple = Union[
BeakAnomaly,
BodyAnomaly,
LegAnomaly,
FeathersWingsTailAnomaly,
HeadAnomaly
]
# Main PhysicalAnomaly class that logs anomalies across different body parts
class PhysicalAnomaliesSimple(BaseModel):
physical_radio: str
physical_anomalies_type: Optional[List[AnomalyTypeSimple]] = None
|