Set readOnly/writeOnly on properties
This commit is contained in:
parent
68ddfa310f
commit
2bc3957cb8
5 changed files with 55 additions and 24 deletions
|
@ -3,16 +3,21 @@
|
|||
"title": "MyStruct",
|
||||
"type": "object",
|
||||
"required": [
|
||||
"included1",
|
||||
"included2"
|
||||
"included",
|
||||
"writable"
|
||||
],
|
||||
"properties": {
|
||||
"included1": {
|
||||
"included": {
|
||||
"type": "null"
|
||||
},
|
||||
"readable": {
|
||||
"readOnly": true,
|
||||
"type": "string"
|
||||
},
|
||||
"writable": {
|
||||
"writeOnly": true,
|
||||
"type": "number",
|
||||
"format": "float"
|
||||
},
|
||||
"included2": {
|
||||
"type": "null"
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue