React Native Firebase
    Preparing search index...

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

    interface ObjectSchemaRequest {
        optionalProperties?: undefined;
        type: "object";
        [key: string]: unknown;
        [key: number]: unknown;
    }

    Hierarchy

    Indexable

    • [key: string]: unknown
    • [key: number]: unknown
    Index

    Properties

    optionalProperties?: undefined

    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"