Skip to content
Merged
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
2 changes: 1 addition & 1 deletion component_catalog.json
Original file line number Diff line number Diff line change
Expand Up @@ -1905,7 +1905,7 @@
"slug": "award-compliance-extraction",
"name": "Award Compliance & Financial Overview Extraction",
"description": "Uploads a federal award notice or agreement and returns a single structured JSON object covering both the compliance framework (Uniform Guidance applicability, RTC, financial reporting, progress reporting, prior approvals, budget modification rules, property, deliverables, high-risk conditions, compliance calendar) and the financial management structure (total award amount, budget periods, cost share, F&A rate and base, performance period, budget categories, FFR, audit, record retention). Output conforms to the award-compliance-extraction-udm component schema. The runtime mirrors the ui-insight/ProcessMapping award-compliance-extraction workflow (two parallel Extraction tasks plus a Consolidation Prompt).",
"workflow_version": "0.1.0",
"workflow_version": "0.1.1",
"status": "experimental",
"vandalizer_schema_version": 2,
"paths": {
Expand Down
4 changes: 4 additions & 0 deletions workflows/award-compliance-extraction/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

All notable changes to this workflow. Versions follow semver.

## [0.1.1] — 2026-05-20

- Reworded the `uniform_guidance_applicability` searchphrase from "2 CFR 200 Uniform Guidance applicability details." to "Uniform Guidance (2 CFR 200) applicability details." so it no longer begins with a digit. Vandalizer derives each extraction field name by slugifying the searchphrase; a leading digit made Vandalizer prepend an underscore, which its own field-name validator then rejected on import. The extraction contract is unchanged.

## [0.1.0] — 2026-04-30

- Initial experimental release.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"vandalizer_export": true,
"schema_version": 2,
"export_type": "workflow",
"exported_at": "2026-04-30T00:00:00+00:00",
"exported_at": "2026-05-20T00:00:00+00:00",
"exported_by": "ui-insight",
"items": [
{
Expand All @@ -27,7 +27,7 @@
"cross_field_rules": [],
"items": [
{
"searchphrase": "2 CFR 200 Uniform Guidance applicability details.",
"searchphrase": "Uniform Guidance (2 CFR 200) applicability details.",
"searchtype": "extraction",
"title": "uniform_guidance_applicability",
"is_optional": true,
Expand Down Expand Up @@ -255,7 +255,7 @@
"validation_inputs": [],
"x_ai4ra": {
"workflow_source": "workflows/award-compliance-extraction/manifest.yaml",
"workflow_version": "0.1.0",
"workflow_version": "0.1.1",
"status": "experimental",
"components": [
{
Expand Down
6 changes: 3 additions & 3 deletions workflows/award-compliance-extraction/manifest.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,12 +27,12 @@ description: >
award-compliance-extraction workflow (two parallel Extraction tasks plus
a Consolidation Prompt).

workflow_version: 0.1.0
workflow_version: 0.1.1
vandalizer_schema_version: 2
status: experimental
owner: ui-insight
created: 2026-04-30
updated: 2026-04-30
updated: 2026-05-20

components:
- slug: award-compliance-extraction-udm
Expand Down Expand Up @@ -97,7 +97,7 @@ steps:
domain: research-administration
items:
- title: uniform_guidance_applicability
searchphrase: 2 CFR 200 Uniform Guidance applicability details.
searchphrase: Uniform Guidance (2 CFR 200) applicability details.
is_optional: true
- title: rtc_applicability
searchphrase: Research Terms and Conditions applicability.
Expand Down
Loading