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 | ['string', 'null'] | A localized description of the application package. |
| localizedName | ['string', 'null'] | 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 | ['object', 'null'] | Details about the last error if installation failed. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "ApplicationPackage",
"type": "object",
"description": "An application package available for installation in a Power Platform environment.",
"properties": {
"id": {
"type": "string",
"description": "The unique identifier of the application package."
},
"uniqueName": {
"type": "string",
"description": "The unique name of the application package."
},
"version": {
"type": "string",
"description": "The version of the application package."
},
"localizedDescription": {
"type": "['string', 'null']",
"description": "A localized description of the application package."
},
"localizedName": {
"type": "['string', 'null']",
"description": "The localized display name of the application package."
},
"applicationVisibility": {
"type": "string",
"description": "The visibility of the application."
},
"state": {
"type": "string",
"description": "The current installation state of the package."
},
"lastError": {
"type": "['object', 'null']",
"description": "Details about the last error if installation failed."
}
}
}