Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

FileValidationReport

import type { FileValidationReport } from "https://googleapis.deno.dev/v1/migrationcenter:v1.ts";

A resource that aggregates the validation errors found in an import job file.

interface FileValidationReport {
fileErrors?: ImportError[];
fileName?: string;
partialReport?: boolean;
rowErrors?: ImportRowError[];
}

§Properties

§
fileErrors?: ImportError[]
[src]

List of file level errors.

§
fileName?: string
[src]

The name of the file.

§
partialReport?: boolean
[src]

Flag indicating that processing was aborted due to maximum number of errors.

§
rowErrors?: ImportRowError[]
[src]

Partial list of rows that encountered validation error.