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