export type Error = {
    title: string,
    status: number,
    violations?: Array<{
        propertyPath: string,
        message: string
    }>
}