{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/GenerateOtp", "title": "GenerateOtp", "type": "object", "required": [ "oneTimePassword", "expiresIn" ], "properties": { "oneTimePassword": { "type": "string", "example": "283489", "description": "The One-Time Password generated for the user." }, "expiresIn": { "type": "number", "example": 604800, "description": "The expiration time for the OTP in seconds (default: 7 days)." } } }