EOAP Problems Registry is a shared registry of API problem detail types for EOAP services. The problem responses conform to RFC 9457, formerly RFC 7807, and are published as documentation, JSON Schema/OpenAPI artifacts, and a Python package with generated Pydantic models.
The registry is intended to give API providers and consumers a common vocabulary for reusable application/problem+json responses.
schemas/schema.yaml: JSON Schema definitions for the commonProblemDetails,ErrorDetail, and each registered EOAP problem type.schemas/openapi.yaml: reusable OpenAPI 3.1 response components and examples that reference the JSON Schema definitions.src/eoap_problems_registry: generated Pydantic models for the registry.docs/: MkDocs pages for each problem type, plus generated JSON Schema and OpenAPI documentation.tests/: unit tests that verify generated problem models and extension behavior..github/workflows/: documentation deployment, package CI, and PyPI release automation.
EOAP-specific problem types:
| Problem type | HTTP status |
|---|---|
| Already Exists | 409 |
| Missing Body Property | 400 |
| Missing Request Header | 400 |
| Missing Request Parameter | 400 |
| Invalid Body Property Format | 400 |
| Invalid Request Parameter Format | 400 |
| Invalid Request Header Format | 400 |
| Invalid Body Property Value | 400 |
| Invalid Request Parameter Value | 400 |
| Validation Error | 422 |
| Business Rule Violation | 422 |
| License Expired | 503 |
| License Cancelled | 503 |
Common convenience problem types:
| Problem type | HTTP status |
|---|---|
| Bad Request | 400 |
| Unauthorized | 401 |
| Forbidden | 403 |
| Not Found | 404 |
| Invalid Parameters | 400 |
| Server Error | 500 |
| Service Unavailable | 503 |
For generic/common HTTP problem types, prefer the IANA HTTP Problem Types registry when it fits your use case.
Install the package in an environment with Pydantic 2:
pip install eoap-problems-registryUse the generated models to build responses with fixed registry fields and optional extension members:
import eoap_problems_registry as registry
problem = registry.MissingRequestParameter(
instance="https://api.example.test/problems/abc123",
code="400-03",
errors=[
registry.ErrorDetail(
detail="The query parameter limit is required.",
parameter="limit",
)
],
correlation_id="req-123",
)
payload = problem.model_dump(mode="json", exclude_none=True)The resulting payload includes the registered type, status, title, and detail values:
{
"instance": "https://api.example.test/problems/abc123",
"code": "400-03",
"errors": [
{
"detail": "The query parameter limit is required.",
"parameter": "limit"
}
],
"type": "https://eoap.github.io/problems-registry/missing-request-parameter",
"status": 400,
"title": "Missing request parameter",
"detail": "The request is missing an expected query or path parameter.",
"correlation_id": "req-123"
}ProblemDetails and ErrorDetail allow additional provider-specific fields, while generated problem classes use Pydantic literal fields to protect the registered type, status, title, and detail values.
Use the schema and OpenAPI files directly when integrating the registry into API descriptions:
- JSON Schema definitions:
schemas/schema.yaml - OpenAPI response components and examples:
schemas/openapi.yaml - Published documentation: https://eoap.github.io/problems-registry/
When a response needs more context, include an errors array. Each item must contain detail and may include pointer, parameter, header, code, or provider-specific extension fields.
This repository uses Hatch for Python environments, Ruff for formatting/linting, MkDocs for documentation, and Taskfile tasks for generated artifacts.
Useful commands:
hatch run test:test
hatch run test:testv
hatch run test:cov
hatch run dev:lint
hatch run dev:check
task process_schema
task generate_openapi_docs
task serve_docstask process_schema regenerates the Pydantic models in src/eoap_problems_registry/__init__.py and the JSON Schema documentation in docs/json-schema.md.
task generate_openapi_docs regenerates the static OpenAPI documentation under docs/openapi/.
task serve_docs starts the MkDocs site locally.
To add or update a problem type:
- Update
schemas/schema.yamlwith the JSON Schema definition under$defs. - Update
schemas/openapi.yamlif the problem should be exposed through reusable OpenAPI response components or examples. - Add or update the matching Markdown page in
docs/. - Add the page to the
navsection inmkdocs.yaml. - Run
task process_schemato regenerate the Python models and schema docs. - Run
task generate_openapi_docsif OpenAPI components or examples changed. - Add or update tests in
tests/when generated behavior changes. - Run the test and lint commands before opening a pull request.
Problem type URIs should use the published registry base URL:
https://eoap.github.io/problems-registry/{problem-name}
Use hyphen-separated names for problem page filenames and URI suffixes, for example missing-body-property.
The package workflow runs Ruff and the unit test suite on Python 3.10 through 3.14 for pushes and pull requests targeting the active development branches. Version tags matching v*.*.* build and publish the package to PyPI after verifying that the tag version matches hatch version.
The docs workflow publishes the MkDocs site to GitHub Pages when documentation-related files change on docs, develop, or main.
This project is licensed under the Apache License 2.0.