Interface ParsedInput

Parsed input with normalized data array

interface ParsedInput {
    data: Record<string, unknown>[];
    format: "yaml" | "json" | "csv";
    source: "string" | "object" | "array" | "file";
}

Properties

Properties

data: Record<string, unknown>[]

Normalized array of objects

format: "yaml" | "json" | "csv"

Detected or specified format

source: "string" | "object" | "array" | "file"

Source type of the input