{ "$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" ] }