24 lines
No EOL
412 B
JSON
24 lines
No EOL
412 B
JSON
{
|
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
"title": "MyStruct",
|
|
"type": "object",
|
|
"required": [
|
|
"included",
|
|
"writable"
|
|
],
|
|
"properties": {
|
|
"readable": {
|
|
"default": "",
|
|
"readOnly": true,
|
|
"type": "string"
|
|
},
|
|
"writable": {
|
|
"writeOnly": true,
|
|
"type": "number",
|
|
"format": "float"
|
|
},
|
|
"included": {
|
|
"type": "null"
|
|
}
|
|
}
|
|
} |