export type Check = { check: string; status: string; title: string; documentationLink: string; message: string | null; description: string; line: number | null; file: string; }; export interface ValidationError { validationRequestId: number; failureReasonType: string; context: string; } export type GetValidationResultsResponse = { validationRequestId: number; assetPath: string; assetType: string; results: { REQUIRED: { status: string; results: Array; }; RECOMMENDED: { status: string; results: Array; }; }; errors: Array; requestedAt: string; };