🌐
GitHub
gist.github.com › lenage › 08964335de9064540c8c335fb849c5da
swagger JSON example · GitHub
swagger JSON example. GitHub Gist: instantly share code, notes, and snippets.
🌐
GitHub
github.com › VictorianGovernment › api-design-standards › blob › master › api-example-swagger-v1.4.json
api-design-standards/api-example-swagger-v1.4.json at master · VictorianGovernment/api-design-standards
Whole of Victorian Government API Design Standards - api-design-standards/api-example-swagger-v1.4.json at master · VictorianGovernment/api-design-standards
Author   VictorianGovernment
🌐
GitHub
github.com › RicoSuter › swagger-spec › blob › master › examples › v2.0 › json › petstore-simple.json
swagger-spec/examples/v2.0/json/petstore-simple.json at master · RicoSuter/swagger-spec
"description": "A sample API that uses a petstore as an example to demonstrate features in the swagger-2.0 specification", "termsOfService": "http://swagger.io/terms/", "contact": { "name": "Swagger API Team" }, "license": { "name": "MIT" } }, "host": "petstore.swagger.io", "basePath": "/api", "schemes": [ "http" ], "consumes": [ "application/json" ], "produces": [ "application/json" ], "paths": { "/pets": { "get": { "description": "Returns all pets from the system that the user has access to", "operation
Author   RicoSuter
🌐
GitHub
github.com › swaggo › swag › blob › master › example › markdown › docs › swagger.json
swag/example/markdown/docs/swagger.json at master · swaggo/swag
Automatically generate RESTful API documentation with Swagger 2.0 for Go. - swag/example/markdown/docs/swagger.json at master · swaggo/swag
Author   swaggo
🌐
GitHub
github.com › topics › swagger-json
swagger-json · GitHub Topics · GitHub
powershell swagger swagger-docs powershell-script swagger-documentation swagger-json swagger-doc ... Sample project to demonstrate OpenAPI Swagger configuration in Guice grizzly jersey example.
🌐
GitHub
github.com › djfdyuruiry › swagger2-to-json
GitHub - djfdyuruiry/swagger2-to-json: Use Swagger v2 JSON Collections to generate sample JSON for requests and responses · GitHub
Use Swagger v2 JSON Collections to generate sample JSON for requests and responses - djfdyuruiry/swagger2-to-json
Author   djfdyuruiry
🌐
GitHub
github.com › qct › swagger-example
GitHub - qct/swagger-example: Introduction and Example for OpenAPI specification & Swagger Open Source Tools, including swagger-editor, swagger-codegen and swagger-ui. Auto generation example for client SDKs, server code, asciidoctor and html documents. · GitHub
+---asciidoc //asciidoc document +---client //auto Generated client SDKs | +---go //-- client SDK in go programming language | +---html2 //-- html document | \---java //-- client SDK in java programming language +---docs //html document | swagger-example.html +---server //auto generated server code | +---jaxrs-resteasy //-- jaxrs server code that uses resteasy | \---spring //-- server code that uses spring mvc \---swagger-server // example ... OpenAPI Specification (formerly Swagger Specification) is an API description format for REST APIs. An OpenAPI file allows you to describe your entire API, including: Available endpoints (/users) and operations on each endpoint (GET /users, POST /users) Operation parameters Input and output for each operation ... Contact information, license, terms of use and other information. API specifications can be written in YAML or JSON.
Starred by 49 users
Forked by 65 users
Languages   Java 94.7% | Shell 5.3%
🌐
GitHub
github.com › davibaltar › example-swagger-autogen › blob › master › swagger-output.json
example-swagger-autogen/swagger-output.json at master · davibaltar/example-swagger-autogen
September 21, 2018 - Example showing the use of the swagger-autogen module. - example-swagger-autogen/swagger-output.json at master · davibaltar/example-swagger-autogen
Author   davibaltar
🌐
GitHub
github.com › swagger-api › swagger-parser
GitHub - swagger-api/swagger-parser: Swagger Spec to Java POJOs · GitHub
This is for example used in Swagger Codegen. ... openapi: 3.0.0 info: version: 1.0.0 title: Swagger Petstore license: name: MIT paths: /pets: get: summary: List all pets operationId: listPets responses: '200': description: An paged array of pets headers: x-next: description: A link to the next page of responses schema: type: string content: application/json: schema: type: object properties: id: type: integer format: int64 name: type: string tag: type: string
Starred by 859 users
Forked by 549 users
Languages   Java
Find elsewhere
🌐
GitHub
github.com › dpecos › rest-swagger-example
GitHub - dpecos/rest-swagger-example: Example of a Swagger REST API in Node.js
Swagger UI: http://localhost:3000/api/docs · JSON: http://localhost:3000/api/docs/json · GET http://localhost:3000/api/stocks · GET http://localhost:3000/api/stocks/1 · POST http://localhost:3000/api/stocks ·
Starred by 16 users
Forked by 14 users
Languages   JavaScript 100.0% | JavaScript 100.0%
🌐
GitHub
gist.github.com › unhurried › 65be039436581b6a6124a5c53b890c43
Swagger 3.0 Example · GitHub
Swagger 3.0 Example · Raw · openapi.yaml · This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode characters ·
🌐
GitHub
gist.github.com › abelsilva › 412542c75483f98389c7098f94b8374f
swagger.json · GitHub
swagger.json · This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
🌐
GitHub
gist.github.com › eliciojunior › 390ff9f999d0623994c7eeeb0445bb09
Swagger JSON file example · GitHub
Swagger JSON file example. GitHub Gist: instantly share code, notes, and snippets.
🌐
GitHub
github.com › swagger-api › swagger-samples › blob › master › java › inflector-dropwizard › src › main › swagger › swagger.yaml
swagger-samples/java/inflector-dropwizard/src/main/swagger/swagger.yaml at master · swagger-api/swagger-samples
x-swagger-router-controller: SampleController · description: "" operationId: uploadFile · consumes: - multipart/form-data · produces: - application/json · parameters: - name: petId · in: path ·
Author   swagger-api
🌐
GitHub
github.com › swagger-api › swagger-codegen
GitHub - swagger-api/swagger-codegen: swagger-codegen contains a template-driven engine to generate documentation, API clients and server stubs in different languages by parsing your OpenAPI / Swagger definition. · GitHub
As a quick example, to generate a PHP client for https://petstore.swagger.io/v2/swagger.json, you can run the following: git clone https://github.com/swagger-api/swagger-codegen cd swagger-codegen mvn clean package java -jar modules/swagger...
Starred by 17.7K users
Forked by 6K users
Languages   Mustache 53.0% | Java 37.9% | Shell 5.1% | TypeScript 1.3% | Batchfile 0.6% | Apex 0.3%
🌐
Google Groups
groups.google.com › g › swagger-swaggersocket › c › VXBeLwh8l48
Sample Swagger 2.0 json/yaml files
This is the only sample I have - https://github.com/swagger-api/swagger-spec/blob/master/fixtures/v2.0/json/resources/resourceWithLinkedDefinitions.json.
🌐
GitHub
github.com › kongchen › swagger-maven-example › blob › master › generated › swagger-ui › swagger.json
swagger-maven-example/generated/swagger-ui/swagger.json at master · kongchen/swagger-maven-example
Example of using swagger-maven-plugin (https://github.com/kongchen/swagger-maven-plugin) - swagger-maven-example/generated/swagger-ui/swagger.json at master · kongchen/swagger-maven-example
Author   kongchen
🌐
Tibco
docs.tibco.com › pub › amsg › 3.4.2 › doc › html › Administration › sample-swagger.json-.htm
Sample Swagger JSON File
A sample Swagger.json file of the BookStore example is available in <TIBCO_HOME>/amx/3.4/samples/rest/samples/bookstore/. An overview of the fields from the sample Swagger.json file is provided below. For a complete list of all the objects and fields that can be defined in the swagger.json ...
🌐
GitHub
github.com › swagger-api › swagger-petstore
GitHub - swagger-api/swagger-petstore · GitHub
This sample is based on swagger-inflector, and provides an example of swagger / OpenAPI 3 petstore. ... This will start Jetty embedded on port 8080. Expose port 8080 from the image and access petstore via the exposed port. You can then add and delete pets as you see fit. ... docker pull swaggerapi/petstore3:unstable docker run --name swaggerapi-petstore3 -d -p 8080:8080 swaggerapi/petstore3:unstable · Once started, you can navigate to http://localhost:8080/api/v3/openapi.json ...
Starred by 319 users
Forked by 432 users
Languages   Java 78.2% | Shell 7.7% | Python 7.6% | HTML 5.8% | Dockerfile 0.7%