Artur Maciag
Artur Maciag
The element of the document located on the same server should look like follow – `$ref: 'test.json'` https://swagger.io/docs/specification/using-ref/#syntax
@sanderegg it works for me after fixing `null issue ``` f = open('testapi.yaml') spec_dict = safe_load(f) spec = create_spec(spec_dict, spec_url='file:///path/to/file/test.yaml') ```
@sanderegg see my first comment
There is no such keyword as `$schema` and `type` should be string Here is valid: ``` // test.json { "title": "Test", "type": "string", "format": "date-time", "nullable": true } ```
Hmm. What can I say more. It's OpenAPI library and OpenAPI schema is subset of JSONSchema > The Schema Object allows the definition of input and output data types. This...
Thanks for the info. It's a bit hacky. "More Proper Solution" looks good. Now we need to wait for OpenAPI 3.1 release.
It's just output of [CLI's test](https://github.com/p1c2u/openapi-spec-validator/blob/master/tests/integration/test_main.py#L56). Nothing to be worry about > Do you have any plans soon to make updates for those versions? Yes they will be updated in...
@sarangsbabu367 Hi, there is no deepObject support at the moment. https://github.com/p1c2u/openapi-core/blob/0aeb14477bd881247856a8ab520b5adf4223573d/openapi_core/deserializing/parameters/factories.py#L11 Future implementation should validate schema agains schema in `schema` field.
Python 3.6 support drop can be extracted to separate commit/PR
We need to add information about supported versions and how to use them to the README file