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

TableFieldSchema

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

A field in TableSchema.

interface TableFieldSchema {
field?: string;
fields?: TableFieldSchema[];
mode?: string;
type?: string;
}

§Properties

§
field?: string
[src]

The field name. The name must contain only letters (a-z, A-Z), numbers (0-9), or underscores (_), and must start with a letter or underscore. The maximum length is 128 characters.

§

Describes the nested schema fields if the type property is set to RECORD.

§
mode?: string
[src]

The field mode. Possible values include NULLABLE, REQUIRED and REPEATED. The default value is NULLABLE.

§
type?: string
[src]

The field data type. Possible values include * STRING * BYTES * INTEGER * FLOAT * BOOLEAN * TIMESTAMP * DATE * TIME * DATETIME * GEOGRAPHY, * NUMERIC, * BIGNUMERIC, * RECORD (where RECORD indicates that the field contains a nested schema).