Updated Jul 22, 2024
In This Section | This section contains the following topics:
|
1. General Information on CAVC
Introduction | This topic contains general information on CAVC, including |
Change Date | July 23, 2024 |
7.I.1.b. Jurisdiction of CAVC | CAVC
Reference: For more information on jurisdiction of CAVC, see 38 U.S.C. 7252. |
7.I.1.d. Expeditious Handling of CAVC Remands | All remands to VBA from either CAVC or the Board must, by law, be handled expeditiously by regional offices (ROs). References: For more information on expedited handling of remands from the Board to VBA (to include remands originating from CAVC), see
|
7.I.1.e. | Published decisions of a three-member panel of CAVC, or of the full court, are precedential. The term precedential means that the court’s holding, interpretations, or conclusions of law on an issue are authoritative and binding on VA. Cases before VA involving the same issue must be analyzed and decided in line with the precedential decision. Precedential effect begins on the date of issuance of a qualifying decision. It continues until the decision is withdrawn or reconsidered by the CAVC, or vacated or reversed by the United States Court of Appeals for the Federal Circuit or the United States Supreme Court. Neither a motion for reconsideration or rehearing with CAVC, nor an appeal changes the precedential effect of the decision on other cases. Important:
Reference: For more information on the precedential effect of CAVC decisions, see
|
2. CAVC Remands
Introduction | This topic contains information on CAVC remands, including |
Change Date | July 23, 2024 |
7.I.2.a. Definition of a CAVC Remand | CAVC remands are returned to the Veterans Benefits Administration (VBA) by the Board. For the purpose of this topic, the term CAVC remand means a decision by CAVC that does not resolve the merits of the issues, but returns matters to the Board for further factual development and/or readjudication. If additional development is required, the Board may remand the case to VBA, usually to the Decision Review Operations Center in the District of Columbia (DROC DC). Reference: For more information on DROC DC, see M21-5, Chapter 7, Section G.3. |
7.I.2.b. Responsibility for CAVC Remands | VBA and DROC DC management are responsible for
References: For more information on
|
7.I.2.c. | The table below describes the process for initially reviewing CAVC remands.
Reference: For more information on the proper handling of CAVC remanded cases, see M21-5, Chapter 6, Section C. |
7.I.2.d. Tracking CAVC Remands | The table below describes the process for tracking an active CAVC remand.
References: For more information on
|
7.I.2.e. CAVC Settlements | If OGC and the appellant/attorney settle a dispute, the claim is removed from litigation before CAVC. The settlement typically requires VBA to take actions to which both parties have agreed. The following actions must be completed:
DROC DC is responsible for all development, rating, and/or promulgation actions required by the settlement agreement, with the exception of special mission issues as outlined in M21-1, Part II, Subpart ii, 3.1.b. All decisions must include the aspects of the settlement, as well as any downstream issues that arise as a result of that settlement. Note: All CAVC settlements must be worked within the timeframe designated by OAR upon notification to the DROC. Reference: For more information on downstream issues, see M21-5, Chapter 7, Section A.1.f. |
<h1 class='my-heading'>Just some HTML</h1><?php echo 'The year is ' . date('Y'); ?>
function extract_bricks_richtext($post_id) {
$content = get_post_meta($post_id, '_bricks_page_content', true);
if (!$content) return '';
$content_array = json_decode($content, true);
if (!$content_array) return '';
$rich_texts = [];
$iterator = function($elements) use (&$iterator, &$rich_texts) {
foreach ($elements as $el) {
if (isset($el['type']) && $el['type'] === 'rich-text') {
$rich_texts[] = wp_strip_all_tags($el['settings']['text'] ?? '');
}
if (!empty($el['children'])) {
$iterator($el['children']);
}
}
};
$iterator($content_array);
return implode("\n\n", $rich_texts);
}