Namespace history-related schemas¶
- pydantic model horizon.commons.schemas.v1.namespace_history.NamespaceHistoryResponseV1¶
Namespace history response.
- field id: int [Required]¶
Namespace history item id
- field namespace_id: int [Required]¶
Namespace id history is bound to
- field name: str [Required]¶
Namespace name
- field description: str [Required]¶
Namespace description
- field owned_by: str | None = None¶
The namespace owner
- field action: str [Required]¶
Action performed on the namespace record
- field changed_at: datetime [Required]¶
Timestamp of a change of the namespace data
- field changed_by: str | None = None¶
User who changed the namespace data
- class Config¶
- pydantic model horizon.commons.schemas.v1.namespace_history.NamespaceHistoryPaginateQueryV1¶
Query params for Namespace pagination request.
- field namespace_id: int [Required]¶
Namespace id
- field page: int = 1¶
Page number
- Constraints:
gt = 0
- field page_size: int = 20¶
Number of items per page
- Constraints:
gt = 0
le = 50