Microsoft SharePoint · JSON Structure

Sharepoint User Profile Structure

SharePoint user profile.

Type: object Properties: 7
CollaborationDocument ManagementEnterprise Content ManagementIntranetMicrosoft

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

Properties

AccountName DisplayName Email Title Department PictureUrl PersonalUrl

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-user-profile-structure.json",
  "name": "UserProfile",
  "description": "SharePoint user profile.",
  "type": "object",
  "properties": {
    "AccountName": {
      "type": "string",
      "example": "i:0#.f|membership|user@contoso.com"
    },
    "DisplayName": {
      "type": "string",
      "example": "Jane Smith"
    },
    "Email": {
      "type": "string",
      "example": "jane.smith@contoso.com"
    },
    "Title": {
      "type": "string",
      "example": "Senior Developer"
    },
    "Department": {
      "type": "string",
      "example": "Engineering"
    },
    "PictureUrl": {
      "type": "string",
      "example": "https://contoso.sharepoint.com/_layouts/15/userphoto.aspx?size=L&accountname=user@contoso.com"
    },
    "PersonalUrl": {
      "type": "string",
      "example": "https://contoso-my.sharepoint.com/personal/user_contoso_com/"
    }
  }
}