from __future__ import annotations

from pydantic import BaseModel


class ReportMetadata(BaseModel):
    report_id: str
    report_type: str
    title: str
    format: str
    generated_at: str
    data_quality_status: str
    location_label: str = "Runtime-Reports-Ordner"
    path_display: str
