from pydantic import BaseModel class ArtistInfo(BaseModel): """Model including the data required to get / create an artist.""" name: str spotify_id: str | None = None apple_id: str | None = None class ArtistResult(BaseModel): """Model including the data related to a found / created artist.""" artist_id: int label_participant_uuid: str