Microsoft Graph · Schema
microsoft.graph.contactFolder
Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/microsoft.graph.contactFolder",
"title": "microsoft.graph.contactFolder",
"allOf": [
{
"$ref": "#/components/schemas/microsoft.graph.entity"
},
{
"title": "contactFolder",
"required": [
"@odata.type"
],
"type": "object",
"properties": {
"displayName": {
"type": "string",
"description": "The folder's display name.",
"nullable": true
},
"parentFolderId": {
"type": "string",
"description": "The ID of the folder's parent folder.",
"nullable": true
},
"childFolders": {
"type": "array",
"items": {
"$ref": "#/components/schemas/microsoft.graph.contactFolder"
},
"description": "The collection of child folders in the folder. Navigation property. Read-only. Nullable.",
"x-ms-navigationProperty": true
},
"contacts": {
"type": "array",
"items": {
"$ref": "#/components/schemas/microsoft.graph.contact"
},
"description": "The contacts in the folder. Navigation property. Read-only. Nullable.",
"x-ms-navigationProperty": true
},
"multiValueExtendedProperties": {
"type": "array",
"items": {
"$ref": "#/components/schemas/microsoft.graph.multiValueLegacyExtendedProperty"
},
"description": "The collection of multi-value extended properties defined for the contactFolder. Read-only. Nullable.",
"x-ms-navigationProperty": true
},
"singleValueExtendedProperties": {
"type": "array",
"items": {
"$ref": "#/components/schemas/microsoft.graph.singleValueLegacyExtendedProperty"
},
"description": "The collection of single-value extended properties defined for the contactFolder. Read-only. Nullable.",
"x-ms-navigationProperty": true
},
"@odata.type": {
"type": "string"
}
}
}
],
"x-ms-discriminator-value": "#microsoft.graph.contactFolder"
}