interface ViewCommon {
    description?: string;
    filter?: FilterDefinition;
    implements?: ViewReference[];
    name?: string;
    space: string;
    version: string;
}

Properties

description?: string

Description. Intended to describe the content, and use, of this view.

A filter Domain Specific Language (DSL) used to create advanced filter queries.

implements?: ViewReference[]

References to the views from where this view will inherit properties - both mapped properties (properties pointing to container properties like text, integers, direct relations) and connection properties (like reverse direct relations).

Note: The order you list the views in is significant. We use this order to deduce the priority when we encounter duplicate property references. If you do not specify a view version, we will use the most recent version available at the time of creation.

name?: string

Readable name, meant for use in UIs

space: string

Id of the space that the view belongs to

version: string