Apache OpenWhisk · Schema

ActionRequest

ActionRequest schema from Apache OpenWhisk

Cloud NativeEvent-DrivenFaaSServerlessApacheOpen SourceFunctions

Properties

Name Type Description
exec object
annotations array
parameters array
limits object
View JSON Schema on GitHub

JSON Schema

apache-openwhisk-action-request-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-action-request-schema.json",
  "title": "ActionRequest",
  "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"
  ]
}