-
Notifications
You must be signed in to change notification settings - Fork 332
Expand file tree
/
Copy pathschema.json
More file actions
43 lines (42 loc) · 1.13 KB
/
Copy pathschema.json
File metadata and controls
43 lines (42 loc) · 1.13 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
{
"$ref": "#/definitions/MyObject",
"$schema": "http://json-schema.org/draft-07/schema#",
"definitions": {
"MyGeneric<number,string>": {
"additionalProperties": false,
"properties": {
"field": {
"$ref": "#/definitions/MyGeneric%3Cstring%2Cnumber%3E"
}
},
"required": [
"field"
],
"type": "object"
},
"MyGeneric<string,number>": {
"additionalProperties": false,
"properties": {
"field": {
"$ref": "#/definitions/MyGeneric%3Cnumber%2Cstring%3E"
}
},
"required": [
"field"
],
"type": "object"
},
"MyObject": {
"additionalProperties": false,
"properties": {
"value": {
"$ref": "#/definitions/MyGeneric%3Cstring%2Cnumber%3E"
}
},
"required": [
"value"
],
"type": "object"
}
}
}