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-usercollectionresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/UserCollectionResponse",
  "title": "UserCollectionResponse",
  "type": "object",
  "description": "Paged collection of user objects",
  "properties": {
    "@odata.context": {
      "type": "string",
      "description": "OData context URL",
      "example": "example_value"
    },
    "@odata.count": {
      "type": "integer",
      "description": "Total count of matching resources (if $count=true)",
      "example": 10
    },
    "@odata.nextLink": {
      "type": "string",
      "format": "uri",
      "description": "URL to retrieve the next page of results",
      "example": "https://www.example.com"
    },
    "value": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/User"
      },
      "example": []
    }
  }
}