openapi-core/openapi_core/__init__.py
Ondrej Tuma 83b9c37915 Object additionalProperties support
* Default is true like in specification
* When is set false, it works like in past
* Object with types works
2019-03-12 16:01:28 +01:00

15 lines
423 B
Python

# -*- coding: utf-8 -*-
"""OpenAPI core module"""
from openapi_core.shortcuts import (
create_spec, validate_parameters, validate_body, validate_data,
)
__author__ = 'Artur Maciag'
__email__ = 'maciag.artur@gmail.com'
__version__ = '0.8.1'
__url__ = 'https://github.com/p1c2u/openapi-core'
__license__ = 'BSD 3-Clause License'
__all__ = [
'create_spec', 'validate_parameters', 'validate_body', 'validate_data',
]