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 %}
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
| 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' |
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;Signature:
type: 'object';