Award Number

Award Number 9700 / 0013 Federal Contract Action Summary (Last 5 Years)

Award number 0013 for agency 9700 summarizes procurement activity over the last 5 years.

This page covers award number 0013 for agency ID 9700 across the last 5 years. The award shows 614 actions and total obligated funding of $45.75 million.

Generated at 03/20/2026

Analysis period: Last 5 years

Totals are based on an exact obligated amount of 45,749,304.45 and an average action value of 74,510.27.

Agency ID
9700
PIID
0013
Type
Award
Total Obligated
45.75 million
45,749,304.45
Actions
614
Average Action Value
74,510.27

Overview

The award record for 0013 under agency 9700 includes 614 award actions during the analysis window. Total obligated value is 45,749,304.45, with an average action value of 74,510.27. This provides a compact view of award activity and funding volume over time.

How to use this page

Use this page to review overall obligation levels, action frequency, and average action value for award 0013. The figures support basic trend review and comparison against other awards in the same agency context.

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 = '0013'
    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,
    agency_name
ORDER BY total_obligated DESC
LIMIT 10
Agency ID Agency Name Total Obligated Readable Actions
5700 DEPT OF THE AIR FORCE 45,759,789.37 45.76 million 100
2100 DEPT OF THE ARMY 6,684,258.67 6.68 million 224
9761 DEFENSE THREAT REDUCTION AGENCY (DTRA) 2,151,705.22 2.15 million 10
97F5 WASHINGTON HEADQUARTERS SERVICES (WHS) 183,002.21 183.00 thousand 7
97AS DEFENSE LOGISTICS AGENCY 55,217.82 55.22 thousand 21
97ZS U.S. SPECIAL OPERATIONS COMMAND (USSOCOM) -8,905.62 -8.91 thousand 5
97DH DEFENSE HEALTH AGENCY (DHA) -199,203.60 -199.20 thousand 8
9776 USTRANSCOM -488,597.58 -488.60 thousand 2
97BZ DEFENSE FINANCE AND ACCOUNTING SERVICE (DFAS) -496,692.20 -496.69 thousand 2
97JC MISSILE DEFENSE AGENCY (MDA) -512,836.43 -512.84 thousand 8

Insight

Obligations for PIID 0013 over the 5-year window are concentrated in the Department of the Air Force, which accounts for $45.76 million across 100 awards and far exceeds every other agency listed. The Department of the Army is the next largest recipient by award count with 224 awards but only $6.68 million obligated, indicating a much more distributed, lower-value footprint. DTRA is a distant third at $2.15 million across 10 awards, while the remaining agencies each represent comparatively small activity and several show net negative obligations, including MDA, DFAS, USTRANSCOM, DHA, and USSOCOM.

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 = '0013'
        AND content__award__vendor__vendorHeader__vendorName IS NOT NULL
        AND content__award__vendor__vendorHeader__vendorName != ''
        AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 5 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
LOCKHEED MARTIN CORPORATION 81755 48,077,792.20 48.08 million 43
ZUHAIR FAYEZ PARTNERSHIP SZY08 11,980,112.29 11.98 million 10
JOHNSON CONTROLS GOVERNMENT SYSTEMS LLC 1MN13 2,868,867.31 2.87 million 29
TORCH TECHNOLOGIES INC 3CBV3 2,524,772.37 2.52 million 27
LEIDOS, INC. 5UTE1 2,111,551.01 2.11 million 7
INTUITIVE RESEARCH AND TECHNOLOGY CORPORATION 1MQC1 1,849,047.07 1.85 million 29
HAL HAYS CONSTRUCTION, INC. 1W8K2 1,808,391.33 1.81 million 8
FLUOR INTERCONTINENTAL INCORPORATED 1CZV4 1,710,648.19 1.71 million 7
APTIM FEDERAL SERVICES, LLC 1YQ36 1,057,046.48 1.06 million 3
MK ENGINEERS, LTD. 9Y481 491,300.00 491.30 thousand 3

Insight

Over the 5-year window, obligations for PIID 0013 are concentrated among a small number of vendors, led by LOCKHEED MARTIN CORPORATION at $48.08 million across 43 awards. The next largest recipient, ZUHAIR FAYEZ PARTNERSHIP, received $11.98 million across 10 awards, while the remaining vendors each received less than $3 million, indicating a steep drop-off after the top two. Several vendors have relatively high award counts but lower obligated amounts, suggesting frequent, smaller-value awards rather than a few large obligations.

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 = '0013'
    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,
    naics_name
ORDER BY total_obligated DESC
LIMIT 10
NAICS Code Description Total Obligated Readable Actions
336411 AIRCRAFT MANUFACTURING 45,624,789.22 45.62 million 62
541330 ENGINEERING SERVICES 9,182,192.31 9.18 million 170
237310 HIGHWAY, STREET, AND BRIDGE CONSTRUCTION 1,808,391.33 1.81 million 8
541712 RESEARCH AND DEVELOPMENT IN THE PHYSICAL, ENGINEERING, AND LIFE SCIENCES (EXCEPT BIOTECHNOLOGY) 1,613,478.13 1.61 million 101
562910 REMEDIATION SERVICES 1,063,927.71 1.06 million 11
561210 FACILITIES SUPPORT SERVICES 880,028.51 880.03 thousand 16
811219 OTHER ELECTRONIC AND PRECISION EQUIPMENT REPAIR AND MAINTENANCE 240,220.54 240.22 thousand 5
532420 OFFICE MACHINERY AND EQUIPMENT RENTAL AND LEASING 135,751.03 135.75 thousand 8
517911 TELECOMMUNICATIONS RESELLERS 87,626.83 87.63 thousand 4
517919 ALL OTHER TELECOMMUNICATIONS 58,624.97 58.62 thousand 10

Insight

For PIID 0013 over the last 5 years, obligations are heavily concentrated in NAICS 336411 (Aircraft Manufacturing), which accounts for $45.62 million across 62 awards and far exceeds all other listed industries. The next largest category, NAICS 541330 (Engineering Services), is materially smaller at $9.18 million but has the highest award count in the set (170), indicating a more fragmented distribution of smaller obligations. Remaining obligations are dispersed across construction, R&D, remediation, facilities support, and smaller service codes, each representing a relatively minor share of total obligated value.

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 = '0013'
    AND content__award__productOrServiceInformation__productOrServiceCode IS NOT NULL
    AND content__award__productOrServiceInformation__productOrServiceCode != ''
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 5 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
1510 AIRCRAFT, FIXED WING 47,747,043.42 47.75 million 49
C214 ARCHITECT AND ENGINEERING- GENERAL: MANAGEMENT ENGINEERING 11,980,112.29 11.98 million 10
H935 OTHER QC/TEST/INSPECT- SERVICE AND TRADE EQUIPMENT 2,868,867.31 2.87 million 29
R425 SUPPORT- PROFESSIONAL: ENGINEERING/TECHNICAL 2,747,318.01 2.75 million 125
Y1LB CONSTRUCTION OF HIGHWAYS, ROADS, STREETS, BRIDGES, AND RAILWAYS 1,808,391.33 1.81 million 8
R706 SUPPORT- MANAGEMENT: LOGISTICS SUPPORT 1,625,987.55 1.63 million 18
F999 OTHER ENVIRONMENTAL SERVICES 1,112,353.24 1.11 million 9
C215 ARCHITECT AND ENGINEERING- GENERAL: PRODUCTION ENGINEERING 365,486.00 365.49 thousand 5
C211 ARCHITECT AND ENGINEERING- GENERAL: LANDSCAPING, INTERIOR LAYOUT, AND DESIGNING 360,911.17 360.91 thousand 11
Y1ED CONSTRUCTION OF SHIP CONSTRUCTION AND REPAIR FACILITIES 270,003.59 270.00 thousand 1

Insight

Obligations over the 5-year window are concentrated in PSC 1510, AIRCRAFT, FIXED WING, at $47.75 million across 49 awards, far exceeding all other listed codes. The next largest category, C214, ARCHITECT AND ENGINEERING - GENERAL: MANAGEMENT ENGINEERING, totals $11.98 million across 10 awards, indicating a substantial drop after the leading PSC. Remaining obligations are comparatively dispersed across smaller categories, with R425 standing out for volume of awards (125) despite only $2.75 million obligated.

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 = '0013'
    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 ASC
Year Total Obligated Readable Actions
2021 46,891,134.04 46.89 million 263
2022 -194,917.07 -194.92 thousand 131
2023 5,199,435.34 5.20 million 89
2024 -4,122,790.78 -4.12 million 83
2025 -2,023,557.08 -2.02 million 48

Insight

Obligations for PIID 0013 are highly concentrated in 2021, when $46.89 million was obligated across 263 awards, far exceeding all later years combined. Activity declined sharply thereafter, with award counts falling from 263 in 2021 to 48 in 2025, indicating a materially reduced transaction volume over the 5-year window. Net obligations were near zero or negative in 2022, 2024, and 2025, while 2023 was the only other positive year at $5.20 million, suggesting uneven funding distribution and possible deobligation activity in later years.

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 5 years view into full FPDS Query workflows with deeper filtering, custom SQL, saved queries, and broader market comparison.