Is Partnership or Limited Liability Partnership
Boolean or coded flag indicating whether the vendor’s business type is a partnership or limited liability partnership at the vendor site level. It represents a specific business-organization classification within the Other Transaction Award vendor details.
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 to vendors organized as partnerships or LLPs
- Segment vendor population by business structure
- Validate business-type classifications against other vendor attributes
Common Mistakes
- Assuming all false or null values mean the vendor is not a partnership
- Using the field as a legal-entity master identifier instead of a status flag
Query Guidance
Use this field in WHERE clauses to isolate records where the partnership/LLP indicator is affirmative, and combine it with vendor identifiers or business-type fields for validation and aggregation. If the extract includes coded values or nulls, check the data dictionary and sample distinct values before hard-coding a filter.
SQL Examples
Preview values
SELECT
content__OtherTransactionAward__contractDetail__vendor__vendorSiteDetails__vendorBusinessTypes__businessOrOrganizationType__isPartnershipOrLimitedLiabilityPartnership AS is_partnership_or_limited_liability_partnership
FROM fpds.data
WHERE content__OtherTransactionAward__contractDetail__vendor__vendorSiteDetails__vendorBusinessTypes__businessOrOrganizationType__isPartnershipOrLimitedLiabilityPartnership IS NOT NULL
LIMIT 25
Flag distribution
SELECT
content__OtherTransactionAward__contractDetail__vendor__vendorSiteDetails__vendorBusinessTypes__businessOrOrganizationType__isPartnershipOrLimitedLiabilityPartnership AS flag_value,
count() AS record_count
FROM fpds.data
WHERE content__OtherTransactionAward__contractDetail__vendor__vendorSiteDetails__vendorBusinessTypes__businessOrOrganizationType__isPartnershipOrLimitedLiabilityPartnership 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.