20 lines
No EOL
360 B
JSON
20 lines
No EOL
360 B
JSON
{
|
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
"title": "DeprecatedStruct",
|
|
"deprecated": true,
|
|
"type": "object",
|
|
"required": [
|
|
"deprecated_field",
|
|
"foo"
|
|
],
|
|
"properties": {
|
|
"foo": {
|
|
"type": "integer",
|
|
"format": "int32"
|
|
},
|
|
"deprecated_field": {
|
|
"deprecated": true,
|
|
"type": "boolean"
|
|
}
|
|
}
|
|
} |