const schema = parseElicitationSchema(request.requestedSchema);
if (!schema || schema.fields.length === 0) {
}
const questions = schema.fields.map(([name, field]) => elicitationFieldToQuestion(name, field, schema.required.has(name)));
return { id: requestId, message: request.message, questions };