Primary Fields = Primary Keys
Primary fields represent a unique identifier for the record. They are declared with the @Primary annotation.
public static final @NotNull String IDENTIFIER_KEY = "identifier";
private final @Field(IDENTIFIER_KEY) @Primary @NotNull String identifier;