Apache OpenWhisk · JSON Structure

Apache Openwhisk Entity Ref Structure

EntityRef schema from Apache OpenWhisk

Type: object Properties: 2
Cloud NativeEvent-DrivenFaaSServerlessApacheOpen SourceFunctions

EntityRef is a JSON Structure definition published by Apache OpenWhisk, describing 2 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

name annotations

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/apache-openwhisk/refs/heads/main/json-structure/apache-openwhisk-entity-ref-structure.json",
  "description": "EntityRef schema from Apache OpenWhisk",
  "type": "object",
  "properties": {
    "name": {
      "type": "string",
      "description": "Entity name",
      "example": "hello"
    },
    "annotations": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/KeyValue"
      }
    }
  },
  "name": "EntityRef"
}