Apache OpenWhisk · JSON Structure

Apache Openwhisk Activation Response Structure

ActivationResponse schema from Apache OpenWhisk

Type: object Properties: 4
Cloud NativeEvent-DrivenFaaSServerlessApacheOpen SourceFunctions

ActivationResponse is a JSON Structure definition published by Apache OpenWhisk, describing 4 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

status statusCode success result

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/apache-openwhisk/refs/heads/main/json-structure/apache-openwhisk-activation-response-structure.json",
  "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": "int32",
      "description": "HTTP status code equivalent",
      "example": 0
    },
    "success": {
      "type": "boolean",
      "example": true
    },
    "result": {
      "type": "object",
      "description": "Action result payload"
    }
  },
  "name": "ActivationResponse"
}