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