EntityCollection

OData collection response containing entity definition 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 entity definition records.
View JSON Schema on GitHub

JSON Schema

microsoft-power-apps-entitycollection-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/EntityCollection",
  "title": "EntityCollection",
  "type": "object",
  "description": "OData collection response containing entity definition 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/Entity"
      },
      "description": "Array of entity definition records.",
      "example": []
    }
  }
}