bruno
bruno copied to clipboard
FEATURE: api interface
I have checked the following:
- [X] I've searched existing issues and found nothing related to my issue.
Describe the feature you want to add
Is it possible to add a field for fast api body specification? in this specification it is possible to input like a coded interface and the input body in json is for this specification linted.
Mockups or Images of the feature
const interface theExample { name: String; anyNumber: integer; }
{ "name" : "a name", "anyNumber" : 5 }
Or alternatively JSON-Schema? Since we are in a NodeJS Ecosystem, this is probably easier to implement. Maybe an option to convert fastapi specs afterwards?
Especially developers interfaces, because they writing code not json.