Productiv · Schema

ProvisioningWorkflow

Represents a provisioning workflow configured for an application in the Productiv platform.

Application PortfolioProvisioningSaaS ManagementSpend ManagementUsage Analytics

Properties

Name Type Description
workflowId string The unique identifier of the workflow.
workflowName string The name of the workflow.
applicationId string The application associated with the workflow.
status string The status of the workflow.
View JSON Schema on GitHub

JSON Schema

provisioning-workflow.json Raw ↑
{
  "$id": "provisioning-workflow.json",
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "ProvisioningWorkflow",
  "description": "Represents a provisioning workflow configured for an application in the Productiv platform.",
  "type": "object",
  "properties": {
    "workflowId": {
      "type": "string",
      "description": "The unique identifier of the workflow."
    },
    "workflowName": {
      "type": "string",
      "description": "The name of the workflow."
    },
    "applicationId": {
      "type": "string",
      "description": "The application associated with the workflow."
    },
    "status": {
      "type": "string",
      "description": "The status of the workflow."
    }
  }
}