Contents Menu Expand Light mode Dark mode Auto light/dark, in light mode Auto light/dark, in dark mode Skip to content
horizon 1.1.3 documentation
Logo

Horizon

  • Data.Horizon

High-level design

  • Entities
  • Role Permissions

Backend

  • Install & run backend
  • Architecture
  • Configuration
    • Database settings
    • Logging settings
    • Setup monitoring
    • CORS settings
    • Serving static files
    • OpenAPI settings
    • Enabling debug
  • Auth Providers
    • Dummy Auth provider
    • LDAP Auth provider
    • LDAP Cached Auth provider
    • Custom Auth provider
  • OpenAPI specification
  • Scripts
    • Manage Admins

Client

  • Install client
  • Sync client
  • Auth
  • Schemas
    • Namespace-related schemas
    • Namespace history-related schemas
    • HWM-related schemas
    • HWM history-related schemas
    • Permissions-related schemas
    • User-related schemas
    • Ping-related schemas
    • Pagination-related schemas
  • Exceptions

Development

  • Changelog
    • 1.1.3 (2025-10-29)
    • 1.1.2 (2025-04-07)
    • 1.1.1 (2025-01-28)
    • 1.0.2 (2024-11-21)
    • 1.0.1 (2024-06-27)
    • 1.0.0 (2024-06-10)
    • 0.2.1 (2024-05-29)
    • 0.2.0 (2024-05-15)
    • 0.1.3 (2024-05-02)
    • 0.1.2 (2024-04-02)
    • 0.1.1 (2024-03-27)
    • 0.0.13 (2024-02-13)
    • 0.0.12 (2024-01-24)
    • 0.0.11 (2024-01-22)
    • 0.0.10 (2024-01-22)
    • 0.0.9 (2024-01-19)
    • 0.0.8 (2024-01-18)
  • Contributing Guide
  • Security
Back to top
View this page

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

Next
HWM-related schemas
Previous
Namespace-related schemas
Copyright © 2023-2025 MTS PJSC
Made with Sphinx and @pradyunsg's Furo
Last updated on Jan 09, 2025
On this page
  • Namespace history-related schemas
    • NamespaceHistoryResponseV1
      • NamespaceHistoryResponseV1.id
      • NamespaceHistoryResponseV1.namespace_id
      • NamespaceHistoryResponseV1.name
      • NamespaceHistoryResponseV1.description
      • NamespaceHistoryResponseV1.owned_by
      • NamespaceHistoryResponseV1.action
      • NamespaceHistoryResponseV1.changed_at
      • NamespaceHistoryResponseV1.changed_by
      • NamespaceHistoryResponseV1.Config
    • NamespaceHistoryPaginateQueryV1
      • NamespaceHistoryPaginateQueryV1.namespace_id
      • NamespaceHistoryPaginateQueryV1.page
      • NamespaceHistoryPaginateQueryV1.page_size