Workday Extend · Schema
AppVersion
AutomationCustom ApplicationsEnterpriseExtensionsHCMHuman Capital ManagementIntegrationOrchestrationPaaS
Properties
| Name | Type | Description |
|---|---|---|
| id | string | Unique identifier for the application version |
| versionNumber | string | Semantic version number of the application |
| status | string | Current status of this version |
| changelog | string | Description of changes in this version |
| createdOn | string | Timestamp when the version was created |
| publishedOn | string | Timestamp when the version was published |
| href | string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/AppVersion",
"title": "AppVersion",
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "Unique identifier for the application version"
},
"versionNumber": {
"type": "string",
"description": "Semantic version number of the application"
},
"status": {
"type": "string",
"enum": [
"draft",
"published",
"deprecated"
],
"description": "Current status of this version"
},
"changelog": {
"type": "string",
"description": "Description of changes in this version"
},
"createdOn": {
"type": "string",
"format": "date-time",
"description": "Timestamp when the version was created"
},
"publishedOn": {
"type": "string",
"format": "date-time",
"description": "Timestamp when the version was published"
},
"href": {
"type": "string",
"format": "uri"
}
}
}