Table 9130 SharePoint Graph List

App
System Application
Namespace
System.Integration.Sharepoint
Versions
28

Fields, 10Keys, 1

Versions171819202122232425262728

Source2829

Source in 29

src/System Application/App/SharePoint/src/graph/models/SharePointGraphList.Table.al84 lines, Copyright (c) Microsoft Corporation. MIT

// ------------------------------------------------------------------------------------------------
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for license information.
// ------------------------------------------------------------------------------------------------

namespace System.Integration.Sharepoint;

/// <summary>
/// Represents a SharePoint list as returned by Microsoft Graph API.
/// </summary>
table 9130 "SharePoint Graph List"
{
    Access = Public;
    TableType = Temporary;
    DataClassification = SystemMetadata;
    InherentEntitlements = X;
    InherentPermissions = X;
    Extensible = false;

    fields
    {
        field(1; Id; Text[250])
        {
            Caption = 'Id';
            Description = 'Unique identifier of the list';
        }
        field(2; DisplayName; Text[250])
        {
            Caption = 'Display Name';
            Description = 'Name of the list for display purposes';
            DataClassification = CustomerContent;
        }
        field(3; Name; Text[250])
        {
            Caption = 'Name';
            Description = 'Name of the list';
            DataClassification = CustomerContent;
        }
        field(4; Description; Text[2048])
        {
            Caption = 'Description';
            Description = 'Description of the list';
            DataClassification = CustomerContent;
        }
        field(5; WebUrl; Text[2048])
        {
            Caption = 'Web URL';
            Description = 'URL to view the list in a web browser';
        }
        field(6; Template; Text[100])
        {
            Caption = 'Template';
            Description = 'List template used to create this list (genericList, documentLibrary, etc.)';
        }
        field(7; ListItemEntityType; Text[250])
        {
            Caption = 'List Item Entity Type';
            Description = 'Entity type name for list items in this list';
        }
        field(8; DriveId; Text[250])
        {
            Caption = 'Drive ID';
            Description = 'Drive ID (for document libraries)';
        }
        field(9; LastModifiedDateTime; DateTime)
        {
            Caption = 'Last Modified Date Time';
            Description = 'Date and time when the list was last modified';
        }
        field(10; CreatedDateTime; DateTime)
        {
            Caption = 'Created Date Time';
            Description = 'Date and time when the list was created';
        }
    }

    keys
    {
        key(Key1; Id)
        {
            Clustered = true;
        }
    }
}