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

User-related schemas¶

pydantic model horizon.commons.schemas.v1.user.UserResponseV1¶

User info response.

field id: int [Required]¶

Internal user id, not for external usage

field username: str [Required]¶

User name, unique in the entire database

class Config¶
pydantic model horizon.commons.schemas.v1.user.UserResponseV1WithAdmin¶

Extended user info response including is_admin.

field is_admin: bool [Required]¶

Indicates if the user is a superadmin

class Config¶
field id: int [Required]¶

Internal user id, not for external usage

field username: str [Required]¶

User name, unique in the entire database

Next
Ping-related schemas
Previous
Permissions-related schemas
Copyright © 2023-2025 MTS PJSC
Made with Sphinx and @pradyunsg's Furo
Last updated on Jan 09, 2025
On this page
  • User-related schemas
    • UserResponseV1
      • UserResponseV1.id
      • UserResponseV1.username
      • UserResponseV1.Config
    • UserResponseV1WithAdmin
      • UserResponseV1WithAdmin.is_admin
      • UserResponseV1WithAdmin.Config
      • UserResponseV1WithAdmin.id
      • UserResponseV1WithAdmin.username