Is Port Authority
Boolean or coded indicator showing whether the vendor site is a port authority. It identifies the type of government entity associated with the vendor site in the transaction record.
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
- Filter awards involving port authorities
- Segment vendors by government entity type
- Support compliance and counterparty analysis
Common Mistakes
- Assuming the field is a vendor name instead of an entity-type flag
- Equating null with a false value without checking the source encoding
Query Guidance
Use this field in WHERE clauses to isolate records where the port authority indicator is present or true, and confirm whether the dataset stores values as numeric flags, booleans, or text codes. Example pattern: WHERE isPortAuthority IN (1, '1', 'Y', 'TRUE') after validating the extract's coding.
SQL Examples
Preview values
SELECT
content__OtherTransactionIDV__contractDetail__vendor__vendorSiteDetails__typeOfGovernmentEntity__isPortAuthority AS is_port_authority
FROM fpds.data
WHERE content__OtherTransactionIDV__contractDetail__vendor__vendorSiteDetails__typeOfGovernmentEntity__isPortAuthority IS NOT NULL
LIMIT 25
Flag distribution
SELECT
content__OtherTransactionIDV__contractDetail__vendor__vendorSiteDetails__typeOfGovernmentEntity__isPortAuthority AS flag_value,
count() AS record_count
FROM fpds.data
WHERE content__OtherTransactionIDV__contractDetail__vendor__vendorSiteDetails__typeOfGovernmentEntity__isPortAuthority 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.