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

Schema

import type { Schema } from "https://googleapis.deno.dev/v1/firebasedataconnect:v1beta.ts";

The application schema of a Firebase Data Connect service.

interface Schema {
annotations?: {
[key: string]: string;
}
;
readonly createTime?: Date;
datasources?: Datasource[];
displayName?: string;
readonly etag?: string;
labels?: {
[key: string]: string;
}
;
name?: string;
readonly reconciling?: boolean;
source?: Source;
readonly uid?: string;
readonly updateTime?: Date;
}

§Properties

§
annotations?: {
[key: string]: string;
}
[src]

Optional. Stores small amounts of arbitrary data.

§
readonly createTime?: Date
[src]

Output only. [Output only] Create time stamp.

§
datasources?: Datasource[]
[src]

Required. The data sources linked in the schema.

§
displayName?: string
[src]

Optional. Mutable human-readable name. 63 character limit.

§
readonly etag?: string
[src]

Output only. This checksum is computed by the server based on the value of other fields, and may be sent on update and delete requests to ensure the client has an up-to-date value before proceeding. AIP-154

§
labels?: {
[key: string]: string;
}
[src]

Optional. Labels as key value pairs.

§
name?: string
[src]

Identifier. The relative resource name of the schema, in the format: ``` projects/{project}/locations/{location}/services/{service}/schemas/{schema}

§
readonly reconciling?: boolean
[src]

Output only. A field that if true, indicates that the system is working to compile and deploy the schema.

§
source?: Source
[src]

Required. The source files that comprise the application schema.

§
readonly uid?: string
[src]

Output only. System-assigned, unique identifier.

§
readonly updateTime?: Date
[src]

Output only. [Output only] Update time stamp.