I'm working on custom microservice which will be doing sort of authentication for a web service. Microservice is under development using flask, swagger and connexion. Since swagger.yaml file getting huge(due to load of urls) to reduces the complexity of the file, I tried to break things up.
W/D
├── paths
│ └── users.yml
├── server.sh
├── src
│ ...
└── swagger.yml
In the main swagger file I tried to link the users.yml
and the swagger.yml
by
paths:
/users:
$ref: ./paths/users.yml
So when I ran the project, It gives me this error..
jsonschema.exceptions.RefResolutionError: unknown url type: './paths/users.yml'
What could be the reason for this? Is this problem due to connexion
?