Award Number

Award Number 9700 / 0014 Federal Contract Action Summary (Last 10 Years)

Federal procurement analysis page for award number 0014 under agency ID 9700, covering the last 10 years of award actions and obligations.

This page summarizes award number 0014 for agency ID 9700 over the last 10 years. The record shows 10,839 award actions and $3.01 billion in total obligated value.

Generated at 03/20/2026

Analysis period: Last 10 years

Totals are based on the provided analysis window and include a readable obligated amount of $3.01 billion, an exact obligated amount of 3006171363.3, and an average action value of $277,347.67.

Agency ID
9700
PIID
0014
Type
Award
Total Obligated
3.01 billion
3,006,171,363.30
Actions
10,839
Average Action Value
277,347.67

Overview

Award number 0014 is associated with agency ID 9700 and is analyzed over a 10-year window. The award record includes 10,839 actions with total obligated funding of 3,006,171,363.3, shown on the page as $3.01 billion for readability. The average action value across the period is $277,347.67.

How to use this page

Use this page to review the scale and activity level of award number 0014 over time. The action count, obligated total, and average action value provide a concise basis for comparing this award against other procurement records in the same agency or analysis set.

Top Agencies

SELECT
    content__award__purchaserInformation__contractingOfficeAgencyID AS agency_id,
    content__award__purchaserInformation__contractingOfficeAgencyID__name AS agency_name,
    sum(content__award__dollarValues__obligatedAmount) AS total_obligated,
    count() AS award_count,
    formatReadableQuantity(sum(content__award__dollarValues__obligatedAmount)) AS total_obligated_readable
FROM fpds.data
WHERE
    content__award__awardID__awardContractID__agencyID = '9700' AND content__award__awardID__awardContractID__PIID = '0014'
    AND content__award__purchaserInformation__contractingOfficeAgencyID IS NOT NULL
    AND content__award__purchaserInformation__contractingOfficeAgencyID != ''
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 10 YEAR
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY
    agency_id,
    agency_name
ORDER BY total_obligated DESC
LIMIT 10
Agency ID Agency Name Total Obligated Readable Actions
2100 DEPT OF THE ARMY 1,427,945,450.49 1.43 billion 3,576
1700 DEPT OF THE NAVY 607,007,074.25 607.01 million 2,456
5700 DEPT OF THE AIR FORCE 413,296,862.02 413.30 million 1,176
97AS DEFENSE LOGISTICS AGENCY 334,886,231.36 334.89 million 2,541
97JC MISSILE DEFENSE AGENCY (MDA) 126,244,518.34 126.24 million 149
97ZS U.S. SPECIAL OPERATIONS COMMAND (USSOCOM) 72,915,198.51 72.92 million 122
97F5 WASHINGTON HEADQUARTERS SERVICES (WHS) 15,501,776.06 15.50 million 55
9776 USTRANSCOM 14,196,520.91 14.20 million 29
97F2 DEPT OF DEFENSE EDUCATION ACTIVITY (DODEA) 10,218,428.87 10.22 million 35
97DH DEFENSE HEALTH AGENCY (DHA) 8,864,565.06 8.86 million 23

Insight

Obligations for PIID 0014 over the 10-year window are highly concentrated in the military departments, led by the DEPT OF THE ARMY at $1.43 billion across 3,576 awards, followed by the DEPT OF THE NAVY at $607.01 million and the DEPT OF THE AIR FORCE at $413.30 million. The top four agencies, adding DEFENSE LOGISTICS AGENCY’s $334.89 million, account for the clear majority of obligated dollars and the largest share of award activity. Outside these entities, obligations drop sharply, with the remaining agencies each below $126.25 million, indicating a long tail of relatively limited funding distribution.

Top Vendors

SELECT
    vendor_name,
    cage_code,
    total_obligated,
    award_count,
    formatReadableQuantity(total_obligated) AS total_obligated_readable
FROM
(
    SELECT
        content__award__vendor__vendorHeader__vendorName AS vendor_name,
        ifNull(content__award__vendor__vendorSiteDetails__entityIdentifiers__cageCode, '') AS cage_code,
        sum(content__award__dollarValues__obligatedAmount) AS total_obligated,
        count() AS award_count
    FROM fpds.data
    WHERE
        content__award__awardID__awardContractID__agencyID = '9700' AND content__award__awardID__awardContractID__PIID = '0014'
        AND content__award__vendor__vendorHeader__vendorName IS NOT NULL
        AND content__award__vendor__vendorHeader__vendorName != ''
        AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 10 YEAR
        AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
    GROUP BY
        vendor_name,
        cage_code
)
ORDER BY total_obligated DESC
LIMIT 10
Vendor CAGE Code Total Obligated Readable Actions
INTUITIVE RESEARCH AND TECHNOLOGY CORPORATION 1MQC1 350,401,996.01 350.40 million 287
FLUOR INTERCONTINENTAL INCORPORATED 1CZV4 245,474,242.39 245.47 million 84
GENERAL ELECTRIC COMPANY 142,321,484.31 142.32 million 12
RAYTHEON TECHNICAL SERVICES COMPANY LLC 072E5 82,662,680.46 82.66 million 59
LOCKHEED MARTIN CORPORATION 3VQB0 74,324,861.42 74.32 million 71
JACOBS TECHNOLOGY INC. 07486 68,284,782.74 68.28 million 18
BOEING COMPANY, THE 76301 55,607,501.34 55.61 million 19
LOCKHEED MARTIN CORPORATION 49,375,692.09 49.38 million 67
THE BOEING COMPANY 77272 48,002,560.77 48.00 million 35
BP PRODUCTS NORTH AMERICA INC. 6HW96 47,445,098.05 47.45 million 6

Insight

Obligations under PIID 0014 over the past 10 years are concentrated among a small set of vendors, led by Intuitive Research and Technology Corporation at $350.40 million across 287 awards and Fluor Intercontinental Incorporated at $245.47 million across 84 awards. The remaining top vendors are materially lower in total obligations, with only General Electric Company exceeding $140 million; most others fall between about $47 million and $83 million. Vendor representation is split across several large contractors, with repeated entries for Lockheed Martin and Boeing under different names or identifiers, indicating award activity distributed across related records rather than a single dominant entry.

Top NAICS

SELECT
    content__award__productOrServiceInformation__principalNAICSCode AS naics_code,
    content__award__productOrServiceInformation__principalNAICSCode__description AS naics_name,
    sum(content__award__dollarValues__obligatedAmount) AS total_obligated,
    count() AS award_count,
    formatReadableQuantity(sum(content__award__dollarValues__obligatedAmount)) AS total_obligated_readable
FROM fpds.data
WHERE
    content__award__awardID__awardContractID__agencyID = '9700' AND content__award__awardID__awardContractID__PIID = '0014'
    AND content__award__productOrServiceInformation__principalNAICSCode IS NOT NULL
    AND content__award__productOrServiceInformation__principalNAICSCode != ''
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 10 YEAR
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY
    naics_code,
    naics_name
ORDER BY total_obligated DESC
LIMIT 10
NAICS Code Description Total Obligated Readable Actions
541712 RESEARCH AND DEVELOPMENT IN THE PHYSICAL, ENGINEERING, AND LIFE SCIENCES (EXCEPT BIOTECHNOLOGY) 589,935,488.25 589.94 million 826
541330 ENGINEERING SERVICES 407,310,755.93 407.31 million 1,520
561210 FACILITIES SUPPORT SERVICES 306,958,722.01 306.96 million 248
324110 PETROLEUM REFINERIES 233,815,924.87 233.82 million 414
336411 AIRCRAFT MANUFACTURING 171,677,694.57 171.68 million 299
336413 OTHER AIRCRAFT PARTS AND AUXILIARY EQUIPMENT MANUFACTURING 139,597,053.23 139.60 million 310
336412 AIRCRAFT ENGINE AND ENGINE PARTS MANUFACTURING 131,850,402.60 131.85 million 75
541511 CUSTOM COMPUTER PROGRAMMING SERVICES 127,213,154.92 127.21 million 170
236220 COMMERCIAL AND INSTITUTIONAL BUILDING CONSTRUCTION 105,646,385.94 105.65 million 644
336414 GUIDED MISSILE AND SPACE VEHICLE MANUFACTURING 41,062,666.56 41.06 million 73

Insight

Obligations for agency 9700, PIID 0014 are concentrated in a small set of NAICS categories, led by 541712 at $589.94 million, followed by 541330 at $407.31 million and 561210 at $306.96 million. The top 10 NAICS codes span research and development, engineering, facilities support, petroleum refining, aircraft manufacturing, and related aerospace production, indicating a mixed portfolio weighted toward technical and mission-support work. Award volume is not perfectly aligned with dollars: 541330 has the highest award count (1,520) while 541712 carries the largest obligated amount, and several manufacturing codes have relatively high obligations with fewer awards, suggesting larger-dollar actions in those sectors.

Top PSC Codes

SELECT
    content__award__productOrServiceInformation__productOrServiceCode AS psc_code,
    content__award__productOrServiceInformation__productOrServiceCode__description AS psc_name,
    sum(content__award__dollarValues__obligatedAmount) AS total_obligated,
    count() AS award_count,
    formatReadableQuantity(sum(content__award__dollarValues__obligatedAmount)) AS total_obligated_readable
FROM fpds.data
WHERE
    content__award__awardID__awardContractID__agencyID = '9700' AND content__award__awardID__awardContractID__PIID = '0014'
    AND content__award__productOrServiceInformation__productOrServiceCode IS NOT NULL
    AND content__award__productOrServiceInformation__productOrServiceCode != ''
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 10 YEAR
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY
    psc_code,
    psc_name
ORDER BY total_obligated DESC
LIMIT 10
PSC Code Description Total Obligated Readable Actions
R425 SUPPORT- PROFESSIONAL: ENGINEERING/TECHNICAL 596,413,947.23 596.41 million 1,133
1680 MISCELLANEOUS AIRCRAFT ACCESSORIES AND COMPONENTS 277,049,125.56 277.05 million 165
R706 SUPPORT- MANAGEMENT: LOGISTICS SUPPORT 262,788,046.19 262.79 million 158
9130 LIQUID PROPELLANTS AND FUELS, PETROLEUM BASE 171,462,947.57 171.46 million 255
AZ12 R&D- OTHER RESEARCH AND DEVELOPMENT (APPLIED RESEARCH/EXPLORATORY DEVELOPMENT) 108,140,675.43 108.14 million 168
AC24 R&D- DEFENSE SYSTEM: MISSILE/SPACE SYSTEMS (ENGINEERING DEVELOPMENT) 99,456,983.59 99.46 million 88
9140 FUEL OILS 62,292,937.68 62.29 million 167
1510 AIRCRAFT, FIXED WING 60,385,193.21 60.39 million 96
AC12 R&D- DEFENSE SYSTEM: AIRCRAFT (APPLIED RESEARCH/EXPLORATORY DEVELOPMENT) 56,708,717.27 56.71 million 17
H935 OTHER QC/TEST/INSPECT- SERVICE AND TRADE EQUIPMENT 48,110,100.09 48.11 million 49

Insight

Obligations for Agency 9700 PIID 0014 over the last 10 years are concentrated in professional engineering/technical support (R425), which leads by a wide margin at $596.41 million across 1,133 awards. The next largest PSCs are aircraft components (1680) at $277.05 million and logistics support (R706) at $262.79 million, indicating a spending profile centered on technical services, aviation sustainment, and logistics. Fuel-related PSCs (9130 and 9140) and R&D categories (AZ12, AC24, AC12) also represent significant obligations, but at materially lower levels than the top three categories.

Annual Trend

SELECT
    toYear(parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate)) AS year,
    sum(content__award__dollarValues__obligatedAmount) AS total_obligated,
    formatReadableQuantity(sum(content__award__dollarValues__obligatedAmount)) AS total_obligated_readable,
    count() AS award_count
FROM fpds.data
WHERE
    content__award__awardID__awardContractID__agencyID = '9700' AND content__award__awardID__awardContractID__PIID = '0014'
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 10 YEAR
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY year
ORDER BY year ASC
Year Total Obligated Readable Actions
2016 1,216,966,854.35 1.22 billion 4,577
2017 832,863,018.47 832.86 million 3,330
2018 497,105,330.38 497.11 million 1,156
2019 310,046,415.15 310.05 million 650
2020 108,578,079.07 108.58 million 457
2021 62,148,373.63 62.15 million 286
2022 -10,703,698.60 -10.70 million 145
2023 -10,082,947.17 -10.08 million 98
2024 803,288.40 803.29 thousand 82
2025 -1,553,350.38 -1.55 million 58

Insight

Obligations for PIID 0014 declined sharply over the 10-year window, falling from 1.22 billion in 2016 to 62.15 million in 2021, with award counts also dropping from 4,577 to 286. The series turns negative in 2022 and 2023, indicating net deobligations of 10.70 million and 10.08 million, followed by a small positive 803.29 thousand in 2024 and a negative 1.55 million in 2025. Overall activity is heavily concentrated in the earlier years, with materially reduced award volume and obligated dollars in the most recent period.

Use FPDS Query for deeper award and vehicle analysis

Explore federal procurement data with custom SQL, fast filtering, and deeper contract action analysis across agencies, vendors, NAICS, PSC, and annual trends.

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