Apache OpenWhisk · Schema
Rule
Rule schema from Apache OpenWhisk
Cloud NativeEvent-DrivenFaaSServerlessApacheOpen SourceFunctions
Properties
| Name | Type | Description |
|---|---|---|
| namespace | string | |
| name | string | |
| version | string | |
| status | string | |
| trigger | string | Fully qualified trigger name |
| action | string | Fully qualified action name |
| updated | integer |
JSON Schema
{
"$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-rule-schema.json",
"title": "Rule",
"description": "Rule schema from Apache OpenWhisk",
"type": "object",
"properties": {
"namespace": {
"type": "string",
"example": "guest"
},
"name": {
"type": "string",
"example": "myRule"
},
"version": {
"type": "string",
"example": "0.0.1"
},
"status": {
"type": "string",
"enum": [
"active",
"inactive"
],
"example": "active"
},
"trigger": {
"type": "string",
"description": "Fully qualified trigger name",
"example": "/guest/myTrigger"
},
"action": {
"type": "string",
"description": "Fully qualified action name",
"example": "/guest/hello"
},
"updated": {
"type": "integer",
"example": 1718153645993
}
}
}