In a couple of places you could specify that a field should contain a stellar account id, e.g. `PaymentOperation.from_` and `PaymentOperation.to`: ``` from pydantic import ConstrainedStr class AccountId(ConstrainedStr): regex = "G[A-Za-z0-9]{55}" ```