from pydantic import BaseModel, Field
from typing import Optional

# import value objects

class Output{{ pascal_case }}(BaseModel):
    id: str = Field(..., description="Unique identifier for the {{ name }}")
    example: str = Field(..., description="Example field")
    active: bool = Field(..., description="Indicates if the {{ name }} is active")