Award Number

Award Number 6920 / 693KA821F00222 Federal Contract Action Summary (Last 5 Years)

Award number 693KA821F00222 for Agency ID 6920 shows 109 actions and $1.72 billion in obligated funding over the last 5 years.

This award record summarizes obligation activity tied to award number 693KA821F00222 within Agency ID 6920. The analysis window covers the last 5 years and reflects $1,719,392,070.32 in total obligated value across 109 actions.

Generated at 03/20/2026

Analysis period: Last 5 years

Amounts are shown as both readable and exact values, with average action value calculated at $15,774,239.18.

Agency ID
6920
PIID
693KA821F00222
Type
Award
Total Obligated
1.72 billion
1,719,392,070.32
Actions
109
Average Action Value
15,774,239.18

Overview

Award number 693KA821F00222 is associated with Agency ID 6920 and shows sustained obligation activity across the last 5 years. The record totals $1,719,392,070.32 in obligated value over 109 award actions, for an average action value of $15,774,239.18. This provides a compact view of award-level funding volume and action frequency.

How to use this page

Use this page to review the award's obligation pattern over the selected 5-year window. The figures support basic procurement analysis by showing total obligated value, action count, and average action size for award number 693KA821F00222. The data is presented at the award level and should be read as a summary of recorded action activity.

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 = '6920' AND content__award__awardID__awardContractID__PIID = '693KA821F00222'
    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
6920 FEDERAL AVIATION ADMINISTRATION 1,719,392,070.32 1.72 billion 109

Insight

Over the 5-year window, obligations are fully concentrated in the Federal Aviation Administration, which accounts for $1.72 billion across 109 awards. This indicates the award activity for PIID 693KA821F00222 is centered entirely within a single agency rather than distributed across multiple agencies. The volume of awards suggests repeated obligational activity under the same agency relationship.

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 = '6920' AND content__award__awardID__awardContractID__PIID = '693KA821F00222'
        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
HARRIS CORPORATION 4YGC4 1,719,392,070.32 1.72 billion 109

Insight

Over the 5-year window for award 693KA821F00222, HARRIS CORPORATION (CAGE 4YGC4) accounts for all reported vendor obligations in this section, with $1.72 billion across 109 awards. This indicates complete concentration of obligated spending with a single vendor for the reviewed award context. The distribution reflects a highly concentrated obligation pattern rather than a diversified 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 = '6920' AND content__award__awardID__awardContractID__PIID = '693KA821F00222'
    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
517310 TELECOMMUNICATIONS RESELLERS 1,719,392,070.32 1.72 billion 109

Insight

Obligations for PIID 693KA821F00222 are fully concentrated in NAICS 517310, Telecommunications Resellers, over the 5-year window. The award records 109 actions totaling $1.72 billion, indicating a single-industry procurement profile with no diversification across NAICS codes in the provided data. This level of concentration suggests the award is tied to a narrowly defined telecommunications reseller requirement.

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 = '6920' AND content__award__awardID__awardContractID__PIID = '693KA821F00222'
    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
DG11 IT and Telecom - Network: Satellite Communications and Telecom Access Services 1,604,312,277.03 1.60 billion 98
DG11 IT AND TELECOM - NETWORK - TELECOM ACCESS SERVICES 115,079,793.29 115.08 million 11

Insight

Obligations are highly concentrated in PSC DG11, with 1.60 billion across 98 awards in the first DG11 description. A smaller but still material share, 115.08 million across 11 awards, is recorded under a closely related DG11 description, indicating the award’s obligations are dominated by IT and telecom network access services rather than being spread across multiple PSCs. The distribution suggests recurring use of the same PSC family over the 5-year window, with only limited segmentation within that category.

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 = '6920' AND content__award__awardID__awardContractID__PIID = '693KA821F00222'
    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 98,255,499.79 98.26 million 9
2022 160,910,839.96 160.91 million 19
2023 243,991,125.23 243.99 million 23
2024 264,942,133.23 264.94 million 25
2025 951,292,472.11 951.29 million 33

Insight

Obligations for PIID 693KA821F00222 under Agency 6920 increased each year across the 5-year window, rising from $98.26 million in 2021 to $951.29 million in 2025. Award volume also expanded from 9 awards to 33 awards, indicating both higher funding concentration and broader award activity over time. The largest year-over-year increase occurred in 2025, when obligated dollars more than tripled relative to 2024, suggesting a pronounced shift in the award’s funding profile.

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.