13 lines
405 B
Python
13 lines
405 B
Python
from pydantic import BaseModel, Field, field_validator
|
|
from typing import Optional
|
|
from uuid import UUID
|
|
|
|
|
|
from api.api_v2.modules.pedimentos.schema import PedimentoBaseSchema
|
|
from schemas.CredencialSchema import CredencialBaseSchema
|
|
|
|
class CoveBaseSchema(BaseModel):
|
|
cove: str = Field(..., description="ID del COVE asociado")
|
|
pedimento: PedimentoBaseSchema
|
|
credenciales: CredencialBaseSchema
|