Skip to content

Commit 232316e

Browse files
author
Andrew
committed
Add empty input schema for RebootPending
1 parent fe1a427 commit 232316e

File tree

1 file changed

+19
-13
lines changed

1 file changed

+19
-13
lines changed
Lines changed: 19 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,22 @@
11
{
2-
"$schema": "https://raw.githubusercontent.com/PowerShell/DSC/main/schemas/2024/04/bundled/resource/manifest.json",
3-
"description": "Returns info about pending reboot.",
4-
"type": "Microsoft.Windows/RebootPending",
5-
"version": "0.1.0",
6-
"get": {
7-
"executable": "powershell",
8-
"args": [
9-
"-NoLogo",
10-
"-NonInteractive",
11-
"-NoProfile",
12-
"-Command",
13-
"reboot_pending.resource.ps1"
14-
]
2+
"$schema": "https://raw.githubusercontent.com/PowerShell/DSC/main/schemas/2024/04/bundled/resource/manifest.json",
3+
"description": "Returns info about pending reboot.",
4+
"type": "Microsoft.Windows/RebootPending",
5+
"version": "0.1.0",
6+
"get": {
7+
"executable": "powershell",
8+
"args": [
9+
"-NoLogo",
10+
"-NonInteractive",
11+
"-NoProfile",
12+
"-Command",
13+
"reboot_pending.resource.ps1"
14+
]
15+
},
16+
"schema": {
17+
"embedded": {
18+
"$schema": "https://json-schema.org/draft/2020-12/schema",
19+
"type": "null"
1520
}
21+
}
1622
}

0 commit comments

Comments
 (0)