Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 7 additions & 4 deletions ingest_templates/dcp_cbbr_requests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,13 @@ attributes:

ingestion:
source:
type: local_file
path: ./dcp_cbbr_requests.csv
type: s3
bucket: edm-recipes
key: inbox/dcp/dcp_cbbr_requests/{{ version }} BRs for OMB (All Boards).xlsx
file_format:
type: csv
type: xlsx
sheet_name: OMB Template
dtype: str
processing_steps:
- name: clean_column_names
args: { "replace": { " -": "", "-": "_", " ": "_" }, "lower": True }
args: { "replace": { "-": "_", " ": "_" }, "lower": True }
9 changes: 6 additions & 3 deletions ingest_templates/omb_cbbr_agency_responses.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,13 @@ attributes:

ingestion:
source:
type: local_file
path: ./omb_cbbr_agency_responses.csv
type: s3
bucket: edm-recipes
key: inbox/dcp/omb_cbbr_agency_responses/{{ version }} OMB Raw Export.xlsx
file_format:
type: csv
type: xlsx
sheet_name: AGCY reponses
dtype: str
processing_steps:
- name: clean_column_names
args: { "replace": { " ": "_" }, "lower": True }
2 changes: 1 addition & 1 deletion products/cbbr/recipe.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: Community Board Budget Requests
product: db-cbbr
version: FY2026
version: FY2027
inputs:
missing_versions_strategy: find_latest
datasets:
Expand Down
Loading