ListItemCreateRequest

ListItemCreateRequest from SharePoint API

CollaborationDocument ManagementEnterprise Content ManagementIntranetMicrosoft

Properties

Name Type Description
__metadata object
Title string
View JSON Schema on GitHub

JSON Schema

sharepoint-list-item-create-request-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/sharepoint/refs/heads/main/json-schema/sharepoint-list-item-create-request-schema.json",
  "title": "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"
    }
  }
}