Skip to main content

OpenAPI schema validation for Python

Project description

https://img.shields.io/pypi/v/openapi-schema-validator.svg https://travis-ci.org/p1c2u/openapi-schema-validator.svg?branch=master https://img.shields.io/codecov/c/github/p1c2u/openapi-schema-validator/master.svg?style=flat https://img.shields.io/pypi/pyversions/openapi-schema-validator.svg https://img.shields.io/pypi/format/openapi-schema-validator.svg https://img.shields.io/pypi/status/openapi-schema-validator.svg

About

Openapi-schema-validator is a Python library that validates schema against:

Installation

Recommended way (via pip):

$ pip install openapi-schema-validator

Alternatively you can download the code and install from the repository:

$ pip install -e git+https://github.com/p1c2u/openapi-schema-validator.git#egg=openapi_schema_validator

Usage

Simple usage

from openapi_schema_validator import validate

# A sample schema
schema = {
    "type": "object",
    "required": [
       "name"
    ],
    "properties": {
        "name": {
            "type": "string"
        },
        "age": {
            "type": "integer",
            "format": "int32",
            "minimum": 0,
            "nullable": True,
        },
        "birth-date": {
            "type": "string",
            "format": "date",
        }
    },
    "additionalProperties": False,
}

# If no exception is raised by validate(), the instance is valid.
validate({"name": "John", "age": 23}, schema)

validate({"name": "John", "city": "London"}, schema)

Traceback (most recent call last):
    ...
ValidationError: Additional properties are not allowed ('city' was unexpected)

You can also check format for primitive types

from openapi_schema_validator import oas31_format_checker

validate({"name": "John", "birth-date": "-12"}, schema, format_checker=oas31_format_checker)

Traceback (most recent call last):
    ...
ValidationError: '-12' is not a 'date'

Project details


Download files

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

Source Distribution

openapi-schema-validator-0.3.0a1.tar.gz (7.1 kB view details)

Uploaded Source

Built Distribution

File details

Details for the file openapi-schema-validator-0.3.0a1.tar.gz.

File metadata

  • Download URL: openapi-schema-validator-0.3.0a1.tar.gz
  • Upload date:
  • Size: 7.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.1.12 CPython/3.10.1 Linux/5.11.0-1022-azure

File hashes

Hashes for openapi-schema-validator-0.3.0a1.tar.gz
Algorithm Hash digest
SHA256 5e27fcc49663678b90516466c0f4532ed613221cf918899cf718e3e1f4af2f24
MD5 3a43c0a8b90610a8e414b3cd8565adae
BLAKE2b-256 d065d981f5b3dcddb9ee69bac74a6b3bcfe6f9247cc8e37e5226325407542e1c

See more details on using hashes here.

File details

Details for the file openapi_schema_validator-0.3.0a1-py3-none-any.whl.

File metadata

File hashes

Hashes for openapi_schema_validator-0.3.0a1-py3-none-any.whl
Algorithm Hash digest
SHA256 9b287390faf08f5712701ae61fa900414d2df32174bc401e6e15bbbbd8f33841
MD5 b0669e9516a53eabb99b483627b198db
BLAKE2b-256 625c2507ab8897c2958923dd54dc725d0cf0691647454cc787fd14759b582a94

See more details on using hashes here.

Supported by

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