Microsoft Power Platform APIs · Schema
ApplicationPackage
An application package available for installation in a Power Platform environment.
Business ApplicationsCopilot StudioDataverseLow-CodeMicrosoftNo-CodePower PagesPower Platform
Properties
| Name | Type | Description |
|---|---|---|
| id | string | The unique identifier of the application package. |
| uniqueName | string | The unique name of the application package. |
| version | string | The version of the application package. |
| localizedDescription | stringnull | A localized description of the application package. |
| localizedName | stringnull | The localized display name of the application package. |
| applicationVisibility | string | The visibility of the application. |
| state | string | The current installation state of the package. |
| lastError | objectnull | Details about the last error if installation failed. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/ApplicationPackage",
"title": "ApplicationPackage",
"type": "object",
"description": "An application package available for installation in a Power Platform environment.",
"properties": {
"id": {
"type": "string",
"format": "uuid",
"description": "The unique identifier of the application package.",
"example": "abc123"
},
"uniqueName": {
"type": "string",
"description": "The unique name of the application package.",
"example": "example_value"
},
"version": {
"type": "string",
"description": "The version of the application package.",
"example": "example_value"
},
"localizedDescription": {
"type": [
"string",
"null"
],
"description": "A localized description of the application package.",
"example": "example_value"
},
"localizedName": {
"type": [
"string",
"null"
],
"description": "The localized display name of the application package.",
"example": "example_value"
},
"applicationVisibility": {
"type": "string",
"description": "The visibility of the application.",
"enum": [
"All",
"None"
],
"example": "All"
},
"state": {
"type": "string",
"description": "The current installation state of the package.",
"enum": [
"Installed",
"NotInstalled",
"InstallFailed"
],
"example": "Installed"
},
"lastError": {
"type": [
"object",
"null"
],
"description": "Details about the last error if installation failed.",
"properties": {
"code": {
"type": "string"
},
"message": {
"type": "string"
}
},
"example": "example_value"
}
}
}