Skip to content
This repository has been archived by the owner on Jan 19, 2024. It is now read-only.

Fix: added json schema draft version to not depend on an implementations default version if entry does not exist ons default version if entry does not exist #140

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
{
"$schema": "http://json-schema.org/draft-03/schema#",
"type": "object",
"properties": {
"auth_token": {
"required": false,
"type": "string"
}
},
"type": "object"
}
}
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
{
"$schema": "http://json-schema.org/draft-03/schema#",
"type": "object",
"required": false,
"properties": {
"auth_token": {
"required": false,
Expand Down Expand Up @@ -42,7 +45,5 @@
"type": "object",
"required": false
}
},
"required": false,
"type": "object"
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ title: API
get:
queryParameters:
year:
type: !include account.json
type: !include files/account.json