Represents a single collection for extension data documents

interface ExtensionDataCollection {
    collectionName?: string;
    documents?: any[];
    scopeType?: string;
    scopeValue?: string;
}

Properties

collectionName?: string

The name of the collection

documents?: any[]

A list of documents belonging to the collection

scopeType?: string

The type of the collection's scope, such as Default or User

scopeValue?: string

The value of the collection's scope, such as Current or Me