Skip to content

Commit

Permalink
Merge pull request OAI#384 from jasonh-n-austin/master
Browse files Browse the repository at this point in the history
Samples for swagger-js/OAI#417: Separated files, yaml only for now
  • Loading branch information
webron committed Jun 5, 2015
2 parents dd28b8f + 9492473 commit 7926841
Show file tree
Hide file tree
Showing 17 changed files with 437 additions and 62 deletions.
75 changes: 29 additions & 46 deletions examples/v2.0/json/petstore-expanded.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@
"termsOfService": "http://swagger.io/terms/",
"contact": {
"name": "Swagger API Team",
"email": "[email protected]",
"url": "http://swagger.io"
"email": "[email protected]",
"url": "http://madskristensen.net"
},
"license": {
"name": "MIT",
Expand All @@ -29,25 +29,19 @@
"paths": {
"/pets": {
"get": {
"description": "Returns all pets from the system that the user has access to",
"description": "Returns all pets from the system that the user has access to\nNam sed condimentum est. Maecenas tempor sagittis sapien, nec rhoncus sem sagittis sit amet. Aenean at gravida augue, ac iaculis sem. Curabitur odio lorem, ornare eget elementum nec, cursus id lectus. Duis mi turpis, pulvinar ac eros ac, tincidunt varius justo. In hac habitasse platea dictumst. Integer at adipiscing ante, a sagittis ligula. Aenean pharetra tempor ante molestie imperdiet. Vivamus id aliquam diam. Cras quis velit non tortor eleifend sagittis. Praesent at enim pharetra urna volutpat venenatis eget eget mauris. In eleifend fermentum facilisis. Praesent enim enim, gravida ac sodales sed, placerat id erat. Suspendisse lacus dolor, consectetur non augue vel, vehicula interdum libero. Morbi euismod sagittis libero sed lacinia.\n\nSed tempus felis lobortis leo pulvinar rutrum. Nam mattis velit nisl, eu condimentum ligula luctus nec. Phasellus semper velit eget aliquet faucibus. In a mattis elit. Phasellus vel urna viverra, condimentum lorem id, rhoncus nibh. Ut pellentesque posuere elementum. Sed a varius odio. Morbi rhoncus ligula libero, vel eleifend nunc tristique vitae. Fusce et sem dui. Aenean nec scelerisque tortor. Fusce malesuada accumsan magna vel tempus. Quisque mollis felis eu dolor tristique, sit amet auctor felis gravida. Sed libero lorem, molestie sed nisl in, accumsan tempor nisi. Fusce sollicitudin massa ut lacinia mattis. Sed vel eleifend lorem. Pellentesque vitae felis pretium, pulvinar elit eu, euismod sapien.\n",
"operationId": "findPets",
"produces": [
"application/json",
"application/xml",
"text/xml",
"text/html"
],
"parameters": [
{
"name": "tags",
"in": "query",
"description": "tags to filter by",
"required": false,
"type": "array",
"collectionFormat": "csv",
"items": {
"type": "string"
},
"collectionFormat": "csv"
}
},
{
"name": "limit",
Expand All @@ -71,17 +65,14 @@
"default": {
"description": "unexpected error",
"schema": {
"$ref": "#/definitions/ErrorModel"
"$ref": "#/definitions/Error"
}
}
}
},
"post": {
"description": "Creates a new pet in the store. Duplicates are allowed",
"operationId": "addPet",
"produces": [
"application/json"
],
"parameters": [
{
"name": "pet",
Expand All @@ -103,7 +94,7 @@
"default": {
"description": "unexpected error",
"schema": {
"$ref": "#/definitions/ErrorModel"
"$ref": "#/definitions/Error"
}
}
}
Expand All @@ -112,13 +103,7 @@
"/pets/{id}": {
"get": {
"description": "Returns a user based on a single ID, if the user does not have access to the pet",
"operationId": "findPetById",
"produces": [
"application/json",
"application/xml",
"text/xml",
"text/html"
],
"operationId": "find pet by id",
"parameters": [
{
"name": "id",
Expand All @@ -139,7 +124,7 @@
"default": {
"description": "unexpected error",
"schema": {
"$ref": "#/definitions/ErrorModel"
"$ref": "#/definitions/Error"
}
}
}
Expand All @@ -164,7 +149,7 @@
"default": {
"description": "unexpected error",
"schema": {
"$ref": "#/definitions/ErrorModel"
"$ref": "#/definitions/Error"
}
}
}
Expand All @@ -173,31 +158,14 @@
},
"definitions": {
"Pet": {
"required": [
"id",
"name"
],
"properties": {
"id": {
"type": "integer",
"format": "int64"
},
"name": {
"type": "string"
},
"tag": {
"type": "string"
}
}
},
"NewPet": {
"type": "object",
"allOf": [
{
"$ref": "#/definitions/Pet"
"$ref": "#/definitions/NewPet"
},
{
"required": [
"name"
"id"
],
"properties": {
"id": {
Expand All @@ -208,7 +176,22 @@
}
]
},
"ErrorModel": {
"NewPet": {
"type": "object",
"required": [
"name"
],
"properties": {
"name": {
"type": "string"
},
"tag": {
"type": "string"
}
}
},
"Error": {
"type": "object",
"required": [
"code",
"message"
Expand Down
1 change: 1 addition & 0 deletions examples/v2.0/json/petstore-minimal.json
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@
},
"definitions": {
"Pet": {
"type": "object",
"required": [
"id",
"name"
Expand Down
16 changes: 16 additions & 0 deletions examples/v2.0/json/petstore-separate/common/Error.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
{
"type": "object",
"required": [
"code",
"message"
],
"properties": {
"code": {
"type": "integer",
"format": "int32"
},
"message": {
"type": "string"
}
}
}
19 changes: 19 additions & 0 deletions examples/v2.0/json/petstore-separate/spec/NewPet.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
{
"type": "object",
"allOf": [
{
"$ref": "Pet.yaml"
},
{
"required": [
"name"
],
"properties": {
"description": {
"type": "integer",
"format": "int64"
}
}
}
]
}
19 changes: 19 additions & 0 deletions examples/v2.0/json/petstore-separate/spec/Pet.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
{
"type": "object",
"required": [
"id",
"name"
],
"properties": {
"id": {
"type": "integer",
"format": "int64"
},
"name": {
"type": "string"
},
"tag": {
"type": "string"
}
}
}
21 changes: 21 additions & 0 deletions examples/v2.0/json/petstore-separate/spec/parameters.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
{
"tagsParam": {
"name": "tags",
"in": "query",
"description": "tags to filter by",
"required": false,
"type": "array",
"collectionFormat": "csv",
"items": {
"type": "string"
}
},
"limitsParam": {
"name": "limit",
"in": "query",
"description": "maximum number of results to return",
"required": false,
"type": "integer",
"format": "int32"
}
}
146 changes: 146 additions & 0 deletions examples/v2.0/json/petstore-separate/spec/swagger.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,146 @@
{
"swagger": "2.0",
"info": {
"version": "1.0.0",
"title": "Swagger Petstore",
"description": "A sample API that uses a petstore as an example to demonstrate features in the swagger-2.0 specification",
"termsOfService": "http://helloreverb.com/terms/",
"contact": {
"name": "Wordnik API Team",
"email": "[email protected]",
"url": "http://madskristensen.net"
},
"license": {
"name": "MIT",
"url": "http://github.com/gruntjs/grunt/blob/master/LICENSE-MIT"
}
},
"host": "petstore.swagger.wordnik.com",
"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\nNam sed condimentum est. Maecenas tempor sagittis sapien, nec rhoncus sem sagittis sit amet. Aenean at gravida augue, ac iaculis sem. Curabitur odio lorem, ornare eget elementum nec, cursus id lectus. Duis mi turpis, pulvinar ac eros ac, tincidunt varius justo. In hac habitasse platea dictumst. Integer at adipiscing ante, a sagittis ligula. Aenean pharetra tempor ante molestie imperdiet. Vivamus id aliquam diam. Cras quis velit non tortor eleifend sagittis. Praesent at enim pharetra urna volutpat venenatis eget eget mauris. In eleifend fermentum facilisis. Praesent enim enim, gravida ac sodales sed, placerat id erat. Suspendisse lacus dolor, consectetur non augue vel, vehicula interdum libero. Morbi euismod sagittis libero sed lacinia.\n\nSed tempus felis lobortis leo pulvinar rutrum. Nam mattis velit nisl, eu condimentum ligula luctus nec. Phasellus semper velit eget aliquet faucibus. In a mattis elit. Phasellus vel urna viverra, condimentum lorem id, rhoncus nibh. Ut pellentesque posuere elementum. Sed a varius odio. Morbi rhoncus ligula libero, vel eleifend nunc tristique vitae. Fusce et sem dui. Aenean nec scelerisque tortor. Fusce malesuada accumsan magna vel tempus. Quisque mollis felis eu dolor tristique, sit amet auctor felis gravida. Sed libero lorem, molestie sed nisl in, accumsan tempor nisi. Fusce sollicitudin massa ut lacinia mattis. Sed vel eleifend lorem. Pellentesque vitae felis pretium, pulvinar elit eu, euismod sapien.\n",
"operationId": "findPets",
"parameters": [
{
"$ref": "parameters.yaml#/tagsParam"
},
{
"$ref": "parameters.yaml#/limitsParam"
}
],
"responses": {
"200": {
"description": "pet response",
"schema": {
"type": "array",
"items": {
"$ref": "Pet.yaml"
}
}
},
"default": {
"description": "unexpected error",
"schema": {
"$ref": "../common/Error.yaml"
}
}
}
},
"post": {
"description": "Creates a new pet in the store. Duplicates are allowed",
"operationId": "addPet",
"parameters": [
{
"name": "pet",
"in": "body",
"description": "Pet to add to the store",
"required": true,
"schema": {
"$ref": "NewPet.yaml"
}
}
],
"responses": {
"200": {
"description": "pet response",
"schema": {
"$ref": "Pet.yaml"
}
},
"default": {
"description": "unexpected error",
"schema": {
"$ref": "../common/Error.yaml"
}
}
}
}
},
"/pets/{id}": {
"get": {
"description": "Returns a user based on a single ID, if the user does not have access to the pet",
"operationId": "find pet by id",
"parameters": [
{
"name": "id",
"in": "path",
"description": "ID of pet to fetch",
"required": true,
"type": "integer",
"format": "int64"
}
],
"responses": {
"200": {
"description": "pet response",
"schema": {
"$ref": "Pet.yaml"
}
},
"default": {
"description": "unexpected error",
"schema": {
"$ref": "../common/Error.yaml"
}
}
}
},
"delete": {
"description": "deletes a single pet based on the ID supplied",
"operationId": "deletePet",
"parameters": [
{
"name": "id",
"in": "path",
"description": "ID of pet to delete",
"required": true,
"type": "integer",
"format": "int64"
}
],
"responses": {
"204": {
"description": "pet deleted"
},
"default": {
"description": "unexpected error",
"schema": {
"$ref": "../common/Error.yaml"
}
}
}
}
}
}
}
Loading

0 comments on commit 7926841

Please sign in to comment.