stable · event · 0.2.0
Configuration version published
A new immutable Feature Flag and Configuration version is available for a Project Client.
Capability Domain: feature-flags-configuration
Reference identifier: configuration-version-published
Schema ID: https://minicenter.otus.tw/events/configuration.version.published.v1.schema.json
Delivery: Delivered as a Domain Event at least once. Treat it as cache invalidation only, deduplicate by envelope id, then fetch the authoritative configuration API.
Event schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://minicenter.otus.tw/events/configuration.version.published.v1.schema.json",
"title": "Configuration version published",
"description": "A new immutable Feature Flag and Configuration version is available for a Project Client.",
"type": "object",
"additionalProperties": false,
"required": [
"configuration_id",
"version",
"published_at"
],
"properties": {
"configuration_id": {
"type": "string",
"format": "uuid"
},
"version": {
"type": "integer",
"minimum": 1
},
"published_at": {
"type": "string",
"format": "date-time"
}
},
"x-documentation": true,
"x-reference-id": "configuration-version-published",
"x-domain": "feature-flags-configuration",
"x-stability": "stable",
"x-delivery": "Delivered as a Domain Event at least once. Treat it as cache invalidation only, deduplicate by envelope id, then fetch the authoritative configuration API.",
"example": {
"configuration_id": "8a000000-0000-4000-8000-000000000001",
"version": 7,
"published_at": "2026-08-01T01:00:00Z"
}
}
Example
{
"configuration_id": "8a000000-0000-4000-8000-000000000001",
"version": 7,
"published_at": "2026-08-01T01:00:00Z"
}