Apache OpenWhisk · JSON Structure

Apache Openwhisk Namespace Limits Structure

NamespaceLimits schema from Apache OpenWhisk

Type: object Properties: 3
Cloud NativeEvent-DrivenFaaSServerlessApacheOpen SourceFunctions

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

Properties

concurrency minuteRate hourRate

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-namespace-limits-structure.json",
  "description": "NamespaceLimits schema from Apache OpenWhisk",
  "type": "object",
  "properties": {
    "concurrency": {
      "type": "int32",
      "description": "Maximum concurrent activations",
      "example": 1000
    },
    "minuteRate": {
      "type": "int32",
      "description": "Actions per minute limit",
      "example": 600
    },
    "hourRate": {
      "type": "int32",
      "description": "Actions per hour limit",
      "example": 36000
    }
  },
  "name": "NamespaceLimits"
}