cata_log_hub.api.common module
- class cata_log_hub.api.common.HTTPStatusError[source]
Bases:
BaseModelBasic data model for a HTTP status error response. Intentionally close to the FastAPI default.
- detail: str
- model_config: ClassVar[ConfigDict] = {}
Configuration for the model, should be a dictionary conforming to [ConfigDict][pydantic.config.ConfigDict].
- class cata_log_hub.api.common.ValidationError[source]
Bases:
BaseModelData model for a validation error. Intentionally close to the pydantic default.
- type: str
- msg: str
- classmethod convert_loc(loc)[source]
Convert input to string.
- classmethod convert_input(input)[source]
Convert input to string.
- classmethod convert_ctx(ctx)[source]
Convert ctx to string.
- model_config: ClassVar[ConfigDict] = {}
Configuration for the model, should be a dictionary conforming to [ConfigDict][pydantic.config.ConfigDict].
- class cata_log_hub.api.common.HTTPValidationError[source]
Bases:
BaseModelData model for a HTTP validation response. Intentionally close to the FastAPI default.
- detail: list[ValidationError]
- model_config: ClassVar[ConfigDict] = {}
Configuration for the model, should be a dictionary conforming to [ConfigDict][pydantic.config.ConfigDict].