Effective Date
Date on which the Other Transaction award becomes effective and the agreement’s terms take effect. In FPDS, this is the contractual effective date recorded in the contract detail date set.
FPDS Compare
Use Cases
- Dictionary lookup and field explanation
- SQL filtering and grouping
- Analytical reporting and reusable query building
- Timeline, cohort, and period analysis
Common Usage
- calendar or fiscal period grouping of awards
- sequencing award dates against modification and completion dates
- filtering records for effective-date-based analysis
Common Mistakes
- assuming it is the same as the signed date or obligated date
- grouping raw timestamp strings without normalizing the date component
Query Guidance
Convert the string to a DATE or TIMESTAMP type before filtering or aggregating. Use it in WHERE clauses for effective-date windows and in DATE_TRUNC or EXTRACT logic for monthly, quarterly, or fiscal reporting; if the source stores midnight timestamps, strip the time portion when day-level precision is sufficient.
SQL Examples
Preview values
SELECT
content__OtherTransactionAward__contractDetail__relevantContractDates__effectiveDate AS effective_date
FROM fpds.data
WHERE content__OtherTransactionAward__contractDetail__relevantContractDates__effectiveDate IS NOT NULL
LIMIT 25
Top values
SELECT
content__OtherTransactionAward__contractDetail__relevantContractDates__effectiveDate AS value,
count() AS record_count
FROM fpds.data
WHERE content__OtherTransactionAward__contractDetail__relevantContractDates__effectiveDate 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.