Title
Human-readable award title stored as a free-text string. It typically combines the contract number, vendor name, award type, and sometimes modification or action information, serving as an identifying label for the FPDS record.
FPDS Compare
Use Cases
- Dictionary lookup and field explanation
- SQL filtering and grouping
- Analytical reporting and reusable query building
Common Usage
- record identification
- text-based filtering
- report display labels
Common Mistakes
- using it as a unique key
- assuming a fixed format across all records
Query Guidance
Use LIKE, ILIKE, or full-text search for pattern-based retrieval, and combine with structured identifiers such as contract number, vendor name, or action dates for precise results. Do not rely on exact string matching unless you have normalized the text and confirmed consistent formatting.
SQL Examples
Preview values
SELECT
title AS title
FROM fpds.data
WHERE title IS NOT NULL
LIMIT 25
Top values
SELECT
title AS value,
count() AS record_count
FROM fpds.data
WHERE title 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.