{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ConsumePasswordlessCodeRequest", "title": "ConsumePasswordlessCodeRequest", "type": "object", "required": [ "preAuthSessionId" ], "properties": { "preAuthSessionId": { "type": "string" }, "userInputCode": { "type": "string", "description": "OTP entered by user" }, "deviceId": { "type": "string" }, "tenantId": { "type": "string" } } }