QueueExpiry

Expiry configuration for work items in the queue

Properties

Name Type Description
type string Expiry type (e.g., DURATION, DATE)
duration integer Duration value before work items expire
durationUnit string Time unit for the duration (e.g., HOURS, DAYS)
View JSON Schema on GitHub

JSON Schema

automation-anywhere-queueexpiry-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/QueueExpiry",
  "title": "QueueExpiry",
  "type": "object",
  "description": "Expiry configuration for work items in the queue",
  "properties": {
    "type": {
      "type": "string",
      "description": "Expiry type (e.g., DURATION, DATE)"
    },
    "duration": {
      "type": "integer",
      "description": "Duration value before work items expire"
    },
    "durationUnit": {
      "type": "string",
      "description": "Time unit for the duration (e.g., HOURS, DAYS)"
    }
  }
}