Microsoft Entra · Schema

UserCollectionResponse

Paged collection of user objects

Access ManagementAuthenticationAzure ADEntraIdentityIdentity GovernanceMicrosoftNetwork SecuritySecurityZero Trust

Properties

Name Type Description
@odata.context string OData context URL
@odata.count integer Total count of matching resources (if $count=true)
@odata.nextLink string URL to retrieve the next page of results
value array
View JSON Schema on GitHub

JSON Schema

microsoft-entra-graph-identity-user-collection-response-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "UserCollectionResponse",
  "type": "object",
  "description": "Paged collection of user objects",
  "properties": {
    "@odata.context": {
      "type": "string",
      "description": "OData context URL"
    },
    "@odata.count": {
      "type": "integer",
      "description": "Total count of matching resources (if $count=true)"
    },
    "@odata.nextLink": {
      "type": "string",
      "description": "URL to retrieve the next page of results"
    },
    "value": {
      "type": "array"
    }
  }
}