This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "$schema": "https://json-schema.org/draft/2019-09/schema", | |
| "$id": "http://example.com/example.json", | |
| "type": "object", | |
| "default": {}, | |
| "description": "Records when a user unsubscribes from a message. Used for tracking unsubscribes, user engagement, and analyzing campaign performance.", | |
| "title": "Message Unsubscribe Event", | |
| "required": [ | |
| "specversion", | |
| "type", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [color] | |
| branch = auto | |
| diff = auto | |
| status = auto | |
| [color "branch"] | |
| current = yellow reverse | |
| local = yellow | |
| remote = green | |
| [color "diff"] | |
| meta = yellow bold |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 1f3f5b7af97dfdf466ad0f31074aeb7b4cd4384fad82fad8884f00c6dde7c051 | |
| 8743185cc80273849310dd4be0467dd5be8cf8ecf74ebd92ef150a4ce7a65d91 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| class PurchaseApprover | |
| # Implements the chain of responsibility pattern. Does not know anything | |
| # about the approval process, merely whether the current handler can approve | |
| # the request, or must pass it to a successor. | |
| attr_reader :successor | |
| def initialize successor | |
| @successor = successor | |
| end |