{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ActionBindingWithRef", "title": "ActionBindingWithRef", "type": "object", "additionalProperties": false, "required": [ "ref" ], "properties": { "ref": { "$ref": "#/components/schemas/ActionBindingRef" }, "display_name": { "type": "string", "description": "The name of the binding.", "default": "my-action-1" }, "secrets": { "type": "array", "description": "The list of secrets that are included in an action or a version of an action.", "items": { "$ref": "#/components/schemas/ActionSecretRequest" } } } }