Skip to content

Commit 6a0a368

Browse files
committed
Fix the "default" value of "readOnly" in its schema definition
Change from the "false" string to the `false` Boolean value.
1 parent 52e5a85 commit 6a0a368

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

schema.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@
144144
"readOnly": {
145145
"description": "If true, indicates that the value of this property is controlled by the server.",
146146
"type": "boolean",
147-
"default": "false"
147+
"default": false
148148
},
149149
"allOf": { "$ref": "#/definitions/schemaArray" },
150150
"anyOf": { "$ref": "#/definitions/schemaArray" },

0 commit comments

Comments
 (0)