Apache OpenWhisk · Schema

NamespaceLimits

NamespaceLimits schema from Apache OpenWhisk

Cloud NativeEvent-DrivenFaaSServerlessApacheOpen SourceFunctions

Properties

Name Type Description
concurrency integer Maximum concurrent activations
minuteRate integer Actions per minute limit
hourRate integer Actions per hour limit
View JSON Schema on GitHub

JSON Schema

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