{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/NotificationSubscription", "title": "NotificationSubscription", "type": "object", "properties": { "id": { "type": "string", "example": "abc123" }, "objectName": { "type": "string", "example": "example_value" }, "filters": { "type": "array", "items": { "type": "string" }, "example": [] }, "created": { "type": "string", "format": "date-time", "example": "2026-01-15T10:30:00Z" } } }