Microsoft SharePoint · JSON Structure

Sharepoint List Structure

SharePoint list or document library.

Type: object Properties: 9
CollaborationDocument ManagementEnterprise Content ManagementIntranetMicrosoft

List is a JSON Structure definition published by Microsoft SharePoint, describing 9 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

Id Title Description BaseTemplate ItemCount Created LastItemModifiedDate Hidden EnableVersioning

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/sharepoint/refs/heads/main/json-structure/sharepoint-list-structure.json",
  "name": "List",
  "description": "SharePoint list or document library.",
  "type": "object",
  "properties": {
    "Id": {
      "type": "string",
      "example": "3fa85f64-5717-4562-b3fc-2c963f66afa6"
    },
    "Title": {
      "type": "string",
      "example": "Documents"
    },
    "Description": {
      "type": "string",
      "example": "Shared documents library"
    },
    "BaseTemplate": {
      "type": "int32",
      "example": 101
    },
    "ItemCount": {
      "type": "int32",
      "example": 42
    },
    "Created": {
      "type": "datetime",
      "example": "2024-01-15T12:00:00Z"
    },
    "LastItemModifiedDate": {
      "type": "datetime"
    },
    "Hidden": {
      "type": "boolean",
      "example": false
    },
    "EnableVersioning": {
      "type": "boolean",
      "example": true
    }
  }
}