Skip to content

Commit

Permalink
fixed a test regression
Browse files Browse the repository at this point in the history
  • Loading branch information
EricWittmann committed Jun 20, 2019
1 parent dc00c8d commit 455a5df
Show file tree
Hide file tree
Showing 3 changed files with 527 additions and 453 deletions.
Original file line number Diff line number Diff line change
@@ -1,32 +1,34 @@
{
"openapi" : "3.0.0",
"info" : {
"title" : "Nashorn Test API",
"version" : "1.0.1",
"license" : {
"name" : "Apache 2.0",
"url" : "http://www.apache.org/licenses/LICENSE-2.0.html"
}
},
"components" : {
"schemas" : {
"MySchema" : {
"required" : [ "name" ],
"type" : "object",
"properties" : {
"name" : {
"type" : "string"
},
"address" : {
"$ref" : "#/components/schemas/Address"
},
"age" : {
"format" : "int32",
"minimum" : 0,
"type" : "integer"
}
"openapi": "3.0.0",
"info": {
"title": "Nashorn Test API",
"version": "1.0.1",
"license": {
"name": "Apache 2.0",
"url": "http://www.apache.org/licenses/LICENSE-2.0.html"
}
},
"components": {
"schemas": {
"MySchema": {
"required": [
"name"
],
"type": "object",
"properties": {
"name": {
"type": "string"
},
"address": {
"$ref": "#/components/schemas/Address"
},
"age": {
"format": "int32",
"minimum": 0,
"type": "integer"
}
}
}
}
}
}
}
}
Loading

0 comments on commit 455a5df

Please sign in to comment.