- Added schemas, services, and routers for PROSEC, RCG2, Regulaciones, REIT, RequisitoPrevio, TLCS, and Vehiculos modules. - Each module includes search and get by ID functionalities. - Integrated FastAPI routers for each module into the main SITAR router. - Ensured proper response models using Pydantic for data validation.
24 lines
725 B
Python
24 lines
725 B
Python
"""TLCS Schemas"""
|
|
|
|
from typing import Optional
|
|
from pydantic import BaseModel, Field
|
|
|
|
|
|
class TLCSResponse(BaseModel):
|
|
"""TLCS (Tratados de Libre Comercio) response model"""
|
|
|
|
FRACCION: Optional[str] = Field(None, max_length=8)
|
|
PAIS: Optional[str] = Field(None, max_length=3)
|
|
TASATXT: Optional[str] = Field(None, max_length=19)
|
|
TASANUM: Optional[str] = None
|
|
TASACALCULADA: Optional[str] = Field(None, max_length=19)
|
|
TLC: Optional[str] = Field(None, max_length=6)
|
|
NOTA: Optional[str] = None
|
|
DOF: Optional[str] = Field(None, max_length=8)
|
|
OBSERVACION: Optional[str] = None
|
|
NICO: Optional[str] = Field("", max_length=2)
|
|
SYSID: int
|
|
|
|
class Config:
|
|
from_attributes = True
|