Apache OpenWhisk · Schema

ActivationSummary

ActivationSummary schema from Apache OpenWhisk

Cloud NativeEvent-DrivenFaaSServerlessApacheOpen SourceFunctions

Properties

Name Type Description
activationId string
name string
version string
start integer
end integer
View JSON Schema on GitHub

JSON Schema

apache-openwhisk-activation-summary-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-summary-schema.json",
  "title": "ActivationSummary",
  "description": "ActivationSummary schema from Apache OpenWhisk",
  "type": "object",
  "properties": {
    "activationId": {
      "type": "string",
      "example": "44794bd6aab74415b4e42a308d880727"
    },
    "name": {
      "type": "string",
      "example": "hello"
    },
    "version": {
      "type": "string",
      "example": "0.0.1"
    },
    "start": {
      "type": "integer",
      "example": 1718153645993
    },
    "end": {
      "type": "integer",
      "example": 1718153646050
    }
  }
}