{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/BulkActivationEmailResendJobCounts", "title": "BulkActivationEmailResendJobCounts", "type": "object", "required": [ "userResendInviteSent", "userResendInviteFailed", "userResendInviteSkipped", "totalUsers" ], "properties": { "userResendInviteSent": { "type": "number", "description": "Count of users sent an invitation." }, "userResendInviteFailed": { "type": "number", "description": "Count of users who failed to receive an invitation." }, "userResendInviteSkipped": { "type": "number", "description": "Count of users who were skipped." }, "totalUsers": { "type": "number", "description": "Total count of users processed." } } }