UserCollectionResponse

CloudCollaborationEnterpriseMicrosoftProductivity

Properties

Name Type Description
@odata.context string The OData context URL for the collection.
@odata.count integer The total count of items in the collection (if requested).
@odata.nextLink string The URL to retrieve the next page of results.
value array
View JSON Schema on GitHub

JSON Schema

microsoft-graph-user-collection-response-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "UserCollectionResponse",
  "type": "object",
  "properties": {
    "@odata.context": {
      "type": "string",
      "description": "The OData context URL for the collection."
    },
    "@odata.count": {
      "type": "integer",
      "description": "The total count of items in the collection (if requested)."
    },
    "@odata.nextLink": {
      "type": "string",
      "description": "The URL to retrieve the next page of results."
    },
    "value": {
      "type": "array"
    }
  }
}