I have the following two schemas. I send data over a socket; on receiving is there any way to determine which one was sent?
namespace Objects;
table Login {
email:string;
password:string;
}
root_type Login;
file_identifier "LOGN";
namespace Objects;
table Register{
email:string;
password:string;
}
root_type Register;
file_identifier "REGR";