Apache OpenWhisk · Schema

ActionLimits

ActionLimits schema from Apache OpenWhisk

Cloud NativeEvent-DrivenFaaSServerlessApacheOpen SourceFunctions

Properties

Name Type Description
timeout integer Timeout in milliseconds
memory integer Memory in MB
logs integer Log size limit in MB
View JSON Schema on GitHub

JSON Schema

apache-openwhisk-action-limits-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-limits-schema.json",
  "title": "ActionLimits",
  "description": "ActionLimits schema from Apache OpenWhisk",
  "type": "object",
  "properties": {
    "timeout": {
      "type": "integer",
      "description": "Timeout in milliseconds",
      "example": 60000
    },
    "memory": {
      "type": "integer",
      "description": "Memory in MB",
      "example": 256
    },
    "logs": {
      "type": "integer",
      "description": "Log size limit in MB",
      "example": 10
    }
  }
}