Federal Contractor

VALIANT GLOBAL DEFENSE SERVICES INC. Federal Contract Obligations (Last 5 Years)

Federal procurement profile for VALIANT GLOBAL DEFENSE SERVICES INC. (CAGE 0K831, UEI PD3UQQ22NQW1) covering obligations, actions, agencies, NAICS mix, and annual trends over the last 5 years.

VALIANT GLOBAL DEFENSE SERVICES INC. recorded 1.41 billion in obligated federal spending across 891 award actions in the last 5 years, with an average action value of 1.58 million. The portfolio is concentrated in the Department of the Army, followed by the Department of the Navy, DTRA, and the Department of the Air Force, with most obligations tied to engineering services and training-related NAICS codes.

Generated at 03/21/2026

Analysis period: Last 5 years

Figures reflect readable FPDS obligations for the last 5 years and may differ from totals shown in source extracts because of rounding or data refresh timing.

CAGE Code
0K831
UEI
PD3UQQ22NQW1
Total Obligated
1.41 billion
1,411,263,311.45
Award Actions
891
Average Action Value
1,583,909.44

About VALIANT GLOBAL DEFENSE SERVICES INC. federal contract activity

VALIANT GLOBAL DEFENSE SERVICES INC. (CAGE 0K831, UEI PD3UQQ22NQW1) recorded 1.41 billion in obligations across 891 awards over the last 5 years, for an average award value of 1.58 million. The profile indicates a high-volume federal seller with substantial recurring business and meaningful concentration in defense-related procurement.

Agency mix and customer concentration

Obligations are led by the DEPT OF THE ARMY at 899.75 million across 351 awards, followed by the DEPT OF THE NAVY at 275.75 million across 219 awards. DTRA adds 126.63 million across 154 awards, while the DEPT OF THE AIR FORCE and FEDERAL ACQUISITION SERVICE contribute smaller but still material shares, indicating a primarily defense-centric customer base with limited civilian exposure.

Industry profile based on NAICS activity

The vendor’s award portfolio is dominated by NAICS 541330, Engineering Services, at 694.56 million across 479 awards, making this the core revenue driver. Secondary activity is concentrated in training and instructional categories, including NAICS 611699 at 390.95 million and NAICS 611519 at 79.52 million, with additional professional services under NAICS 541990 at 193.15 million and flight training at 24.35 million.

Annual contract trend over the analysis window

Annual obligations increased from 224.61 million in 2021 to a peak of 351.29 million in 2023, then remained elevated at 326.66 million in 2024 before easing to 284.82 million in 2025. Award counts followed a similar pattern, rising to 212 in 2024 and moderating to 173 in 2025, which suggests continued demand despite some recent softening in volume and dollars.

How to interpret this page

This summary uses FPDS award-obligation data for the last 5 years, aggregated by vendor identifiers tied to CAGE 0K831 and UEI PD3UQQ22NQW1. Totals, counts, averages, and segment rankings are based on obligated dollars and award counts as provided in the analysis window; no additional sources or assumptions were used.

Top Agencies

SELECT
    agency_id,
    agency_name,
    total_obligated,
    award_count,
    formatReadableQuantity(total_obligated) AS total_obligated_readable
FROM
(
    SELECT
        content__award__purchaserInformation__contractingOfficeAgencyID AS agency_id,
        anyHeavy(content__award__purchaserInformation__contractingOfficeAgencyID__name) AS agency_name,
        sum(content__award__dollarValues__obligatedAmount) AS total_obligated,
        count() AS award_count
    FROM fpds.data
    WHERE
        contract_type = 1
        AND content__award__vendor__vendorSiteDetails__entityIdentifiers__cageCode = '0K831'
        AND content__award__purchaserInformation__contractingOfficeAgencyID IS NOT NULL
        AND content__award__purchaserInformation__contractingOfficeAgencyID != ''
        AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 5 YEAR
        AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
    GROUP BY agency_id
)
ORDER BY total_obligated DESC
LIMIT 10
Agency ID Agency Name Total Obligated Readable Award Actions
2100 DEPT OF THE ARMY 899,748,204.78 899.75 million 351
1700 DEPT OF THE NAVY 275,746,514.63 275.75 million 219
9761 DEFENSE THREAT REDUCTION AGENCY (DTRA) 126,633,668.66 126.63 million 154
5700 DEPT OF THE AIR FORCE 93,616,678.17 93.62 million 119
4732 FEDERAL ACQUISITION SERVICE 13,739,203.37 13.74 million 18
9776 USTRANSCOM 2,412,272.65 2.41 million 11
9763 DEFENSE CONTRACT MANAGEMENT AGENCY (DCMA) -633,230.81 -633.23 thousand 19

Insight

Over the last 5 years, VALIANT GLOBAL DEFENSE SERVICES INC. received $1.41 billion across 891 awards, with obligations concentrated in the Department of the Army ($899.75 million, 351 awards) and Department of the Navy ($275.75 million, 219 awards). Together, these two agencies account for the large majority of obligated dollars, indicating a strong DoD-heavy award profile. DTRA ($126.63 million, 154 awards) and the Department of the Air Force ($93.62 million, 119 awards) provide additional defense concentration, while civilian activity is limited, led by the Federal Acquisition Service at $13.74 million. DCMA shows a small net negative obligation of $633.23 thousand across 19 awards, which reduces total obligated value slightly but does not change the overall concentration pattern.

Top NAICS

SELECT
    naics_code,
    naics_name,
    total_obligated,
    award_count,
    formatReadableQuantity(total_obligated) AS total_obligated_readable
FROM
(
    SELECT
        content__award__productOrServiceInformation__principalNAICSCode AS naics_code,
        anyHeavy(content__award__productOrServiceInformation__principalNAICSCode__description) AS naics_name,
        sum(content__award__dollarValues__obligatedAmount) AS total_obligated,
        count() AS award_count
    FROM fpds.data
    WHERE
        contract_type = 1
        AND content__award__vendor__vendorSiteDetails__entityIdentifiers__cageCode = '0K831'
        AND content__award__productOrServiceInformation__principalNAICSCode IS NOT NULL
        AND content__award__productOrServiceInformation__principalNAICSCode != ''
        AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 5 YEAR
        AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
    GROUP BY naics_code
)
ORDER BY total_obligated DESC
LIMIT 10
NAICS Code Description Total Obligated Readable Award Actions
541330 ENGINEERING SERVICES 694,555,767.49 694.56 million 479
611699 ALL OTHER MISCELLANEOUS SCHOOLS AND INSTRUCTION 390,953,723.53 390.95 million 67
541990 ALL OTHER PROFESSIONAL, SCIENTIFIC, AND TECHNICAL SERVICES 193,145,475.84 193.15 million 209
611519 OTHER TECHNICAL AND TRADE SCHOOLS 79,523,851.68 79.52 million 26
611512 FLIGHT TRAINING 24,350,262.05 24.35 million 20
541715 RESEARCH AND DEVELOPMENT IN THE PHYSICAL, ENGINEERING, AND LIFE SCIENCES (EXCEPT NANOTECHNOLOGY AND BIOTECHNOLOGY) 14,958,005.24 14.96 million 49
541690 OTHER SCIENTIFIC AND TECHNICAL CONSULTING SERVICES 9,666,089.71 9.67 million 17
561210 FACILITIES SUPPORT SERVICES 4,957,126.71 4.96 million 15
921190 OTHER GENERAL GOVERNMENT SUPPORT 106,197.69 106.20 thousand 2
561990 ALL OTHER SUPPORT SERVICES 0.00 0.00 1

Insight

Over the last 5 years, VALIANT GLOBAL DEFENSE SERVICES INC. shows a concentrated NAICS profile, with 541330 Engineering Services accounting for 694.56 million across 479 awards, or about 49% of total obligated dollars. A second major concentration appears in 611699 All Other Miscellaneous Schools and Instruction, which represents 390.95 million but only 67 awards, indicating fewer, higher-value obligations than the engineering work. The remaining obligations are distributed across technical services and training-related NAICS, led by 541990 at 193.15 million and 611519 at 79.52 million, while the other categories are comparatively minor.

Annual Trend

SELECT
    year,
    total_obligated,
    award_count,
    formatReadableQuantity(total_obligated) AS total_obligated_readable
FROM
(
    SELECT
        toYear(parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate)) AS year,
        sum(content__award__dollarValues__obligatedAmount) AS total_obligated,
        count() AS award_count
    FROM fpds.data
    WHERE
        contract_type = 1
        AND content__award__vendor__vendorSiteDetails__entityIdentifiers__cageCode = '0K831'
        AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 5 YEAR
        AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
    GROUP BY year
)
ORDER BY year DESC
Year Total Obligated Readable Award Actions
2025 284,821,531.75 284.82 million 173
2024 326,657,303.57 326.66 million 212
2023 351,288,859.27 351.29 million 198
2022 223,889,436.84 223.89 million 161
2021 224,606,180.02 224.61 million 147

Insight

Over the last 5 years, VALIANT GLOBAL DEFENSE SERVICES INC. obligated $1.41 billion across 891 awards, averaging $1.58 million per award. Obligations were concentrated in 2023 and 2024, which together accounted for $677.95 million, or about 48% of the 5-year total. Annual obligations increased from $224.61 million in 2021 to a peak of $351.29 million in 2023, then declined to $326.66 million in 2024 and $284.82 million in 2025; award counts followed a similar pattern, peaking at 212 in 2024 before falling to 173 in 2025.

Use FPDS Query for deeper contractor analysis

Explore federal procurement data with custom SQL, fast filtering, and deeper contractor analysis across buying agencies, NAICS, and annual trends.

Continue from this last 5 years view into full FPDS Query workflows with deeper filtering, custom SQL, saved queries, and broader market comparison.