@yottagraph-app/data-model-skill 0.0.32 → 0.0.34

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,863 @@
1
+ # Dataset schema for USAspending.gov.
2
+ #
3
+ # Atomizer output uses Record.Source one of:
4
+ # "usaspending" — reference catalogs (agencies, NAICS, PSC, assistance listings)
5
+ # "usaspending_contract" — contracts and their transaction sub-records
6
+ # "usaspending_idv" — IDV parent awards and their transaction sub-records
7
+ # "usaspending_grant" — grants and their transaction sub-records
8
+ # "usaspending_subaward" — subaward records from bulk Subaward CSV archives
9
+ #
10
+ # See DATA_DICTIONARY.md in this directory for the full entity/property/
11
+ # relationship model. This schema is being filled in incrementally as each
12
+ # A9 sub-pipeline lands; A10 (`Create dataset schema.yaml; run schemacheck`)
13
+ # is the final reconciliation pass.
14
+ name: "usaspending"
15
+ description: "Federal contracts, IDVs, grants, transactions, and subawards from USAspending.gov (Treasury / Bureau of the Fiscal Service); recipients keyed by UEI, agencies keyed by CGAC."
16
+
17
+ extraction:
18
+ flavors: closed
19
+ properties: closed
20
+ relationships: closed
21
+ attributes: closed
22
+ events: closed
23
+
24
+ flavors:
25
+ - name: "organization"
26
+ description: "A particular business, institution, or organization such as a corporation, university, government agency, or non-profit"
27
+ display_name: "Organization"
28
+ mergeability: not_mergeable
29
+ passive: true
30
+ strong_id_properties:
31
+ - "uei"
32
+ - "usaspending_toptier_agency_code"
33
+ - "usaspending_subtier_agency_code"
34
+ - "usaspending_internal_id"
35
+
36
+ - name: "contract"
37
+ description: "A federal procurement contract award (or modification thereof) recorded on USAspending.gov — IDV-like instruments are represented by the separate `idv` flavor"
38
+ display_name: "Contract"
39
+ mergeability: not_mergeable
40
+ passive: true
41
+ strong_id_properties:
42
+ - "generated_unique_award_id"
43
+ - "usaspending_internal_id"
44
+
45
+ - name: "idv"
46
+ description: "An Indefinite Delivery Vehicle (IDV) — a federal procurement instrument such as a BPA, GWAC, IDIQ, FSS, or BOA against which child contract awards (`contract` flavor) are placed"
47
+ display_name: "Indefinite Delivery Vehicle (IDV)"
48
+ mergeability: not_mergeable
49
+ passive: true
50
+ strong_id_properties:
51
+ - "generated_unique_award_id"
52
+ - "usaspending_internal_id"
53
+
54
+ - name: "grant"
55
+ description: "A federal financial-assistance award (grant, cooperative agreement, direct payment, or similar non-procurement instrument) recorded on USAspending.gov"
56
+ display_name: "Grant"
57
+ mergeability: not_mergeable
58
+ passive: true
59
+ strong_id_properties:
60
+ - "generated_unique_award_id"
61
+ - "usaspending_internal_id"
62
+
63
+ - name: "federal_program"
64
+ description: "A federal financial-assistance program identified by its Assistance Listing (CFDA) number — e.g., 93.778 \"Medicaid\""
65
+ display_name: "Federal program (CFDA)"
66
+ mergeability: not_mergeable
67
+ passive: true
68
+ strong_id_properties:
69
+ - "assistance_listing_number"
70
+
71
+ - name: "subaward"
72
+ description: "A sub-award funded by a prime contract, IDV, or grant — reported through the SAM Subaward Reporting System (formerly FSRS) and surfaced on USAspending.gov"
73
+ display_name: "Subaward"
74
+ mergeability: not_mergeable
75
+ passive: true
76
+ strong_id_properties:
77
+ - "subaward_sam_report_id"
78
+
79
+ - name: "transaction"
80
+ description: "A single FPDS (procurement) or FABS (financial-assistance) modification applied to a prime award (contract, IDV, or grant) on USAspending.gov — preserves the per-action obligation history that the rolled-up award entity aggregates"
81
+ display_name: "Award transaction"
82
+ mergeability: not_mergeable
83
+ passive: true
84
+ strong_id_properties:
85
+ - "transaction_unique_id"
86
+
87
+ - name: "industry"
88
+ description: "An industry classification of economic activity (e.g. NAICS or SIC) identifying the line of business associated with an organization or award"
89
+ display_name: "Industry"
90
+ mergeability: not_mergeable
91
+ passive: true
92
+ strong_id_properties:
93
+ - "naics_code"
94
+
95
+ - name: "product_service"
96
+ description: "A Product or Service Code (PSC) from the Federal Procurement Data System describing what was purchased under a contract"
97
+ display_name: "Product/Service (PSC)"
98
+ mergeability: not_mergeable
99
+ passive: true
100
+ strong_id_properties:
101
+ - "psc_code"
102
+
103
+ - name: "person"
104
+ description: "A real person as opposed to a fictional character, such as a CEO, politician, or public figure. USAspending exposes the FFATA top-5 compensated officers of award recipients."
105
+ display_name: "Person"
106
+ mergeability: mergeable
107
+ passive: true
108
+
109
+ - name: "location"
110
+ description: "A geographic location \u2014 typically a US city + state, or a foreign country. USAspending exposes both the recipient's headquarters address and the place of performance of an award."
111
+ display_name: "Location"
112
+ mergeability: mergeable
113
+ passive: true
114
+
115
+ properties:
116
+ # Recipient organizations
117
+ - name: "uei"
118
+ type: string
119
+ description: "Unique Entity Identifier (12-character alphanumeric) assigned by SAM.gov; the federal vendor's canonical identifier since April 2022. Cross-source ID (intentionally un-namespaced) so EDGAR / GLEIF / FDIC etc. resolve against the same property."
120
+ display_name: "UEI"
121
+ mergeability: not_mergeable
122
+ domain_flavors: ["organization"]
123
+ passive: true
124
+
125
+ - name: "duns"
126
+ namespace: "usaspending"
127
+ type: string
128
+ description: "Legacy 9-digit Dun & Bradstreet DUNS number for federal vendors; sunset April 2022 in favor of UEI but retained for joining historical records that were never crosswalked"
129
+ display_name: "DUNS (legacy)"
130
+ mergeability: not_mergeable
131
+ domain_flavors: ["organization"]
132
+ passive: true
133
+
134
+ - name: "parent_recipient_uei"
135
+ namespace: "usaspending"
136
+ type: string
137
+ description: "UEI of the recipient's ultimate parent corporate entity per SAM.gov's hierarchy snapshot. Caveat: SAM.gov hierarchy lags real-world M&A by months to years; treat as point-in-time signal rather than current truth."
138
+ display_name: "Parent recipient UEI"
139
+ mergeability: not_mergeable
140
+ domain_flavors: ["organization"]
141
+ passive: true
142
+
143
+ - name: "business_categories"
144
+ namespace: "usaspending"
145
+ type: string
146
+ description: "Repeated property; one atom per category the recipient is classified under for federal procurement / assistance purposes (e.g., \"Small Business\", \"Minority Owned Business\", \"U.S. Regional/State Government\", \"Corporate Entity Not Tax Exempt\")"
147
+ display_name: "Business category"
148
+ mergeability: not_mergeable
149
+ domain_flavors: ["organization"]
150
+ passive: true
151
+
152
+ - name: "physical_address"
153
+ namespace: "usaspending"
154
+ type: string
155
+ description: "Recipient headquarters street address formatted as a single line (e.g., \"500 W MAIN STREET, LOUISVILLE, KY 40202\"). Concatenated from recipient.location.address_line1 + city + state + zip5."
156
+ display_name: "Physical address"
157
+ mergeability: not_mergeable
158
+ domain_flavors: ["organization"]
159
+ passive: true
160
+
161
+ - name: "recipient_top_officer_compensation"
162
+ namespace: "usaspending"
163
+ type: float
164
+ description: "Reported annual compensation in USD for a FFATA top-5 compensated executive of the recipient. Emitted as a property on the person sub-record; the organization carries one such atom per disclosed officer."
165
+ display_name: "Top officer compensation (USD)"
166
+ mergeability: not_mergeable
167
+ domain_flavors: ["person", "organization"]
168
+ passive: true
169
+
170
+ # Location properties
171
+ - name: "location_country_code"
172
+ namespace: "usaspending"
173
+ type: string
174
+ description: "ISO 3166-1 alpha-3 country code (e.g., \"USA\", \"GBR\", \"DEU\")"
175
+ display_name: "Country code"
176
+ mergeability: not_mergeable
177
+ domain_flavors: ["location"]
178
+ passive: true
179
+
180
+ - name: "location_state_code"
181
+ namespace: "usaspending"
182
+ type: string
183
+ description: "Two-character US state code (e.g., \"KY\", \"CA\"); null for non-US locations"
184
+ display_name: "State code"
185
+ mergeability: not_mergeable
186
+ domain_flavors: ["location"]
187
+ passive: true
188
+
189
+ - name: "location_congressional_district"
190
+ namespace: "usaspending"
191
+ type: string
192
+ description: "US congressional district code (2-digit numeric, or \"AL\" for at-large)"
193
+ display_name: "Congressional district"
194
+ mergeability: not_mergeable
195
+ domain_flavors: ["location"]
196
+ passive: true
197
+
198
+ # Federal agencies (toptier == cabinet-level / independent; subtier == bureaus / sub-organizations)
199
+ - name: "usaspending_toptier_agency_code"
200
+ type: string
201
+ description: "USAspending toptier agency code — the 3-4 digit CGAC (Common Government-wide Accounting Classification) code identifying a cabinet-level or independent federal agency (e.g., \"097\" for DOD)"
202
+ display_name: "Toptier agency code (CGAC)"
203
+ mergeability: not_mergeable
204
+ domain_flavors: ["organization"]
205
+ passive: true
206
+
207
+ - name: "usaspending_subtier_agency_code"
208
+ type: string
209
+ description: "USAspending subtier agency code — the 4-digit code identifying a bureau or sub-organization within a toptier agency (e.g., \"9700\" for the Department of the Air Force within DOD)"
210
+ display_name: "Subtier agency code"
211
+ mergeability: not_mergeable
212
+ domain_flavors: ["organization"]
213
+ passive: true
214
+
215
+ - name: "usaspending_agency_abbreviation"
216
+ type: string
217
+ description: "Common abbreviation for a USAspending federal agency (e.g., \"DOD\", \"USDA\", \"NASA\")"
218
+ display_name: "Agency abbreviation"
219
+ mergeability: not_mergeable
220
+ domain_flavors: ["organization"]
221
+ passive: true
222
+
223
+ - name: "usaspending_agency_slug"
224
+ type: string
225
+ description: "USAspending URL slug for the agency profile page on usaspending.gov (e.g., \"department-of-defense\")"
226
+ display_name: "Agency URL slug"
227
+ mergeability: not_mergeable
228
+ domain_flavors: ["organization"]
229
+ passive: true
230
+
231
+ - name: "agency_role"
232
+ type: string
233
+ description: "Distinguishes the role of a federal-agency organization in USAspending: \"federal_agency_toptier\" (CGAC parent) or \"federal_agency_subtier\" (bureau/sub-organization)"
234
+ display_name: "Federal agency role"
235
+ mergeability: not_mergeable
236
+ domain_flavors: ["organization"]
237
+ passive: true
238
+
239
+ - name: "usaspending_internal_id"
240
+ type: string
241
+ description: "USAspending.gov internal database key — preserved alongside external strong IDs (UEI, CGAC, generated_unique_award_id) so payloads that reference an agency, recipient, or award by integer id (e.g., awarding_agency.id) can be joined to the same KG entity"
242
+ display_name: "USAspending internal ID"
243
+ mergeability: not_mergeable
244
+ domain_flavors: ["organization", "contract", "idv", "grant"]
245
+ passive: true
246
+
247
+ # Award properties shared across contract, idv, and grant flavors
248
+ - name: "generated_unique_award_id"
249
+ type: string
250
+ description: "USAspending's stable per-award unique key (e.g., \"CONT_AWD_HT940216C0001_9700_-NONE-_-NONE-\" for a contract, \"ASST_NON_2505CA5MAP_075\" for a grant); the canonical strong ID for an award entity"
251
+ display_name: "Generated unique award ID"
252
+ mergeability: not_mergeable
253
+ domain_flavors: ["contract", "idv", "grant"]
254
+ passive: true
255
+
256
+ - name: "piid"
257
+ type: string
258
+ description: "Procurement Instrument Identifier — the human-recognizable contract or IDV number (e.g., \"HT940216C0001\")"
259
+ display_name: "PIID"
260
+ mergeability: not_mergeable
261
+ domain_flavors: ["contract", "idv"]
262
+ passive: true
263
+
264
+ - name: "fain"
265
+ type: string
266
+ description: "Federal Award Identification Number — the human-recognizable identifier for a financial-assistance award (grant, cooperative agreement, etc.) (e.g., \"2505CA5MAP\")"
267
+ display_name: "FAIN"
268
+ mergeability: not_mergeable
269
+ domain_flavors: ["grant"]
270
+ passive: true
271
+
272
+ - name: "total_obligation"
273
+ namespace: "usaspending"
274
+ type: float
275
+ description: "Total obligated amount on the award across all transactions to date, in USD (as reported by USAspending)"
276
+ display_name: "Total obligation (USD)"
277
+ mergeability: not_mergeable
278
+ domain_flavors: ["contract", "idv", "grant"]
279
+ passive: true
280
+
281
+ - name: "award_start_date"
282
+ namespace: "usaspending"
283
+ type: string
284
+ description: "Performance/period-of-performance start date for the award, ISO-8601 YYYY-MM-DD"
285
+ display_name: "Award start date"
286
+ mergeability: not_mergeable
287
+ domain_flavors: ["contract", "idv", "grant"]
288
+ passive: true
289
+
290
+ - name: "award_end_date"
291
+ namespace: "usaspending"
292
+ type: string
293
+ description: "Performance/period-of-performance end date for the award, ISO-8601 YYYY-MM-DD (current period end for active awards)"
294
+ display_name: "Award end date"
295
+ mergeability: not_mergeable
296
+ domain_flavors: ["contract", "idv", "grant"]
297
+ passive: true
298
+
299
+ - name: "award_description"
300
+ namespace: "usaspending"
301
+ type: string
302
+ description: "USAspending's free-text description of the award purpose (often truncated, may include FPDS-style prefixes like \"IGF::OT::IGF\" for contracts or CFDA program names for grants)"
303
+ display_name: "Award description"
304
+ mergeability: not_mergeable
305
+ domain_flavors: ["contract", "idv", "grant"]
306
+ passive: true
307
+
308
+ - name: "award_type_code"
309
+ namespace: "usaspending"
310
+ type: string
311
+ description: "Short award-type code from FPDS / FABS: \"A\"/\"B\"/\"C\"/\"D\" for contracts; \"IDV_A\" through \"IDV_E\" (plus \"IDV_B_A\"/\"B_B\"/\"B_C\") for IDVs; \"02\"/\"03\"/\"04\"/\"05\"/\"F001\"/\"F002\" for grants"
312
+ display_name: "Award type code"
313
+ mergeability: not_mergeable
314
+ domain_flavors: ["contract", "idv", "grant"]
315
+ passive: true
316
+
317
+ - name: "award_type_description"
318
+ namespace: "usaspending"
319
+ type: string
320
+ description: "Human-readable award-type label (e.g., \"DEFINITIVE CONTRACT\", \"PURCHASE ORDER\", \"GWAC Government Wide Acquisition Contract\", \"PROJECT GRANT\")"
321
+ display_name: "Award type"
322
+ mergeability: not_mergeable
323
+ domain_flavors: ["contract", "idv", "grant"]
324
+ passive: true
325
+
326
+ - name: "award_date_signed"
327
+ namespace: "usaspending"
328
+ type: string
329
+ description: "Date the contract or grant was originally signed (ISO-8601 YYYY-MM-DD)"
330
+ display_name: "Date signed"
331
+ mergeability: not_mergeable
332
+ domain_flavors: ["contract", "idv", "grant"]
333
+ passive: true
334
+
335
+ - name: "award_last_modified_date"
336
+ namespace: "usaspending"
337
+ type: string
338
+ description: "Date the award record was most recently updated on USAspending (ISO-8601 YYYY-MM-DD); the streamer's incremental cursor for the daily delta"
339
+ display_name: "Last modified date"
340
+ mergeability: not_mergeable
341
+ domain_flavors: ["contract", "idv", "grant"]
342
+ passive: true
343
+
344
+ - name: "award_potential_end_date"
345
+ namespace: "usaspending"
346
+ type: string
347
+ description: "Period-of-performance potential end date including all unexercised options (ISO-8601 YYYY-MM-DD or YYYY-MM-DD HH:MM:SS as returned by the API)"
348
+ display_name: "Potential end date"
349
+ mergeability: not_mergeable
350
+ domain_flavors: ["contract", "idv", "grant"]
351
+ passive: true
352
+
353
+ - name: "base_and_all_options"
354
+ namespace: "usaspending"
355
+ type: float
356
+ description: "Total potential contract value including all unexercised options, in USD; the ceiling of the award. Often 0 for unfunded IDV parent vehicles (BPAs, BOAs)."
357
+ display_name: "Base and all options (USD)"
358
+ mergeability: not_mergeable
359
+ domain_flavors: ["contract", "idv"]
360
+ passive: true
361
+
362
+ - name: "base_exercised_options"
363
+ namespace: "usaspending"
364
+ type: float
365
+ description: "Total contract value of the base period plus options exercised to date, in USD"
366
+ display_name: "Base and exercised options (USD)"
367
+ mergeability: not_mergeable
368
+ domain_flavors: ["contract", "idv"]
369
+ passive: true
370
+
371
+ - name: "total_outlay"
372
+ namespace: "usaspending"
373
+ type: float
374
+ description: "Cumulative outlays (cash payments) made against the award to date, in USD; lags total_obligation as payments are disbursed"
375
+ display_name: "Total outlay (USD)"
376
+ mergeability: not_mergeable
377
+ domain_flavors: ["contract", "idv", "grant"]
378
+ passive: true
379
+
380
+ - name: "subaward_count"
381
+ namespace: "usaspending"
382
+ type: float
383
+ description: "Number of FFATA/FSRS subawards reported under this prime award (integer-valued float; the dataschema framework uses float for all numeric data)"
384
+ display_name: "Subaward count"
385
+ mergeability: not_mergeable
386
+ domain_flavors: ["contract", "idv", "grant"]
387
+ passive: true
388
+
389
+ - name: "total_subaward_amount"
390
+ namespace: "usaspending"
391
+ type: float
392
+ description: "Aggregate dollar value of FFATA/FSRS subawards reported under this prime award, in USD"
393
+ display_name: "Total subaward amount (USD)"
394
+ mergeability: not_mergeable
395
+ domain_flavors: ["contract", "idv", "grant"]
396
+ passive: true
397
+
398
+ - name: "parent_award_piid"
399
+ namespace: "usaspending"
400
+ type: string
401
+ description: "PIID of the parent IDV under which this delivery/task-order contract was awarded. Searchable property; the topological link to the parent IDV uses parent_award_unique_id (the IDV's strong ID)."
402
+ display_name: "Parent IDV PIID"
403
+ mergeability: not_mergeable
404
+ domain_flavors: ["contract"]
405
+ passive: true
406
+
407
+ - name: "parent_award_unique_id"
408
+ namespace: "usaspending"
409
+ type: string
410
+ description: "generated_unique_award_id of the parent IDV under which this delivery/task-order contract was awarded; used to construct the contract → parent-IDV child_of edge"
411
+ display_name: "Parent IDV unique ID"
412
+ mergeability: not_mergeable
413
+ domain_flavors: ["contract"]
414
+ passive: true
415
+
416
+ # Procurement procedure properties (contracts / IDVs only — derived from
417
+ # latest_transaction_contract_data on the award detail response).
418
+ - name: "solicitation_identifier"
419
+ namespace: "usaspending"
420
+ type: string
421
+ description: "Identifier of the original solicitation (RFP / RFQ) that led to this award; enables lifecycle tracing from solicitation to execution"
422
+ display_name: "Solicitation identifier"
423
+ mergeability: not_mergeable
424
+ domain_flavors: ["contract", "idv"]
425
+ passive: true
426
+
427
+ - name: "offers_received_count"
428
+ namespace: "usaspending"
429
+ type: float
430
+ description: "Number of offers received in response to the solicitation (integer-valued float); key competition metric"
431
+ display_name: "Offers received"
432
+ mergeability: not_mergeable
433
+ domain_flavors: ["contract", "idv"]
434
+ passive: true
435
+
436
+ - name: "extent_competed_description"
437
+ namespace: "usaspending"
438
+ type: string
439
+ description: "Level of competition (e.g., \"FULL AND OPEN COMPETITION\", \"NOT COMPETED\", \"FOLLOW ON TO COMPETED ACTION\")"
440
+ display_name: "Extent competed"
441
+ mergeability: not_mergeable
442
+ domain_flavors: ["contract", "idv"]
443
+ passive: true
444
+
445
+ - name: "type_set_aside_description"
446
+ namespace: "usaspending"
447
+ type: string
448
+ description: "Small-business set-aside designation (e.g., \"NO SET ASIDE USED.\", \"SMALL BUSINESS SET ASIDE - TOTAL\", \"8A COMPETED\")"
449
+ display_name: "Set-aside type"
450
+ mergeability: not_mergeable
451
+ domain_flavors: ["contract", "idv"]
452
+ passive: true
453
+
454
+ - name: "type_of_contract_pricing_description"
455
+ namespace: "usaspending"
456
+ type: string
457
+ description: "Pricing structure of the contract (e.g., \"FIRM FIXED PRICE\", \"COST PLUS FIXED FEE\", \"TIME AND MATERIALS\")"
458
+ display_name: "Contract pricing type"
459
+ mergeability: not_mergeable
460
+ domain_flavors: ["contract", "idv"]
461
+ passive: true
462
+
463
+ - name: "commercial_item_acquisition_type"
464
+ namespace: "usaspending"
465
+ type: string
466
+ description: "Whether the government used FAR Part 12 commercial-item procedures (e.g., \"COMMERCIAL PRODUCTS/SERVICES PROCEDURES USED\")"
467
+ display_name: "Commercial-item acquisition"
468
+ mergeability: not_mergeable
469
+ domain_flavors: ["contract", "idv"]
470
+ passive: true
471
+
472
+ - name: "labor_standards_apply"
473
+ namespace: "usaspending"
474
+ type: string
475
+ description: "Whether Service Contract Act / Davis-Bacon Act labor standards apply (typically \"YES\" or \"NO\"; occasionally null)"
476
+ display_name: "Labor standards apply"
477
+ mergeability: not_mergeable
478
+ domain_flavors: ["contract", "idv"]
479
+ passive: true
480
+
481
+ - name: "entity_ownership_type"
482
+ namespace: "usaspending"
483
+ type: string
484
+ description: "Whether the prime contractor is US-owned or foreign-owned (e.g., \"U.S. OWNED BUSINESS\", \"FOREIGN-OWNED BUSINESS NOT INCORPORATED IN THE U.S.\")"
485
+ display_name: "Entity ownership"
486
+ mergeability: not_mergeable
487
+ domain_flavors: ["contract", "idv"]
488
+ passive: true
489
+
490
+ - name: "subcontracting_plan_type"
491
+ namespace: "usaspending"
492
+ type: string
493
+ description: "Whether the prime contractor maintains an individual or commercial subcontracting plan, or none (e.g., \"INDIVIDUAL SUBCONTRACT PLAN\", \"PLAN NOT REQUIRED\")"
494
+ display_name: "Subcontracting plan"
495
+ mergeability: not_mergeable
496
+ domain_flavors: ["contract", "idv"]
497
+ passive: true
498
+
499
+ - name: "is_multi_year_contract"
500
+ namespace: "usaspending"
501
+ type: string
502
+ description: "Whether the contract is a statutorily defined multi-year procurement (\"YES\"/\"NO\")"
503
+ display_name: "Multi-year contract"
504
+ mergeability: not_mergeable
505
+ domain_flavors: ["contract", "idv"]
506
+ passive: true
507
+
508
+ # Grant-only properties
509
+ - name: "total_funding"
510
+ namespace: "usaspending"
511
+ type: float
512
+ description: "Total funding for the grant including federal obligation plus required non-federal cost share, in USD"
513
+ display_name: "Total funding (USD)"
514
+ mergeability: not_mergeable
515
+ domain_flavors: ["grant"]
516
+ passive: true
517
+
518
+ - name: "non_federal_funding"
519
+ namespace: "usaspending"
520
+ type: float
521
+ description: "Required non-federal cost-share contribution to the grant, in USD"
522
+ display_name: "Non-federal funding (USD)"
523
+ mergeability: not_mergeable
524
+ domain_flavors: ["grant"]
525
+ passive: true
526
+
527
+ - name: "funding_opportunity_number"
528
+ namespace: "usaspending"
529
+ type: string
530
+ description: "Reference to the Notice of Funding Opportunity (NOFO) under which the grant was awarded; often \"NOT APPLICABLE\" for entitlement programs"
531
+ display_name: "Funding opportunity (NOFO)"
532
+ mergeability: not_mergeable
533
+ domain_flavors: ["grant"]
534
+ passive: true
535
+
536
+ # Federal program (CFDA / Assistance Listing)
537
+ - name: "assistance_listing_number"
538
+ type: string
539
+ description: "Federal Assistance Listing number (formerly CFDA number) identifying a financial-assistance program — typically \"NN.NNN\" (e.g., \"93.778\" for Medicaid). Trailing chars may be alphanumeric (e.g., \"93.DC3\")."
540
+ display_name: "Assistance listing number (CFDA)"
541
+ mergeability: not_mergeable
542
+ domain_flavors: ["federal_program"]
543
+ passive: true
544
+
545
+ - name: "cfda_title"
546
+ type: string
547
+ description: "Human-readable title of the federal Assistance Listing (formerly CFDA) program (e.g., \"Grants to States for Medicaid\")"
548
+ display_name: "CFDA program title"
549
+ mergeability: not_mergeable
550
+ domain_flavors: ["federal_program"]
551
+ passive: true
552
+
553
+ - name: "assistance_listing_applicant_eligibility"
554
+ namespace: "usaspending"
555
+ type: string
556
+ description: "Description of which entities are legally eligible to apply for this assistance program (state/local governments, non-profits, individuals, etc.); commonly multi-thousand characters of prose"
557
+ display_name: "Applicant eligibility"
558
+ mergeability: not_mergeable
559
+ domain_flavors: ["federal_program"]
560
+ passive: true
561
+
562
+ - name: "assistance_listing_beneficiary_eligibility"
563
+ namespace: "usaspending"
564
+ type: string
565
+ description: "Description of the ultimate end-users of the program funds; commonly multi-thousand characters of prose"
566
+ display_name: "Beneficiary eligibility"
567
+ mergeability: not_mergeable
568
+ domain_flavors: ["federal_program"]
569
+ passive: true
570
+
571
+ - name: "assistance_listing_objectives"
572
+ namespace: "usaspending"
573
+ type: string
574
+ description: "Description of the programmatic goals of the assistance program; commonly multi-thousand characters of prose"
575
+ display_name: "Program objectives"
576
+ mergeability: not_mergeable
577
+ domain_flavors: ["federal_program"]
578
+ passive: true
579
+
580
+ # Subaward properties
581
+ - name: "subaward_sam_report_id"
582
+ type: string
583
+ description: "Subaward identifier assigned by the SAM Subaward Reporting System (formerly FSRS); the canonical strong ID for subaward entities (e.g., \"P010217549\")"
584
+ display_name: "SAM subaward report ID"
585
+ mergeability: not_mergeable
586
+ domain_flavors: ["subaward"]
587
+ passive: true
588
+
589
+ - name: "subaward_number"
590
+ type: string
591
+ description: "Human-readable subaward number assigned by the prime recipient (e.g., \"WPS-16-C-0001\"); not guaranteed unique across primes — use subaward_sam_report_id for resolution"
592
+ display_name: "Subaward number"
593
+ mergeability: not_mergeable
594
+ domain_flavors: ["subaward"]
595
+ passive: true
596
+
597
+ - name: "subaward_amount"
598
+ namespace: "usaspending"
599
+ type: float
600
+ description: "Sub-award amount in USD as reported on the SAM Subaward Report"
601
+ display_name: "Subaward amount (USD)"
602
+ mergeability: not_mergeable
603
+ domain_flavors: ["subaward"]
604
+ passive: true
605
+
606
+ - name: "subaward_action_date"
607
+ namespace: "usaspending"
608
+ type: string
609
+ description: "Sub-award action date (ISO-8601 YYYY-MM-DD) — the date the subaward was executed"
610
+ display_name: "Subaward action date"
611
+ mergeability: not_mergeable
612
+ domain_flavors: ["subaward"]
613
+ passive: true
614
+
615
+ - name: "subaward_description"
616
+ namespace: "usaspending"
617
+ type: string
618
+ description: "Free-text description of the subaward purpose (often modification text such as \"MOD M104 – TO ADJUST THE CONTRACT VALUE…\")"
619
+ display_name: "Subaward description"
620
+ mergeability: not_mergeable
621
+ domain_flavors: ["subaward"]
622
+ passive: true
623
+
624
+ - name: "transaction_unique_id"
625
+ type: string
626
+ description: "Canonical USAspending transaction identifier — the FPDS / FABS modification's stable key (e.g., \"CONT_TX_9700_-NONE-_HT940216C0001_P00713_-NONE-_0\"); the strong ID for transaction entities"
627
+ display_name: "Transaction unique id"
628
+ mergeability: not_mergeable
629
+ domain_flavors: ["transaction"]
630
+ passive: true
631
+
632
+ - name: "transaction_action_date"
633
+ namespace: "usaspending"
634
+ type: string
635
+ description: "Date the modification action was effective (ISO-8601 YYYY-MM-DD)"
636
+ display_name: "Transaction action date"
637
+ mergeability: not_mergeable
638
+ domain_flavors: ["transaction"]
639
+ passive: true
640
+
641
+ - name: "transaction_action_type"
642
+ namespace: "usaspending"
643
+ type: string
644
+ description: "Single-character FPDS / FABS action-type code (e.g., \"A\" additional work, \"B\" supplemental, \"C\" funding only, \"D\" change order)"
645
+ display_name: "Transaction action type code"
646
+ mergeability: not_mergeable
647
+ domain_flavors: ["transaction"]
648
+ passive: true
649
+
650
+ - name: "transaction_action_type_description"
651
+ namespace: "usaspending"
652
+ type: string
653
+ description: "Human-readable label for the action type (e.g., \"CHANGE ORDER\", \"FUNDING ONLY ACTION\", \"DEFINITIVE CONTRACT\")"
654
+ display_name: "Transaction action type"
655
+ mergeability: not_mergeable
656
+ domain_flavors: ["transaction"]
657
+ passive: true
658
+
659
+ - name: "transaction_modification_number"
660
+ namespace: "usaspending"
661
+ type: string
662
+ description: "Modification number assigned to this transaction (FPDS uses sequential strings like P00001; \"0\" denotes the base award action)"
663
+ display_name: "Transaction modification number"
664
+ mergeability: not_mergeable
665
+ domain_flavors: ["transaction"]
666
+ passive: true
667
+
668
+ - name: "transaction_description"
669
+ namespace: "usaspending"
670
+ type: string
671
+ description: "Free-text description of this modification's purpose (often shorthand like \"MANAGED CARE SUPPORT SERVICES - EAST REGION\" or \"OPTION YEAR 3\")"
672
+ display_name: "Transaction description"
673
+ mergeability: not_mergeable
674
+ domain_flavors: ["transaction"]
675
+ passive: true
676
+
677
+ - name: "transaction_federal_action_obligation"
678
+ namespace: "usaspending"
679
+ type: float
680
+ description: "Dollar change to the federal obligation effected by this transaction in USD; positive = additional funding, negative = deobligation, zero = administrative modification with no funding impact"
681
+ display_name: "Transaction federal action obligation (USD)"
682
+ mergeability: not_mergeable
683
+ domain_flavors: ["transaction"]
684
+ passive: true
685
+
686
+ - name: "transaction_type_description"
687
+ namespace: "usaspending"
688
+ type: string
689
+ description: "Human-readable contract / assistance type carried on the transaction row (e.g., \"DEFINITIVE CONTRACT\", \"PURCHASE ORDER\", \"PROJECT GRANT\")"
690
+ display_name: "Transaction award type"
691
+ mergeability: not_mergeable
692
+ domain_flavors: ["transaction"]
693
+ passive: true
694
+
695
+ # Industry (NAICS)
696
+ - name: "naics_code"
697
+ type: string
698
+ description: "North American Industry Classification System code (typically 6 digits) identifying the industry of work performed under a contract (e.g., \"524114\" for Direct Health and Medical Insurance Carriers)"
699
+ display_name: "NAICS code"
700
+ mergeability: not_mergeable
701
+ domain_flavors: ["industry"]
702
+ passive: true
703
+
704
+ - name: "naics_description"
705
+ type: string
706
+ description: "Human-readable name of the NAICS industry (e.g., \"DIRECT HEALTH AND MEDICAL INSURANCE CARRIERS\")"
707
+ display_name: "NAICS description"
708
+ mergeability: not_mergeable
709
+ domain_flavors: ["industry"]
710
+ passive: true
711
+
712
+ # Product/Service (PSC)
713
+ - name: "psc_code"
714
+ type: string
715
+ description: "Product or Service Code from the Federal Procurement Data System (FPDS) describing what was procured (e.g., \"Q201\" for medical managed healthcare)"
716
+ display_name: "PSC code"
717
+ mergeability: not_mergeable
718
+ domain_flavors: ["product_service"]
719
+ passive: true
720
+
721
+ - name: "psc_description"
722
+ type: string
723
+ description: "Human-readable name of the Product or Service Code (e.g., \"MEDICAL- MANAGED HEALTHCARE\")"
724
+ display_name: "PSC description"
725
+ mergeability: not_mergeable
726
+ domain_flavors: ["product_service"]
727
+ passive: true
728
+
729
+ relationships:
730
+ - name: "awarded_to"
731
+ namespace: "usaspending"
732
+ description: "The party that received the award or subaward; subject (contract/IDV/grant/subaward) was awarded to the target (recipient organization, keyed by UEI)"
733
+ display_name: "Awarded to"
734
+ mergeability: not_mergeable
735
+ domain_flavors: ["contract", "idv", "grant", "subaward"]
736
+ range_flavors: ["organization"]
737
+ passive: true
738
+
739
+ - name: "awarded_by"
740
+ namespace: "usaspending"
741
+ description: "The federal agency that obligated the award; subject (contract/IDV/grant/subaward) was awarded by the target (toptier agency, keyed by USAspending internal id or CGAC code)"
742
+ display_name: "Awarded by"
743
+ mergeability: not_mergeable
744
+ domain_flavors: ["contract", "idv", "grant", "subaward"]
745
+ range_flavors: ["organization"]
746
+ passive: true
747
+
748
+ - name: "in_industry"
749
+ namespace: "usaspending"
750
+ description: "The industry (NAICS) classification of the work performed under this contract or IDV"
751
+ display_name: "In industry (NAICS)"
752
+ mergeability: not_mergeable
753
+ domain_flavors: ["contract", "idv"]
754
+ range_flavors: ["industry"]
755
+ passive: true
756
+
757
+ - name: "classified_under"
758
+ namespace: "usaspending"
759
+ description: "The Product or Service Code (PSC) describing what was procured under this contract or IDV"
760
+ display_name: "Classified under (PSC)"
761
+ mergeability: not_mergeable
762
+ domain_flavors: ["contract", "idv"]
763
+ range_flavors: ["product_service"]
764
+ passive: true
765
+
766
+ - name: "under_program"
767
+ namespace: "usaspending"
768
+ description: "The federal financial-assistance program (CFDA / Assistance Listing) that funds this grant"
769
+ display_name: "Under program (CFDA)"
770
+ mergeability: not_mergeable
771
+ domain_flavors: ["grant"]
772
+ range_flavors: ["federal_program"]
773
+ passive: true
774
+
775
+ - name: "sub_of"
776
+ namespace: "usaspending"
777
+ description: "The prime award that funded this subaward; subject (subaward) is funded by the target (contract, IDV, or grant, keyed by generated_unique_award_id)"
778
+ display_name: "Subaward of"
779
+ mergeability: not_mergeable
780
+ domain_flavors: ["subaward"]
781
+ range_flavors: ["contract", "idv", "grant"]
782
+ passive: true
783
+
784
+ - name: "is_modification_of"
785
+ namespace: "usaspending"
786
+ description: "The prime award this transaction modifies; subject (transaction) is an FPDS or FABS modification of the target (contract, IDV, or grant, keyed by generated_unique_award_id)"
787
+ display_name: "Modification of"
788
+ mergeability: not_mergeable
789
+ domain_flavors: ["transaction"]
790
+ range_flavors: ["contract", "idv", "grant"]
791
+ passive: true
792
+
793
+ - name: "awarded_by_subtier"
794
+ namespace: "usaspending"
795
+ description: "The awarding subtier agency (e.g., \"Defense Health Agency\" within DOD) that obligated this award; target is an organization entity keyed by usaspending_subtier_agency_code"
796
+ display_name: "Awarded by subtier"
797
+ mergeability: not_mergeable
798
+ domain_flavors: ["contract", "idv", "grant"]
799
+ range_flavors: ["organization"]
800
+ passive: true
801
+
802
+ - name: "funded_by"
803
+ namespace: "usaspending"
804
+ description: "The toptier federal agency that funded this award (CGAC parent of the funding subtier). May differ from awarded_by in interagency acquisitions (e.g., GSA awarding a contract funded by DoD). Target is an organization entity keyed by usaspending_internal_id."
805
+ display_name: "Funded by"
806
+ mergeability: not_mergeable
807
+ domain_flavors: ["contract", "idv", "grant"]
808
+ range_flavors: ["organization"]
809
+ passive: true
810
+
811
+ - name: "funded_by_subtier"
812
+ namespace: "usaspending"
813
+ description: "The funding subtier federal agency that provided the appropriation for this award; target is an organization entity keyed by usaspending_subtier_agency_code"
814
+ display_name: "Funded by subtier"
815
+ mergeability: not_mergeable
816
+ domain_flavors: ["contract", "idv", "grant"]
817
+ range_flavors: ["organization"]
818
+ passive: true
819
+
820
+ - name: "child_of"
821
+ namespace: "usaspending"
822
+ description: "The parent IDV under which this delivery/task-order contract was placed; the IDV is keyed by generated_unique_award_id"
823
+ display_name: "Child of (parent IDV)"
824
+ mergeability: not_mergeable
825
+ domain_flavors: ["contract"]
826
+ range_flavors: ["idv"]
827
+ passive: true
828
+
829
+ - name: "is_subsidiary_of"
830
+ namespace: "usaspending"
831
+ description: "The recipient's ultimate parent corporate entity (per SAM.gov hierarchy snapshot, lag-prone). Target is an organization keyed by UEI."
832
+ display_name: "Is subsidiary of"
833
+ mergeability: not_mergeable
834
+ domain_flavors: ["organization"]
835
+ range_flavors: ["organization"]
836
+ passive: true
837
+
838
+ - name: "is_located_at"
839
+ namespace: "usaspending"
840
+ description: "The headquarters / physical address of an organization (recipient or sub-recipient). Target is a location named entity built by concatenating city + state + country."
841
+ display_name: "Is located at"
842
+ mergeability: not_mergeable
843
+ domain_flavors: ["organization"]
844
+ range_flavors: ["location"]
845
+ passive: true
846
+
847
+ - name: "performed_at"
848
+ namespace: "usaspending"
849
+ description: "The place of performance of an award (where the contracted work / grant program activity was carried out). Target is a location named entity."
850
+ display_name: "Performed at"
851
+ mergeability: not_mergeable
852
+ domain_flavors: ["contract", "idv", "grant"]
853
+ range_flavors: ["location"]
854
+ passive: true
855
+
856
+ - name: "employed_by"
857
+ namespace: "usaspending"
858
+ description: "The recipient organization that employs this FFATA top-5 disclosed officer."
859
+ display_name: "Employed by"
860
+ mergeability: not_mergeable
861
+ domain_flavors: ["person"]
862
+ range_flavors: ["organization"]
863
+ passive: true