Apache OpenWhisk · JSON Structure

Apache Openwhisk Action Request Structure

ActionRequest schema from Apache OpenWhisk

Type: object Properties: 4 Required: 1
Cloud NativeEvent-DrivenFaaSServerlessApacheOpen SourceFunctions

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

Properties

exec annotations parameters limits

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-action-request-structure.json",
  "description": "ActionRequest schema from Apache OpenWhisk",
  "type": "object",
  "properties": {
    "exec": {
      "$ref": "#/components/schemas/ActionExec"
    },
    "annotations": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/KeyValue"
      }
    },
    "parameters": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/KeyValue"
      }
    },
    "limits": {
      "$ref": "#/components/schemas/ActionLimits"
    }
  },
  "required": [
    "exec"
  ],
  "name": "ActionRequest"
}