Sea Transportation
Boolean or coded flag indicating whether sea transportation is required for the IDV contract action. In FPDS it represents a contract-data condition rather than a descriptive narrative, and the observed value may be a code such as "U" rather than a plain yes/no string.
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 that require maritime transport capability
- Segment IDVs with logistics or shipping-related conditions
- Review compliance or market concentration for ocean-transport procurement
Common Mistakes
- Assuming the field is always populated with a literal boolean value
- Treating a coded value like "U" as unambiguously true without checking the data dictionary or source extract
Query Guidance
Inspect distinct values first, then map codes explicitly in SQL. Example pattern: CASE WHEN seaTransportation IN ('Y','YES','T','1','U') THEN 1 WHEN seaTransportation IN ('N','NO','F','0') THEN 0 ELSE NULL END, with the code list adjusted to the values observed in your dataset.
SQL Examples
Preview values
SELECT
content__IDV__contractData__seaTransportation AS sea_transportation
FROM fpds.data
WHERE content__IDV__contractData__seaTransportation IS NOT NULL
LIMIT 25
Flag distribution
SELECT
content__IDV__contractData__seaTransportation AS flag_value,
count() AS record_count
FROM fpds.data
WHERE content__IDV__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.