Apache OpenWhisk · Schema

KeyValue

KeyValue schema from Apache OpenWhisk

Cloud NativeEvent-DrivenFaaSServerlessApacheOpen SourceFunctions

Properties

Name Type Description
key string Parameter key
value object Parameter value
View JSON Schema on GitHub

JSON Schema

apache-openwhisk-key-value-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-key-value-schema.json",
  "title": "KeyValue",
  "description": "KeyValue schema from Apache OpenWhisk",
  "type": "object",
  "properties": {
    "key": {
      "type": "string",
      "description": "Parameter key",
      "example": "name"
    },
    "value": {
      "description": "Parameter value",
      "example": "World"
    }
  }
}