 {"id":16455,"date":"2025-07-10T13:33:21","date_gmt":"2025-07-10T11:33:21","guid":{"rendered":"https:\/\/www.legalprod.com\/assignation-refere-jaf-urgence-time-limits-guide-currentyear\/"},"modified":"2026-06-30T16:52:00","modified_gmt":"2026-06-30T14:52:00","slug":"assignation-refere-jaf-urgence-time-limits-guide-currentyear","status":"publish","type":"post","link":"https:\/\/www.legalprod.com\/en\/assignation-refere-jaf-urgence-time-limits-guide-currentyear\/","title":{"rendered":"Emergency Summary Proceedings Summons Before the Family Court: Guide to Deadlines 2026"},"content":{"rendered":"<h1>Summon to a Family Court (JAF) Summary Proceedings Hearing: Emergency Procedure and Deadlines to Be Met<\/h1>\n        <div id=\"simu-zloop\">\n        <div class=\"simulator-wrapper\" id=\"simu-zloop\">\n<div class=\"simulator-header\">\n<h3>Time Limit Calculator &#8211; Summary Proceedings Before the Family Court (JAF)<\/h3>\n<p>Automatically calculate all key deadlines for your emergency procedure<\/p>\n<\/div>\n<div class=\"simulator-inputs\">\n<div class=\"input-group\">\n<label for=\"notification-date\">Date of service:<\/label>\n<input id=\"notification-date\" onchange=\"window.calculateDeadlines()\" type=\"date\"\/>\n<\/div>\n<div class=\"input-group\">\n<label>Type of proceeding:<\/label>\n<div class=\"radio-group\">\n<label class=\"radio-label\">\n<input checked=\"checked\" name=\"procedure-type\" onchange=\"window.calculateDeadlines()\" type=\"radio\" value=\"normal\"\/>\n<span>Standard Procedure (minimum 15 days)<\/span>\n<\/label>\n<label class=\"radio-label\">\n<input name=\"procedure-type\" onchange=\"window.calculateDeadlines()\" type=\"radio\" value=\"emergency\"\/>\n<span>Highest Priority (minimum 24 hours)<\/span>\n<\/label>\n<\/div>\n<\/div>\n<\/div>\n<div class=\"timeline-container\" id=\"timeline-container\" style=\"display: none;\">\n<h4>Deadline Schedule<\/h4>\n<div class=\"timeline-steps\" id=\"timeline-steps\"><\/div>\n<\/div>\n<div class=\"cost-estimate\" id=\"cost-estimate\" style=\"display: none;\">\n<h4>Cost Estimate<\/h4>\n<div class=\"cost-breakdown\">\n<div class=\"cost-item\">\n<span>Service by a bailiff:<\/span>\n<span class=\"cost-value\">\u20ac150\u2013\u20ac200<\/span>\n<\/div>\n<div class=\"cost-item\">\n<span>Court fees:<\/span>\n<span class=\"cost-value\">To be expected<\/span>\n<\/div>\n<div class=\"cost-item\">\n<span>Attorney&#8217;s fees:<\/span>\n<span class=\"cost-value\">Variable<\/span>\n<\/div>\n<div class=\"cost-note\">\n<strong>\ud83d\udca1 Legal aid:<\/strong> Full or partial coverage may be available depending on your income\n            <\/div>\n<\/div>\n<\/div>\n<\/div>\n<script type=\"text\/javascript\">\nwindow.calculateDeadlines = function() {\n    const notificationDate = document.getElementById('notification-date').value;\n    const procedureType = document.querySelector('input[name=\"procedure-type\"]:checked').value;\n    \n    if (!notificationDate) {\n        document.getElementById('timeline-container').style.display = 'none';\n        document.getElementById('cost-estimate').style.display = 'none';\n        return;\n    }\n    \n    const startDate = new Date(notificationDate);\n    const timelineSteps = document.getElementById('timeline-steps');\n    const timelineContainer = document.getElementById('timeline-container');\n    const costEstimate = document.getElementById('cost-estimate');\n    \n    \/\/ Calculate dates\n    const minDelayDays = procedureType === 'emergency' ? 1 : 15;\n    const hearingDate = new Date(startDate);\n    hearingDate.setDate(hearingDate.getDate() + minDelayDays);\n    \n    const conclusionsDate = new Date(hearingDate);\n    conclusionsDate.setDate(conclusionsDate.getDate() - 2);\n    \n    const decisionDate = new Date(hearingDate);\n    decisionDate.setDate(decisionDate.getDate() + 15);\n    \n    const appealDeadline = new Date(decisionDate);\n    appealDeadline.setDate(appealDeadline.getDate() + 15);\n    \n    \/\/ Generate timeline\n    const steps = [\n        {\n            date: startDate,\n            title: 'Signification',\n            description: 'Date de signification de l'assignation',\n            icon: '\ud83d\udccb',\n            status: 'completed'\n        },\n        {\n            date: conclusionsDate,\n            title: 'D\u00e9p\u00f4t des conclusions',\n            description: 'D\u00e9lai limite pour d\u00e9poser les conclusions \u00e9crites (2 jours avant l'audience)',\n            icon: '\ud83d\udcdd',\n            status: 'upcoming'\n        },\n        {\n            date: hearingDate,\n            title: 'Audience',\n            description: `Date d'audience (minimum ${minDelayDays} jour${minDelayDays > 1 ? 's' : ''} apr\u00e8s signification)`,\n            icon: '\u2696\ufe0f',\n            status: 'upcoming'\n        },\n        {\n            date: decisionDate,\n            title: 'D\u00e9cision rendue',\n            description: 'Date limite pour le rendu de la d\u00e9cision (15 jours maximum apr\u00e8s l'audience)',\n            icon: '\ud83d\udcdc',\n            status: 'pending'\n        },\n        {\n            date: appealDeadline,\n            title: 'Fin d\u00e9lai d'appel',\n            description: 'Date limite pour faire appel (15 jours apr\u00e8s notification de la d\u00e9cision)',\n            icon: '\ud83d\udce4',\n            status: 'pending'\n        }\n    ];\n    \n    let stepsHTML = '';\n    steps.forEach((step, index) => {\n        const isToday = window.isToday(step.date);\n        const daysDiff = Math.ceil((step.date - new Date()) \/ (1000 * 60 * 60 * 24));\n        \n        stepsHTML += `\n            <div class=\"timeline-step ${step.status} ${isToday ? 'today' : ''}\">\n                <div class=\"step-icon\">${step.icon}<\/script> <\/div>\n                <div class=\"step-content\">\n                    <div class=\"step-title\">${step.title}<\/div>\n                    <div class=\"step-date\">${window.formatDate(step.date)}<\/div>\n                    <div class=\"step-description\">${step.description}<\/div>\n  ${daysDiff >= 0 ? `<div class=\"step-countdown\">In ${daysDiff} day${daysDiff !== 1 ? &#8216;s&#8217; : &#8221;}<\/div>` : &#8221;}\n                <\/div>\n            \n  `;\n });\n    \n timelineSteps.innerHTML = stepsHTML;\n timelineContainer.style.display = &#8216;block&#8217;;\n costEstimate.style.display = &#8216;block&#8217;;\n};\n\nwindow.formatDate = function(date) {\n return date.toLocaleDateString(&#8216;fr-FR&#8217;, {\n weekday: &#8216;long&#8217;,\n day: &#8216;numeric&#8217;,\n month: &#8216;long&#8217;,\n year: &#8216;numeric&#8217;\n });\n};\n\nwindow.isToday = function(date) {\n const today = new Date();\n return date.toDateString() === today.toDateString();\n};\n\ndocument.addEventListener(&#8216;DOMContentLoaded&#8217;, function() {\n \/\/ Set default date to today\n const today = new Date();\n document.getElementById(&#8216;notification-date&#8217;).value = today.toISOString().split(&#8216;T&#8217;)[0];\n window.calculateDeadlines();\n});\n\n<style type=\"text\/css\">\n.simulator-wrapper {\n    max-width: 800px;\n    margin: 0 auto;\n    padding: 20px;\n    font-family: Poppins, sans-serif;\n    background: #f8f9fa;\n    border-radius: 12px;\n    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);\n}\n\n.simulator-wrapper .simulator-header {\n    text-align: center;\n    margin-bottom: 30px;\n}\n\n.simulator-wrapper .simulator-header h3 {\n    color: #2c3e50;\n    margin: 0 0 10px 0;\n    font-size: 24px;\n}\n\n.simulator-wrapper .simulator-header p {\n    color: #7f8c8d;\n    margin: 0;\n    font-size: 14px;\n}\n\n.simulator-wrapper .simulator-inputs {\n    background: white;\n    padding: 20px;\n    border-radius: 8px;\n    margin-bottom: 20px;\n    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);\n}\n\n.simulator-wrapper .input-group {\n    margin-bottom: 20px;\n}\n\n.simulator-wrapper .input-group label {\n    display: block;\n    margin-bottom: 8px;\n    font-weight: 600;\n    color: #2c3e50;\n}\n\n.simulator-wrapper .input-group input[type=\"date\"] {\n    width: 100%;\n    padding: 12px;\n    border: 2px solid #e9ecef;\n    border-radius: 6px;\n    font-size: 16px;\n    transition: border-color 0.3s;\n}\n\n.simulator-wrapper .input-group input[type=\"date\"]:focus {\n    outline: none;\n    border-color: #3498db;\n}\n\n.simulator-wrapper .radio-group {\n    display: flex;\n    flex-direction: column;\n    gap: 10px;\n}\n\n.simulator-wrapper .radio-label {\n    display: flex;\n    align-items: center;\n    padding: 12px;\n    background: #f8f9fa;\n    border: 2px solid #e9ecef;\n    border-radius: 6px;\n    cursor: pointer;\n    transition: all 0.3s;\n}\n\n.simulator-wrapper .radio-label:hover {\n    background: #e9ecef;\n}\n\n.simulator-wrapper .radio-label input[type=\"radio\"] {\n    margin-right: 10px;\n}\n\n.simulator-wrapper .radio-label input[type=\"radio\"]:checked + span {\n    font-weight: 600;\n    color: #3498db;\n}\n\n.simulator-wrapper .timeline-container {\n    background: white;\n    padding: 20px;\n    border-radius: 8px;\n    margin-bottom: 20px;\n    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);\n}\n\n.simulator-wrapper .timeline-container h4 {\n    margin: 0 0 20px 0;\n    color: #2c3e50;\n    font-size: 18px;\n}\n\n.simulator-wrapper .timeline-steps {\n    display: flex;\n    flex-direction: column;\n    gap: 15px;\n}\n\n.simulator-wrapper .timeline-step {\n    display: flex;\n    align-items: flex-start;\n    padding: 15px;\n    border-radius: 8px;\n    border-left: 4px solid #e9ecef;\n    background: #f8f9fa;\n    transition: all 0.3s;\n}\n\n.simulator-wrapper .timeline-step.completed {\n    border-left-color: #27ae60;\n    background: #d5f4e6;\n}\n\n.simulator-wrapper .timeline-step.upcoming {\n    border-left-color: #f39c12;\n    background: #fef9e7;\n}\n\n.simulator-wrapper .timeline-step.pending {\n    border-left-color: #95a5a6;\n    background: #f8f9fa;\n}\n\n.simulator-wrapper .timeline-step.today {\n    border-left-color: #e74c3c;\n    background: #fbeae8;\n    box-shadow: 0 2px 8px rgba(231, 76, 60, 0.3);\n}\n\n.simulator-wrapper .step-icon {\n    font-size: 24px;\n    margin-right: 15px;\n    margin-top: 5px;\n}\n\n.simulator-wrapper .step-content {\n    flex: 1;\n}\n\n.simulator-wrapper .step-title {\n    font-weight: 600;\n    color: #2c3e50;\n    margin-bottom: 5px;\n    font-size: 16px;\n}\n\n.simulator-wrapper .step-date {\n    color: #3498db;\n    font-weight: 500;\n    margin-bottom: 5px;\n    font-size: 14px;\n}\n\n.simulator-wrapper .step-description {\n    color: #7f8c8d;\n    font-size: 14px;\n    line-height: 1.4;\n}\n\n.simulator-wrapper .step-countdown {\n    color: #e74c3c;\n    font-weight: 600;\n    font-size: 12px;\n    margin-top: 5px;\n}\n\n.simulator-wrapper .cost-estimate {\n    background: white;\n    padding: 20px;\n    border-radius: 8px;\n    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);\n}\n\n.simulator-wrapper .cost-estimate h4 {\n    margin: 0 0 15px 0;\n    color: #2c3e50;\n    font-size: 18px;\n}\n\n.simulator-wrapper .cost-breakdown {\n    display: flex;\n    flex-direction: column;\n    gap: 10px;\n}\n\n.simulator-wrapper .cost-item {\n    display: flex;\n    justify-content: space-between;\n    padding: 10px 0;\n    border-bottom: 1px solid #e9ecef;\n}\n\n.simulator-wrapper .cost-value {\n    font-weight: 600;\n    color: #27ae60;\n}\n\n.simulator-wrapper .cost-note {\n    background: #e8f5e8;\n    padding: 12px;\n    border-radius: 6px;\n    margin-top: 10px;\n    font-size: 14px;\n    color: #2c3e50;\n}\n\n@media (max-width: 600px) {\n    .simulator-wrapper {\n        padding: 15px;\n    }\n    \n    .simulator-wrapper .timeline-step {\n        flex-direction: column;\n        text-align: center;\n    }\n    \n    .simulator-wrapper .step-icon {\n        margin-right: 0;\n        margin-bottom: 10px;\n    }\n    \n    .simulator-wrapper .cost-item {\n        flex-direction: column;\n        text-align: center;\n        gap: 5px;\n    }\n}\n<\/style>\n<div class=\"zloop-color-1\" style=\"background-color: #fffbeb; border-left: 4px solid #fbbf24; padding: 1rem; margin: 1rem 0;\">\n<div style=\"display: flex; align-items: center;\">\n<svg fill=\"none\" height=\"20\" stroke=\"#fbbf24\" stroke-width=\"2\" viewbox=\"0 0 24 24\" width=\"20\">\n<circle cx=\"12\" cy=\"12\" r=\"10\"><\/circle>\n<line x1=\"12\" x2=\"12\" y1=\"16\" y2=\"12\"><\/line>\n<line x1=\"12\" x2=\"12.01\" y1=\"8\" y2=\"8\"><\/line>\n<\/svg>\n<p style=\"margin-left: 0.75rem; color: #b45309;\">\n  The results provided are given for information only and do not engage our responsibility in any way.\n        <\/p>\n<\/div>\n<\/div>\n\n        \n        <div id=\"Zloop-content\"><p>When you need to bring a matter before the family court judge (JAF) on an urgent basis,<a href=\"https:\/\/www.legalprod.com\/legalblog\/procedures-et-documents\/assignations-et-referes\/assignation-en-refere\/\">a motion for summary relief<\/a> is the appropriate procedure. This process allows you to obtain a prompt decision in critical family situations that require immediate judicial intervention. <\/p><h2>What is an emergency summons for a JAF hearing with a strict deadline?<\/h2><p>A JAF summary proceeding is an emergency procedure that allows for a case to be brought before the family court judge quickly. It applies when a family situation is clearly urgent and requires an immediate provisional measure. <\/p><p>This procedure differs from traditional <a href=\"https:\/\/www.legalprod.com\/legalblog\/procedures-et-documents\/assignations-et-referes\/\">summary proceedings<\/a> in that it is specific to family law. The family court judge may thus order provisional measures concerning child custody, child support, or occupancy of the marital home. <\/p><h2>The conditions under which an emergency application may be filed with the Family Court Judge (JAF) for interim relief<\/h2><p>For your request to be admissible, you must demonstrate the existence of a clear emergency. This emergency may result from several situations: <\/p><ul><li><strong>Immediate danger to a child<\/strong>: risk of abduction, violence, or severe neglect<\/li><li><strong>Critical financial situation<\/strong>: Failure to pay child support is jeopardizing basic needs<\/li><li><strong>Dispute over the exercise of parental authority<\/strong>: a major disagreement requiring a prompt decision<\/li><\/ul><p>The urgency must be objective and current. Mere personal convenience is not sufficient to justify seeking summary relief. <\/p><h2>Procedural Deadlines to Be Observed<\/h2><p>Deadlines are a crucial part of the proceedings, and failure to meet them may result in your petition<strong>being dismissed<\/strong> or the hearing being postponed. You must allow a minimum of <strong>15 days<\/strong> between the service of the summons and the hearing date, except in cases of extreme urgency. <\/p><p>In cases of extreme urgency, the presiding judge may reduce this time limit to <strong>24 hours<\/strong>. This exceptional reduction requires particularly strong justification of the urgency and must be expressly requested in the summons. <\/p><p>Under exceptional circumstances, it is possible to request an extension from the court. This request must be supported by a statement of reasons and submitted before the initial deadline expires. In addition, you generally have a deadline for filing your written briefs with the court clerk\u2019s office, usually <strong>2 days<\/strong> before the hearing.  <\/p><p>The Family Court must render a decision within a maximum statutory period of <strong>15 days<\/strong> following the preliminary relief hearing. This period may be extended if the case is particularly complex, but the majority of decisions are rendered within this statutory timeframe to reflect the urgent nature of the proceedings. <\/p><h2>Steps in the JAF Summary Proceedings Summons Procedure<\/h2><p>The procedure follows a specific sequence that you must follow exactly:<\/p><ol><li><strong>Drafting the summons<\/strong>: Use a <a href=\"https:\/\/www.legalprod.com\/legalblog\/procedures-et-documents\/assignations-et-referes\/modele-assignation-en-refere\/\">summons template<\/a> suitable for summary proceedings before the Family Court (JAF)<\/li><li><strong>Service by a bailiff<\/strong>: The summons must be served on the opposing party within the required time frame. This step generally costs between 150 and 200 euros. <\/li><li><strong>Determination of Territorial Jurisdiction<\/strong>: The court with jurisdiction is generally the court of the minor children\u2019s habitual residence, or, failing that, the court of the marital residence or the last marital residence<\/li><li><strong>Filing with the court clerk&#8217;s office<\/strong>: You must file the original with the court clerk&#8217;s office of the court with territorial jurisdiction and pay the filing fees.<\/li><li><strong>Hearing<\/strong>: Presentation of arguments before the Family Court Judge, with the option of being represented by an attorney<\/li><\/ol><p><strong>Costs of the proceedings:<\/strong> In addition to service fees, you should budget for court filing fees and, if applicable, attorney\u2019s fees. If your financial resources are limited, you can apply for legal aid, which may cover all or part of the costs of the proceedings. <\/p><p>Each step must be completed accurately to ensure that your application is not rejected.<\/p><h2>Practical Tips for Optimizing Your Approach<\/h2><p>To maximize your chances of success, prepare your case thoroughly. Gather all documents that support the urgency of your situation: medical certificates, witness statements, and evidence of abuse or neglect. <\/p><p>Drafting a summons requires careful attention to <a href=\"https:\/\/www.legalprod.com\/en\/procedures-et-documents-2\/\">legal procedures<\/a>. Clearly state the facts, the urgency of the matter, and the relief sought. Avoid unnecessary details that could detract from the clarity of your request.  <\/p><p>Anticipate the opposing party&#8217;s arguments and prepare your responses. The family court judge will appreciate the quality of your preparation and the relevance of your requests. <\/p><p>If the case is particularly complex, do not hesitate to seek the assistance of an attorney specializing in family law. Their expertise will help you optimize your litigation strategy and increase your chances of obtaining the interim relief you seek. <\/p><h2>Jurisdiction and Costs of the Proceedings<\/h2><p>Before initiating summary proceedings before the Family Court (JAF), it is essential to determine which court has jurisdiction. Territorial jurisdiction is generally determined based on <strong>the children\u2019s usual place of residence<\/strong> or, failing that, on the marital home in the event of a recent separation. This rule is intended to facilitate access to justice for the parent who has daily custody of the children.  <\/p><p>As for the financial aspect, there are several costs to anticipate:<\/p><ul><li><strong>Service by a bailiff<\/strong>: between 150 and 200\u20ac depending on the complexity of the case<\/li><li><strong>Court filing fees<\/strong> for registering your application<\/li><li><strong>Attorney&#8217;s fees<\/strong> if you choose to be represented (highly recommended)<\/li><\/ul><p>It is important to note that you may be eligible for<strong>legal aid<\/strong> if your income is insufficient. This aid can be:<br\/>&#8211; Full: complete coverage of costs<br\/>&#8211; Partial: coverage of a percentage of the costs based on your income <\/p><p>In cases of extreme urgency, the court may grant an <strong>exemption from the requirement to pay court fees in advance<\/strong>, thereby allowing proceedings to begin without delay. This exemption is particularly valuable when a child\u2019s immediate protection is at stake or when financial hardship prevents access to justice. <\/p><h2>Possible Appeals Against the Preliminary Ruling<\/h2><p>The interim order issued by the Family Court Judge, although immediately enforceable, is not final. The parties have several options for challenging or supplementing this decision: <\/p><ul><li><strong>Appeal of the Order<\/strong>: You may file an appeal within <strong>15 days<\/strong> of the order being served. The appeal must be filed with the court of appeals with territorial jurisdiction. <\/li><li><strong>Provisional Nature of the Measures<\/strong>: It is essential to understand that measures ordered in summary proceedings are, by their very nature, provisional. They do not definitively resolve the dispute but provide a temporary solution to the identified emergency. <\/li><\/ul><p>Even if an appeal is filed, interim orders are<strong>enforceable immediately<\/strong>. This means that the measures ordered must be implemented without delay, even if you challenge the decision. <br\/><br\/>To obtain a final ruling, you must file a <strong>case on the merits<\/strong> with the Family Court (JAF). This process, while longer, is more comprehensive and will allow for a thorough review of all the evidence in the case and lead to a lasting decision. <\/p><p>In practice, the optimal procedural strategy often consists of:<\/p><ol><li>Obtaining Emergency Relief Through Summary Proceedings<\/li><li>Initiate proceedings on the merits at the same time<\/li><li>If necessary, appeal the preliminary injunction<\/li><\/ol>\n  Zloop FAQ Start  \n<div id=\"FAQ-Zloop\"><div>\n<h2>Frequently asked questions<\/h2>\n<p>Find answers to the most frequently asked questions about JAF summary proceedings, a critical emergency procedure in family law.<\/p>\n<h3>What is a JAF summary proceeding summons?<\/h3>\n<p>A motion for summary relief before the Family Court (JAF) is an emergency procedure that allows a party to bring a matter before the Family Court judge in situations requiring a prompt decision. It primarily concerns urgent family matters such as child support, child custody, or eviction from the marital home. This procedure allows for a provisional decision to be obtained pending a final judgment on the merits of the case.  <\/p>\n<h3>What are the deadlines for filing a petition for summary proceedings with the Family Court (JAF)?<\/h3>\n<p>The deadlines for filing a petition for summary proceedings before the Family Court (JAF) are particularly short. The petition must be served at least 15 days before the hearing, except in cases of extreme urgency, when this deadline may be shortened with the judge\u2019s authorization. The court generally issues a ruling within 15 days to one month. It is crucial to meet these deadlines to avoid the petition being dismissed as inadmissible.   <\/p>\n<h3>What are the emergency conditions for a summary proceeding before the Family Court (JAF)?<\/h3>\n<p>To justify a motion for summary relief before the Family Court (JAF), one must demonstrate urgency and the absence of any serious challenge. The urgency may stem from a situation that jeopardizes the children\u2019s best interests, a risk of irreparable harm, or the need for interim measures. The urgency must be real and current, not merely foreseeable or potential.  <\/p>\n<h3>How do you draft an effective petition for summary proceedings before the Family Court?<\/h3>\n<p>An effective petition for summary relief before the Family Court must clearly set forth the facts justifying the urgency, present the requests in a precise and structured manner, and include all necessary supporting documents. It is essential to include all required legal information, use appropriate legal terminology, and provide concrete evidence of the urgency of the situation. The petition must be written clearly and concisely to facilitate the judge\u2019s understanding.  <\/p>\n<h3>What tools can help streamline the process of filing a motion for summary judgment with the Family Court (JAF)?<\/h3>\n<p>Specialized legal software for attorneys offers customizable summons templates, procedural deadline calendars, and document management systems. These tools help automate certain tasks, monitor compliance with deadlines, and centralize documentation. They help reduce errors and optimize procedural efficiency while ensuring regulatory compliance.  <\/p>\n<h3>What are the risks of failing to meet the deadlines for a JAF summary proceeding summons?<\/h3>\n<p>Failure to meet deadlines may result in the application being deemed inadmissible, requiring the process to be restarted. This can compromise the initial urgency of the matter and cause harm to the client. In some cases, it may also give rise to the attorney\u2019s professional liability. It is therefore crucial to have a thorough understanding of these deadlines and to implement rigorous tracking tools to ensure they are met.   <\/p>\n<\/div><\/div>\n<style id=\"zloop-faq-baked-style\">\n.faq-floating-btn{position:fixed;bottom:20px;left:20px;width:50px;height:50px;border-radius:50%;background:#666;color:#fff;display:flex;align-items:center;justify-content:center;box-shadow:0 4px 8px rgba(0,0,0,.2);cursor:pointer;z-index:9999;font:700 22px\/1 Arial,sans-serif}\n#FAQ-Zloop{position:fixed;bottom:80px;left:20px;width:350px;max-height:500px;background:#fff;border-radius:12px;box-shadow:0 4px 20px rgba(0,0,0,.2);z-index:9998;overflow:hidden;transform:translateY(20px) scale(.95);opacity:0;visibility:hidden;transition:opacity .3s ease,transform .3s ease,visibility 0s .3s;display:flex;flex-direction:column}\n#FAQ-Zloop.active{transform:translateY(0) scale(1);opacity:1;visibility:visible;transition:opacity .3s ease,transform .3s ease,visibility 0s 0s}\n.faq-modal-header{background:#666;color:#fff;padding:10px 20px;display:flex;justify-content:space-between;align-items:center;flex-shrink:0}.faq-modal-header h2{font-size:18px;font-weight:700;margin:0;color:#fff}.faq-modal-close{cursor:pointer;font-size:16px;background:none;border:0;color:#fff;padding:5px}.faq-modal-body{padding:15px 20px;max-height:450px;overflow-y:auto;flex-grow:1}.faq-item{margin-bottom:15px;border-bottom:1px solid #eee;padding-bottom:10px}.faq-item:last-child{border-bottom:0;margin-bottom:0;padding-bottom:0}.faq-item h3{font-size:16px;font-weight:700;color:#333;margin:0 0 8px;cursor:pointer;position:relative;padding-right:25px}.faq-item h3:after{content:\"v\";position:absolute;right:0;top:50%;transform:translateY(-50%);font-size:12px}.faq-item h3.active:after{transform:translateY(-50%) rotate(180deg)}.faq-item p{max-height:0;overflow:hidden;opacity:0;color:#666;font-size:14px;line-height:1.5;padding:0;margin:0;transition:max-height .35s ease-out,opacity .3s ease-in-out,padding-top .3s ease-out,margin-bottom .3s ease-out}.faq-item p.active{max-height:1000px;opacity:1;padding-top:8px;margin-bottom:10px}\n<\/style>\n<script id=\"zloop-faq-baked-script\">\n(function(){function init(){if(document.body.classList.contains(\"zloop-faq-initialized\"))return;var modal=document.getElementById(\"FAQ-Zloop\");if(!modal)return;var btn=document.createElement(\"button\");btn.type=\"button\";btn.className=\"faq-floating-btn\";btn.setAttribute(\"aria-label\",\"FAQ\");btn.textContent=\"?\";document.body.appendChild(btn);var raw=modal.querySelector(\".faq-modal-body\")?modal.querySelector(\".faq-modal-body\").innerHTML:modal.innerHTML;modal.innerHTML='<div class=\"faq-modal-header\"><h2>Foire Aux Questions<button type=\"button\" class=\"faq-modal-close\" aria-label=\"Fermer la FAQ\">x<div class=\"faq-modal-body\">';var body=modal.querySelector(\".faq-modal-body\");var temp=document.createElement(\"div\");temp.innerHTML=raw;var current=null;temp.querySelectorAll(\"h2,h3,p\").forEach(function(node){if(node.tagName===\"H3\"){current=document.createElement(\"div\");current.className=\"faq-item\";current.appendChild(node.cloneNode(true));body.appendChild(current)}else if(node.tagName===\"P\"&&current&&!current.querySelector(\"p\")){current.appendChild(node.cloneNode(true))}});btn.addEventListener(\"click\",function(){modal.classList.toggle(\"active\")});modal.querySelector(\".faq-modal-close\").addEventListener(\"click\",function(){modal.classList.remove(\"active\")});body.querySelectorAll(\".faq-item\").forEach(function(item){var h=item.querySelector(\"h3\");var p=item.querySelector(\"p\");if(!h||!p)return;h.addEventListener(\"click\",function(){var on=h.classList.contains(\"active\");body.querySelectorAll(\".faq-item h3,.faq-item p\").forEach(function(el){el.classList.remove(\"active\")});if(!on){h.classList.add(\"active\");p.classList.add(\"active\")}})});document.body.classList.add(\"zloop-faq-initialized\")}if(document.readyState===\"loading\")document.addEventListener(\"DOMContentLoaded\",init);else init();})();\n<\/script> \n Zloop FAQ End \n Zloop Structured Data Start  \n\n  Zloop Structured Data End<\/div>\n        <div id=\"FAQ-Zloop\">\n        <div>\n<h2>Frequently asked questions<\/h2>\n<p>Find answers to the most frequently asked questions about JAF summary proceedings, a critical emergency procedure in family law.<\/p>\n<h3>What is a JAF summary proceeding summons?<\/h3>\n<p>A motion for summary relief before the Family Court (JAF) is an emergency procedure that allows a party to bring a matter before the Family Court judge in situations requiring a prompt decision. It primarily concerns urgent family matters such as child support, child custody, or eviction from the marital home. This procedure allows for a provisional decision to be obtained pending a final judgment on the merits of the case.  <\/p>\n<h3>What are the deadlines for filing a petition for summary proceedings with the Family Court (JAF)?<\/h3>\n<p>The deadlines for filing a petition for summary proceedings before the Family Court (JAF) are particularly short. The petition must be served at least 15 days before the hearing, except in cases of extreme urgency, when this deadline may be shortened with the judge\u2019s authorization. The court generally issues a ruling within 15 days to one month. It is crucial to meet these deadlines to avoid the petition being dismissed as inadmissible.   <\/p>\n<h3>What are the emergency conditions for a summary proceeding before the Family Court (JAF)?<\/h3>\n<p>To justify a motion for summary relief before the Family Court (JAF), one must demonstrate urgency and the absence of any serious challenge. The urgency may stem from a situation that jeopardizes the children\u2019s best interests, a risk of irreparable harm, or the need for interim measures. The urgency must be real and current, not merely foreseeable or potential.  <\/p>\n<h3>How do you draft an effective petition for summary proceedings before the Family Court?<\/h3>\n<p>An effective petition for summary relief before the Family Court must clearly set forth the facts justifying the urgency, present the requests in a precise and structured manner, and include all necessary supporting documents. It is essential to include all required legal information, use appropriate legal terminology, and provide concrete evidence of the urgency of the situation. The petition must be written clearly and concisely to facilitate the judge\u2019s understanding.  <\/p>\n<h3>What tools can help streamline the process of filing a motion for summary judgment with the Family Court (JAF)?<\/h3>\n<p>Specialized legal software for attorneys offers customizable summons templates, procedural deadline calendars, and document management systems. These tools help automate certain tasks, monitor compliance with deadlines, and centralize documentation. They help reduce errors and optimize procedural efficiency while ensuring regulatory compliance.  <\/p>\n<h3>What are the risks of failing to meet the deadlines for a JAF summary proceeding summons?<\/h3>\n<p>Failure to meet deadlines may result in the application being deemed inadmissible, requiring the process to be restarted. This can compromise the initial urgency of the matter and cause harm to the client. In some cases, it may also give rise to the attorney\u2019s professional liability. It is therefore crucial to have a thorough understanding of these deadlines and to implement rigorous tracking tools to ensure they are met.   <\/p>\n<\/div>\n        <\/div>\n        <div class=\"arianezloopglobale\">\n        <h2 class=\"articlesConnexesZloop\">Related articles<\/h2>\n        <div id=\"arianezloop\">\n            <p><a href=\"https:\/\/www.legalprod.com\/en\/legalblog\/\"><span class=\"parentarianezloop\">Legalblog<\/span><\/a><\/p><p><a href=\"https:\/\/www.legalprod.com\/en\/procedures-et-documents-2\/\"><span class=\"parentarianezloop\">Procedures And Documents<\/span><\/a><\/p><p><a href=\"https:\/\/www.legalprod.com\/legalblog\/procedures-et-documents\/assignations-et-referes\/\"><span class=\"parentarianezloop\">Subpoenas and Preliminary Injunctions<\/span><\/a><\/p>\n            <div id=\"ariane-enfant\">\n            <p><a href=\"https:\/\/www.legalprod.com\/legalblog\/procedures-et-documents\/assignations-et-referes\/assignation-en-refere-jaf-urgence-delai\/\"><span class=\"parentarianezloop\">Summon to a Preliminary Hearing Before a Family Court Judge\u2014Emergency\u2014Deadline<\/span><\/a><\/p>\n            <ul>\n            \n            <\/ul>\n            <\/div>\n            <\/div>\n        <\/div>","protected":false},"excerpt":{"rendered":"<p>Summon to a Family Court (JAF) Summary Proceedings Hearing: Emergency Procedure and Deadlines to Be Met Time Limit Calculator &#8211; Summary Proceedings Before the Family Court (JAF) Automatically calculate all key deadlines for your emergency procedure Date of service: Type of proceeding: Standard Procedure (minimum 15 days) Highest Priority (minimum 24 hours) Deadline Schedule Cost [&hellip;]<\/p>\n","protected":false},"author":3,"featured_media":16443,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_et_pb_use_builder":"","_et_pb_old_content":"","_et_gb_content_width":"","footnotes":""},"categories":[279],"tags":[],"class_list":["post-16455","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-lawyer"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v28.1 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Emergency Summary Proceedings Summons Before the Family Court: 2025 Timeline Guide<\/title>\n<meta name=\"description\" content=\"Urgent Family Court Summary Proceedings: Understand the summons, meet deadlines, and ensure the success of your case. Expert Advice 2025.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.legalprod.com\/en\/assignation-refere-jaf-urgence-time-limits-guide-currentyear\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Emergency Summary Proceedings Summons Before the Family Court: 2025 Timeline Guide\" \/>\n<meta property=\"og:description\" content=\"Urgent Family Court Summary Proceedings: Understand the summons, meet deadlines, and ensure the success of your case. Expert Advice 2025.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.legalprod.com\/en\/assignation-refere-jaf-urgence-time-limits-guide-currentyear\/\" \/>\n<meta property=\"og:site_name\" content=\"LEGALPROD\" \/>\n<meta property=\"article:published_time\" content=\"2025-07-10T11:33:21+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2026-06-30T14:52:00+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.legalprod.com\/wp-content\/uploads\/2025\/07\/assignation-en-refere-jaf-urgence-delai-1024x683.png\" \/>\n\t<meta property=\"og:image:width\" content=\"1024\" \/>\n\t<meta property=\"og:image:height\" content=\"683\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Team LegalProd\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Team LegalProd\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"12 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.legalprod.com\\\/en\\\/assignation-refere-jaf-urgence-time-limits-guide-currentyear\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.legalprod.com\\\/en\\\/assignation-refere-jaf-urgence-time-limits-guide-currentyear\\\/\"},\"author\":{\"name\":\"Team LegalProd\",\"@id\":\"https:\\\/\\\/www.legalprod.com\\\/en\\\/#\\\/schema\\\/person\\\/25526da464038d4aa345e8c5fd8f9dc4\"},\"headline\":\"Emergency Summary Proceedings Summons Before the Family Court: Guide to Deadlines 2026\",\"datePublished\":\"2025-07-10T11:33:21+00:00\",\"dateModified\":\"2026-06-30T14:52:00+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.legalprod.com\\\/en\\\/assignation-refere-jaf-urgence-time-limits-guide-currentyear\\\/\"},\"wordCount\":2358,\"publisher\":{\"@id\":\"https:\\\/\\\/www.legalprod.com\\\/en\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/www.legalprod.com\\\/en\\\/assignation-refere-jaf-urgence-time-limits-guide-currentyear\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.legalprod.com\\\/wp-content\\\/uploads\\\/2025\\\/07\\\/assignation-en-refere-jaf-urgence-delai.png\",\"articleSection\":[\"lawyer\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.legalprod.com\\\/en\\\/assignation-refere-jaf-urgence-time-limits-guide-currentyear\\\/\",\"url\":\"https:\\\/\\\/www.legalprod.com\\\/en\\\/assignation-refere-jaf-urgence-time-limits-guide-currentyear\\\/\",\"name\":\"Emergency Summary Proceedings Summons Before the Family Court: 2025 Timeline Guide\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.legalprod.com\\\/en\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.legalprod.com\\\/en\\\/assignation-refere-jaf-urgence-time-limits-guide-currentyear\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.legalprod.com\\\/en\\\/assignation-refere-jaf-urgence-time-limits-guide-currentyear\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.legalprod.com\\\/wp-content\\\/uploads\\\/2025\\\/07\\\/assignation-en-refere-jaf-urgence-delai.png\",\"datePublished\":\"2025-07-10T11:33:21+00:00\",\"dateModified\":\"2026-06-30T14:52:00+00:00\",\"description\":\"Urgent Family Court Summary Proceedings: Understand the summons, meet deadlines, and ensure the success of your case. Expert Advice 2025.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.legalprod.com\\\/en\\\/assignation-refere-jaf-urgence-time-limits-guide-currentyear\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.legalprod.com\\\/en\\\/assignation-refere-jaf-urgence-time-limits-guide-currentyear\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.legalprod.com\\\/en\\\/assignation-refere-jaf-urgence-time-limits-guide-currentyear\\\/#primaryimage\",\"url\":\"https:\\\/\\\/www.legalprod.com\\\/wp-content\\\/uploads\\\/2025\\\/07\\\/assignation-en-refere-jaf-urgence-delai.png\",\"contentUrl\":\"https:\\\/\\\/www.legalprod.com\\\/wp-content\\\/uploads\\\/2025\\\/07\\\/assignation-en-refere-jaf-urgence-delai.png\",\"width\":1536,\"height\":1024,\"caption\":\"Image illustrant assignation en r\u00e9f\u00e9r\u00e9 jaf urgence d\u00e9lai\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.legalprod.com\\\/en\\\/assignation-refere-jaf-urgence-time-limits-guide-currentyear\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Accueil\",\"item\":\"https:\\\/\\\/www.legalprod.com\\\/en\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Emergency Summary Proceedings Summons Before the Family Court: Guide to Deadlines 2026\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.legalprod.com\\\/en\\\/#website\",\"url\":\"https:\\\/\\\/www.legalprod.com\\\/en\\\/\",\"name\":\"LEGALPROD\",\"description\":\"La plateforme intelligente des avocats performants\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.legalprod.com\\\/en\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.legalprod.com\\\/en\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.legalprod.com\\\/en\\\/#organization\",\"name\":\"LEGALPROD\",\"url\":\"https:\\\/\\\/www.legalprod.com\\\/en\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.legalprod.com\\\/en\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/www.legalprod.com\\\/wp-content\\\/uploads\\\/2022\\\/11\\\/legalprod.png\",\"contentUrl\":\"https:\\\/\\\/www.legalprod.com\\\/wp-content\\\/uploads\\\/2022\\\/11\\\/legalprod.png\",\"width\":420,\"height\":127,\"caption\":\"LEGALPROD\"},\"image\":{\"@id\":\"https:\\\/\\\/www.legalprod.com\\\/en\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.linkedin.com\\\/company\\\/legalprod\"]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.legalprod.com\\\/en\\\/#\\\/schema\\\/person\\\/25526da464038d4aa345e8c5fd8f9dc4\",\"name\":\"Team LegalProd\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/1c3c7c48b0038c51ba83478ea83671ea74b6f9f6ba96ef408e957139ba8d6724?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/1c3c7c48b0038c51ba83478ea83671ea74b6f9f6ba96ef408e957139ba8d6724?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/1c3c7c48b0038c51ba83478ea83671ea74b6f9f6ba96ef408e957139ba8d6724?s=96&d=mm&r=g\",\"caption\":\"Team LegalProd\"},\"url\":\"https:\\\/\\\/www.legalprod.com\\\/en\\\/author\\\/team-legalprod\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Emergency Summary Proceedings Summons Before the Family Court: 2025 Timeline Guide","description":"Urgent Family Court Summary Proceedings: Understand the summons, meet deadlines, and ensure the success of your case. Expert Advice 2025.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.legalprod.com\/en\/assignation-refere-jaf-urgence-time-limits-guide-currentyear\/","og_locale":"en_US","og_type":"article","og_title":"Emergency Summary Proceedings Summons Before the Family Court: 2025 Timeline Guide","og_description":"Urgent Family Court Summary Proceedings: Understand the summons, meet deadlines, and ensure the success of your case. Expert Advice 2025.","og_url":"https:\/\/www.legalprod.com\/en\/assignation-refere-jaf-urgence-time-limits-guide-currentyear\/","og_site_name":"LEGALPROD","article_published_time":"2025-07-10T11:33:21+00:00","article_modified_time":"2026-06-30T14:52:00+00:00","og_image":[{"width":1024,"height":683,"url":"https:\/\/www.legalprod.com\/wp-content\/uploads\/2025\/07\/assignation-en-refere-jaf-urgence-delai-1024x683.png","type":"image\/png"}],"author":"Team LegalProd","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Team LegalProd","Est. reading time":"12 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.legalprod.com\/en\/assignation-refere-jaf-urgence-time-limits-guide-currentyear\/#article","isPartOf":{"@id":"https:\/\/www.legalprod.com\/en\/assignation-refere-jaf-urgence-time-limits-guide-currentyear\/"},"author":{"name":"Team LegalProd","@id":"https:\/\/www.legalprod.com\/en\/#\/schema\/person\/25526da464038d4aa345e8c5fd8f9dc4"},"headline":"Emergency Summary Proceedings Summons Before the Family Court: Guide to Deadlines 2026","datePublished":"2025-07-10T11:33:21+00:00","dateModified":"2026-06-30T14:52:00+00:00","mainEntityOfPage":{"@id":"https:\/\/www.legalprod.com\/en\/assignation-refere-jaf-urgence-time-limits-guide-currentyear\/"},"wordCount":2358,"publisher":{"@id":"https:\/\/www.legalprod.com\/en\/#organization"},"image":{"@id":"https:\/\/www.legalprod.com\/en\/assignation-refere-jaf-urgence-time-limits-guide-currentyear\/#primaryimage"},"thumbnailUrl":"https:\/\/www.legalprod.com\/wp-content\/uploads\/2025\/07\/assignation-en-refere-jaf-urgence-delai.png","articleSection":["lawyer"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/www.legalprod.com\/en\/assignation-refere-jaf-urgence-time-limits-guide-currentyear\/","url":"https:\/\/www.legalprod.com\/en\/assignation-refere-jaf-urgence-time-limits-guide-currentyear\/","name":"Emergency Summary Proceedings Summons Before the Family Court: 2025 Timeline Guide","isPartOf":{"@id":"https:\/\/www.legalprod.com\/en\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.legalprod.com\/en\/assignation-refere-jaf-urgence-time-limits-guide-currentyear\/#primaryimage"},"image":{"@id":"https:\/\/www.legalprod.com\/en\/assignation-refere-jaf-urgence-time-limits-guide-currentyear\/#primaryimage"},"thumbnailUrl":"https:\/\/www.legalprod.com\/wp-content\/uploads\/2025\/07\/assignation-en-refere-jaf-urgence-delai.png","datePublished":"2025-07-10T11:33:21+00:00","dateModified":"2026-06-30T14:52:00+00:00","description":"Urgent Family Court Summary Proceedings: Understand the summons, meet deadlines, and ensure the success of your case. Expert Advice 2025.","breadcrumb":{"@id":"https:\/\/www.legalprod.com\/en\/assignation-refere-jaf-urgence-time-limits-guide-currentyear\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.legalprod.com\/en\/assignation-refere-jaf-urgence-time-limits-guide-currentyear\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.legalprod.com\/en\/assignation-refere-jaf-urgence-time-limits-guide-currentyear\/#primaryimage","url":"https:\/\/www.legalprod.com\/wp-content\/uploads\/2025\/07\/assignation-en-refere-jaf-urgence-delai.png","contentUrl":"https:\/\/www.legalprod.com\/wp-content\/uploads\/2025\/07\/assignation-en-refere-jaf-urgence-delai.png","width":1536,"height":1024,"caption":"Image illustrant assignation en r\u00e9f\u00e9r\u00e9 jaf urgence d\u00e9lai"},{"@type":"BreadcrumbList","@id":"https:\/\/www.legalprod.com\/en\/assignation-refere-jaf-urgence-time-limits-guide-currentyear\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Accueil","item":"https:\/\/www.legalprod.com\/en\/"},{"@type":"ListItem","position":2,"name":"Emergency Summary Proceedings Summons Before the Family Court: Guide to Deadlines 2026"}]},{"@type":"WebSite","@id":"https:\/\/www.legalprod.com\/en\/#website","url":"https:\/\/www.legalprod.com\/en\/","name":"LEGALPROD","description":"La plateforme intelligente des avocats performants","publisher":{"@id":"https:\/\/www.legalprod.com\/en\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.legalprod.com\/en\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.legalprod.com\/en\/#organization","name":"LEGALPROD","url":"https:\/\/www.legalprod.com\/en\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.legalprod.com\/en\/#\/schema\/logo\/image\/","url":"https:\/\/www.legalprod.com\/wp-content\/uploads\/2022\/11\/legalprod.png","contentUrl":"https:\/\/www.legalprod.com\/wp-content\/uploads\/2022\/11\/legalprod.png","width":420,"height":127,"caption":"LEGALPROD"},"image":{"@id":"https:\/\/www.legalprod.com\/en\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.linkedin.com\/company\/legalprod"]},{"@type":"Person","@id":"https:\/\/www.legalprod.com\/en\/#\/schema\/person\/25526da464038d4aa345e8c5fd8f9dc4","name":"Team LegalProd","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/1c3c7c48b0038c51ba83478ea83671ea74b6f9f6ba96ef408e957139ba8d6724?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/1c3c7c48b0038c51ba83478ea83671ea74b6f9f6ba96ef408e957139ba8d6724?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/1c3c7c48b0038c51ba83478ea83671ea74b6f9f6ba96ef408e957139ba8d6724?s=96&d=mm&r=g","caption":"Team LegalProd"},"url":"https:\/\/www.legalprod.com\/en\/author\/team-legalprod\/"}]}},"_links":{"self":[{"href":"https:\/\/www.legalprod.com\/en\/wp-json\/wp\/v2\/posts\/16455","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.legalprod.com\/en\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.legalprod.com\/en\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.legalprod.com\/en\/wp-json\/wp\/v2\/users\/3"}],"replies":[{"embeddable":true,"href":"https:\/\/www.legalprod.com\/en\/wp-json\/wp\/v2\/comments?post=16455"}],"version-history":[{"count":4,"href":"https:\/\/www.legalprod.com\/en\/wp-json\/wp\/v2\/posts\/16455\/revisions"}],"predecessor-version":[{"id":24114,"href":"https:\/\/www.legalprod.com\/en\/wp-json\/wp\/v2\/posts\/16455\/revisions\/24114"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.legalprod.com\/en\/wp-json\/wp\/v2\/media\/16443"}],"wp:attachment":[{"href":"https:\/\/www.legalprod.com\/en\/wp-json\/wp\/v2\/media?parent=16455"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.legalprod.com\/en\/wp-json\/wp\/v2\/categories?post=16455"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.legalprod.com\/en\/wp-json\/wp\/v2\/tags?post=16455"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}