Skip to content

Commit f09188e

Browse files
committed
adds non-working reproducer
1 parent 6890585 commit f09188e

File tree

2 files changed

+33
-0
lines changed

2 files changed

+33
-0
lines changed
Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
{
2+
"$schema": "http://json-schema.org/draft-07/schema#",
3+
"type": "object",
4+
"required": [
5+
"name",
6+
"property1",
7+
"property2"
8+
],
9+
"properties": {
10+
"name": {
11+
"title": "Object name",
12+
"description": "Description of object name",
13+
"type": "string",
14+
"maxLength": 5
15+
},
16+
"property1": {
17+
"title": "Property 1",
18+
"description": "Description of property 1",
19+
"type": "integer"
20+
},
21+
"property2": {
22+
"title": "Property 2",
23+
"description": "Description of property 2",
24+
"type": "string",
25+
"maxLength": 5
26+
}
27+
}
28+
}
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"name": "oh yeah",
3+
"property1": 3,
4+
"property2": "87"
5+
}

0 commit comments

Comments
 (0)