AccountCollection

OData collection response containing account records.

Business ApplicationsCloudEnterpriseLow-CodeMicrosoftNo-CodePower PlatformSaaS

Properties

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

JSON Schema

microsoft-power-apps-accountcollection-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/AccountCollection",
  "title": "AccountCollection",
  "type": "object",
  "description": "OData collection response containing account records.",
  "properties": {
    "@odata.context": {
      "type": "string",
      "format": "uri",
      "description": "OData context URL describing the collection.",
      "example": "https://www.example.com"
    },
    "@odata.count": {
      "type": "integer",
      "description": "Total count of matching records (when $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/Account"
      },
      "description": "Array of account records.",
      "example": []
    }
  }
}