Workday Extend · Schema

AppDeployment

AutomationCustom ApplicationsEnterpriseExtensionsHCMHuman Capital ManagementIntegrationOrchestrationPaaS

Properties

Name Type Description
id string Unique identifier for the deployment
app object
version object
status string Current status of the deployment
environment string Target deployment environment
deployedOn string Timestamp when the deployment completed
deployedBy object
href string
View JSON Schema on GitHub

JSON Schema

workday-extend-appdeployment-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/AppDeployment",
  "title": "AppDeployment",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "Unique identifier for the deployment"
    },
    "app": {
      "$ref": "#/components/schemas/ResourceReference"
    },
    "version": {
      "$ref": "#/components/schemas/ResourceReference"
    },
    "status": {
      "type": "string",
      "enum": [
        "pending",
        "in_progress",
        "deployed",
        "failed",
        "rolled_back"
      ],
      "description": "Current status of the deployment"
    },
    "environment": {
      "type": "string",
      "enum": [
        "sandbox",
        "production"
      ],
      "description": "Target deployment environment"
    },
    "deployedOn": {
      "type": "string",
      "format": "date-time",
      "description": "Timestamp when the deployment completed"
    },
    "deployedBy": {
      "$ref": "#/components/schemas/ResourceReference"
    },
    "href": {
      "type": "string",
      "format": "uri"
    }
  }
}