Microsoft Exchange · Schema

ContactDeltaResponse

Delta response for contacts

CalendarCollaborationContactsEmailEnterprise

Properties

Name Type Description
@odata.context string
@odata.nextLink string
@odata.deltaLink string URL to get the next set of changes
value array
View JSON Schema on GitHub

JSON Schema

microsoft-exchange-contactdeltaresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ContactDeltaResponse",
  "title": "ContactDeltaResponse",
  "type": "object",
  "description": "Delta response for contacts",
  "properties": {
    "@odata.context": {
      "type": "string"
    },
    "@odata.nextLink": {
      "type": "string",
      "format": "uri"
    },
    "@odata.deltaLink": {
      "type": "string",
      "format": "uri",
      "description": "URL to get the next set of changes"
    },
    "value": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Contact"
      }
    }
  }
}