19 lines
No EOL
324 B
JSON
19 lines
No EOL
324 B
JSON
{
|
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
"title": "MyStruct",
|
|
"type": "object",
|
|
"properties": {
|
|
"writable": {
|
|
"type": "number",
|
|
"format": "float",
|
|
"writeOnly": true
|
|
},
|
|
"included": {
|
|
"type": "null"
|
|
}
|
|
},
|
|
"required": [
|
|
"writable",
|
|
"included"
|
|
]
|
|
} |