This page presents an FPDS-style view of award number FA867523C0037 for agency ID 9700 across the last 5 years. The record shows 51 award actions with total obligated dollars of 2.50 billion and an average action value of 48,992,508.46.
Award Number
Award Number 9700 / FA867523C0037 Federal Contract Action Summary (Last 5 Years)
Procurement summary for award number FA867523C0037 under agency ID 9700, showing obligations and action activity over the last 5 years.
Total obligated exact is 2498617931.4, and the readable amount is rounded to 2.50 billion.
Overview
The award record for FA867523C0037 is summarized here with obligations and action counts for the selected 5-year window. Total obligated funding is 2.50 billion, based on an exact value of 2498617931.4, across 51 award actions. The average action value is 48,992,508.46.
How to use this page
Use this page to review obligation magnitude and action volume for award number FA867523C0037. The figures support quick comparison against other awards in agency ID 9700 and help frame how activity is distributed across the analysis period.
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 = 'FA867523C0037'
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 | 2,498,617,931.40 | 2.50 billion | 42 |
| 9763 | DEFENSE CONTRACT MANAGEMENT AGENCY (DCMA) | 0.00 | 0.00 | 9 |
Insight
Award activity for PIID FA867523C0037 is highly concentrated in the Department of the Air Force, which accounts for $2.50 billion across 42 awards over the 5-year window. Defense Contract Management Agency appears with 9 awards but no obligated dollars, indicating administrative or oversight-related entries rather than funded obligation activity. Overall, obligated value is concentrated in a single agency, with limited distribution across other agencies.
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 = 'FA867523C0037'
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 |
|---|---|---|---|---|
| RAYTHEON COMPANY | 15090 | 2,498,617,931.40 | 2.50 billion | 51 |
Insight
Over the 5-year window, obligations for PIID FA867523C0037 are fully concentrated with a single vendor, RAYTHEON COMPANY (CAGE 15090). This vendor received $2.50 billion across 51 awards, indicating a consistently recurring award relationship rather than a broadly distributed vendor base.
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 = 'FA867523C0037'
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 |
|---|---|---|---|---|
| 336414 | GUIDED MISSILE AND SPACE VEHICLE MANUFACTURING | 2,498,617,931.40 | 2.50 billion | 51 |
Insight
Over the 5-year window, obligations for award FA867523C0037 are fully concentrated in NAICS 336414, Guided Missile and Space Vehicle Manufacturing. This NAICS accounts for $2.50 billion across 51 awards, indicating a consistently focused procurement profile rather than a distributed mix of industrial sectors. The concentration suggests the award activity is closely aligned to a single manufacturing category.
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 = 'FA867523C0037'
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 |
|---|---|---|---|---|
| 1410 | GUIDED MISSILES | 2,498,617,931.40 | 2.50 billion | 51 |
Insight
Obligations are fully concentrated in PSC 1410, Guided Missiles, with $2.50 billion obligated across 51 awards in the 5-year window. This indicates a highly focused procurement profile for this action, with no observable diversification across other PSCs in the provided data. The award activity reflects repeated obligating actions within a single product category rather than a broad mix of supplies or services.
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 = 'FA867523C0037'
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 |
|---|---|---|---|
| 2023 | 1,171,985,234.40 | 1.17 billion | 7 |
| 2024 | 1,256,544,598.79 | 1.26 billion | 21 |
| 2025 | 70,088,098.21 | 70.09 million | 23 |
Insight
Obligations are concentrated in 2023 and 2024, at $1.17 billion and $1.26 billion respectively, compared with $70.09 million in 2025. Award volume increased from 7 in 2023 to 21 in 2024 and 23 in 2025, indicating a shift toward more numerous awards while obligated dollars fell sharply in 2025. Overall, the pattern suggests a highly uneven annual distribution with peak funding activity in 2023–2024.
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.