EntityRef 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-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" } } } }