Microsoft SharePoint · Schema
List
SharePoint list or document library.
CollaborationDocument ManagementEnterprise Content ManagementIntranetMicrosoft
Properties
| Name | Type | Description |
|---|---|---|
| Id | string | |
| Title | string | |
| Description | string | |
| BaseTemplate | integer | |
| ItemCount | integer | |
| Created | string | |
| LastItemModifiedDate | string | |
| Hidden | boolean | |
| EnableVersioning | boolean |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/sharepoint/refs/heads/main/json-schema/sharepoint-list-schema.json",
"title": "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": "integer",
"example": 101
},
"ItemCount": {
"type": "integer",
"example": 42
},
"Created": {
"type": "string",
"format": "date-time",
"example": "2024-01-15T12:00:00Z"
},
"LastItemModifiedDate": {
"type": "string",
"format": "date-time"
},
"Hidden": {
"type": "boolean",
"example": false
},
"EnableVersioning": {
"type": "boolean",
"example": true
}
}
}