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

GoogleCloudApihubV1OpenApiSpecDetails

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

OpenApiSpecDetails contains the details parsed from an OpenAPI spec in addition to the fields mentioned in SpecDetails.

interface GoogleCloudApihubV1OpenApiSpecDetails {
readonly format?:
| "FORMAT_UNSPECIFIED"
| "OPEN_API_SPEC_2_0"
| "OPEN_API_SPEC_3_0"
| "OPEN_API_SPEC_3_1";
readonly owner?: GoogleCloudApihubV1Owner;
readonly version?: string;
}

§Properties

§
readonly format?: "FORMAT_UNSPECIFIED" | "OPEN_API_SPEC_2_0" | "OPEN_API_SPEC_3_0" | "OPEN_API_SPEC_3_1"
[src]

Output only. The format of the spec.

§

Output only. Owner details for the spec. This maps to info.contact in OpenAPI spec.

§
readonly version?: string
[src]

Output only. The version in the spec. This maps to info.version in OpenAPI spec.