Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Module

x/x12/src/X12ValidationEngine/Interfaces.ts>ValidationReport

ASC X12 parser, generator, query engine, and mapper; now with support for streams.
Latest
interface ValidationReport
import { type ValidationReport } from "https://deno.land/x/x12@1.8.0-1/src/X12ValidationEngine/Interfaces.ts";

Properties

optional
interchange: { header?: ValidationReport; trailer?: ValidationReport; }
optional
group: { groupId: string; groupNumber: number; groupResponse?: GroupResponseCode; transactionCount: number; responseLevel?: "reject" | "note_errors" | "allow_partial"; errors: ValidationError[]; }
optional
transaction: { transactionId: string; transactionNumber: number; errors: ValidationError[]; }
optional
segment: { tag: string; position: number; errors: ValidationError[]; }
optional
groups: ValidationReport[]
optional
transactions: ValidationReport[]
optional
segments: ValidationReport[]
optional
elements: ValidationError[]