Files
policy-ui/openapi/stub.json
Jordan Weingarten 67482f6629 WIP jordan
2026-04-16 11:11:44 -05:00

48 lines
1.2 KiB
JSON
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
{
"openapi": "3.0.3",
"info": { "title": "Local stub (replace when API is available)", "version": "0.0.0" },
"paths": {
"/forms/catalog": {
"get": {
"summary": "Forms master catalog (insurer × sub-ramo × persona × product line)",
"responses": {
"200": {
"description": "JSON body matches app/data/forms-catalog.json schema"
}
}
}
},
"/forms/field-groups": {
"get": {
"summary": "Field group definitions for intake wizards",
"responses": {
"200": {
"description": "Matches app/data/form-field-groups.json"
}
}
}
},
"/emissions": {
"get": {
"summary": "Pending emissions review queue",
"responses": {
"200": {
"description": "List of packets awaiting brokerage QA"
}
}
},
"post": {
"summary": "Submit completed intake for emissions review"
}
},
"/providers/{providerId}/contacts": {
"get": {
"summary": "Per-carrier outbound email roles"
},
"put": {
"summary": "Update provider contact emails"
}
}
}
}