41 lines
No EOL
679 B
JSON
41 lines
No EOL
679 B
JSON
{
|
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
"title": "Internal",
|
|
"anyOf": [
|
|
{
|
|
"type": "object",
|
|
"required": [
|
|
"foo",
|
|
"typeProperty"
|
|
],
|
|
"properties": {
|
|
"typeProperty": {
|
|
"type": "string",
|
|
"enum": [
|
|
"Struct"
|
|
]
|
|
},
|
|
"foo": {
|
|
"type": "boolean"
|
|
}
|
|
}
|
|
},
|
|
{
|
|
"type": [
|
|
"boolean",
|
|
"object"
|
|
],
|
|
"required": [
|
|
"typeProperty"
|
|
],
|
|
"properties": {
|
|
"typeProperty": {
|
|
"type": "string",
|
|
"enum": [
|
|
"NewType"
|
|
]
|
|
}
|
|
}
|
|
}
|
|
]
|
|
} |