This is possible with using a CHECK
constraint:
CHECK (FirstIdentifier IS NOT NULL OR SecondIdentifier IS NOT NULL)
While CHECK constraints are part of the table (and hence “schema”?), they may not fit the desired definition. The above CHECK is not mutually exclusive, but it could be altered to such.
Happy coding.