Fires right after the <div class="jfaq--question"> closing <div> tag and before the <div class="jfaq-- answer "> tag.
Usage example:
add_action( 'joli_faq_seo_after_question', function ($faq){
//$faq is an Array containing a single FAQ data.
echo '<p>FAQ ID is: ' . $faq['ID'] . '</p>';
});