Apache OpenWhisk · Schema

ActivationResponse

ActivationResponse schema from Apache OpenWhisk

Cloud-NativeEvent-DrivenFunction-as-a-ServiceServerlessApacheOpen-SourceFunctions

Properties

Name Type Description
status string Activation status
statusCode integer HTTP status code equivalent
success boolean
result object Action result payload
View JSON Schema on GitHub

JSON Schema

apache-openwhisk-activation-response-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/apache-openwhisk/refs/heads/main/json-schema/apache-openwhisk-activation-response-schema.json",
  "title": "ActivationResponse",
  "description": "ActivationResponse schema from Apache OpenWhisk",
  "type": "object",
  "properties": {
    "status": {
      "type": "string",
      "description": "Activation status",
      "example": "success",
      "enum": [
        "success",
        "application error",
        "developer error",
        "whisk internal error"
      ]
    },
    "statusCode": {
      "type": "integer",
      "description": "HTTP status code equivalent",
      "example": 0
    },
    "success": {
      "type": "boolean",
      "example": true
    },
    "result": {
      "type": "object",
      "description": "Action result payload"
    }
  }
}