Is Us Government Entity
Boolean or coded flag indicating whether the vendor is a U.S. government entity in the Other Transaction Award vendor business type structure. It classifies the vendor's organizational status for the recorded site or business-type entry rather than describing the award itself.
FPDS Compare
Use Cases
- Dictionary lookup and field explanation
- SQL filtering and grouping
- Analytical reporting and reusable query building
- Contractor profiling and competitor analysis
Common Usage
- exclude or isolate awards to U.S. government entities
- segment vendor population by recipient type
- support compliance and reporting checks on awardee composition
Common Mistakes
- using the flag as a direct measure of subcontractor or downstream beneficiary status
- assuming a zero value always means non-government without checking whether the field is null, unknown, or differently coded
Query Guidance
Filter on the stored boolean/code value exactly as populated in the source data, and confirm whether '0' means false, no, or an unpopulated coded state in the specific extract. Use this field in joins or groupings only after validating the encoding, and pair it with vendor type descriptors when available for cleaner reporting.
SQL Examples
Preview values
SELECT
content__OtherTransactionAward__contractDetail__vendor__vendorSiteDetails__vendorBusinessTypes__businessOrOrganizationType__isUSGovernmentEntity AS is_us_government_entity
FROM fpds.data
WHERE content__OtherTransactionAward__contractDetail__vendor__vendorSiteDetails__vendorBusinessTypes__businessOrOrganizationType__isUSGovernmentEntity IS NOT NULL
LIMIT 25
Flag distribution
SELECT
content__OtherTransactionAward__contractDetail__vendor__vendorSiteDetails__vendorBusinessTypes__businessOrOrganizationType__isUSGovernmentEntity AS flag_value,
count() AS record_count
FROM fpds.data
WHERE content__OtherTransactionAward__contractDetail__vendor__vendorSiteDetails__vendorBusinessTypes__businessOrOrganizationType__isUSGovernmentEntity IS NOT NULL
GROUP BY flag_value
ORDER BY record_count DESC
Each dictionary item includes SQL-ready examples generated alongside the variable metadata, allowing immediate use in FPDS Query for filtering, aggregation, and analysis.