Skip to content

Commit f801448

Browse files
committed
schema.yaml: Fix unevaluatedItems -> additionalProperties
unevaluatedItems is for array items, we need unevaluatedProperties here. But actually this can just be additionalProperties.
1 parent 61babbf commit f801448

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

schema.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -138,15 +138,15 @@ properties:
138138
local_gpio:
139139
description: Local GPIO
140140
type: object
141-
unevaluatedItems: false
141+
additionalProperties: false
142142
patternProperties:
143143
"^power|fastboot_key|power_key|usb_disconnect$":
144144
$ref: "#/$defs/local_gpio"
145145

146146
laurent:
147147
description: KernelChip Laurent relays
148148
type: object
149-
unevaluatedItems: false
149+
additionalProperties: false
150150
properties:
151151
server:
152152
type: string

0 commit comments

Comments
 (0)