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

GoogleCloudAiplatformV1MetadataSchema

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

Instance of a general MetadataSchema.

interface GoogleCloudAiplatformV1MetadataSchema {
readonly createTime?: Date;
description?: string;
readonly name?: string;
schema?: string;
schemaType?:
| "METADATA_SCHEMA_TYPE_UNSPECIFIED"
| "ARTIFACT_TYPE"
| "EXECUTION_TYPE"
| "CONTEXT_TYPE";
schemaVersion?: string;
}

§Properties

§
readonly createTime?: Date
[src]

Output only. Timestamp when this MetadataSchema was created.

§
description?: string
[src]

Description of the Metadata Schema

§
readonly name?: string
[src]

Output only. The resource name of the MetadataSchema.

§
schema?: string
[src]

Required. The raw YAML string representation of the MetadataSchema. The combination of [MetadataSchema.version] and the schema name given by title in [MetadataSchema.schema] must be unique within a MetadataStore. The schema is defined as an OpenAPI 3.0.2 MetadataSchema Object

§
schemaType?: "METADATA_SCHEMA_TYPE_UNSPECIFIED" | "ARTIFACT_TYPE" | "EXECUTION_TYPE" | "CONTEXT_TYPE"
[src]

The type of the MetadataSchema. This is a property that identifies which metadata types will use the MetadataSchema.

§
schemaVersion?: string
[src]

The version of the MetadataSchema. The version's format must match the following regular expression: ^[0-9]+.+.+$, which would allow to order/compare different versions. Example: 1.0.0, 1.0.1, etc.