ListItem

SharePoint list item.

CollaborationDocument ManagementEnterprise Content ManagementIntranetMicrosoft

Properties

Name Type Description
Id integer
Title string
Created string
Modified string
AuthorId integer
EditorId integer
View JSON Schema on GitHub

JSON Schema

sharepoint-list-item-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-schema.json",
  "title": "ListItem",
  "description": "SharePoint list item.",
  "type": "object",
  "properties": {
    "Id": {
      "type": "integer",
      "example": 1
    },
    "Title": {
      "type": "string",
      "example": "My Task"
    },
    "Created": {
      "type": "string",
      "format": "date-time",
      "example": "2026-04-17T09:00:00Z"
    },
    "Modified": {
      "type": "string",
      "format": "date-time",
      "example": "2026-04-17T10:30:00Z"
    },
    "AuthorId": {
      "type": "integer",
      "example": 7
    },
    "EditorId": {
      "type": "integer",
      "example": 7
    }
  }
}