Created By
Identifier for the user or system account that created the Other Transaction Award record in FPDS. It is a free-text string, typically an email-style login or user ID rather than a human-readable name.
FPDS Compare
Use Cases
- Dictionary lookup and field explanation
- SQL filtering and grouping
- Analytical reporting and reusable query building
Common Usage
- audit and lineage checks
- identifying record-entry patterns by user or office
- debugging duplicates, outliers, or submission issues
Common Mistakes
- assuming it identifies the contracting officer or award recipient
- joining it as if it were a coded key with a stable enterprise identifier
Query Guidance
Use exact match, LOWER(), or pattern filters on the string value when auditing specific creators. For summary analysis, aggregate by normalized creator value or extracted domain; do not expect referential integrity to another table unless your local data model provides one.
SQL Examples
Preview values
SELECT
content__OtherTransactionAward__contractDetail__transactionInformation__createdBy AS created_by
FROM fpds.data
WHERE content__OtherTransactionAward__contractDetail__transactionInformation__createdBy IS NOT NULL
LIMIT 25
Top values
SELECT
content__OtherTransactionAward__contractDetail__transactionInformation__createdBy AS value,
count() AS record_count
FROM fpds.data
WHERE content__OtherTransactionAward__contractDetail__transactionInformation__createdBy 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.