Microsoft Exchange · Schema

ContactFolder

A folder that contains contacts

CalendarCollaborationContactsEmailEnterprise

Properties

Name Type Description
id string The contact folder's unique identifier
displayName string The folder's display name
parentFolderId string The ID of the folder's parent folder
View JSON Schema on GitHub

JSON Schema

microsoft-exchange-contactfolder-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ContactFolder",
  "title": "ContactFolder",
  "type": "object",
  "description": "A folder that contains contacts",
  "properties": {
    "id": {
      "type": "string",
      "readOnly": true,
      "description": "The contact folder's unique identifier"
    },
    "displayName": {
      "type": "string",
      "description": "The folder's display name"
    },
    "parentFolderId": {
      "type": "string",
      "readOnly": true,
      "description": "The ID of the folder's parent folder"
    }
  }
}