Unisys · Schema

ActionResponse

Response from a Unisys Stealth EcoAPI action

Fortune 1000SecurityZero TrustNetwork SecurityIT ServicesCybersecurityEnterprise Technology

Properties

Name Type Description
status string Status of the action
message string Human-readable message describing the result
timestamp string Timestamp of when the action was executed
View JSON Schema on GitHub

JSON Schema

unisys-action-response-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/unisys/refs/heads/main/json-schema/unisys-action-response-schema.json",
  "title": "ActionResponse",
  "description": "Response from a Unisys Stealth EcoAPI action",
  "type": "object",
  "properties": {
    "status": {
      "type": "string",
      "description": "Status of the action",
      "enum": ["SUCCESS", "FAILURE", "PENDING"]
    },
    "message": {
      "type": "string",
      "description": "Human-readable message describing the result"
    },
    "timestamp": {
      "type": "string",
      "format": "date-time",
      "description": "Timestamp of when the action was executed"
    }
  }
}