Ariba Sourcing · JSON Structure

External Approval Api Approval Task Structure

Details about an external approval task.

Type: object Properties: 5
ApprovalsAuctionsB2BContractsProcurementRFxSAPSourcingSupplier ManagementSupply Chain

ApprovalTask is a JSON Structure definition published by Ariba Sourcing, describing 5 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

taskId documentType documentId status approvalRequests

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/ariba-sourcing/refs/heads/main/json-structure/external-approval-api-approval-task-structure.json",
  "name": "ApprovalTask",
  "description": "Details about an external approval task.",
  "type": "object",
  "properties": {
    "taskId": {
      "type": "string",
      "description": "Task identifier.",
      "example": "TASK-500123"
    },
    "documentType": {
      "type": "string",
      "description": "Type of document being approved.",
      "example": "RFXDocument"
    },
    "documentId": {
      "type": "string",
      "description": "Document identifier.",
      "example": "DOC-001234"
    },
    "status": {
      "type": "string",
      "description": "Task status.",
      "example": "pending"
    },
    "approvalRequests": {
      "type": "array",
      "description": "Approval request entries with approver details.",
      "items": {
        "$ref": "#/components/schemas/ApprovalRequest"
      }
    }
  }
}