{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/UserConfiguration", "title": "UserConfiguration", "description": "Properties of an event.", "type": "object", "properties": { "event_id": { "type": "string" }, "event_title": { "type": "string" }, "event_description": { "type": "string" }, "event_namespace": { "$ref": "#/components/schemas/NotificationNamespace" }, "event_subscription_count": { "type": "integer", "default": 0 }, "default_subscription": { "type": "array", "items": { "$ref": "#/components/schemas/DefaultSubscription" } } }, "required": [ "event_id", "event_title", "event_description", "event_namespace", "event_subscription_count", "default_subscription" ] }