Apache OpenWhisk · JSON Structure

Apache Openwhisk Activation Structure

Activation schema from Apache OpenWhisk

Type: object Properties: 11
Cloud NativeEvent-DrivenFaaSServerlessApacheOpen SourceFunctions

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

Properties

activationId namespace name version subject start end duration response logs annotations

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-structure.json",
  "description": "Activation schema from Apache OpenWhisk",
  "type": "object",
  "properties": {
    "activationId": {
      "type": "string",
      "description": "Unique activation identifier",
      "example": "44794bd6aab74415b4e42a308d880727"
    },
    "namespace": {
      "type": "string",
      "example": "guest"
    },
    "name": {
      "type": "string",
      "description": "Name of invoked action/trigger",
      "example": "hello"
    },
    "version": {
      "type": "string",
      "example": "0.0.1"
    },
    "subject": {
      "type": "string",
      "description": "Subject who invoked the action",
      "example": "guest"
    },
    "start": {
      "type": "int32",
      "description": "Start time epoch ms",
      "example": 1718153645993
    },
    "end": {
      "type": "int32",
      "description": "End time epoch ms",
      "example": 1718153646050
    },
    "duration": {
      "type": "int32",
      "description": "Duration in milliseconds",
      "example": 57
    },
    "response": {
      "$ref": "#/components/schemas/ActivationResponse"
    },
    "logs": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": "Activation log output"
    },
    "annotations": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/KeyValue"
      }
    }
  },
  "name": "Activation"
}