Sea Transportation Description
Human-readable description paired with the coded Sea Transportation field in award contract data. It identifies the sea transportation requirement in plain language rather than as a code or abbreviated value.
FPDS Compare
Paired Field
Use Cases
- Dictionary lookup and field explanation
- SQL filtering and grouping
- Analytical reporting and reusable query building
Common Usage
- Interpreting the meaning of a Sea Transportation code
- Filtering awards with maritime logistics components
- Validating coded transportation fields against narrative values
Common Mistakes
- Using the description as if it were the coded indicator
- Assuming the text fully standardizes across records with the same code
Query Guidance
Use this field for text-based review, validation, and grouping after normalizing case and trimming whitespace. In SQL, join or pair it with the corresponding coded Sea Transportation field; do not use the description alone for definitive categorical logic when a code field is available.
SQL Examples
Preview values
SELECT
content__award__contractData__seaTransportation__description AS sea_transportation_description
FROM fpds.data
WHERE content__award__contractData__seaTransportation__description IS NOT NULL
LIMIT 25
Top values
SELECT
content__award__contractData__seaTransportation__description AS value,
count() AS record_count
FROM fpds.data
WHERE content__award__contractData__seaTransportation__description IS NOT NULL
GROUP BY value
ORDER BY record_count DESC
LIMIT 25
Each dictionary item includes SQL-ready examples generated alongside the variable metadata, allowing immediate use in FPDS Query for filtering, aggregation, and analysis.