{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ActionBindingRef", "title": "ActionBindingRef", "type": "object", "description": "A reference to an action. An action can be referred to by ID or by Name.", "additionalProperties": true, "properties": { "type": { "$ref": "#/components/schemas/ActionBindingRefTypeEnum" }, "value": { "type": "string", "description": "The id or name of an action that is being bound to a trigger.", "default": "my-action" } } }