Files
openclaw-mission-control/backend/app/schemas/common.py
2026-02-09 15:49:50 +05:30

19 lines
487 B
Python

"""Common reusable schema primitives and simple API response envelopes."""
from __future__ import annotations
from typing import Annotated
from pydantic import StringConstraints
from sqlmodel import SQLModel
# Reusable string type for request payloads where blank/whitespace-only values
# are invalid.
NonEmptyStr = Annotated[str, StringConstraints(strip_whitespace=True, min_length=1)]
class OkResponse(SQLModel):
"""Standard success response payload."""
ok: bool = True