KeyValue schema from Apache OpenWhisk
{ "$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" } } }