Sea Transportation
Boolean or coded flag indicating whether the contract requires sea transportation. In FPDS, this field captures a specific transportation-related condition associated with the award.
FPDS Compare
Paired Field
Use Cases
- Dictionary lookup and field explanation
- SQL filtering and grouping
- Analytical reporting and reusable query building
Common Usage
- Filter awards involving sea freight or maritime shipping requirements
- Analyze procurement activity tied to overseas or port-based logistics
- Support compliance and transportation-mode segmentation
Common Mistakes
- Assuming it measures actual shipping use instead of a requirement indicator
- Interpreting a coded value without confirming the code set
Query Guidance
Use it as a filter condition in WHERE clauses after normalizing the flag values to a consistent yes/no standard. If the data contains coded representations, map observed values explicitly before aggregating or joining, and do not treat nulls as false unless your analysis rule defines them that way.
SQL Examples
Preview values
SELECT
content__award__contractData__seaTransportation AS sea_transportation
FROM fpds.data
WHERE content__award__contractData__seaTransportation IS NOT NULL
LIMIT 25
Flag distribution
SELECT
content__award__contractData__seaTransportation AS flag_value,
count() AS record_count
FROM fpds.data
WHERE content__award__contractData__seaTransportation IS NOT NULL
GROUP BY flag_value
ORDER BY record_count DESC
Each dictionary item includes SQL-ready examples generated alongside the variable metadata, allowing immediate use in FPDS Query for filtering, aggregation, and analysis.