Apache OpenWhisk · Schema

PackageRequest

PackageRequest schema from Apache OpenWhisk

Cloud NativeEvent-DrivenFaaSServerlessApacheOpen SourceFunctions

Properties

Name Type Description
annotations array
parameters array
View JSON Schema on GitHub

JSON Schema

apache-openwhisk-package-request-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-package-request-schema.json",
  "title": "PackageRequest",
  "description": "PackageRequest schema from Apache OpenWhisk",
  "type": "object",
  "properties": {
    "annotations": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/KeyValue"
      }
    },
    "parameters": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/KeyValue"
      }
    }
  }
}