Skip to main content

EOAP Problems Registry

PyPI - Version PyPI - Python Version

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.

What Is Included

  • schemas/schema.yaml: JSON Schema definitions for the common ProblemDetails, 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.

Registered Problems

EOAP-specific problem types:

Problem type HTTP status
Already Exists 409
Business Rule Violation 422
Invalid Body Property Format 400
Invalid Body Property Value 400
Invalid Request Header Format 400
Invalid Request Parameter Format 400
Invalid Request Parameter Value 400
Invalid State Transition 422
Missing Body Property 400
Missing Request Header 400
Missing Request Parameter 400
License Expired 503
License Cancelled 503
Validation Error 422

Common convenience problem types:

Problem type HTTP status
Bad Request 400
Conflict 409
Failed Dependency 424
Forbidden 403
Gone 410
Insufficient Storage 507
Invalid Parameters 400
Method Not Allowed 405
Not Acceptable 406
Not Found 404
Not Implemented 501
Request Timeout 408
Server Error 500
Service Unavailable 503
Unauthorized 401
Unavailable For Legal Reasons 451
Unprocessable Content 422

For generic/common HTTP problem types, prefer the IANA HTTP Problem Types registry when it fits your use case.

Python Usage

Install the package in an environment with Pydantic 2:

pip install eoap-problems-registry

Use 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",
        )
    ],
)

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.",
}

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.

FastAPI Integration

The optional FastAPI integration requires Python 3.10 or newer. Install it with the fastapi extra:

pip install "eoap-problems-registry[fastapi]"

Register an exception handler that returns the problem detail as the response body, then raise ProblemRegistryException from a route:

from fastapi import FastAPI

import eoap_problems_registry as registry
from eoap_problems_registry.fastapi import ProblemRegistryException

app = FastAPI()


@app.get("/resources/{resource_id}")
async def get_resource(resource_id: str) -> dict[str, str]:
    raise ProblemRegistryException(
        problem=registry.NotFound(
            instance=f"https://api.example.test/resources/{resource_id}",
        )
    )

Schemas And OpenAPI

Use the schema and OpenAPI files directly when integrating the registry into API descriptions:

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.

Development

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_docs

task 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.

Contributing Problem Types

To add or update a problem type:

  1. Update schemas/schema.yaml with the JSON Schema definition under $defs.
  2. Update schemas/openapi.yaml if the problem should be exposed through reusable OpenAPI response components or examples.
  3. Add or update the matching Markdown page in docs/.
  4. Add the page to the nav section in mkdocs.yaml.
  5. Run task process_schema to regenerate the Python models and schema docs.
  6. Run task generate_openapi_docs if OpenAPI components or examples changed.
  7. Add or update tests in tests/ when generated behavior changes.
  8. 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.

CI And Releases

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.

License

Apache License, Version 2.0

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

eoap_problems_registry-1.4.0.tar.gz (121.5 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

eoap_problems_registry-1.4.0-py3-none-any.whl (14.3 kB view details)

Uploaded Python 3

File details

Details for the file eoap_problems_registry-1.4.0.tar.gz.

File metadata

  • Download URL: eoap_problems_registry-1.4.0.tar.gz
  • Upload date:
  • Size: 121.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for eoap_problems_registry-1.4.0.tar.gz
Algorithm Hash digest
SHA256 fcf740e03f03b74ab5fd780f45d84a03ed18a2e10e589acf217af652aa446a3c
MD5 e330ee3aac72c65950cf9efa48e5662c
BLAKE2b-256 dc01f21140f27e7bfff5f52bc942a646fb01d8e5b204a6ca01e47a3698fe48b2

See more details on using hashes here.

Provenance

The following attestation bundles were made for eoap_problems_registry-1.4.0.tar.gz:

Publisher: package.yaml on eoap/problems-registry

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file eoap_problems_registry-1.4.0-py3-none-any.whl.

File metadata

File hashes

Hashes for eoap_problems_registry-1.4.0-py3-none-any.whl
Algorithm Hash digest
SHA256 dfc1cd321b8286dde064ac30e7aef636a2ef657e88b09a683b81256226bb972f
MD5 d10c1d7ba0f05b42981888ac491e7ded
BLAKE2b-256 461bcf240763a37fd96bde4fa42b07f22091388cafc04ae443ddb40300ebaa52

See more details on using hashes here.

Provenance

The following attestation bundles were made for eoap_problems_registry-1.4.0-py3-none-any.whl:

Publisher: package.yaml on eoap/problems-registry

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Release history Release notifications | RSS feed

1.5.0

2 files

This release

1.4.0 This release

2 files

1.3.0

2 files

1.2.0

2 files

1.1.0

2 files

1.0.1

2 files

1.0.0

2 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page