data

Specifies the JavaScript array containing the local data for the DataSource. If specified, all data transformation operations will be applied to the specified array:

var dataSource = new shield.DataSource({
    data: [
        { name: "Item 1" },
        { name: "Item 2" },
        { name: "Item 3" }
    ]
});