You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/dev/reference/changelog.md
+28Lines changed: 28 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -47,6 +47,34 @@ The [hot data store](/manage/reference/processes/) allows you to access recent d
47
47
48
48
{{% /changelog %}}
49
49
50
+
{{% changelog color="changed" title="Config uses API instead of type and namespace" date="2025-03-25" %}}
51
+
52
+
The JSON configuration for a resource now uses a field called `api` for the {{< glossary_tooltip term_id="api-namespace-triplet" text="API triplet" >}} instead of the deprecated `type` and `namespace` fields.
53
+
For example, instead of:
54
+
55
+
```json
56
+
{
57
+
"name": "my_board",
58
+
"namespace": "rdk",
59
+
"type": "board",
60
+
"model": "viam:nvidia:jetson"
61
+
}
62
+
```
63
+
64
+
You should use:
65
+
66
+
```json
67
+
{
68
+
"name": "my_board",
69
+
"api": "rdk:component:board",
70
+
"model": "viam:nvidia:jetson"
71
+
}
72
+
```
73
+
74
+
Backward compatibility is maintained for existing configurations.
0 commit comments