Skip to main content

Jentic OpenAPI Validator

Project description

jentic-openapi-validator

A Python library for validating OpenAPI documents using pluggable validator backends. This package is part of the Jentic OpenAPI Tools ecosystem and provides a flexible, extensible architecture for OpenAPI document validation.

Features

  • Pluggable Backend Architecture: Support for multiple validation strategies via entry points
  • Multiple Input Formats: Validate OpenAPI documents from file URIs, JSON/YAML strings, or Python dictionaries
  • Parallel Execution: Run multiple backends concurrently using ProcessPoolExecutor for improved performance
  • Aggregated Results: Collect diagnostics from all configured backends into a single result
  • Type Safety: Full type hints with comprehensive docstrings
  • Extensible Design: Easy integration of third-party validator backends

Installation

The easiest way to install the validator with all available backends is via the jentic-openapi-tools meta-package:

pip install jentic-openapi-tools

This installs the full toolkit including the Spectral, Redocly, and SpecLynx validator backends, the CLI, and all other packages. If you only need the validator, you can install it individually:

pip install jentic-openapi-validator

The core package ships with two built-in backends (default and openapi-spec). Additional backends are available as separate packages and are automatically discovered when installed:

pip install jentic-openapi-validator-spectral    # Spectral CLI backend
pip install jentic-openapi-validator-redocly     # Redocly CLI backend

The CLI (jentic-openapi-tools validate --list-backends) shows which backends are currently available.

Prerequisites:

  • Python 3.11+
  • Node.js >=20.19.0 and npm (required for Spectral and Redocly backends)

Command-Line Interface

The package includes the jentic-openapi-tools CLI with a validate subcommand for validating OpenAPI documents directly from the terminal.

Basic Usage

# Validate a local file
jentic-openapi-tools validate openapi.yaml

# Validate a remote URL
jentic-openapi-tools validate https://petstore3.swagger.io/api/v3/openapi.json

# Validate from stdin
cat openapi.yaml | jentic-openapi-tools validate -

# Use a specific backend
jentic-openapi-tools validate -b spectral openapi.yaml

# Use multiple backends
jentic-openapi-tools validate -b spectral -b redocly openapi.yaml

# Use all installed backends
jentic-openapi-tools validate -a openapi.yaml

Output Formats

The CLI supports three output formats selected with -f/--format:

# Human-readable text (default)
jentic-openapi-tools validate openapi.yaml

# Machine-readable JSON with LSP diagnostics
jentic-openapi-tools validate -f json openapi.yaml

# GitHub Actions workflow annotations
jentic-openapi-tools validate -f github openapi.yaml

The text format outputs one line per diagnostic with severity, position, message, rule code, and source backend. JSON output includes full LSP diagnostic objects and a summary with counts by severity. GitHub format emits ::error, ::warning, and ::notice annotations that render inline in pull request diffs.

Exit Codes

The CLI uses three exit codes: 0 when the document is valid, 1 when validation errors are found, and 2 for usage or runtime errors (missing file, unknown backend, etc.). This makes it straightforward to use in CI pipelines and shell scripts.

Additional Options

# Write output to a file instead of stdout
jentic-openapi-tools validate -o results.json -f json openapi.yaml

# Write to file only, suppress stdout
jentic-openapi-tools validate -q -o results.txt openapi.yaml

# Run backends in parallel
jentic-openapi-tools validate --parallel -b spectral -b redocly openapi.yaml

# Suppress output, only set exit code
jentic-openapi-tools validate --quiet openapi.yaml

# Disable colored output (also respects NO_COLOR env var)
jentic-openapi-tools validate --no-color openapi.yaml

# List available backends
jentic-openapi-tools validate --list-backends

# Show version
jentic-openapi-tools --version

Python API

Basic Validation

from jentic.apitools.openapi.validator.core import OpenAPIValidator

# Create validator with default backend
validator = OpenAPIValidator()

# Validate from file URI
result = validator.validate("file:///path/to/openapi.yaml")
print(f"Valid: {result.valid}")

# Check for validation issues
if not result.valid:
    for diagnostic in result.diagnostics:
        print(f"Error: {diagnostic.message}")

Validate from String

# Validate JSON/YAML string
openapi_json = '{"openapi":"3.1.0","info":{"title":"My API","version":"1.0.0"},"paths":{}}'
result = validator.validate(openapi_json)

if result:  # ValidationResult supports boolean context
    print("Validation passed!")

Validate from Dictionary

# Validate from dictionary
openapi_doc = {
    "openapi": "3.1.0",
    "info": {"title": "My API", "version": "1.0.0"},
    "paths": {}
}

result = validator.validate(openapi_doc)
print(f"Found {len(result)} issues")  # ValidationResult supports len()

Configuration Options

Using Multiple Backends

# Use openapi-spec backend only (default)
validator = OpenAPIValidator()

# Use multiple backends (requires backends to be installed)
validator = OpenAPIValidator(backends=["openapi-spec", "spectral"])

# Results from all backends are aggregated
result = validator.validate(document)

Backend Selection

# Use backend by name
validator = OpenAPIValidator(backends=["openapi-spec"])

# Pass backend instance
from jentic.apitools.openapi.validator.backends.openapi_spec import OpenAPISpecValidatorBackend
backend = OpenAPISpecValidatorBackend()
validator = OpenAPIValidator(backends=[backend])

# Pass backend class
validator = OpenAPIValidator(backends=[OpenAPISpecValidatorBackend])

Custom Parser

from jentic.apitools.openapi.parser.core import OpenAPIParser

# Use a custom parser instance
parser = OpenAPIParser()
validator = OpenAPIValidator(parser=parser)

Parallel Execution

When using multiple backends, you can run them in parallel for improved performance:

# Run backends in parallel using ProcessPoolExecutor
validator = OpenAPIValidator(backends=["default", "openapi-spec", "spectral"])
result = validator.validate(document, parallel=True)

# Limit the number of worker processes
result = validator.validate(document, parallel=True, max_workers=2)

Parallel execution uses ProcessPoolExecutor for true parallelism that bypasses Python's GIL. This is particularly beneficial when using multiple backends, especially I/O-bound backends like Spectral and Redocly that spawn subprocesses.

Notes:

  • parallel=False by default (opt-in)
  • With a single backend, parallel=True has no effect (runs sequentially)
  • Diagnostics from all backends are aggregated regardless of execution mode

Working with ValidationResult

The ValidationResult class provides convenient methods for working with validation diagnostics:

result = validator.validate(document)

# Boolean context - True if valid
if result:
    print("Valid!")

# Get diagnostic count
print(f"Found {len(result)} issues")

# Check validity
if not result.valid:
    print("Validation failed")

# Access all diagnostics
for diagnostic in result.diagnostics:
    print(f"{diagnostic.severity}: {diagnostic.message}")

Testing

Run the test suite:

uv run --package jentic-openapi-validator pytest packages/jentic-openapi-validator -v

Integration Tests

The package includes integration tests for backend discovery and validation. Tests requiring external backends (like Spectral) will be automatically skipped if the backend package is not installed or the required CLI is not available.

API Reference

OpenAPIValidator

class OpenAPIValidator:
    def __init__(
        self,
        backends: Sequence[str | BaseValidatorBackend | Type[BaseValidatorBackend]] | None = None,
        parser: OpenAPIParser | None = None,
    ) -> None

Parameters:

  • backends: Sequence of validator backends to use. Each item can be:
    • str: Name of a backend registered via entry points (e.g., "default", "openapi-spec", "redocly", "spectral")
    • BaseValidatorBackend: Instance of a validator backend
    • Type[BaseValidatorBackend]: Class of a validator backend (will be instantiated)
    • Defaults to ["default"] if None
  • parser: Custom OpenAPIParser instance (optional)

Methods:

  • validate(document: str | dict, *, base_url: str | None = None, target: str | None = None, parallel: bool = False, max_workers: int | None = None) -> ValidationResult
    • Validates an OpenAPI document using all configured backends
    • document: File URI, JSON/YAML string, or dictionary
    • base_url: Optional base URL for resolving relative references
    • target: Optional target identifier for validation context
    • parallel: If True and multiple backends are configured, run validation in parallel using ProcessPoolExecutor. Defaults to False.
    • max_workers: Maximum number of worker processes for parallel execution. If None, defaults to the number of processors on the machine. Only used when parallel=True.
    • Returns: ValidationResult with aggregated diagnostics

ValidationResult

@dataclass
class ValidationResult:
    diagnostics: list[Diagnostic]
    valid: bool  # Computed automatically

Attributes:

  • diagnostics: List of all diagnostics from validation
  • valid: True if no diagnostics were found, False otherwise

Methods:

  • __bool__(): Returns valid for use in boolean context
  • __len__(): Returns number of diagnostics
  • __repr__(): Returns string representation

Available Backends

default

Basic validation backend that checks for required OpenAPI fields and structure. Suitable for basic document validation.

openapi-spec

Validation backend using the openapi-spec-validator library for JSON Schema-based validation of OpenAPI documents. CPU-bound validation.

redocly (Optional)

Validation backend using Redocly CLI for comprehensive OpenAPI linting and validation. I/O-bound (spawns Node.js subprocess).

Install: pip install jentic-openapi-validator-redocly

spectral (Optional)

Advanced validation backend using Spectral CLI with comprehensive rule checking. I/O-bound (spawns Node.js subprocess).

Install: pip install jentic-openapi-validator-spectral

Project details


Release history Release notifications | RSS feed

Download files

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

Source Distribution

jentic_openapi_validator-1.0.0a56.tar.gz (23.3 kB view details)

Uploaded Source

Built Distribution

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

jentic_openapi_validator-1.0.0a56-py3-none-any.whl (31.8 kB view details)

Uploaded Python 3

File details

Details for the file jentic_openapi_validator-1.0.0a56.tar.gz.

File metadata

File hashes

Hashes for jentic_openapi_validator-1.0.0a56.tar.gz
Algorithm Hash digest
SHA256 6978eafeadb7616c48aa64457bc613d93b7c0bd9936677e865214b5dd320ec63
MD5 8915b88fc69ba5219dda432f6b8008f5
BLAKE2b-256 8a00e6020593ee6f801656163bb38cdee3ff2925d766dbcfee53a689843a19cc

See more details on using hashes here.

Provenance

The following attestation bundles were made for jentic_openapi_validator-1.0.0a56.tar.gz:

Publisher: release.yml on jentic/jentic-openapi-tools

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

File details

Details for the file jentic_openapi_validator-1.0.0a56-py3-none-any.whl.

File metadata

File hashes

Hashes for jentic_openapi_validator-1.0.0a56-py3-none-any.whl
Algorithm Hash digest
SHA256 46d760909c3aa025fa6e17fb98d8ee4f7562d5a19b75514f070b9047d14af5fa
MD5 2d59ffb848d47c66a4a39ef7312c6a78
BLAKE2b-256 e0a0a983d19011a66b5f6adfaed79d1fa27820544243e2825ef63a03ceeb286b

See more details on using hashes here.

Provenance

The following attestation bundles were made for jentic_openapi_validator-1.0.0a56-py3-none-any.whl:

Publisher: release.yml on jentic/jentic-openapi-tools

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

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page