Skip to content

Commit 67a2786

Browse files
committed
Upstream merge
2 parents 72630f7 + dd28b8f commit 67a2786

40 files changed

+147
-111
lines changed

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright 2014 Reverb Technologies, Inc.
1+
Copyright 2015 SmartBear Software
22

33
Licensed under the Apache License, Version 2.0 (the "License");
44
you may not use this file except in compliance with the License.

README.md

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ This includes:
4545

4646
## See it in Action
4747

48-
If you just want to see it work, check out the [pet store sample](http://petstore.swagger.wordnik.com).
48+
If you just want to see it work, check out the [pet store sample](http://petstore.swagger.io/).
4949

5050
## Additional Libraries
5151

@@ -70,6 +70,7 @@ These are third party tools generated by the Swagger community. Note that not al
7070
- [compojure-api](https://github.com/metosin/compojure-api) - Swagger for Compojure
7171
- [fnhouse-swagger](https://github.com/metosin/fnhouse-swagger) - Swagger for fnhouse
7272
- [pedestal-swagger](https://github.com/frankiesardo/pedestal-swagger) - Swagger for pedestal
73+
- [swagger1st](https://github.com/sarnowski/swagger1st) - A Clojure/Ring handler that does parsing, validation and routing based on swagger definitions.
7374

7475
### ColdFusion / CFML
7576
- [swagger-docs-cfml](https://github.com/webonix/swagger-docs-cfml) - create swagger docs from CFML (Railo) ReST components.
@@ -132,6 +133,7 @@ These are third party tools generated by the Swagger community. Note that not al
132133
- [swagger-express](https://github.com/fliptoo/swagger-express) - A simple and clean solution to integrate swagger with express straight away from jsdoc or a yaml file.
133134
- [Swagger Parser](https://github.com/BigstickCarpet/swagger-parser#swagger-parser) - Parses, validates, and dereferences JSON/YAML Swagger specs in Node and browsers
134135
- [Swagger Express Middleware](https://github.com/BigstickCarpet/swagger-express-middleware/#swagger-express-middleware) - Swagger middleware and mocks for Express.js
136+
- [swagger-mongodb](https://github.com/kaizhu256/node-swagger-mongodb) - lightweight swagger-ui crud-api backed by mongodb
135137

136138
#### Perl
137139
- [Raisin](https://github.com/khrt/Raisin) - A framework with a built-in Swagger support.
@@ -153,6 +155,9 @@ These are third party tools generated by the Swagger community. Note that not al
153155
- [pyswagger](https://github.com/AntXlab/pyswagger) - A type-safe, dynamic, spec-compliant Swagger client.
154156
- [flex](https://github.com/pipermerriam/flex) - Swagger 2.0 schema validation, and tooling for validating arbitrary request/response objects.
155157
- [flask-swagger](https://github.com/gangverk/flask-swagger) - A Swagger 2.0 extractor for Flask via YAML in docstrings
158+
- [bravado](https://github.com/Yelp/bravado) - Swagger 2.0 client with support for both synchronous and asynchronous http.
159+
- [bravado-core](https://github.com/Yelp/bravado-core) - Library for Swagger 2.0 schema ingestion, validation, request/response validation, etc.
160+
- [swagger-spec-validator](https://github.com/Yelp/swagger_spec_validator) - Library for validating Swagger 1.2 and 2.0 schemas.
156161

157162
#### Ruby
158163
- [grape-swagger](https://github.com/tim-vandecasteele/grape-swagger) - Add Swagger compliant documentation to your grape API.
@@ -176,7 +181,7 @@ These are third party tools generated by the Swagger community:
176181

177182
## License
178183

179-
Copyright 2014 Reverb Technologies, Inc.
184+
Copyright 2015 SmartBear Software
180185

181186
Licensed under the Apache License, Version 2.0 (the "License");
182187
you may not use this file except in compliance with the License.

examples/v2.0/yaml/petstore-expanded.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,15 @@ info:
33
version: 1.0.0
44
title: Swagger Petstore
55
description: A sample API that uses a petstore as an example to demonstrate features in the swagger-2.0 specification
6-
termsOfService: http://helloreverb.com/terms/
6+
termsOfService: http://swagger.io/terms/
77
contact:
8-
name: Wordnik API Team
8+
name: Swagger API Team
99
1010
url: http://madskristensen.net
1111
license:
1212
name: MIT
1313
url: http://github.com/gruntjs/grunt/blob/master/LICENSE-MIT
14-
host: petstore.swagger.wordnik.com
14+
host: petstore.swagger.io
1515
basePath: /api
1616
schemes:
1717
- http

examples/v2.0/yaml/petstore.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ info:
44
title: Swagger Petstore
55
license:
66
name: MIT
7-
host: petstore.swagger.wordnik.com
7+
host: petstore.swagger.io
88
basePath: /v1
99
schemes:
1010
- http

fixtures/v1.2/helloworld/server/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# All-in-one Static Hello World Sample
22

3-
This sample project provides an all-one-one package demo for the Hello World sample described in the [wiki](https://github.com/wordnik/swagger-spec/wiki/Hello-World-Sample).
3+
This sample project provides an all-one-one package demo for the Hello World sample described in the [wiki](https://github.com/swagger-api/swagger-spec/wiki/Hello-World-Sample).
44

55
## Requirements
66

fixtures/v1.2/helloworld/server/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
22
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
33
<modelVersion>4.0.0</modelVersion>
4-
<groupId>com.wordnik</groupId>
5-
<artifactId>wordnik-swagger-demo</artifactId>
4+
<groupId>io.swagger</groupId>
5+
<artifactId>swagger-demo</artifactId>
66
<packaging>jar</packaging>
7-
<name>wordnik-swagger-demo</name>
7+
<name>swagger-demo</name>
88
<version>1.0.1-SNAPSHOT</version>
99
<prerequisites>
1010
<maven>2.2.0</maven>
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
# Static Hello World Sample Files
22

3-
This sample project provides the static files to be hosted in your web server, following the Hello World sample described in the [wiki](https://github.com/wordnik/swagger-spec/wiki/Hello-World-Sample).
3+
This sample project provides the static files to be hosted in your web server, following the Hello World sample described in the [wiki](https://github.com/swagger-api/swagger-spec/wiki/Hello-World-Sample).

fixtures/v2.0/json/resources/cascadingSchemes.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@
44
"version": "1.0.9-abcd",
55
"title": "Swagger Sample API",
66
"description": "A sample API that uses a petstore as an example to demonstrate features in the swagger-2.0 specification",
7-
"termsOfService": "http://helloreverb.com/terms/",
7+
"termsOfService": "http://swagger.io/terms/",
88
"contact": {
9-
"name": "wordnik api team",
10-
"url": "http://developer.wordnik.com"
9+
"name": "Swagger API Team",
10+
"url": "http://swagger.io"
1111
},
1212
"license": {
1313
"name": "Creative Commons 4.0 International",

fixtures/v2.0/json/resources/commonParameters.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@
44
"version": "1.0.9-abcd",
55
"title": "Swagger Sample API",
66
"description": "A sample API that uses a petstore as an example to demonstrate features in the swagger-2.0 specification",
7-
"termsOfService": "http://helloreverb.com/terms/",
7+
"termsOfService": "http://swagger.io/terms/",
88
"contact": {
9-
"name": "wordnik api team",
10-
"url": "http://developer.wordnik.com"
9+
"name": "Swagger API Team",
10+
"url": "http://swagger.io"
1111
},
1212
"license": {
1313
"name": "Creative Commons 4.0 International",

fixtures/v2.0/json/resources/multipleMimeTypes.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@
44
"version": "1.0.9-abcd",
55
"title": "Swagger Sample API",
66
"description": "A sample API that uses a petstore as an example to demonstrate features in the swagger-2.0 specification",
7-
"termsOfService": "http://helloreverb.com/terms/",
7+
"termsOfService": "http://swagger.io/terms/",
88
"contact": {
9-
"name": "wordnik api team",
10-
"url": "http://developer.wordnik.com"
9+
"name": "Swagger API Team",
10+
"url": "http://swagger.io"
1111
},
1212
"license": {
1313
"name": "Creative Commons 4.0 International",

0 commit comments

Comments
 (0)