Support Services Type Contract
Boolean flag indicating whether the IDV is identified as a support services contract in NASA-specific agency elements. A value of 1 means the record is marked as support services; 0 means it is not.
FPDS Compare
Use Cases
- Dictionary lookup and field explanation
- SQL filtering and grouping
- Analytical reporting and reusable query building
- NASA-specific IDV record interpretation
Common Usage
- Filter NASA IDVs that are classified as support services
- Segment obligations by services-versus-non-services activity
- Support compliance or oversight reviews of service contracts
Common Mistakes
- Assuming null or blank means false without checking source conventions
- Using this field as a substitute for broader service procurement coding
Query Guidance
Use a direct predicate such as `supportServicesTypeContract = 1` to identify flagged records, and `supportServicesTypeContract = 0` for non-flagged records. If the dataset stores boolean text or mixed representations, normalize values before filtering and exclude nulls explicitly when needed.
SQL Examples
Preview values
SELECT
content__IDV__agencySpecificIDVElements__NASASpecificIDVElements__supportServicesTypeContract AS support_services_type_contract
FROM fpds.data
WHERE content__IDV__agencySpecificIDVElements__NASASpecificIDVElements__supportServicesTypeContract IS NOT NULL
LIMIT 25
Flag distribution
SELECT
content__IDV__agencySpecificIDVElements__NASASpecificIDVElements__supportServicesTypeContract AS flag_value,
count() AS record_count
FROM fpds.data
WHERE content__IDV__agencySpecificIDVElements__NASASpecificIDVElements__supportServicesTypeContract 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.