1# SPDX-License-Identifier: BSD-3-Clause
2
3title: Test binding
4
5description: Property default value test
6
7compatible: "defaults"
8
9properties:
10  int:
11    type: int
12    required: false
13    default: 123
14
15  array:
16    type: array
17    required: false
18    default: [1, 2, 3]
19
20  uint8-array:
21    type: uint8-array
22    required: false
23    default: [0x89, 0xAB, 0xCD]
24
25  string:
26    type: string
27    required: false
28    default: "hello"
29
30  string-array:
31    type: string-array
32    required: false
33    default: ["hello", "there"]
34
35  default-not-used:
36    type: int
37    required: false
38    default: 123
39