Skip to content

Latest commit

 

History

History
45 lines (32 loc) · 1.71 KB

File metadata and controls

45 lines (32 loc) · 1.71 KB

Project: /docs/reference/js/_project.yaml Book: /docs/reference/_book.yaml page_type: reference

{% comment %} DO NOT EDIT THIS FILE! This is generated by the JS SDK team, and any local changes will be overwritten. Changes should be made in the source code at https://github.com/firebase/firebase-js-sdk {% endcomment %}

ObjectSchemaRequest interface

Interface for JSON parameters in a schema of SchemaType "object" when not using the Schema.object() helper.

Signature:

export interface ObjectSchemaRequest extends SchemaRequest 

Extends: SchemaRequest

Properties

Property Type Description
optionalProperties never This is not a property accepted in the final request to the backend, but is a client-side convenience property that is only usable by constructing a schema through the Schema.object() helper method. Populating this property will cause response errors if the object is not wrapped with Schema.object().
type 'object'

ObjectSchemaRequest.optionalProperties

This is not a property accepted in the final request to the backend, but is a client-side convenience property that is only usable by constructing a schema through the Schema.object() helper method. Populating this property will cause response errors if the object is not wrapped with Schema.object().

Signature:

optionalProperties?: never;

ObjectSchemaRequest.type

Signature:

type: 'object';