SailPoint · Schema

TaskResultSimplified

A simplified task result for asynchronous operations.

Access GovernanceComplianceIAMIdentity ManagementIdentity SecuritySecurity

Properties

Name Type Description
id string The task ID.
type string The type of task.
name stringnull The task name.
View JSON Schema on GitHub

JSON Schema

sailpoint-taskresultsimplified-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/TaskResultSimplified",
  "title": "TaskResultSimplified",
  "type": "object",
  "description": "A simplified task result for asynchronous operations.",
  "properties": {
    "id": {
      "type": "string",
      "description": "The task ID.",
      "examples": [
        "464ae7bf-791e-49fd-b746-06a2e4a89635"
      ]
    },
    "type": {
      "type": "string",
      "description": "The type of task.",
      "examples": [
        "TASK_RESULT"
      ]
    },
    "name": {
      "type": [
        "string",
        "null"
      ],
      "description": "The task name."
    }
  }
}