openapi-core icon indicating copy to clipboard operation
openapi-core copied to clipboard

Openapi-core is a Python library that adds client-side and server-side support for the OpenAPI v3.0 and OpenAPI v3.1 specification.

Results 138 openapi-core issues
Sort by recently updated
recently updated
newest added

Does openapi-core provide support for server objects inside a path. If an alternative server object is specified at the Root level, it will be overridden by this value Server object:...

kind/question

Please describe the `request` object for the `request_parameters_factory.create`. Can't find it in source code. Is it possible to validate a response data?

kind/enhancement
area/documentation

When writing status codes in yaml as: ```yaml reponses: 200: description: OK ``` They are internally converted to integers and json_schema trips over them [here](https://github.com/Julian/jsonschema/blob/master/jsonschema/_utils.py#L104). In addition this isn't caught...

kind/bug/confirmed

I have a set of files that form a spec that fully validates with openapi-spec-validator. It can find all references, but openapi-core cannot and after much debugging I figured out...

kind/bug/confirmed
area/schema

Hello, I am currently in the process of creating a python based REST api. I wrote an openapi 3.0 interface that reference an external json-schema file using $ref: 'test.json' (openapiref)[https://github.com/OAI/OpenAPI-Specification/blob/master/versions/3.0.0.md#schemaObject]...

kind/enhancement
area/schema
spec/3.1

Found this issue while investigating the code for #147 I noticed that `custom_formatters` are not being user for unmarshalling and validating properties, unless their containing Schema is strictly defined. That...

We probably should install an extra handler for jsonschema, one that prepends `file://` *and resolves the current directory* to all relative file name references. The relevant code that errors out:...

Hello. We use openapi-core to validate our specs with the backend, so that we are sure that the documentation generated out of the specs is up-to-date. However, so far, the...

If you have a list oneOf types validator defaults them to object and fails: schema ``` utctime: oneOf: - type: string enum: [always, now] - type: string format: date-time ```...

kind/bug/confirmed
area/schema

Is the 'anyOf' keyword supported? It doesn't appear to work. See [here](https://gist.github.com/AMcManigal/b9932f18bd98ba6e2316a1b566321b62) for the full spec example. Following is an excerpt of the relevant part. Notice that the healthSigns and...

kind/enhancement
area/schema
kind/missing-implementation