ApplicationPackageListResponse

Response containing a list of application packages.

Business ApplicationsCopilot StudioDataverseLow-CodeMicrosoftNo-CodePower PagesPower Platform

Properties

Name Type Description
value array Array of application package resources.
@odata.nextLink stringnull URL to retrieve the next page of results.
View JSON Schema on GitHub

JSON Schema

power-platform-applicationpackagelistresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ApplicationPackageListResponse",
  "title": "ApplicationPackageListResponse",
  "type": "object",
  "description": "Response containing a list of application packages.",
  "properties": {
    "value": {
      "type": "array",
      "description": "Array of application package resources.",
      "items": {
        "$ref": "#/components/schemas/ApplicationPackage"
      },
      "example": []
    },
    "@odata.nextLink": {
      "type": [
        "string",
        "null"
      ],
      "format": "uri",
      "description": "URL to retrieve the next page of results.",
      "example": "https://www.example.com"
    }
  }
}