Skip to content

Instantly share code, notes, and snippets.

@jeremy-w
Last active April 19, 2021 16:53
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jeremy-w/610000ba9a7afa8dc4dab2079c4d88d1 to your computer and use it in GitHub Desktop.
Save jeremy-w/610000ba9a7afa8dc4dab2079c4d88d1 to your computer and use it in GitHub Desktop.
{
"swagger": "2.0",
"info": {
"title": "Test swagger",
"version": "0.1.0"
},
"definitions": {
"File": {
"title": "File",
"type": "object",
"properties": {
"name": {
"type": "string"
}
}
},
"Folder": {
"title": "Folder",
"type": "object",
"properties": {
"files": {
"type": "array",
"items": {
"$ref": "#/definitions/File"
}
}
}
}
},
"paths": {},
"host": "localhost:3000",
"schemes": ["http"]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment