Microsoft SharePoint · JSON Structure

Sharepoint List Item Create Request Structure

ListItemCreateRequest from SharePoint API

Type: object Properties: 2
CollaborationDocument ManagementEnterprise Content ManagementIntranetMicrosoft

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

Properties

__metadata Title

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-item-create-request-structure.json",
  "name": "ListItemCreateRequest",
  "description": "ListItemCreateRequest from SharePoint API",
  "type": "object",
  "properties": {
    "__metadata": {
      "type": "object",
      "properties": {
        "type": {
          "type": "string",
          "example": "SP.Data.MyListListItem"
        }
      }
    },
    "Title": {
      "type": "string",
      "example": "New Item"
    }
  }
}