Is Partnership or Limited Liability Partnership
Boolean or coded flag indicating whether the vendor entity recorded in the award is a partnership or a limited liability partnership. It is a vendor business-type attribute captured under vendor site details, not a contract action or performance measure.
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 partnership or LLP vendors
- Segment vendor population by legal organization type
- Validate vendor business-type coding across records
Common Mistakes
- Assuming the field describes the prime contractor's performance status rather than legal business form
- Treating the value as text without checking the actual encoded representations in the source data
Query Guidance
Use this field as a filter or grouping flag in WHERE or CASE logic after confirming the stored code values. Example pattern: `WHERE isPartnershipOrLimitedLiabilityPartnership IN ('1','Y',1)` or map the observed codes to a standardized boolean before aggregating.
SQL Examples
Preview values
SELECT
content__OtherTransactionIDV__contractDetail__vendor__vendorSiteDetails__vendorBusinessTypes__businessOrOrganizationType__isPartnershipOrLimitedLiabilityPartnership AS is_partnership_or_limited_liability_partnership
FROM fpds.data
WHERE content__OtherTransactionIDV__contractDetail__vendor__vendorSiteDetails__vendorBusinessTypes__businessOrOrganizationType__isPartnershipOrLimitedLiabilityPartnership IS NOT NULL
LIMIT 25
Flag distribution
SELECT
content__OtherTransactionIDV__contractDetail__vendor__vendorSiteDetails__vendorBusinessTypes__businessOrOrganizationType__isPartnershipOrLimitedLiabilityPartnership AS flag_value,
count() AS record_count
FROM fpds.data
WHERE content__OtherTransactionIDV__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.