export interface ISchemaValidated { errors: ISchemaError[]; } export interface ISchemaError { property: string; message: string; }