Schema for a row of a view result.

interface ViewResultRow {
    caused_by?: string;
    doc?: Document;
    error?: string;
    id?: string;
    key: any;
    reason?: string;
    value: any;
}

Properties

caused_by?: string

The cause of the error (if available).

doc?: Document

Schema for a document.

error?: string

The name of the error.

id?: string

Schema for a document ID.

key: any

Schema for any JSON type.

reason?: string

The reason the error occurred (if available).

value: any

Schema for any JSON type.

Generated using TypeDoc