Microsoft SharePoint · JSON Structure

Sharepoint List Create Request Structure

Request to create a new SharePoint list.

Type: object Properties: 6 Required: 2
CollaborationDocument ManagementEnterprise Content ManagementIntranetMicrosoft

ListCreateRequest is a JSON Structure definition published by Microsoft SharePoint, describing 6 properties, of which 2 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

__metadata Title Description BaseTemplate AllowContentTypes ContentTypesEnabled

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-create-request-structure.json",
  "name": "ListCreateRequest",
  "description": "Request to create a new SharePoint list.",
  "type": "object",
  "properties": {
    "__metadata": {
      "type": "object",
      "properties": {
        "type": {
          "type": "string",
          "example": "SP.List"
        }
      }
    },
    "Title": {
      "type": "string",
      "example": "My New List"
    },
    "Description": {
      "type": "string",
      "example": "A custom list"
    },
    "BaseTemplate": {
      "type": "int32",
      "example": 100,
      "description": "100=Generic List, 101=Document Library, 104=Announcements"
    },
    "AllowContentTypes": {
      "type": "boolean",
      "example": true
    },
    "ContentTypesEnabled": {
      "type": "boolean",
      "example": true
    }
  },
  "required": [
    "Title",
    "BaseTemplate"
  ]
}