Axway · Schema
platform.app.update
Published when an application is updated.
API ManagementEnterpriseIntegrationSecurity
Properties
| Name | Type | Description |
|---|---|---|
| app | object | The updated application |
| changes | object |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/platform.app.update",
"title": "platform.app.update",
"type": "object",
"description": "Published when an application is updated.",
"x-context": "app",
"allOf": [
{
"$ref": "#/components/schemas/EventDataOrg"
},
{
"$ref": "#/components/schemas/EventDataActor"
}
],
"properties": {
"app": {
"type": "object",
"description": "The updated application",
"properties": {
"guid": {
"$ref": "#/components/schemas/Application/properties/guid"
},
"name": {
"$ref": "#/components/schemas/Application/then/properties/name"
},
"platform": {
"$ref": "#/components/schemas/Application/properties/platform"
},
"provider_guid": {
"$ref": "#/components/schemas/Application/properties/provider_guid"
},
"source": {
"$ref": "#/components/schemas/Application/properties/source"
},
"type": {
"$ref": "#/components/schemas/Application/properties/type"
}
},
"example": {
"guid": {},
"name": {},
"platform": {},
"provider_guid": {},
"source": {},
"type": {}
}
},
"changes": {
"$ref": "#/components/schemas/EventDataChanges"
}
}
}