[docs]classRecordDesignField(RegistryModel):"""One fixed-width field described by an AEAT record-design sheet."""sheet:strrow:intordinal:intoffset:intlength:inttype_code:strcomplementary:str|None=Nonedescription:strvalidation:str|None=Nonecontent:str|None=None
[docs]classRecordDesignSheet(RegistryModel):"""Parsed field rows and declared total length for one workbook sheet."""model_config=ConfigDict(frozen=True,extra="forbid")name:strfields:tuple[RecordDesignField,...]total_positions:int|None=None