Skip to content

Commit b780aa6

Browse files
authored
Merge pull request #47 from fredbi/fix/jsondoc-basepath
fix: keep SpecFilePath in documents
2 parents 8456822 + e5dfc13 commit b780aa6

File tree

6 files changed

+1582
-12
lines changed

6 files changed

+1582
-12
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
{
2+
"definitions": {
3+
"todo-partial": {
4+
"title": "Todo Partial",
5+
"type": "object",
6+
"properties": {
7+
"name": {
8+
"type": "string"
9+
},
10+
"completed": {
11+
"type": ["boolean", "null"]
12+
}
13+
},
14+
"required": ["name", "completed"]
15+
}
16+
}
17+
}

0 commit comments

Comments
 (0)