across.tools.core.schemas.base

Classes

BaseSchema

Base class for schemas.

Module Contents

class BaseSchema(/, **data)[source]

Bases: pydantic.BaseModel

Base class for schemas.

This class provides a base implementation for schemas and defines the from_attributes method. Subclasses can inherit from this class and override the from_attributes method to define their

own schema logic.

model_config[source]

Configuration for the model, should be a dictionary conforming to [ConfigDict][pydantic.config.ConfigDict].

__hash__()[source]