specification
specification copied to clipboard
Added a new `until` property to `any` event consumption strategies
Please specify parts of this PR update:
- [x] Specification
- [x] Schema
- [x] Examples
- [ ] Extensions
- [ ] Use Cases
- [ ] Community
- [ ] CTK
- [ ] Other
Discussion or Issue link:
Closes #992
What this PR does:
Added a new until property to any event consumption strategies
Additional information:
We need to find a smart way to forbid an until event consumption strategy to itself define the until property.
@matthias-pichler Any suggestion on how to achieve the following in a brief, concise fashion?
We need to find a smart way to forbid an
untilevent consumption strategy to itself define theuntilproperty.
@matthias-pichler Any suggestion on how to achieve the following in a brief, concise fashion?
We need to find a smart way to forbid an
untilevent consumption strategy to itself define theuntilproperty.
Hmm we could do it with allOf
until:
oneOf:
- type: string
- allOf:
- $ref: #/$defs/eventConsumptionStrategy
- type: object
properties:
until: false
This pull request has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.