Description of Contract Requirement
Free-text description of the requirement covered by the Other Transaction IDV contract record. It captures the human-readable statement of what the procurement action is intended to satisfy, such as a scope, deliverable, or funding-related requirement note.
FPDS Compare
Use Cases
- Dictionary lookup and field explanation
- SQL filtering and grouping
- Analytical reporting and reusable query building
Common Usage
- keyword search for requirement scope
- manual review of award purpose
- text-based categorization of procurement activity
Common Mistakes
- treating the description as a standardized code
- using raw text for exact grouping without normalization
Query Guidance
Use LIKE, ILIKE, full-text search, or regex filters for keyword analysis, and avoid relying on exact equality except for known fixed phrases. For reporting, normalize text externally or join to coded fields when available; when the field is null, do not infer the requirement from other free-text fields unless your methodology explicitly allows it.
SQL Examples
Preview values
SELECT
content__OtherTransactionIDV__contractDetail__contractData__descriptionOfContractRequirement AS description_of_contract_requirement
FROM fpds.data
WHERE content__OtherTransactionIDV__contractDetail__contractData__descriptionOfContractRequirement IS NOT NULL
LIMIT 25
Top values
SELECT
content__OtherTransactionIDV__contractDetail__contractData__descriptionOfContractRequirement AS value,
count() AS record_count
FROM fpds.data
WHERE content__OtherTransactionIDV__contractDetail__contractData__descriptionOfContractRequirement 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.