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

Results 50 bravado-core issues
Sort by recently updated
recently updated
newest added

When running an installation on clean python environment, Bravado gets installed with the newest jsonschema, currently >=4.0.0 jsonschema 4.0.0 introduced support for newer draft versions, which does not follow the...

jsonschema>=4.0.0 is using different URLs than 3.x and bravado is not processing them correctly when testing offline. A list of examples can be found below. This pull request adds those...

Schema validation with bravado-core causes "RefResolutionError" when used with newer versions of jsonschema (4.0.0+); this seems to be a problem with jsonschema itself (https://github.com/Julian/jsonschema/issues/847). This commit pins jsonschema to the...

This combines #383 and #384 with some extra cleanup to get github actions working properly (They seem to be disabled here, but I have them now passing on my fork...

Fails to marshal lists of list arrays. ```json {"description":"connected solar system pairs", "in":"query", "items": { "collectionFormat":"pipes", "items": { "format":"int32", "type":"integer" }, "maxItems":2, "minItems":2, "type":"array", "uniqueItems":true}, "maxItems":100, "name":"connections", "type":"array", "uniqueItems":true }...

This resolves an issue which occasionally results in an `IndexError` due to a race condition. See MLOCPAR-6374 in JIRA for context.

Several places online I see references to useful functionality like `bravado_core.response.unmarshal_with`, but I cannot find this in the bravado_core ReadTheDocs. Is there an API reference available somewhere? If no, what...

While working on #331 I've noticed that bravado-core has some custom logic to ensure that the x-nullable field is propagated in case of a reference object. According to the JSON...

I am wondering if you had in mind when you designed `add_file` that you are naming the file after the spec parameter name in `bravado_core/param.py`. Given this parameter spec: ```json...