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

Validation

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

A validation to perform on a stream.

interface Validation {
code?: string;
description?: string;
message?: ValidationMessage[];
readonly state?:
| "STATE_UNSPECIFIED"
| "NOT_EXECUTED"
| "FAILED"
| "PASSED"
| "WARNING";
}

§Properties

§
code?: string
[src]

A custom code identifying this validation.

§
description?: string
[src]

A short description of the validation.

§

Messages reflecting the validation results.

§
readonly state?: "STATE_UNSPECIFIED" | "NOT_EXECUTED" | "FAILED" | "PASSED" | "WARNING"
[src]

Output only. Validation execution status.