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

GoogleCloudApihubV1Issue

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

Issue contains the details of a single issue found by the linter.

interface GoogleCloudApihubV1Issue {
code?: string;
message?: string;
path?: string[];
severity?:
| "SEVERITY_UNSPECIFIED"
| "SEVERITY_ERROR"
| "SEVERITY_WARNING"
| "SEVERITY_INFO"
| "SEVERITY_HINT";
}

§Properties

§
code?: string
[src]

Required. Rule code unique to each rule defined in linter.

§
message?: string
[src]

Required. Human-readable message describing the issue found by the linter.

§
path?: string[]
[src]

Required. An array of strings indicating the location in the analyzed document where the rule was triggered.

§

Required. Object describing where in the file the issue was found.

§
severity?: "SEVERITY_UNSPECIFIED" | "SEVERITY_ERROR" | "SEVERITY_WARNING" | "SEVERITY_INFO" | "SEVERITY_HINT"
[src]

Required. Severity level of the rule violation.