import Joi from 'joi';

export const IdentifierSchema = Joi.object({
  type: Joi.string().required(),
  value: Joi.string().required(),
});
