Apache OpenWhisk · Schema

EntityRef

EntityRef schema from Apache OpenWhisk

Cloud NativeEvent-DrivenFaaSServerlessApacheOpen SourceFunctions

Properties

Name Type Description
name string Entity name
annotations array
View JSON Schema on GitHub

JSON Schema

apache-openwhisk-entity-ref-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-entity-ref-schema.json",
  "title": "EntityRef",
  "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"
      }
    }
  }
}