VINNELL ARABIA, CAGE SF481 and UEI N5F4BM883LB5, shows 576,237,264.23 in total obligated federal awards across 74 actions in the last 5 years. The Department of the Army accounts for all recorded obligated spending in this window.
Federal Contractor
VINNELL ARABIA Federal Contract Obligations (Last 5 Years)
VINNELL ARABIA has 74 recorded award actions and 576.24 million in obligated federal spending over the last 5 years.
Annual obligations were highest in 2022 and 2021, with a negative total in 2025, and the largest NAICS share is 488190, Other Support Activities for Air Transportation.
About VINNELL ARABIA federal contract activity
VINNELL ARABIA, identified by CAGE SF481 and UEI N5F4BM883LB5, received 576.24 million in obligated federal spending across 74 awards over the last 5 years. The average award value was 7.79 million, indicating a mix of recurring and higher-value obligations rather than a large volume of small transactions.
Agency mix and customer concentration
All recorded obligations in the analysis window were concentrated in the Department of the Army, which accounted for the full 576.24 million and all 74 awards. This indicates a highly concentrated customer profile with no visible diversification across civilian or other defense agencies in the period reviewed.
Industry profile based on NAICS activity
Award activity was heavily concentrated in NAICS 488190, Other Support Activities for Air Transportation, which represented 536.75 million across 20 awards and dominated the vendor’s federal revenue mix. Secondary activity was distributed across Office Administrative Services, National Security, Facilities Support Services, and General Warehousing and Storage, but each of these categories was materially smaller than the air transportation support workload.
Annual contract trend over the analysis window
Obligations were strongest in 2021 and 2022, at 230.71 million and 239.88 million respectively, accounting for the bulk of the five-year total. Spending then fell sharply in 2023 and 2024, and 2025 shows a small negative net obligation of 1.92 million, which suggests downward pressure in recent activity or downward adjustments against prior awards.
How to interpret this page
This summary is based on FPDS-observed obligations for the last 5 years using the provided vendor identifiers, CAGE SF481 and UEI N5F4BM883LB5. Agency, NAICS, and annual figures reflect the reported obligated amounts and award counts in the supplied dataset; negative obligations are presented as provided and may reflect deobligations or contract adjustments.
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 = 'SF481'
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 | 576,237,264.23 | 576.24 million | 74 |
Insight
Over the last 5 years, VINNELL ARABIA’s obligations are fully concentrated in the DEPT OF THE ARMY, which accounts for the entire $576.24 million across 74 awards. This indicates a single-agency dependency with no observed distribution across other civilian or defense agencies in the provided period. The average award value of about $7.79 million suggests recurring medium-to-large awards within the Army relationship.
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 = 'SF481'
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 |
|---|---|---|---|---|
| 488190 | OTHER SUPPORT ACTIVITIES FOR AIR TRANSPORTATION | 536,749,856.13 | 536.75 million | 20 |
| 561110 | OFFICE ADMINISTRATIVE SERVICES | 17,107,991.00 | 17.11 million | 16 |
| 928110 | NATIONAL SECURITY | 11,698,106.71 | 11.70 million | 25 |
| 561210 | FACILITIES SUPPORT SERVICES | 6,530,376.39 | 6.53 million | 8 |
| 493110 | GENERAL WAREHOUSING AND STORAGE | 4,150,934.00 | 4.15 million | 5 |
Insight
Over the last 5 years, VINNELL ARABIA’s obligations are highly concentrated in NAICS 488190, Other Support Activities for Air Transportation, which accounts for $536.75 million across 20 awards and represents the clear majority of the $576.24 million total. The remaining obligations are distributed across several much smaller NAICS categories, led by Office Administrative Services ($17.11 million, 16 awards) and National Security ($11.70 million, 25 awards). This pattern indicates a portfolio dominated by air transportation support work, with limited but recurring activity in administrative, security, facilities, and warehousing functions.
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 = 'SF481'
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 | -1,920,700.83 | -1.92 million | 6 |
| 2024 | 15,116,093.63 | 15.12 million | 10 |
| 2023 | 92,446,703.81 | 92.45 million | 19 |
| 2022 | 239,883,883.69 | 239.88 million | 17 |
| 2021 | 230,711,283.93 | 230.71 million | 22 |
Insight
VINNELL ARABIA (CAGE SF481) obligated $576.24 million across 74 awards over the last 5 years, with activity concentrated in 2021 and 2022, which together account for $470.59 million and 39 awards. Obligations declined sharply after 2022, falling to $92.45 million in 2023 and $15.12 million in 2024, then to a net deobligation of $1.92 million in 2025. Award volume also contracted from 22 awards in 2021 to 6 awards in 2025, indicating reduced recent contracting activity and a highly back-loaded obligation profile.
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.